index.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. page {
  2. height: 100%;
  3. width: 100%;
  4. background: #f4f4f4;
  5. }
  6. .container {
  7. background: #f4f4f4;
  8. height: auto;
  9. overflow: hidden;
  10. width: 100%;
  11. }
  12. .user {
  13. padding: 15rpx;
  14. width: auto;
  15. display: relative;
  16. background-color: #ffffff;
  17. border-radius: 10rpx;
  18. margin: 10rpx;
  19. }
  20. .user_area {
  21. /* height: 130rpx; */
  22. z-index: 999;
  23. }
  24. .user_column {
  25. /* border: 1px solid black; */
  26. height: 120rpx;
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. }
  31. .user_column_item {
  32. width: 25%;
  33. height: 120rpx;
  34. text-align: center;
  35. position: relative;
  36. margin-top: 5rpx;
  37. /*
  38. background: #fff;
  39. border-right: 1rpx #e0e3da solid;*/
  40. }
  41. .user_column_item_image {
  42. width: 50rpx;
  43. height: 50rpx;
  44. margin-top: 30rpx;
  45. }
  46. .user_column_item_value {
  47. margin-top: 20rpx;
  48. font-size: 32rpx;
  49. font-weight: 600;
  50. color:#d4be49
  51. }
  52. .user_column_item_text {
  53. /* border: 1px solid black; */
  54. margin-top: 10rpx;
  55. font-size: 26rpx;
  56. color: rgb(85, 85, 85);
  57. }
  58. .bottom{
  59. display: flex;
  60. justify-content: space-between;
  61. padding: 20rpx 0;
  62. background-color: #ffffff;
  63. position: absolute;
  64. bottom: 10rpx;
  65. width: 100%;
  66. }
  67. .color_red{
  68. background:red !important
  69. }
  70. .btn {
  71. height: 64.5rpx;
  72. line-height: 64.5rpx;
  73. text-align: center;
  74. padding: 0 20rpx;
  75. margin: 0 20rpx;
  76. border-radius: 5rpx;
  77. font-size: 28rpx;
  78. color: #fff;
  79. background: #09afff;
  80. flex: 1;
  81. }
  82. .header{
  83. display: flex;
  84. justify-content: space-around;
  85. padding: 20rpx 0;
  86. border-bottom: 1rpx solid #bbb1b1
  87. }
  88. .header view{
  89. color:#504c4c;
  90. font-weight: 600;
  91. text-align: center;
  92. }
  93. .flex2{
  94. flex: 2;
  95. }
  96. .flex1{
  97. flex: 1;
  98. }
  99. .item{
  100. padding: 10px 0;
  101. border-bottom: 1rpx solid #e4dddd
  102. }
  103. .item .title{
  104. color: #333;
  105. font-size:32rpx ;
  106. }
  107. .item-book{
  108. display: flex;
  109. justify-content: space-around;
  110. line-height: 27px;
  111. height: 42rpx;
  112. }
  113. .item-book view{
  114. color: #333;
  115. text-align: center;
  116. }
  117. .color_red2{
  118. color: red !important;
  119. }
  120. .back{
  121. position: absolute;
  122. top: 0rpx;
  123. width: 100%;
  124. height: 100%;
  125. background-color: #999;
  126. z-index: 999;
  127. opacity: 0.8
  128. }
  129. .auth{
  130. position: absolute;
  131. top: 0rpx;
  132. width: 100%;
  133. height: 100%;
  134. z-index: 9999;
  135. display: flex;
  136. align-items: center;
  137. justify-content: center;
  138. }
  139. .auth .form{
  140. background-color: #fff;
  141. width:530rpx;
  142. padding: 40rpx 44rpx 74rpx;
  143. border-radius: 10rpx;
  144. }
  145. .auth .title{
  146. text-align: center;
  147. font-size: 34rpx;
  148. line-height: 34rpx;
  149. font-weight: bold;
  150. margin-bottom: 60rpx;
  151. color: #333;
  152. }
  153. .form-item {
  154. height: 84rpx;
  155. /* border-bottom: 1px solid #d9d9d9; */
  156. display:flex;
  157. align-items: center;
  158. }
  159. .form-item .label{
  160. width: 130rpx;
  161. font-size: 24rpx;
  162. color:#85868A
  163. }
  164. .form-item .username, .form-item .address {
  165. top: 26rpx;
  166. left: 0;
  167. display: block;
  168. width: 100%;
  169. height: 44rpx;
  170. background: #fff;
  171. color: #333;
  172. font-size: 30rpx;
  173. }
  174. .warning{
  175. color: #09afff;
  176. margin-top: 20rpx;
  177. font-size: 22rpx;
  178. line-height: 28rpx;
  179. }
  180. .footer{
  181. display: flex;
  182. padding: 20rpx;
  183. text-align: center;
  184. }
  185. .fbtn{
  186. width: 202rpx;
  187. height: 70rpx;
  188. line-height: 70rpx;
  189. text-align: center;
  190. border-radius: 70rpx;
  191. border: 1rpx solid #09afff;
  192. font-size: 24rpx;
  193. margin: 0 28rpx;
  194. color:#333
  195. }
  196. .btnConfirm{
  197. background-color: #09afff;
  198. color: #fff;
  199. }
  200. .dialog-wrapper {
  201. display: flex;
  202. align-items: flex-start;
  203. justify-content: center;
  204. height: 100%;
  205. padding-top:170rpx;
  206. }
  207. .dialog-block {
  208. width: 590rpx;
  209. height: 534rpx;
  210. border-radius:10rpx;
  211. background-color: #fff;
  212. position: relative;
  213. font-size: 24rpx;
  214. padding:100rpx 44rpx 0;
  215. }
  216. .close-icon{
  217. width:60rpx;
  218. height: 60rpx;
  219. position: absolute;
  220. top:-30rpx;
  221. right:-30rpx;
  222. }
  223. .tips-text{
  224. color:#85868A;
  225. font-size: 24rpx;
  226. text-align: justify;
  227. }
  228. .main-module.amount-module{
  229. border-radius:16rpx;
  230. background:#fff;
  231. height: 106rpx;
  232. margin:28rpx 0 0;
  233. padding:16rpx 0 14rpx;
  234. display: flex;
  235. justify-content: space-around;
  236. align-items: center;
  237. }
  238. .tip-wrapper{
  239. display: flex;
  240. align-items: center;
  241. }
  242. .tip-img{
  243. width:22rpx;
  244. height:22rpx;
  245. margin:0 0 0 8rpx;
  246. }
  247. .form-item>input{
  248. height: 50rpx;
  249. line-height: 50rpx;
  250. border: 1px solid #85868A;
  251. border-radius: 10rpx;
  252. width:370rpx;
  253. font-size: 24rpx;
  254. color:#2a2a2a;
  255. padding-left:20rpx;
  256. }
  257. .agree-terms{
  258. margin:54rpx 0 44rpx;
  259. height: 26rpx;
  260. display: flex;
  261. /* justify-content: center; */
  262. align-items: center;
  263. }
  264. .user-agree{
  265. color:#85868A;
  266. font-size: 22rpx;
  267. margin-left:8rpx;
  268. }
  269. .user-terms{
  270. color:#CC4226;
  271. font-size: 24rpx;
  272. }