index.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /* 信息盒子 */
  2. .msgBox {
  3. width: 702rpx;
  4. background: #FFFFFF;
  5. border-radius: 20rpx;
  6. margin: 0 auto;
  7. padding: 10rpx;
  8. padding-bottom: 20rpx;
  9. box-sizing: border-box;
  10. margin-bottom: 30rpx;
  11. }
  12. .msgBox-title-and-but {
  13. height: 68rpx;
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. padding: 0 10rpx;
  18. border-bottom: 2rpx solid rgba(151, 151, 151, .1);
  19. box-sizing: border-box;
  20. }
  21. /* 标题 */
  22. .msgBox-title {
  23. font-size: 28rpx;
  24. font-weight: 500;
  25. color: rgba(0, 0, 0, 0.85);
  26. }
  27. /* 一键开播按钮 */
  28. .custom-class-msgBox-but {
  29. width: 116rpx !important;
  30. height: 44rpx !important;
  31. background: #4DC2D4 !important;
  32. border-radius: 22rpx !important;
  33. font-size: 20rpx !important;
  34. font-weight: 500;
  35. color: #FFFFFF !important;
  36. padding-left: 0 !important;
  37. padding-right: 0 !important;
  38. }
  39. /* 账号信息 */
  40. .account-information {
  41. display: flex;
  42. width: 100%;
  43. font-size: 20rpx;
  44. font-family: HelveticaNeue;
  45. color: rgba(0, 0, 0, 0.65);
  46. padding: 0 20rpx;
  47. box-sizing: border-box;
  48. }
  49. .account-information-left view,
  50. .account-information-right view {
  51. height: 44rpx;
  52. line-height: 44rpx;
  53. }
  54. .account-information-left .title,
  55. .account-information-right .title {
  56. font-size: 24rpx;
  57. font-weight: 400;
  58. color: rgba(0, 0, 0, 0.85);
  59. }
  60. .account-information-left {
  61. width: 260rpx;
  62. margin-top: 18rpx;
  63. margin-bottom: 10rpx;
  64. }
  65. .account-information-right {
  66. flex: 1;
  67. margin-top: 18rpx;
  68. margin-bottom: 10rpx;
  69. }
  70. .account-information-right .copy {
  71. color: #4DC2D4;
  72. }
  73. /* 去申请 */
  74. .go-to-apply-for {
  75. display: flex;
  76. justify-content: center;
  77. align-items: center;
  78. width: 330rpx;
  79. height: 74rpx;
  80. border-radius: 10rpx;
  81. border: 2rpx solid rgba(0, 0, 0, 0.85);
  82. box-sizing: border-box;
  83. margin: 30rpx auto 10rpx;
  84. font-size: 24rpx;
  85. color: rgba(0, 0, 0, 0.85);
  86. }
  87. /* 直播数据网格 */
  88. .data-grid {
  89. display: flex;
  90. flex-wrap: wrap;
  91. width: 100%;
  92. padding: 0 20rpx;
  93. box-sizing: border-box;
  94. margin: 20rpx 0;
  95. }
  96. .data-grid>view {
  97. width: 33.33%;
  98. text-align: center;
  99. }
  100. .data-grid>view:nth-child(-n+3) {
  101. margin-bottom: 10rpx;
  102. }
  103. .data-grid>view .title {
  104. font-size: 24rpx;
  105. color: rgba(0, 0, 0, 0.85);
  106. }
  107. .data-grid>view .number {
  108. font-size: 24rpx;
  109. font-weight: 500;
  110. color: #4DC2D4;
  111. margin-top: 10rpx;
  112. }
  113. /* 数据表 */
  114. .data-formlist {
  115. min-width: 680rpx;
  116. border-radius: 8rpx;
  117. overflow: hidden;
  118. }
  119. .data-formlist-header {
  120. display: flex;
  121. align-items: center;
  122. width: 200%;
  123. height: 66rpx;
  124. padding: 0 20rpx;
  125. background: #F6F7F8;
  126. box-sizing: border-box;
  127. border-bottom: 2rpx solid #e8e8e8;
  128. }
  129. .data-formlist-header>view {
  130. text-align: center;
  131. font-size: 24rpx;
  132. font-weight: 600;
  133. color: rgba(0, 0, 0, 0.85);
  134. }
  135. .data-formlist-row {
  136. display: flex;
  137. align-items: center;
  138. width: 200%;
  139. height: 56rpx;
  140. font-size: 20rpx;
  141. color: rgba(0, 0, 0, 0.65);
  142. padding: 0 20rpx;
  143. box-sizing: border-box;
  144. border-bottom: 2rpx solid #e8e8e8;
  145. text-align: center;
  146. }
  147. .data-formlist .the-first-column {
  148. width: 150rpx;
  149. }
  150. .data-formlist .the-second-series {
  151. width: 130rpx;
  152. }
  153. .data-formlist .the-fourth-column {
  154. width: 200rpx;
  155. }
  156. .the-word {
  157. width: 90rpx;
  158. }