initiation.css 2.5 KB

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