initiation.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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 4px #649D66;
  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. }
  94. .radioItem {
  95. position: absolute;
  96. top: 0;
  97. left: 0;
  98. right: 0;
  99. bottom: 0;
  100. opacity: 0;
  101. }
  102. .radioSection+.radioSection {
  103. margin-left: 12px;
  104. }
  105. .van-picker__confirm {
  106. color: #FA6400;
  107. }
  108. /* 弹窗 */
  109. .submit-container {
  110. padding: 44px 26px 26px;
  111. position: relative;
  112. text-align: center;
  113. }
  114. .icon-close {
  115. position: absolute;
  116. width: 26px;
  117. height: 26px;
  118. top: 12px;
  119. right: 12px;
  120. }
  121. .submit-img {
  122. width: 134px;
  123. }
  124. .submit-tips {
  125. font-size: 14px;
  126. color: #777777;
  127. line-height: 20px;
  128. padding-top: 5px;
  129. padding-bottom: 20px;
  130. }
  131. .submit-container .van-button {
  132. font-size: 18px;
  133. font-weight: 500;
  134. }