微信小程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

194 lignes
2.9 KiB

  1. /* pages/apply/paymentTemplate/paymentTemplate.wxss */
  2. text{display: block;}
  3. .pure_top {
  4. width: 100%;
  5. height: 100px;
  6. position: relative;
  7. z-index: -1;
  8. overflow: hidden
  9. }
  10. .pure_top::after {
  11. content: '';
  12. width: 140%;
  13. height: 100px;
  14. position: absolute;
  15. left: -20%;
  16. top: 0;
  17. z-index: -1;
  18. border-radius: 0 0 50% 50%;
  19. background: #1496f1
  20. }
  21. .top{
  22. height: 64px;
  23. width: 100%;
  24. position: fixed;
  25. z-index: 999;
  26. top:0px;
  27. }
  28. .top text{
  29. position: relative;
  30. top: 30px;
  31. margin-right: 30px;
  32. display: block;
  33. color: #eee;
  34. text-align: center;
  35. width: 100%;
  36. font-size: 16px;
  37. }
  38. .bgPage{
  39. width: 140%;
  40. position:absolute;
  41. transform: translate(-15%, -50%);
  42. height: 300px;
  43. z-index: -1;
  44. }
  45. .main-box{
  46. background: #ffffff;
  47. padding: 20px;
  48. width: 94%;
  49. margin: 0 auto;
  50. border-radius: 10px;
  51. box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.16);
  52. }
  53. .top-box{
  54. /* margin-top: 20px; */
  55. /* margin-bottom: 28px; */
  56. }
  57. .top-box text{
  58. margin-bottom: 15px;
  59. }
  60. .top-box text:last-child{
  61. margin-bottom: 0px;
  62. }
  63. .box-title{
  64. color: #2C8E68;
  65. text-align: center;
  66. font-size: 16px;
  67. }
  68. .input_tit{
  69. border: 1px solid #DCDCDC;
  70. padding: 0px 10px;
  71. height: 32px;
  72. line-height: 32px;
  73. border-radius: 5px;
  74. margin-bottom: 15px;
  75. }
  76. .input_money{
  77. padding: 0px 10px;
  78. height: 32px;
  79. line-height: 32px;
  80. color: #E90000;
  81. font-size: 26px;
  82. display: inline-block;
  83. width: 50%;
  84. }
  85. .money_box{
  86. font-size: 26px;
  87. border-bottom:1px solid #DCDCDC;
  88. width: 70%;
  89. margin: 0 auto;
  90. margin-bottom: 15px;
  91. color: #E90000;
  92. display: flex;
  93. align-items: center;
  94. justify-content: center;
  95. }
  96. .title{
  97. padding: 10px calc(3% + 20px);
  98. color: #2C8E68;
  99. font-size: 16px;
  100. }
  101. .van-cell {
  102. padding-left: 0!important;
  103. padding-right: 0!important;
  104. }
  105. .down{
  106. width: 15px;
  107. height: 8px;
  108. margin: 0 auto;
  109. margin-top: 18px;
  110. }
  111. .update{
  112. width: 26px;
  113. height: 26px;
  114. position: absolute;
  115. right: 41px;
  116. }
  117. .delete{
  118. width: 26px;
  119. height: 26px;
  120. position: absolute;
  121. right: 0;
  122. }
  123. .btnBox{
  124. text-align: center;
  125. position: relative;
  126. height: 26px;
  127. }
  128. .bottomBtn{
  129. display: flex;
  130. width: 94%;
  131. margin: 0 auto;
  132. margin-top: 25px;
  133. justify-content:space-between;
  134. }
  135. .bottomBtn view{
  136. display: flex;
  137. width: 48%;
  138. background-color: #ffffff;
  139. border-radius: 5px;
  140. box-shadow: 0px 5px 9px #DCDCDC;
  141. padding: 10px 0px;
  142. text-align: center;
  143. align-items:center;
  144. justify-content:center;
  145. font-size: 14px;
  146. color: #2C8E68;
  147. }
  148. .bottomBtn view image{
  149. width: 18px;
  150. height: 18px;
  151. margin-right: 5px;
  152. }
  153. .bottom{
  154. width: 84%;
  155. margin: 0 auto;
  156. text-align: center;
  157. margin-top: 50px;
  158. margin-bottom: 50px;
  159. display: flex;
  160. }
  161. .bottom view {
  162. width: 47%;
  163. margin: 0 auto;
  164. border-radius: 30px;
  165. display: inline-block;
  166. }
  167. .bottom .btn1{
  168. border: 1px solid #2C8E68;
  169. padding: 8px 0px;
  170. color: #2C8E68;
  171. }
  172. .bottom .btn2{
  173. border: 1px solid transparent;
  174. padding: 8px 0px;
  175. background-image: linear-gradient(to right, #2C8E68, #5CAE77);
  176. margin-left: 6%;
  177. color: #fff;
  178. }