/* components/novelPlugin/fullScreen/index.wxss */ .full-screen-container { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 9999; display: flex; justify-content: center; align-items: center; } .full-screen-content { width: 100%; height: 100%; background-color: #ffffff; display: flex; flex-direction: column; } .full-screen-header { height: 88rpx; display: flex; justify-content: center; align-items: center; border-bottom: 2rpx solid #f0f0f0; } .full-screen-title { font-size: 36rpx; font-weight: 600; color: #333333; } .full-screen-body { flex: 1; overflow-y: auto; padding: 20rpx; } .recommend-item { display: flex; margin-bottom: 30rpx; padding: 20rpx; background-color: #f8f8f8; border-radius: 10rpx; } .recommend-cover { width: 120rpx; height: 160rpx; border-radius: 8rpx; margin-right: 20rpx; flex-shrink: 0; } .recommend-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; } .recommend-title { font-size: 32rpx; font-weight: 500; color: #333333; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .recommend-desc { font-size: 26rpx; color: #999999; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } .empty-state { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; } .empty-image { width: 200rpx; height: 200rpx; margin-bottom: 20rpx; } .empty-text { font-size: 28rpx; color: #999999; } .full-screen-footer { height: 100rpx; display: flex; justify-content: center; align-items: center; border-top: 2rpx solid #f0f0f0; padding: 0 40rpx; } .close-btn { width: 300rpx; height: 72rpx; line-height: 72rpx; background-color: #f0f0f0; border-radius: 36rpx; font-size: 28rpx; color: #666666; border: none; } .close-btn:active { background-color: #e0e0e0; }