member.wxss 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. page {
  2. background: #F9F9F9;
  3. /* overflow: hidden; */
  4. /* background: #fff; */
  5. }
  6. /* .user-info {
  7. height: 290rpx;
  8. position: relative;
  9. } */
  10. .user-info {
  11. width: 100%;
  12. height: 400rpx;
  13. padding: 28rpx 30rpx 0 30rpx;
  14. box-sizing: border-box;
  15. overflow: hidden;
  16. position: relative;
  17. /* position: relative;
  18. z-index: -1;
  19. overflow: hidden; */
  20. }
  21. .user-info::after {
  22. content: '';
  23. width: 140%;
  24. height: 400rpx;
  25. position: absolute;
  26. left: -20%;
  27. top: 0;
  28. z-index: -1;
  29. border-radius: 0 0 50% 50%;
  30. background: #FA7D22;
  31. overflow: hidden;
  32. }
  33. .user-info .bg {
  34. width: 100%;
  35. height: 100%;
  36. }
  37. /* .user-info-box {
  38. position: absolute;
  39. width: 100%;
  40. height: 100%;
  41. top: 0;
  42. } */
  43. .user-info-box .avatar {
  44. width: 120rpx;
  45. height: 120rpx;
  46. /* margin-bottom: 20rpx; */
  47. border-radius: 50%;
  48. box-sizing: border-box;
  49. }
  50. .user-info-box{
  51. position: relative;
  52. }
  53. .user-info-box .avatarHead{
  54. width: 100rpx;
  55. height: 34rpx;
  56. position: absolute;
  57. bottom: -1rpx;
  58. left: 11rpx;
  59. }
  60. .user-info-box.active .avatar {
  61. border: 2rpx solid #FF3803;
  62. }
  63. .user-info-box .info-right {
  64. margin-left: 20rpx;
  65. }
  66. .user-info-box .edit{
  67. width: 30rpx;
  68. height: 30rpx;
  69. margin-left: 14rpx;
  70. }
  71. .user-info-box.active .nick-name {
  72. font-family: PingFangSC-Medium, PingFang SC;
  73. color: #FF3803;
  74. }
  75. .user-info-box .intro {
  76. margin: 4rpx 0;
  77. }
  78. .user-info-box .gender {
  79. width: 44rpx;
  80. height: 28rpx;
  81. background: #FFFFFF;
  82. border-radius: 14rpx;
  83. }
  84. .user-info-box .gender image {
  85. width: 28rpx;
  86. height: 28rpx;
  87. }
  88. .user-info-box .city {
  89. height: 28rpx;
  90. padding: 0rpx 10rpx;
  91. background: #FFFFFF;
  92. border-radius: 14rpx;
  93. font-size: 16rpx;
  94. font-family: PingFangSC-Regular, PingFang SC;
  95. font-weight: 400;
  96. color: #666666;
  97. }
  98. .user-info-box .vip-time {
  99. background: linear-gradient(298deg, #FFB16E 0%, #FF7F7F 100%);
  100. border-radius: 20rpx;
  101. height: 40rpx;
  102. padding: 0 8rpx;
  103. }
  104. .user-info-box .vip-time image {
  105. width: 48rpx;
  106. height: 28rpx;
  107. }
  108. .user-info-box .vip-time text {
  109. font-size: 28rpx;
  110. font-family: PingFangSC-Medium, PingFang SC;
  111. font-weight: 500;
  112. color: #FFFFFF;
  113. }
  114. .user-info-box .QR{
  115. flex: 1;
  116. text-align: right;
  117. }
  118. .user-info-box .QR image{
  119. width: 48rpx;
  120. height: 48rpx;
  121. }
  122. .order {
  123. height: 172rpx;
  124. display: flex;
  125. justify-content: space-around;
  126. align-items: center;
  127. background: #fff;
  128. }
  129. .order .item {
  130. display: flex;
  131. flex-direction: column;
  132. align-items: center;
  133. position: relative;
  134. }
  135. .order .item image {
  136. width: 56rpx;
  137. height: 56rpx;
  138. margin-bottom: 10rpx;
  139. }
  140. .order .item text {
  141. font-size: 24rpx;
  142. color: #666666;
  143. font-family: PingFangSC-Regular;
  144. }
  145. .order .item .item-num {
  146. position: absolute;
  147. top: -14rpx;
  148. right: -14rpx;
  149. height: 28rpx;
  150. width: 28rpx;
  151. padding: 4rpx;
  152. /* padding: 4rpx; */
  153. background: #FA7D22;
  154. border-radius: 50%;
  155. font-size: 22rpx;
  156. font-family: PingFangSC-Regular, PingFang SC;
  157. font-weight: 400;
  158. color: #FFFFFF;
  159. }
  160. .tools{
  161. margin-top: -80rpx;
  162. }
  163. .tools .item {
  164. display: flex;
  165. align-items: center;
  166. padding: 0 30rpx;
  167. /* height: 112rpx; */
  168. height: 132rpx;
  169. background: #fff;
  170. }
  171. .tools .item.top {
  172. margin-top: 20rpx;
  173. }
  174. .tools .item.line {
  175. /* border-bottom: 1rpx solid #F9F9F9; */
  176. }
  177. .tools .item .active {
  178. font-size: 14px;
  179. color: #FA7D22;
  180. }
  181. .tools .item .icon-left {
  182. width: 48rpx;
  183. height: 48rpx;
  184. margin-right: 20rpx;
  185. }
  186. .tools .item .icon-right {
  187. width: 24rpx;
  188. height: 24rpx;
  189. margin-left: 12rpx;
  190. }
  191. .item-radius {
  192. background: #FFFFFF;
  193. border-radius: 16rpx;
  194. margin: 0 30rpx 20rpx 30rpx;
  195. overflow: hidden;
  196. }
  197. .listker-top-add {
  198. margin-top: -20rpx;
  199. width: 100vw;
  200. height: 200rpx;
  201. display: flex;
  202. align-items: center;
  203. }
  204. .wallet {
  205. min-width: 150rpx;
  206. margin-left: 50rpx;
  207. display: flex;
  208. flex-direction: column;
  209. align-items: center;
  210. justify-content: center;
  211. }
  212. .desc {
  213. font-size: 48rpx;
  214. font-weight: bold;
  215. color: #FFFFFF;
  216. }
  217. .desc text {
  218. font-size: 20rpx;
  219. font-weight: 500;
  220. color: #FFFFFF;
  221. }
  222. .title {
  223. font-size: 20rpx;
  224. font-weight: 400;
  225. color: #FFFFFF;
  226. }
  227. .tool {
  228. min-width: 150rpx;
  229. margin-left: 50rpx;
  230. flex-direction: column;
  231. display: flex;
  232. align-items: center;
  233. justify-content: center;
  234. }
  235. .listker-line {
  236. width: 2rpx;
  237. height: 38rpx;
  238. background: #FFFFFF;
  239. margin-right: 92rpx;
  240. margin-left: 50rpx;
  241. }
  242. .listker-img {
  243. width: 64rpx;
  244. height: 64rpx;
  245. }
  246. .card {
  247. flex-direction: column;
  248. display: flex;
  249. align-items: center;
  250. justify-content: center;
  251. }
  252. /* wxss */
  253. .noshadow {
  254. hover-class: none;
  255. }
  256. .cardBag{
  257. display: flex;
  258. flex-direction: column;
  259. justify-content: center;
  260. align-items: center;
  261. }
  262. /* 我的二维码弹窗 */
  263. .use-popup {
  264. width: 640rpx;
  265. background: #FFFFFF;
  266. border-radius: 40rpx;
  267. padding: 60rpx 48rpx;
  268. box-sizing: border-box;
  269. position: relative;
  270. height: 600rpx;
  271. }
  272. .use-popup .close-img {
  273. width: 56rpx;
  274. height: 56rpx;
  275. position: absolute;
  276. top: 16rpx;
  277. right: 16rpx;
  278. }
  279. .use-popup .text-cotent {
  280. text-align: center;
  281. display: flex;
  282. justify-content: center;
  283. margin-top: 30rpx;
  284. }
  285. .qrcode {
  286. width: 400rpx;
  287. height: 400rpx;
  288. }
  289. .skin-popup .wux-landscape__inner {
  290. padding: 0 !important;
  291. }
  292. .skin-popup .popup-index--wux-popup {
  293. width: 650rpx !important;
  294. max-width: 650rpx !important;
  295. }