initiation.css 2.2 KB

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