user.wxss 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .container,
  12. page {
  13. min-height: 100%;
  14. height: auto;
  15. background-color: #f8f8f8;
  16. }
  17. .vheigh {
  18. height: 25px;
  19. background-color: #ff4e4a;
  20. }
  21. .top-image {
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. right: 0;
  26. height: 230rpx;
  27. }
  28. .top-image image {
  29. width: 100%;
  30. height: 100%;
  31. }
  32. .popup-box {
  33. width: 522rpx;
  34. height: 605rpx;
  35. background-color: #ffffff;
  36. border-radius: 20rpx;
  37. position: relative;
  38. }
  39. .popup-box .img {
  40. position: relative;
  41. top: -56rpx;
  42. left: 0;
  43. width: 522rpx;
  44. height: 132rpx;
  45. display: flex;
  46. justify-content: center;
  47. }
  48. .popup-box .img image {
  49. border-radius: 20rpx 20rpx 0 0;
  50. width: 450rpx;
  51. height: 132rpx;
  52. }
  53. .popup-box .mian {
  54. margin-top: -44rpx;
  55. display: flex;
  56. flex-direction: column;
  57. align-items: center;
  58. background-color: #ffffff;
  59. border-radius: 0 0 20rpx 20rpx;
  60. text-align: center;
  61. }
  62. .popup-box .mian .delivery {
  63. font-size: 40rpx;
  64. color: #333333;
  65. display: flex;
  66. align-items: center;
  67. flex-direction: column;
  68. }
  69. .popup-box .mian .delivery image {
  70. margin-top: 48rpx;
  71. width: 172rpx;
  72. height: 160rpx;
  73. }
  74. .popup-box .mian .nocancel {
  75. font-size: 32rpx;
  76. color: #333333;
  77. margin-top: 14rpx;
  78. }
  79. .popup-box .mian .comfirm-box {
  80. margin-top: 52rpx;
  81. display: flex;
  82. }
  83. .popup-box .mian .comfirm-box .cancel {
  84. display: flex;
  85. align-items: center;
  86. justify-content: center;
  87. width: 197rpx;
  88. height: 74rpx;
  89. border: 1px solid #dcc786;
  90. border-radius: 38rpx;
  91. font-size: 32rpx;
  92. color: #605128;
  93. }
  94. .popup-box .mian .comfirm-box .comfirm {
  95. margin-left: 32rpx;
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. width: 197rpx;
  100. height: 74rpx;
  101. background: linear-gradient(-90deg, #d1ba77 0%, #f7e8ad 100%);
  102. border-radius: 38px;
  103. font-size: 32rpx;
  104. color: #605128;
  105. }
  106. .user-box {
  107. position: relative;
  108. z-index: 2;
  109. width: 690rpx;
  110. margin: 0 auto;
  111. margin: -100rpx auto 0;
  112. background: #ffffff;
  113. box-shadow: 0px 4rpx 13rpx 0px rgba(229, 229, 229, 0.46);
  114. border-radius: 20rpx;
  115. display: flex;
  116. flex-direction: column;
  117. align-items: center;
  118. padding: 54rpx 0 30rpx;
  119. line-height: 1;
  120. }
  121. .user-box .avatar {
  122. border-radius: 50%;
  123. width: 132rpx;
  124. height: 132rpx;
  125. }
  126. .user-box .user-name {
  127. margin-top: 14rpx;
  128. font-size: 30rpx;
  129. font-family: PingFang SC;
  130. font-weight: bold;
  131. color: #333333;
  132. }
  133. .user-box .user-shop {
  134. border-radius: 16rpx;
  135. height: 32rpx;
  136. color: #ac915b;
  137. margin-top: 10rpx;
  138. width: 142rpx;
  139. height: 32rpx;
  140. position: relative;
  141. }
  142. .user-box .user-shop image {
  143. position: absolute;
  144. top: 0;
  145. left: 0;
  146. width: 142rpx;
  147. height: 32rpx;
  148. }
  149. .user-box .user-shop .user-shopname {
  150. position: absolute;
  151. height: 32rpx;
  152. text-align: right;
  153. top: 0;
  154. right: 20rpx;
  155. width: 80rpx;
  156. text-align: center;
  157. font-size: 20rpx;
  158. line-height: 32rpx;
  159. }
  160. .user-box .user-money {
  161. width: 100%;
  162. margin-top: 50rpx;
  163. justify-content: center;
  164. }
  165. .user-box .user-money .user-money-item {
  166. width: 50%;
  167. display: flex;
  168. flex-direction: column;
  169. justify-content: center;
  170. align-items: center;
  171. }
  172. .user-box .user-money .user-money-item .user-money-num {
  173. font-size: 36rpx;
  174. font-family: PingFang SC;
  175. font-weight: bold;
  176. color: #333333;
  177. }
  178. .user-box .user-money .user-money-item .user-money-font {
  179. margin-top: 20rpx;
  180. font-size: 22rpx;
  181. font-family: PingFang SC;
  182. font-weight: 500;
  183. color: #666666;
  184. }
  185. .user-box .user-money .user-xian {
  186. width: 1px;
  187. height: 77rpx;
  188. background: #eeeeee;
  189. }
  190. .main-box {
  191. margin: 20rpx auto 0;
  192. width: 710rpx;
  193. background: #ffffff;
  194. box-shadow: 0px 4rpx 14rpx 0px rgba(229, 229, 229, 0.46);
  195. border-radius: 20rpx;
  196. }
  197. .main-box .title {
  198. display: flex;
  199. justify-content: space-between;
  200. align-items: center;
  201. padding: 24rpx;
  202. border-bottom: 1px solid #eeeeee;
  203. }
  204. .main-box .title .title-left {
  205. display: flex;
  206. align-items: center;
  207. }
  208. .main-box .title .title-left .title-icon {
  209. width: 32rpx;
  210. height: 32rpx;
  211. }
  212. .main-box .title .title-left .title-font {
  213. margin-left: 20rpx;
  214. font-size: 28rpx;
  215. font-family: PingFang SC;
  216. font-weight: bold;
  217. color: #333333;
  218. }
  219. .main-box .title .title-right {
  220. width: 14rpx;
  221. height: 24rpx;
  222. }
  223. .main-box .main {
  224. padding: 50rpx 0 30rpx;
  225. }
  226. .main-box .main .jg {
  227. width: 1px;
  228. height: 100rpx;
  229. background: #eeeeee;
  230. }
  231. .main-box .main .item {
  232. padding-bottom: 20rpx;
  233. width: 25%;
  234. display: flex;
  235. flex-direction: column;
  236. align-items: center;
  237. }
  238. .main-box .main .item .item-num {
  239. font-size: 36rpx;
  240. font-family: PingFang SC;
  241. font-weight: bold;
  242. color: #333333;
  243. }
  244. .main-box .main .item .item-font {
  245. margin-top: 18rpx;
  246. font-size: 22rpx;
  247. font-family: PingFang SC;
  248. font-weight: 500;
  249. color: #666666;
  250. }
  251. .main-box .main .oitem {
  252. width: 33%;
  253. display: flex;
  254. flex-direction: column;
  255. align-items: center;
  256. }
  257. .main-box .main .oitem .oitem-image {
  258. height: 40rpx;
  259. width: 42rpx;
  260. }
  261. .main-box .main .oitem .oitem-font {
  262. margin-top: 20rpx;
  263. font-size: 24rpx;
  264. font-family: PingFang SC;
  265. font-weight: 500;
  266. color: #333333;
  267. }
  268. .tool-list {
  269. width: 690rpx;
  270. margin: 20rpx auto 0;
  271. background: #ffffff;
  272. box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
  273. border-radius: 20rpx;
  274. }
  275. .psw-wrapper {
  276. width: 548rpx;
  277. padding: 20rpx 0;
  278. background-color: #ffffff;
  279. border-radius: 15rpx 15rpx;
  280. }
  281. .psw-wrapper .psw-title {
  282. width: 100%;
  283. font-size: 35rpx;
  284. padding: 0 0 40rpx;
  285. text-align: center;
  286. font-weight: 800;
  287. }
  288. .psw-wrapper .psw-content {
  289. width: 100%;
  290. font-size: 32rpx;
  291. text-align: center;
  292. }
  293. .psw-wrapper .psw-price {
  294. font-weight: bold;
  295. font-size: 68rpx;
  296. text-align: center;
  297. padding-top: 10rpx;
  298. }
  299. .psw-wrapper .psw-jg {
  300. height: 1px;
  301. width: 500rpx;
  302. background-color: #eee;
  303. margin: auto;
  304. }
  305. .psw-wrapper .psw-paytype {
  306. justify-content: space-between;
  307. padding: 10rpx 25rpx 30rpx;
  308. font-size: 26rpx;
  309. }
  310. .psw-wrapper .psw-ipt {
  311. display: block;
  312. background-color: #dce3ed;
  313. height: 90rpx;
  314. width: 464rpx;
  315. padding-left: 30rpx;
  316. margin: 0 auto;
  317. font-size: 80rpx;
  318. }
  319. .psw-wrapper .psw-btn text {
  320. display: inline-block;
  321. text-align: center;
  322. width: 50%;
  323. padding-top: 29rpx;
  324. font-size: 35rpx;
  325. }
  326. .psw-wrapper .psw-qd {
  327. color: #ff4c4c;
  328. }
  329. .hx-wrapper {
  330. width: 536rpx;
  331. height: 630rpx;
  332. position: relative;
  333. }
  334. .hx-wrapper .hx-img {
  335. width: 536rpx;
  336. height: 281rpx;
  337. }
  338. .hx-wrapper .hx-img image {
  339. width: 536rpx;
  340. height: 281rpx;
  341. }
  342. .hx-wrapper .hx-close {
  343. position: absolute;
  344. left: 243rpx;
  345. bottom: -80rpx;
  346. width: 52rpx;
  347. height: 52rpx;
  348. }
  349. .hx-wrapper .hx-close image {
  350. width: 52rpx;
  351. height: 52rpx;
  352. }
  353. .hx-wrapper .hx-body {
  354. width: 536rpx;
  355. height: 349rpx;
  356. background-color: #fff;
  357. border-radius: 0 0 10rpx 10rpx;
  358. }
  359. .hx-wrapper .hx-body .hx-title {
  360. width: 536rpx;
  361. font-size: 36rpx;
  362. font-weight: 500;
  363. color: #333333;
  364. line-height: 1;
  365. padding-top: 42rpx;
  366. text-align: center;
  367. }
  368. .hx-wrapper .hx-body input {
  369. width: 439rpx;
  370. height: 68rpx;
  371. background: #dbf3e9;
  372. border-radius: 10rpx;
  373. margin: 39rpx auto 0;
  374. padding-left: 26rpx;
  375. }
  376. .hx-wrapper .hx-body input .hx-placeholder {
  377. font-size: 26rpx;
  378. font-weight: 500;
  379. color: #ff4c4c;
  380. }
  381. .hx-wrapper .hx-body .hx-btn {
  382. margin: 44rpx auto 0;
  383. width: 353rpx;
  384. height: 71rpx;
  385. background: #ff4c4c;
  386. border-radius: 34rpx;
  387. font-size: 36rpx;
  388. font-weight: 500;
  389. color: #f8f9f9;
  390. line-height: 71rpx;
  391. text-align: center;
  392. }
  393. .user-list {
  394. width: 691rpx;
  395. height: 104rpx;
  396. background: #FFFFFF;
  397. box-shadow: 0px 0px 20rpx 0px rgba(50, 50, 52, 0.06);
  398. border-radius: 28rpx;
  399. margin: 20rpx auto;
  400. padding: 0 25rpx;
  401. }
  402. .user-list .left-img {
  403. width: 40rpx;
  404. height: 40rpx;
  405. }
  406. .user-list view {
  407. padding-left: 20rpx;
  408. flex-grow: 1;
  409. font-size: 29rpx;
  410. font-weight: bold;
  411. color: #5D5D5D;
  412. }
  413. .user-list .right-img {
  414. width: 13rpx;
  415. height: 23rpx;
  416. }