index.wxss 3.2 KB

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