index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /* components/novelPlugin/fullScreen/index.wxss */
  2. .full-screen-container {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. width: 100%;
  9. height: 100%;
  10. background-color: rgba(0, 0, 0, 0.7);
  11. z-index: 9999;
  12. display: flex;
  13. justify-content: center;
  14. align-items: center;
  15. }
  16. .full-screen-content {
  17. width: 100%;
  18. height: 100%;
  19. background-color: #ffffff;
  20. display: flex;
  21. flex-direction: column;
  22. }
  23. .full-screen-header {
  24. height: 88rpx;
  25. display: flex;
  26. justify-content: center;
  27. align-items: center;
  28. border-bottom: 2rpx solid #f0f0f0;
  29. }
  30. .full-screen-title {
  31. font-size: 36rpx;
  32. font-weight: 600;
  33. color: #333333;
  34. }
  35. .full-screen-body {
  36. flex: 1;
  37. overflow-y: auto;
  38. padding: 20rpx;
  39. }
  40. .recommend-item {
  41. display: flex;
  42. margin-bottom: 30rpx;
  43. padding: 20rpx;
  44. background-color: #f8f8f8;
  45. border-radius: 10rpx;
  46. }
  47. .recommend-cover {
  48. width: 120rpx;
  49. height: 160rpx;
  50. border-radius: 8rpx;
  51. margin-right: 20rpx;
  52. flex-shrink: 0;
  53. }
  54. .recommend-info {
  55. flex: 1;
  56. display: flex;
  57. flex-direction: column;
  58. justify-content: space-between;
  59. }
  60. .recommend-title {
  61. font-size: 32rpx;
  62. font-weight: 500;
  63. color: #333333;
  64. overflow: hidden;
  65. text-overflow: ellipsis;
  66. display: -webkit-box;
  67. -webkit-line-clamp: 2;
  68. -webkit-box-orient: vertical;
  69. }
  70. .recommend-desc {
  71. font-size: 26rpx;
  72. color: #999999;
  73. overflow: hidden;
  74. text-overflow: ellipsis;
  75. display: -webkit-box;
  76. -webkit-line-clamp: 2;
  77. -webkit-box-orient: vertical;
  78. }
  79. .empty-state {
  80. display: flex;
  81. flex-direction: column;
  82. justify-content: center;
  83. align-items: center;
  84. height: 100%;
  85. }
  86. .empty-image {
  87. width: 200rpx;
  88. height: 200rpx;
  89. margin-bottom: 20rpx;
  90. }
  91. .empty-text {
  92. font-size: 28rpx;
  93. color: #999999;
  94. }
  95. .full-screen-footer {
  96. height: 100rpx;
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. border-top: 2rpx solid #f0f0f0;
  101. padding: 0 40rpx;
  102. }
  103. .close-btn {
  104. width: 300rpx;
  105. height: 72rpx;
  106. line-height: 72rpx;
  107. background-color: #f0f0f0;
  108. border-radius: 36rpx;
  109. font-size: 28rpx;
  110. color: #666666;
  111. border: none;
  112. }
  113. .close-btn:active {
  114. background-color: #e0e0e0;
  115. }