Mine.wxss 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. .container {
  2. background-color: #F6F7F8;
  3. height: 100vh;
  4. }
  5. .userInfoBox {
  6. height: 280rpx;
  7. width: 100%;
  8. background-color: #3e6ffd;
  9. }
  10. .userHeader {
  11. padding: 30rpx 30rpx 40rpx;
  12. font-size: 0;
  13. }
  14. .userImg {
  15. display: inline-block;
  16. width: 100rpx;
  17. height: 100rpx;
  18. vertical-align: middle;
  19. margin-right: 20rpx;
  20. border-radius: 10rpx;
  21. }
  22. .userNameBox {
  23. display: inline-block;
  24. width: calc(100% - 120rpx);
  25. vertical-align: middle;
  26. position: relative;
  27. border-radius: 50rpx;
  28. }
  29. .userName {
  30. width: calc(100%);
  31. vertical-align: middle;
  32. font-size: 28rpx;
  33. color: #fff;
  34. }
  35. .loginBtn {
  36. width: 230rpx;
  37. text-align: center;
  38. background-color: #07c160;
  39. color: #fff;
  40. font-size: 24rpx;
  41. border-radius: 50rpx;
  42. height: 50rpx;
  43. line-height: 50rpx;
  44. margin-left: 0;
  45. margin-top: 20rpx;
  46. }
  47. .userNumBox {
  48. display: flex;
  49. justify-content: space-around;
  50. }
  51. .userNumItem {
  52. text-align: center;
  53. }
  54. .userNum {
  55. display: block;
  56. font-size: 28rpx;
  57. color: #fff;
  58. margin-bottom: 20rpx;
  59. }
  60. .userNumTitle {
  61. display: block;
  62. font-size: 24rpx;
  63. color: #fff;
  64. }
  65. .userOrderBox {
  66. margin: 30rpx 20rpx;
  67. background-color: #fff;
  68. box-shadow: 0rpx 5rpx 10rpx 0rpx #0587e21c;
  69. border-radius: 20rpx;
  70. }
  71. .orderTitle {
  72. padding: 40rpx 20rpx 30rpx;
  73. border-bottom: 2rpx #f2f2f2 solid;
  74. }
  75. .orderTitleText {
  76. display: inline-block;
  77. vertical-align: middle;
  78. width: calc(100% - 160rpx);
  79. color: #333333;
  80. font-size: 30rpx;
  81. font-weight: 600;
  82. overflow: hidden;
  83. white-space: nowrap;
  84. text-overflow: ellipsis;
  85. }
  86. .orderTitleMore {
  87. display: inline-block;
  88. vertical-align: middle;
  89. width: 160rpx;
  90. color: #999999;
  91. font-size: 22rpx;
  92. text-align: right;
  93. }
  94. .orderContent {
  95. display: flex;
  96. justify-content: space-around;
  97. padding: 30rpx 0;
  98. }
  99. .orderContentItem {
  100. text-align: center;
  101. }
  102. .orderContentItemNum {
  103. display: block;
  104. font-size: 32rpx;
  105. font-weight: bold;
  106. color: #000;
  107. margin-bottom: 30rpx;
  108. }
  109. .orderContentItemTitle {
  110. display: block;
  111. font-size: 24rpx;
  112. color: #333;
  113. }
  114. .moreServiceBox {
  115. margin: 30rpx 20rpx;
  116. background-color: #fff;
  117. box-shadow: 0rpx 5rpx 10rpx 0rpx #0587e21c;
  118. border-radius: 20rpx;
  119. }
  120. .moreServiceTitle {
  121. padding: 40rpx 20rpx 20rpx;
  122. vertical-align: middle;
  123. color: #333333;
  124. font-size: 30rpx;
  125. font-weight: 600;
  126. }
  127. .moreServiceContent {
  128. padding: 0 20rpx 20rpx;
  129. }
  130. .serviceContentItem {
  131. padding: 20rpx 0;
  132. }
  133. .serviceContentItem + .serviceContentItem {
  134. border-top: 2rpx #f2f2f2 solid;
  135. }
  136. .serviceContentItemImg {
  137. display: inline-block;
  138. width: 60rpx;
  139. height: 60rpx;
  140. vertical-align: middle;
  141. margin-right: 20rpx;
  142. }
  143. .serviceContentItemTitle {
  144. display: inline-block;
  145. vertical-align: middle;
  146. width: calc(100% - 110rpx);
  147. color: #333;
  148. font-size: 28rpx;
  149. }
  150. .serviceContentItemIcon {
  151. display: inline-block;
  152. width: 30rpx;
  153. height: 30rpx;
  154. vertical-align: middle;
  155. text-align: right;
  156. }
  157. /* 自定提示弹窗 */
  158. .popMask {
  159. position: fixed;
  160. left: 0;
  161. top: 0;
  162. right: 0;
  163. bottom: 0;
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. background-color: rgba(0, 0, 0, 0.2);
  168. line-height: 1 !important;
  169. z-index: 99;
  170. }
  171. .popContent {
  172. width: 80%;
  173. line-height: 1 !important;
  174. }
  175. .popTips {
  176. width: 100%;
  177. font-size: 36rpx;
  178. color: #333;
  179. font-weight: bold;
  180. text-align: center;
  181. padding: 30rpx 0;
  182. line-height: 1 !important;
  183. background-color: #fff;
  184. border-radius: 30rpx 30rpx 0 0;
  185. }
  186. .popImg {
  187. width: 100%;
  188. height: 600rpx;
  189. border-radius: 0 0 30rpx 30rpx;
  190. }
  191. .popClose {
  192. margin-top: 30rpx;
  193. width: 80rpx;
  194. height: 80rpx;
  195. margin-left: calc(50% - 40rpx);
  196. }
  197. .popBody {
  198. width: calc(100% - 40rpx);
  199. padding: 20rpx 20rpx 30rpx;
  200. font-size: 32rpx;
  201. color: #333;
  202. line-height: 1.5 !important;
  203. background-color: #fff;
  204. }
  205. .fway-form-input {
  206. display: block;
  207. height: 66rpx;
  208. line-height: 66rpx;
  209. width: calc(100% - 20rpx);
  210. text-align: center;
  211. padding: 0 10rpx;
  212. font-size: 28rpx;
  213. background-color: #f7f7f7;
  214. white-space: nowrap;
  215. overflow-y: hidden;
  216. border-radius: 10rpx;
  217. }
  218. .bindedTips {
  219. width: calc(100%);
  220. line-height: 40rpx;
  221. font-size: 28rpx;
  222. text-align: center;
  223. }
  224. .errorTips {
  225. width: calc(100%);
  226. line-height: 40rpx;
  227. padding: 10rpx 0 0;
  228. font-size: 24rpx;
  229. color: #d9001bfe;
  230. }
  231. .popBtnBox {
  232. width: 100%;
  233. display: flex;
  234. justify-content: space-between;
  235. padding: 10rpx 0;
  236. background-color: #fff;
  237. border-top: 2rpx #ebebeb solid;
  238. border-radius: 0 0 30rpx 30rpx;
  239. }
  240. .popBtn {
  241. width: 50%;
  242. padding: 20rpx 0;
  243. text-align: center;
  244. font-size: 30rpx;
  245. letter-spacing: 2rpx;
  246. line-height: 1 !important;
  247. }
  248. .popBtn + .popBtn {
  249. border-left: 2rpx #ebebeb solid;
  250. }
  251. .loginPopBtn {
  252. width: 90%;
  253. text-align: center;
  254. background-color: #07c160;
  255. color: #fff;
  256. font-size: 28rpx;
  257. border-radius: 50rpx;
  258. line-height: 2.5;
  259. margin-left: 5%;
  260. margin-bottom: 30rpx;
  261. }