index.wxss 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. page{
  2. height: 100%;
  3. width: 100%;
  4. background: #F7F7F7;
  5. }
  6. .container{
  7. height: auto;
  8. overflow: hidden;
  9. width: 100%;
  10. }
  11. .userinfo {
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. padding: 120rpx 60rpx 20rpx 40rpx;
  16. height: 268rpx;
  17. width: 100%;
  18. position: relative;
  19. z-index: 1;
  20. }
  21. .user-bg {
  22. position: absolute;
  23. left: 0;
  24. top: 0;
  25. width: 100%;
  26. height: 620rpx;
  27. z-index: 0;
  28. }
  29. .userinfo-setting {
  30. z-index: 1;
  31. }
  32. .u-avatar{
  33. position: absolute;
  34. top: 0;
  35. margin-top: -75rpx;
  36. left: 50%;
  37. transform: translateX(-50%);
  38. z-index: 99;
  39. text-align: center;
  40. }
  41. .userinfo-avatar {
  42. width: 150rpx;
  43. height: 150rpx;
  44. margin: 0 auto;
  45. border: 1px solid #EEEEEE;
  46. border-radius: 50%;
  47. margin-bottom: 20rpx;
  48. display: block;
  49. background: rgb(180, 180, 180);
  50. }
  51. .userinfo-nickname {
  52. font-size: 16px;
  53. font-weight: 500;
  54. color: #333333;
  55. }
  56. .userinfo-setting image{
  57. width: 60rpx;
  58. height: 60rpx;
  59. }
  60. .btn-cls{
  61. opacity: 0;
  62. position: absolute;
  63. width: 50px;
  64. height: 50px;
  65. margin: 0;
  66. border-radius:4px;
  67. padding: 0;
  68. top: 0;
  69. left: 0;
  70. z-index: 999;
  71. }
  72. .profile-info{
  73. width: 100%;
  74. height: 280rpx;
  75. display: flex;
  76. flex-wrap: wrap;
  77. align-items: center;
  78. justify-content: flex-start;
  79. padding: 0 30.25rpx;
  80. background: #333;
  81. }
  82. .profile-info .avatar{
  83. height: 148rpx;
  84. width: 148rpx;
  85. border-radius: 50%;
  86. }
  87. .profile-info .info{
  88. flex: 1;
  89. height: 85rpx;
  90. padding-left: 31.25rpx;
  91. }
  92. .profile-info .name{
  93. display: block;
  94. height: 45rpx;
  95. line-height: 45rpx;
  96. color: #fff;
  97. font-size: 37.5rpx;
  98. margin-bottom: 10rpx;
  99. }
  100. .profile-info .level{
  101. display: block;
  102. height: 30rpx;
  103. line-height: 30rpx;
  104. margin-bottom: 10rpx;
  105. color: #7f7f7f;
  106. font-size: 30rpx;
  107. }
  108. .service {
  109. position: static;
  110. background-color: transparent;
  111. color: transparent;
  112. margin: 0;
  113. padding: 0;
  114. border: none;
  115. text-align: left;
  116. line-height: normal;
  117. display: inline;
  118. }
  119. .company {
  120. font-size:20rpx;
  121. text-align:center;
  122. margin-top:50px;
  123. }
  124. .kefutest{
  125. width: 100rpx;
  126. background: red;
  127. height: 50rpx;
  128. position: absolute;
  129. bottom: 0;
  130. }
  131. .kefutest2{
  132. width: 100rpx;
  133. background: red;
  134. height: 50rpx;
  135. position: absolute;
  136. bottom: 80rpx;
  137. }
  138. .order-list {
  139. margin: -50rpx 30rpx 0;
  140. border-radius: 12px;
  141. height: 90px;
  142. overflow: hidden;
  143. background: #fff;
  144. position: relative;
  145. z-index: 9;
  146. margin-bottom: 20rpx;
  147. }
  148. .order-container {
  149. transition: transform .3s ease-in-out;
  150. }
  151. .order-list .info{
  152. height: 90px;
  153. position: relative;
  154. padding: 15px;
  155. display: flex;
  156. justify-content: space-between;
  157. align-items: center;
  158. font-size: 24rpx;
  159. }
  160. .order-item-info {
  161. display: flex;
  162. align-items: center;
  163. width: calc(100% - 50px);
  164. }
  165. .page-title {
  166. position: fixed;
  167. z-index: 99999;
  168. box-sizing: content-box;
  169. left: 40rpx;
  170. }
  171. .page-title navigator {
  172. display: inline-block;
  173. border: 1px solid rgba(151, 151, 151, 0.2);
  174. background: rgba(255, 255, 255, 0.6);
  175. height: 32px;
  176. text-align: center;
  177. font-size: 12px;
  178. line-height: 32px;
  179. width: 45px;
  180. }
  181. .page-title navigator image {
  182. width: 17px;
  183. height: 17px;
  184. display: inline-block;
  185. margin-top: 8px;
  186. }
  187. .page-title navigator:nth-child(1) {
  188. border-radius: 16px 0 0 16px;
  189. border-right: none;
  190. position: relative;
  191. }
  192. .page-title navigator:nth-child(1)::after {
  193. content: '';
  194. position: absolute;
  195. width: 1px;
  196. height: 19px;
  197. background: rgba(0, 0, 0, 0.2);
  198. top: 50%;
  199. right: 0;
  200. transform: translateY(-50%);
  201. }
  202. .page-title navigator:nth-child(2) {
  203. border-radius: 0 16px 16px 0;
  204. border-left: none;
  205. }
  206. .order-item-info image {
  207. flex: 0 0 auto;
  208. width: 60px;
  209. height: 60px;
  210. margin-right: 10px;
  211. }
  212. .info-text {
  213. flex: 0 0 auto;
  214. width: calc(100% - 70px);
  215. }
  216. .info-text > text {
  217. display: block;
  218. }
  219. .success {
  220. font-size: 12px;
  221. color: #0ED171;
  222. font-weight: 500;
  223. width: 50px;
  224. }
  225. .order-item-info .title {
  226. font-size: 34rpx;
  227. font-weight: 500;
  228. color: #333333;
  229. overflow:hidden;
  230. text-overflow:ellipsis;
  231. white-space:nowrap;
  232. margin-bottom: 10px;
  233. }
  234. .aaa text{
  235. font-size: 14px;
  236. font-family: PingFangSC-Regular, PingFang SC;
  237. font-weight: 400;
  238. color: #666666;
  239. line-height: 20px;
  240. }
  241. .aaa text:nth-child(1) {
  242. margin-right: 40rpx;
  243. }
  244. .i-line{
  245. width: 2rpx;
  246. height: 100rpx;
  247. background: #f4f4f4;
  248. }
  249. .order-list .or-a{
  250. flex: 5
  251. }
  252. .order-list .navigator,.order-list button{
  253. text-align: center;
  254. background: none;
  255. opacity: 1;
  256. font-size: 0;
  257. padding: 0;
  258. flex: 4;
  259. }
  260. .order-list .icon-item {
  261. position: relative;
  262. display: inline-block;
  263. }
  264. .order-list .navigator .count {
  265. position: absolute;
  266. right: 8rpx;
  267. top: 8rpx;
  268. width: 28rpx;
  269. height: 28rpx;
  270. text-align: center;
  271. line-height: 28rpx;
  272. background: #ED5D18;
  273. color: #fff;
  274. font-size: 18rpx;
  275. border-radius: 50%;
  276. transform: translate(50%, -50%);
  277. }
  278. .aaaaa {
  279. position: relative;
  280. z-index: 1;
  281. background: #F5F5F5;
  282. border-radius: 10px 10px 0px 0px;
  283. padding: 180rpx 30rpx;
  284. }
  285. .order-list-v {
  286. background: #FFFFFF;
  287. box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
  288. border-radius: 10px;
  289. }
  290. .order-list-v view:not(:last-child) {
  291. border-bottom: 1px solid #ECECEC;
  292. }
  293. .order-list-v .title {
  294. padding: 24rpx;
  295. font-size: 16px;
  296. font-weight: 500;
  297. color: #333333;
  298. line-height: 22px;
  299. }
  300. .order-list-v .desc {
  301. margin-left: 32rpx;
  302. font-size: 14px;
  303. font-weight: 400;
  304. color: #323233;
  305. line-height: 20px;
  306. padding: 20rpx 0;
  307. }
  308. .order-list-v .desc text {
  309. color: #646566;
  310. margin-right: 40rpx;
  311. }
  312. .logout {
  313. height: 40px;
  314. background: #FFFFFF;
  315. border-radius: 6px;
  316. border: 1px solid #FA5555;
  317. font-size: 14px;
  318. font-weight: 500;
  319. color: #FA5555;
  320. line-height: 40px;
  321. text-align: center;
  322. position: absolute;
  323. bottom: 140rpx;
  324. left: 60rpx;
  325. right: 60rpx;
  326. }