real-name-authentication.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* pages/real-name-authentication/real-name-authentication.wxss */
  2. page {
  3. background-color: #F5F6FA;
  4. }
  5. .module {
  6. width: 100%;
  7. padding: 0 30rpx;
  8. box-sizing: border-box;
  9. display: flex;
  10. flex-direction: column;
  11. background-color: #fff;
  12. margin: 20rpx 0;
  13. }
  14. .module-label {
  15. width: 100%;
  16. color: #333333;
  17. font-weight: 500;
  18. font-size: 28rpx;
  19. padding: 28rpx 0 16rpx;
  20. }
  21. .form-box {
  22. width: 100%;
  23. display: flex;
  24. flex-direction: column;
  25. }
  26. .form-row {
  27. width: 100%;
  28. height: 84rpx;
  29. display: flex;
  30. align-items: center;
  31. border-bottom: 1px solid #ECECEC;
  32. box-sizing: border-box;
  33. }
  34. .form-row:last-child {
  35. border-bottom: none;
  36. }
  37. .form-input {
  38. flex: 1;
  39. font-size: 26rpx;
  40. }
  41. .placeholder {
  42. color: #999999;
  43. }
  44. .form-label {
  45. width: 170rpx;
  46. color: #333333;
  47. font-size: 28rpx;
  48. }
  49. .btn-box {
  50. width: 100%;
  51. display: flex;
  52. flex-direction: column;
  53. align-items: center;
  54. padding: 40rpx 30rpx;
  55. box-sizing: border-box;
  56. }
  57. .btn-box button {
  58. width: 100%;
  59. height: 84rpx;
  60. line-height: 84rpx;
  61. background-color: #2B86FF;
  62. border-radius: 8rpx;
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. font-size: 34rpx;
  67. font-weight: 500;
  68. color: #fff;
  69. }
  70. /* 弹窗 */
  71. .mask {
  72. width: 100%;
  73. height: 100vh;
  74. position: fixed;
  75. top: 0;
  76. left: 0;
  77. z-index: 9999;
  78. background: rgba(0, 0, 0, 0.4);
  79. }
  80. .window {
  81. width: calc(100% - 120rpx);
  82. height: 360rpx;
  83. overflow: hidden;
  84. position: fixed;
  85. top: 50%;
  86. left: 50%;
  87. transform: translate(-50%, -50%);
  88. z-index: 99999;
  89. display: flex;
  90. flex-direction: column;
  91. align-items: center;
  92. justify-content: center;
  93. background-color: #fff;
  94. border-radius: 24rpx;
  95. }
  96. .window-title {
  97. color: #333333;
  98. font-size: 48rpx;
  99. font-weight: bold;
  100. margin-bottom: 14rpx;
  101. }
  102. .window-msg {
  103. color: #999999;
  104. font-size: 30rpx;
  105. }
  106. .window-btn-box {
  107. width: 100%;
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. margin-top: 55rpx;
  112. }
  113. .window-btn-box>button {
  114. width: 250rpx;
  115. height: 76rpx;
  116. line-height: 76rpx;
  117. background-color: #2B86FF;
  118. border-radius: 8rpx;
  119. color: #FFFFFF;
  120. font-size: 34rpx;
  121. }