initiation.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. html,
  2. body,
  3. p,
  4. div,
  5. span {
  6. padding: 0;
  7. margin: 0;
  8. border: 0;
  9. }
  10. #app {
  11. background: url('../images/initiation/banner.png') no-repeat top center #ffdab0;
  12. background-size: contain;
  13. max-width: 750px;
  14. margin: 0 auto;
  15. min-height: 100vh;
  16. overflow: hidden;
  17. position: relative;
  18. }
  19. .banner,
  20. .banner img {
  21. width: 100%;
  22. font-size: 0;
  23. }
  24. .van-cell {
  25. flex-direction: column;
  26. font-size: 16px;
  27. padding: 14px 13px;
  28. }
  29. .van-field__label {
  30. width: 100%;
  31. margin-right: 0;
  32. color: #333;
  33. font-size: 16px;
  34. font-weight: 500;
  35. }
  36. .van-field--disabled .van-field__label {
  37. color: #333;
  38. }
  39. .van-cell--required::before {
  40. left: 15px;
  41. }
  42. .van-field__body {
  43. margin-top: 10px;
  44. }
  45. .btn-submit {
  46. width: 90%;
  47. margin: 20px auto;
  48. }
  49. .system h2 {
  50. font-size: 18px;
  51. font-weight: 500;
  52. margin: 10px 24px;
  53. color: #444444;
  54. }
  55. .system .van-cell--required::before {
  56. left: 25px;
  57. }
  58. .cell-group {
  59. margin: 0 13px 12px;
  60. border-radius: 10px;
  61. padding-bottom: 20px;
  62. }
  63. .van-form {
  64. margin-top: 164px;
  65. background: linear-gradient(180deg, rgba(255, 239, 216, 0) 0%, #ffdab0 100%);
  66. overflow: hidden;
  67. }
  68. .top-tips {
  69. margin: 30px 13px 20px;
  70. padding: 9px 7px;
  71. background: #FFFFFF;
  72. border-radius: 10px;
  73. border: 5px solid #FF9751;
  74. font-size: 14px;
  75. font-weight: 500;
  76. color: #FA6400;
  77. line-height: 20px;
  78. }
  79. .title {
  80. text-shadow: 0px 2px 3px rgba(255, 96, 0, 0.5);
  81. position: absolute;
  82. font-size: 26px;
  83. line-height: 37px;
  84. color: #ffffff;
  85. top: 0;
  86. left: 24px;
  87. width: 57%;
  88. height: 154px;
  89. display: flex;
  90. justify-content: center;
  91. align-items: center;
  92. z-index: 1;
  93. }
  94. .radioSection {
  95. position: relative;
  96. min-width: 32px;
  97. justify-content: center;
  98. }
  99. .radioItem {
  100. position: absolute;
  101. top: 0;
  102. left: 0;
  103. right: 0;
  104. bottom: 0;
  105. opacity: 0;
  106. }
  107. .radioSection+.radioSection {
  108. margin-left: 12px;
  109. }
  110. .van-picker__confirm {
  111. color: #FA6400;
  112. }
  113. /* 弹窗 */
  114. .submit-container {
  115. /* padding: 44px 26px 26px; */
  116. position: relative;
  117. text-align: center;
  118. margin: 0 auto;
  119. background: url('../images/initiation/i-popup-banner.png') no-repeat top center;
  120. background-size: cover;
  121. width: 8rem;
  122. height: 9.38rem;
  123. }
  124. .submit-title {
  125. padding-top: 5.7rem;
  126. padding-bottom: 10px;
  127. font-size: 18px;
  128. font-weight: 500;
  129. color: #000000;
  130. }
  131. .submit-tips {
  132. font-size: 15px;
  133. color: #777777;
  134. line-height: 20px;
  135. padding-bottom: 20px;
  136. }
  137. .submit-btn {
  138. background: url('../images/initiation/i-popup-btn.png') no-repeat center center;
  139. background-size: contain;
  140. width: 3.547rem;
  141. height: 1rem;
  142. margin: 0 auto;
  143. }
  144. .submit-container .van-button {
  145. font-size: 18px;
  146. font-weight: 500;
  147. }