| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /* 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;
- }
|