app.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /* reset */
  2. page {
  3. background-color: #F8F8F8;
  4. height: 100%;
  5. font-size: 32rpx;
  6. line-height: 1.6;
  7. }
  8. checkbox, radio{
  9. margin-right: 10rpx;
  10. }
  11. button{
  12. margin-top: 20rpx;
  13. margin-bottom: 20rpx;
  14. }
  15. form{
  16. width: 100%;
  17. }
  18. input {
  19. width: 100%;
  20. }
  21. /* lib */
  22. .strong{
  23. font-weight: bold;
  24. }
  25. .tc{
  26. text-align: center;
  27. }
  28. /* page */
  29. .container {
  30. display: flex;
  31. flex-direction: column;
  32. min-height: 100%;
  33. justify-content: space-between;
  34. font-size: 32rpx;
  35. font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
  36. }
  37. .page-head{
  38. padding: 60rpx 50rpx 80rpx;
  39. text-align: center;
  40. }
  41. .page-head-title{
  42. display: inline-block;
  43. padding: 0 40rpx 20rpx 40rpx;
  44. font-size: 32rpx;
  45. color: #BEBEBE;
  46. }
  47. .page-head-line{
  48. margin: 0 auto;
  49. width: 150rpx;
  50. height: 2rpx;
  51. background-color: #D8D8D8;
  52. }
  53. .page-head-desc{
  54. padding-top: 20rpx;
  55. color: #9B9B9B;
  56. font-size: 32rpx;
  57. }
  58. .page-body {
  59. width: 100%;
  60. flex-grow: 1;
  61. overflow-x: hidden;
  62. }
  63. .page-body-wrapper {
  64. display: flex;
  65. flex-direction: column;
  66. align-items: center;
  67. width: 100%;
  68. }
  69. .page-body-wording {
  70. text-align: center;
  71. padding: 200rpx 100rpx;
  72. }
  73. .page-body-info {
  74. display: flex;
  75. flex-direction: column;
  76. align-items: center;
  77. background-color: #fff;
  78. width: 100%;
  79. padding: 50rpx 0 150rpx 0;
  80. }
  81. .page-body-title {
  82. margin-bottom: 100rpx;
  83. font-size: 32rpx;
  84. }
  85. .page-body-text {
  86. font-size: 30rpx;
  87. line-height: 26px;
  88. color: #ccc;
  89. }
  90. .page-body-text-small {
  91. font-size: 24rpx;
  92. color: #000;
  93. margin-bottom: 100rpx;
  94. }
  95. .page-foot{
  96. margin: 100rpx 0 30rpx 0;
  97. text-align: center;
  98. color: #1aad19;
  99. font-size: 0;
  100. }
  101. .icon-foot{
  102. width: 152rpx;
  103. height: 23rpx;
  104. }
  105. .page-section{
  106. width: 100%;
  107. margin-bottom: 60rpx;
  108. }
  109. .page-section_center{
  110. display: flex;
  111. flex-direction: column;
  112. align-items: center;
  113. }
  114. .page-section:last-child{
  115. margin-bottom: 0;
  116. }
  117. .page-section-gap{
  118. box-sizing: border-box;
  119. padding: 0 30rpx;
  120. }
  121. .page-section-spacing{
  122. box-sizing: border-box;
  123. padding: 0 80rpx;
  124. }
  125. .page-section-title{
  126. font-size: 28rpx;
  127. color: #999999;
  128. margin-bottom: 10rpx;
  129. padding-left: 30rpx;
  130. padding-right: 30rpx;
  131. }
  132. .page-section-gap .page-section-title{
  133. padding-left: 0;
  134. padding-right: 0;
  135. }
  136. .page-section-ctn{
  137. }
  138. /* widget */
  139. .btn-area{
  140. margin-top: 60rpx;
  141. box-sizing: border-box;
  142. width: 100%;
  143. padding: 0 30rpx;
  144. }
  145. .image-plus {
  146. width: 150rpx;
  147. height: 150rpx;
  148. border: 2rpx solid #D9D9D9;
  149. position: relative;
  150. }
  151. .image-plus-nb{
  152. border: 0;
  153. }
  154. .image-plus-text{
  155. color: #888888;
  156. font-size: 28rpx;
  157. }
  158. .image-plus-horizontal {
  159. position: absolute;
  160. top: 50%;
  161. left: 50%;
  162. background-color: #d9d9d9;
  163. width: 4rpx;
  164. height: 80rpx;
  165. transform: translate(-50%, -50%);
  166. }
  167. .image-plus-vertical {
  168. position: absolute;
  169. top: 50%;
  170. left: 50%;
  171. background-color: #d9d9d9;
  172. width: 80rpx;
  173. height: 4rpx;
  174. transform: translate(-50%, -50%);
  175. }
  176. .demo-text-1{
  177. position: relative;
  178. align-items: center;
  179. justify-content: center;
  180. background-color: #1AAD19;
  181. color: #FFFFFF;
  182. font-size: 36rpx;
  183. }
  184. .demo-text-1:before{
  185. content: 'A';
  186. position: absolute;
  187. top: 50%;
  188. left: 50%;
  189. transform: translate(-50%, -50%);
  190. }
  191. .demo-text-2{
  192. position: relative;
  193. align-items: center;
  194. justify-content: center;
  195. background-color: #2782D7;
  196. color: #FFFFFF;
  197. font-size: 36rpx;
  198. }
  199. .demo-text-2:before{
  200. content: 'B';
  201. position: absolute;
  202. top: 50%;
  203. left: 50%;
  204. transform: translate(-50%, -50%);
  205. }
  206. .demo-text-3{
  207. position: relative;
  208. align-items: center;
  209. justify-content: center;
  210. background-color: #F1F1F1;
  211. color: #353535;
  212. font-size: 36rpx;
  213. }
  214. .demo-text-3:before{
  215. content: 'C';
  216. position: absolute;
  217. top: 50%;
  218. left: 50%;
  219. transform: translate(-50%, -50%);
  220. }