index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. }