index.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. @import "/components/My_liveAccountMsg/index.wxss";
  2. /* 直播数据网格 */
  3. .data-grid {
  4. display: flex;
  5. flex-wrap: wrap;
  6. width: 100%;
  7. padding: 0 20rpx;
  8. box-sizing: border-box;
  9. margin: 20rpx 0;
  10. }
  11. .data-grid>view {
  12. width: 33.33%;
  13. text-align: center;
  14. }
  15. .data-grid>view:nth-child(-n+3) {
  16. margin-bottom: 10rpx;
  17. }
  18. .data-grid>view .title {
  19. font-size: 24rpx;
  20. color: rgba(0, 0, 0, 0.85);
  21. }
  22. .data-grid>view .number {
  23. font-size: 24rpx;
  24. font-weight: 500;
  25. color: #4DC2D4;
  26. margin-top: 10rpx;
  27. }
  28. /* 数据表 */
  29. .data-formlist {
  30. float: left;
  31. border-radius: 8rpx;
  32. overflow: hidden;
  33. }
  34. .data-formlist-header {
  35. min-width: 1030rpx;
  36. height: 66rpx;
  37. line-height: 66rpx;
  38. padding: 0 20rpx;
  39. background: #F6F7F8;
  40. box-sizing: border-box;
  41. border-bottom: 2rpx solid #e8e8e8;
  42. }
  43. .data-formlist-header>view {
  44. float: left;
  45. text-align: center;
  46. font-size: 24rpx;
  47. font-weight: 600;
  48. color: rgba(0, 0, 0, 0.85);
  49. }
  50. .data-formlist-row {
  51. position: relative;
  52. font-size: 20rpx;
  53. color: rgba(0, 0, 0, 0.65);
  54. min-width: 1030rpx;
  55. padding: 0 20rpx;
  56. box-sizing: border-box;
  57. border-bottom: 2rpx solid #e8e8e8;
  58. text-align: center;
  59. height: 56rpx !important;
  60. }
  61. .option-row {
  62. background-color: #FAFAFA;
  63. }
  64. .data-formlist-row .more-but-box {
  65. position: absolute;
  66. width: 100%;
  67. height: 30rpx;
  68. top: 12rpx;
  69. }
  70. .more-but-box .more-but {
  71. position: fixed;
  72. width: 68rpx;
  73. height: 30rpx;
  74. line-height: 30rpx;
  75. background: #4DC2D4;
  76. box-shadow: 4rpx 4rpx 4rpx 0px rgba(0, 0, 0, 0.06);
  77. border-radius: 15rpx;
  78. right: 35rpx;
  79. font-size: 20rpx;
  80. color: #FFFFFF;
  81. }
  82. .data-formlist-row>view {
  83. float: left;
  84. line-height: 56rpx !important;
  85. }
  86. .w200rpx {
  87. width: 200rpx !important;
  88. }
  89. /* 直播详情 */
  90. .live-for-details {
  91. min-width: 1800rpx !important;
  92. }
  93. /* 分页按钮 */
  94. .paging-button {
  95. float: right;
  96. width: 100%;
  97. height: 30rpx;
  98. margin-top: 30rpx;
  99. margin-bottom: 20rpx;
  100. }
  101. .paging-button>view {
  102. position: relative;
  103. float: right;
  104. width: 30rpx !important;
  105. height: 30rpx !important;
  106. margin-right: 10rpx;
  107. overflow: hidden;
  108. }
  109. .paging-button-icon {
  110. position: absolute;
  111. font-size: 20rpx;
  112. color: rgba(0, 0, 0, 0.5);
  113. top: 2rpx;
  114. pointer-events: none;
  115. }
  116. .icon-left {
  117. left: 4rpx;
  118. }
  119. .icon-right {
  120. left: 6rpx;
  121. }
  122. .paging-button>text {
  123. float: right;
  124. display: block;
  125. height: 30rpx;
  126. line-height: 30rpx;
  127. background: #4DC2D4;
  128. border-radius: 4rpx;
  129. font-size: 20rpx;
  130. font-weight: 550;
  131. color: #FFFFFF;
  132. padding: 0 10rpx;
  133. margin-right: 10rpx;
  134. }
  135. /* 分页按钮外部样式表 */
  136. .paging-button-class {
  137. width: 100%;
  138. height: 100%;
  139. background: #F6F7F8 !important;
  140. border-radius: 4rpx !important;
  141. border: 0 !important;
  142. }