index.wxss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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. height: 40rpx;
  25. line-height: 40rpx;
  26. font-size: 28rpx;
  27. font-weight: 550;
  28. color: rgba(0, 0, 0, 0.85);
  29. }
  30. .msgBox-title>text {
  31. font-size: 26rpx;
  32. }
  33. .dataReturn {
  34. font-size: 20rpx;
  35. color: #4CBECF;
  36. }
  37. /* 一键开播按钮 */
  38. .custom-class-msgBox-but {
  39. width: 116rpx !important;
  40. height: 44rpx !important;
  41. background: #4DC2D4 !important;
  42. border-radius: 22rpx !important;
  43. font-size: 20rpx !important;
  44. font-weight: 500;
  45. color: #FFFFFF !important;
  46. padding-left: 0 !important;
  47. padding-right: 0 !important;
  48. }
  49. /* 账号信息 */
  50. .account-information {
  51. width: 100%;
  52. font-size: 20rpx;
  53. font-family: HelveticaNeue;
  54. color: rgba(0, 0, 0, 0.65);
  55. padding: 0 20rpx;
  56. box-sizing: border-box;
  57. }
  58. .account-information-row:first-child {
  59. margin-top: 18rpx;
  60. }
  61. .account-information-row {
  62. display: flex;
  63. justify-content: space-between;
  64. width: 100%;
  65. height: 44rpx;
  66. font-size: 20rpx;
  67. font-family: HelveticaNeue;
  68. color: rgba(0, 0, 0, 0.65);
  69. line-height: 44rpx;
  70. margin-top: 10rpx;
  71. }
  72. .account-information-row>view {
  73. display: flex;
  74. }
  75. .account-information-row .chained-address {
  76. max-width: 400rpx;
  77. padding: 0 8rpx;
  78. }
  79. .chained-address-copy {
  80. color: #4DC2D4;
  81. }
  82. .account-information-row:first-child .chained-address {
  83. width: 350rpx;
  84. }
  85. /* 去申请 */
  86. .go-to-apply-for {
  87. display: flex;
  88. justify-content: center;
  89. align-items: center;
  90. width: 330rpx;
  91. height: 74rpx;
  92. border-radius: 10rpx;
  93. border: 2rpx solid rgba(0, 0, 0, 0.85);
  94. box-sizing: border-box;
  95. margin: 30rpx auto 10rpx;
  96. font-size: 24rpx;
  97. color: rgba(0, 0, 0, 0.85);
  98. }
  99. /* 直播数据网格 */
  100. .data-grid {
  101. display: flex;
  102. flex-wrap: wrap;
  103. width: 100%;
  104. padding: 0 20rpx;
  105. box-sizing: border-box;
  106. margin: 20rpx 0;
  107. }
  108. .data-grid>view {
  109. width: 33.33%;
  110. text-align: center;
  111. }
  112. .data-grid>view:nth-child(-n+3) {
  113. margin-bottom: 10rpx;
  114. }
  115. .data-grid>view .title {
  116. font-size: 24rpx;
  117. color: rgba(0, 0, 0, 0.85);
  118. }
  119. .data-grid>view .number {
  120. font-size: 24rpx;
  121. font-weight: 500;
  122. color: #4DC2D4;
  123. margin-top: 10rpx;
  124. }
  125. /* 数据表 */
  126. .data-formlist {
  127. float: left;
  128. border-radius: 8rpx;
  129. overflow: hidden;
  130. }
  131. .data-formlist-header {
  132. min-width: 1030rpx;
  133. height: 66rpx;
  134. line-height: 66rpx;
  135. padding: 0 20rpx;
  136. background: #F6F7F8;
  137. box-sizing: border-box;
  138. border-bottom: 2rpx solid #e8e8e8;
  139. }
  140. .data-formlist-header>view {
  141. float: left;
  142. text-align: center;
  143. font-size: 24rpx;
  144. font-weight: 600;
  145. color: rgba(0, 0, 0, 0.85);
  146. }
  147. .data-formlist-row {
  148. position: relative;
  149. font-size: 20rpx;
  150. color: rgba(0, 0, 0, 0.65);
  151. min-width: 1030rpx;
  152. padding: 0 20rpx;
  153. box-sizing: border-box;
  154. border-bottom: 2rpx solid #e8e8e8;
  155. text-align: center;
  156. height: 56rpx !important;
  157. }
  158. .option-row {
  159. background-color: #FAFAFA;
  160. }
  161. .data-formlist-row .more-but-box {
  162. position: absolute;
  163. width: 100%;
  164. height: 30rpx;
  165. top: 12rpx;
  166. }
  167. .more-but-box .more-but {
  168. position: fixed;
  169. width: 68rpx;
  170. height: 30rpx;
  171. line-height: 30rpx;
  172. background: #4DC2D4;
  173. box-shadow: 4rpx 4rpx 4rpx 0px rgba(0, 0, 0, 0.06);
  174. border-radius: 15rpx;
  175. right: 35rpx;
  176. font-size: 20rpx;
  177. color: #FFFFFF;
  178. }
  179. .data-formlist-row>view {
  180. float: left;
  181. line-height: 56rpx !important;
  182. }
  183. .w200rpx {
  184. width: 200rpx !important;
  185. }
  186. /* 直播详情 */
  187. .live-for-details {
  188. min-width: 1800rpx !important;
  189. }
  190. /* 分页按钮 */
  191. .paging-button {
  192. float: right;
  193. width: 100%;
  194. height: 30rpx;
  195. margin-top: 30rpx;
  196. margin-bottom: 20rpx;
  197. }
  198. .paging-button>view {
  199. position: relative;
  200. float: right;
  201. width: 30rpx !important;
  202. height: 30rpx !important;
  203. margin-right: 10rpx;
  204. overflow: hidden;
  205. }
  206. .paging-button-icon {
  207. position: absolute;
  208. font-size: 20rpx;
  209. color: rgba(0, 0, 0, 0.5);
  210. top: 2rpx;
  211. pointer-events: none;
  212. }
  213. .icon-left {
  214. left: 4rpx;
  215. }
  216. .icon-right {
  217. left: 6rpx;
  218. }
  219. .paging-button>text {
  220. float: right;
  221. display: block;
  222. height: 30rpx;
  223. line-height: 30rpx;
  224. background: #4DC2D4;
  225. border-radius: 4rpx;
  226. font-size: 20rpx;
  227. font-weight: 550;
  228. color: #FFFFFF;
  229. padding: 0 10rpx;
  230. margin-right: 10rpx;
  231. }
  232. /* 分页按钮外部样式表 */
  233. .paging-button-class {
  234. width: 100%;
  235. height: 100%;
  236. background: #F6F7F8 !important;
  237. border-radius: 4rpx !important;
  238. border: 0 !important;
  239. }