user.wxss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. .list-cell {
  12. margin-top: 60rpx;
  13. }
  14. .list-cell .cell-tit {
  15. display: -webkit-box;
  16. display: -webkit-flex;
  17. display: flex;
  18. -webkit-box-align: center;
  19. -webkit-align-items: center;
  20. align-items: center;
  21. -webkit-box-pack: center;
  22. -webkit-justify-content: center;
  23. justify-content: center;
  24. text-align: center;
  25. width: 560rpx;
  26. height: 80rpx;
  27. color: #fff;
  28. background: #6786FB;
  29. border-radius: 40rpx;
  30. font-size: 30rpx;
  31. margin: 0 auto;
  32. }
  33. page {
  34. height: 100%;
  35. }
  36. .container {
  37. background-color: #f8f8f8;
  38. height: 1650rpx;
  39. }
  40. .user-section {
  41. padding: 60rpx 30rpx 0;
  42. padding-bottom: 90rpx;
  43. position: relative;
  44. background: -webkit-linear-gradient(38deg, #7e99fe, #978ffa);
  45. background: linear-gradient(52deg, #7e99fe, #978ffa);
  46. }
  47. .user-section .arc {
  48. position: absolute;
  49. left: 0;
  50. bottom: 0;
  51. width: 100%;
  52. height: 36rpx;
  53. }
  54. .user-info-box {
  55. font-size: 32rpx;
  56. color: #ffffff;
  57. height: 200rpx;
  58. z-index: 3;
  59. }
  60. .user-info-box .portrait {
  61. width: 135rpx;
  62. height: 135rpx;
  63. }
  64. .user-info-box .portrait image {
  65. width: 100%;
  66. height: 100%;
  67. border-radius: 100%;
  68. }
  69. .user-info-box .info {
  70. padding: 0rpx 25rpx;
  71. width: 75%;
  72. }
  73. .user-info-box .info .name-box {
  74. width: 100%;
  75. padding-bottom: 15rpx;
  76. }
  77. .user-info-box .info .name-box .name {
  78. font-size: 32rpx;
  79. max-width: 60%;
  80. }
  81. .user-info-box .info .name-box .name-text {
  82. margin-left: 25rpx;
  83. font-size: 22rpx !important;
  84. border: 2rpx solid #ffffff;
  85. padding: 2rpx 25rpx;
  86. border-radius: 25rpx;
  87. }
  88. .user-info-box .info .name-box .left {
  89. margin-left: 0 !important;
  90. }
  91. .user-info-box .icon image {
  92. width: 48rpx;
  93. height: 49rpx;
  94. }
  95. .myinfo {
  96. z-index: 999;
  97. position: absolute;
  98. right: 0;
  99. top: 25%;
  100. background-color: #ffffff;
  101. color: #6786fb;
  102. font-size: 24rpx;
  103. padding: 14rpx 29rpx;
  104. border-top-left-radius: 50rpx;
  105. border-bottom-left-radius: 50rpx;
  106. }
  107. .cover-container {
  108. margin-top: -100rpx;
  109. position: relative;
  110. padding-bottom: 20rpx;
  111. }
  112. .cover-container .info-box {
  113. z-index: 999;
  114. margin: 0 auto;
  115. width: 91%;
  116. color: #697079;
  117. left: 35rpx;
  118. border-radius: 25rpx;
  119. background-color: #ffffff;
  120. text-align: center;
  121. font-size: 24rpx;
  122. padding: 25rpx 0rpx;
  123. }
  124. .cover-container .info-box .info {
  125. width: 100%;
  126. height: 100rpx;
  127. text-align: center;
  128. }
  129. .cover-container .info-box .info image {
  130. width: 100rpx;
  131. height: 100%;
  132. }
  133. .cover-container .info-box .text {
  134. padding-top: 15rpx;
  135. }
  136. .bottom {
  137. padding-bottom: 100rpx !important;
  138. }
  139. .item-box {
  140. width: 100%;
  141. background-color: #ffffff;
  142. padding: 15rpx 25rpx;
  143. padding-bottom: 0;
  144. margin-top: 30rpx;
  145. }
  146. .item-box .item-list {
  147. width: 100%;
  148. padding: 10rpx 0rpx;
  149. }
  150. .item-box .item-list .list-icon image {
  151. width: 77rpx;
  152. height: 77rpx;
  153. margin-right: 35rpx;
  154. }
  155. .item-box .item-list .list-icon .text {
  156. color: #323232;
  157. font-size: 28rpx;
  158. font-weight: bold;
  159. }
  160. .item-box .fen {
  161. width: 100%;
  162. height: 2rpx;
  163. background-color: #ececec;
  164. margin: 10rpx 0rpx;
  165. }
  166. .icon-box {
  167. margin-bottom: 32rpx;
  168. }
  169. .left-icon {
  170. width: 12rpx;
  171. height: 42rpx;
  172. background: #6786FB;
  173. border-radius: 6rpx;
  174. }
  175. .left-box {
  176. width: 100%;
  177. }
  178. .left-tit {
  179. font-size: 30rpx;
  180. font-weight: bold;
  181. color: #333333;
  182. line-height: 42rpx;
  183. margin-left: 14rpx;
  184. }
  185. .more {
  186. font-size: 24rpx;
  187. color: #666666;
  188. }
  189. .left-txt {
  190. font-size: 28rpx;
  191. font-weight: 500;
  192. color: #666666;
  193. line-height: 52rpx;
  194. }
  195. .ask-list {
  196. margin-bottom: 25rpx;
  197. }
  198. .ask-list .ask-img {
  199. width: 92rpx;
  200. height: 92rpx;
  201. border-radius: 50%;
  202. }
  203. .ask-list .ask-txt {
  204. font-size: 28rpx;
  205. font-weight: 500;
  206. width: 80%;
  207. padding-left: 15rpx;
  208. color: #666666;
  209. line-height: 48rpx;
  210. }
  211. /*公用边框样式*/