微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

224 line
3.5 KiB

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