myworks.wxss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /* pages/user/myworks/myworks.wxss */
  2. page{
  3. width: 100%;
  4. background: #F0F1F5;
  5. }
  6. .user-works{
  7. width: 750rpx;
  8. box-sizing: border-box;
  9. padding: 0 15rpx;
  10. background: #F0F1F5;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: space-between;
  15. }
  16. .follow-details{
  17. width: 100%;
  18. height: 382rpx;
  19. border-radius: 20rpx;
  20. background: #FFFFFF;
  21. margin-top: 30rpx;
  22. display: flex;
  23. position: relative;
  24. }
  25. .follow-info{
  26. width: 100%;
  27. display: flex;
  28. }
  29. .avatar-bg{
  30. margin-left: 20rpx;
  31. margin-top: 50rpx;
  32. width: 152rpx;
  33. height: 152rpx;
  34. background: #61CA54;
  35. border-radius: 50%;
  36. position: relative;
  37. }
  38. .avatar-box{
  39. width: 138rpx;
  40. height: 138rpx;
  41. border-radius: 50%;
  42. z-index: 300;
  43. /* position: absolute;
  44. top: 7rpx;
  45. left: 7rpx; */
  46. margin: 8rpx auto;
  47. }
  48. .avatar-image{
  49. width: 100%;
  50. height: 100%;
  51. border-radius: 50%;
  52. }
  53. .avatar-nickname{
  54. width: 500rpx;
  55. display: flex;
  56. }
  57. .avatar-address{
  58. width: 500rpx;
  59. }
  60. .flowers-box{
  61. width: 26rpx;
  62. height: 26rpx;
  63. margin-left: 10rpx;
  64. }
  65. .flowers-box>image{
  66. width: 100%;
  67. height: 100%;
  68. }
  69. .occupation-title{
  70. position: absolute;
  71. left: 100rpx;
  72. top: 46rpx;
  73. width: 68rpx;
  74. height: 26rpx;
  75. background: #61CA54;
  76. border-radius: 180rpx;
  77. z-index: 600;
  78. /* line-height: 26rpx; */
  79. text-align: center;
  80. color: #FFFFFF;
  81. font-size: 18rpx;
  82. }
  83. .avatar-msg{
  84. margin-left: 40rpx;
  85. margin-top: 50rpx;
  86. width: 500rpx;
  87. height: 150rpx;
  88. color: #444444;
  89. font-size: 32rpx;
  90. }
  91. .gender-size{
  92. margin-left: 10rpx;
  93. font-size: 28rpx;
  94. align-self: center;
  95. }
  96. .set-msg{
  97. width: 100%;
  98. height: 248rpx;
  99. display: flex;
  100. align-items: flex-start;
  101. justify-content: center;
  102. }
  103. .avatar-nickname,.avatar-birthday,.avatar-address{
  104. line-height: 50rpx;
  105. color: #444;
  106. font-size: 32rpx;
  107. }
  108. .mine-category{
  109. box-sizing: border-box;
  110. width: 674rpx;
  111. padding-top: 40rpx;
  112. padding-bottom: 32rpx;
  113. border-top: 4rpx solid #F0F1F5;
  114. font-size: 28rpx;
  115. font-weight: 600;
  116. z-index: 900;
  117. display: flex;
  118. position: absolute;
  119. top: 246rpx;
  120. left: 23rpx;
  121. }
  122. .border-right{
  123. display: flex;
  124. justify-content: center;
  125. align-items: center;
  126. font-size: 24rpx;
  127. font-weight: lighter;
  128. height: 26rpx;
  129. border-right: 2rpx solid #D6D6D6;
  130. }
  131. .flower-count .border-right{
  132. border: none;
  133. }
  134. .play-count,.point-count,.follow-count,.flower-count{
  135. width: 25%;
  136. text-align: center;
  137. }
  138. .play-img{
  139. margin-right: 6rpx;
  140. width: 28rpx;
  141. height: 26rpx;
  142. }
  143. .follow-img{
  144. margin-right: 6rpx;
  145. width: 26rpx;
  146. height: 22rpx;
  147. }
  148. .like-img{
  149. margin-top: 4rpx;
  150. margin-right: 6rpx;
  151. width: 28rpx;
  152. height: 24rpx;
  153. }
  154. .flower-img{
  155. margin-right: 6rpx;
  156. width: 30rpx;
  157. height: 26rpx;
  158. }
  159. image{
  160. width: 100%;
  161. height: 100%;
  162. }
  163. .play-count{
  164. color: #92D626;
  165. }
  166. .point-count{
  167. color: #FFA700;
  168. }
  169. .follow-count{
  170. color: #529BEF;
  171. }
  172. .flower-count{
  173. color: #EE5750;
  174. }
  175. .works-article{
  176. margin-top: 12rpx;
  177. box-sizing: border-box;
  178. width: 100%;
  179. padding: 0 27rpx;
  180. background: #FFFFFF;
  181. border-radius: 12rpx;
  182. }
  183. .user-info{
  184. width: 100%;
  185. height: 120rpx;
  186. display: flex;
  187. align-items: center;
  188. font-size:32rpx;
  189. }
  190. .user-img{
  191. width: 96rpx;
  192. height: 96rpx;
  193. border-radius: 50%;
  194. margin-right:20rpx;
  195. }
  196. .user-img>image{
  197. width: 100%;
  198. height: 100%;
  199. border-radius: 50%;
  200. }
  201. .user-details{
  202. /* margin-left: 26rpx; */
  203. display: flex;
  204. flex-direction: column;
  205. }
  206. .user-name{
  207. width: 560rpx;
  208. display: flex;
  209. justify-content: space-between;
  210. align-items: flex-end;
  211. color: #444;
  212. font-weight: 500;
  213. }
  214. .left-detail{
  215. width: 500rpx;
  216. font-size: 32rpx;
  217. }
  218. .right-detail{
  219. width: 90rpx;
  220. display: flex;
  221. font-size: 22rpx;
  222. flex-direction:row-reverse;
  223. margin-right: 6rpx;
  224. }
  225. .user-time{
  226. color: #686868;
  227. font-weight: lighter;
  228. }
  229. .video-preview{
  230. margin-top: 10rpx;
  231. width: 100%;
  232. height: 290rpx;
  233. border-radius: 20rpx;
  234. }
  235. .video-preview>image{
  236. width: 100%;
  237. height: 100%;
  238. border-radius: 20rpx;
  239. }
  240. .content-title{
  241. margin-top: 12rpx;
  242. margin-bottom: 30rpx;
  243. width: 100%;
  244. display: flex;
  245. justify-content: space-between;
  246. align-items: center;
  247. font-size: 32rpx;
  248. font-weight: 500;
  249. color: #414141;
  250. }
  251. .content-grage{
  252. font-size: 24rpx;
  253. margin-right:6rpx;
  254. }
  255. .user-info image{
  256. width: 100%;
  257. height: 100%;
  258. }
  259. .plays-img{
  260. width: 20rpx;
  261. height: 20rpx;
  262. }
  263. .likes-img{
  264. width: 26rpx;
  265. height: 24rpx;
  266. }
  267. .likes-count{
  268. color: #FD8B43;
  269. }
  270. .plays-count{
  271. color: #5E5E5E;
  272. }