index.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* 列表 */
  2. .member_list {
  3. width: 100vw;
  4. background-color: #ffffff;
  5. border-top: 1px solid #E4E4E4;
  6. }
  7. /* */
  8. .member_item {
  9. display: flex;
  10. align-items: center;
  11. height: 180rpx;
  12. border-bottom: 1px solid #E4E4E4;
  13. }
  14. /* 头像 */
  15. .member_item_img {
  16. position: relative;
  17. height: 100%;
  18. width: 180rpx;
  19. }
  20. .member_item_img>view {
  21. position: absolute;
  22. width: 120rpx;
  23. height: 120rpx;
  24. background-color: #000;
  25. border-radius: 50%;
  26. overflow: hidden;
  27. top: 50%;
  28. left: 50%;
  29. transform: translate(-50%, -50%);
  30. }
  31. /* 用户信息 */
  32. .member_item_text {
  33. flex: 1;
  34. display: flex;
  35. flex-direction: column;
  36. justify-content: center;
  37. }
  38. /* 用户名 */
  39. .member_item_text_title {
  40. font-size: 32rpx;
  41. color: #1E1E1E;
  42. font-weight: 550;
  43. }
  44. /* 用户身份与手机 */
  45. .member_item_text_row {
  46. font-size: 30rpx;
  47. color: #CCCCCC;
  48. margin-top: 12rpx;
  49. }
  50. /* 修改 */
  51. .member_item_amend {
  52. font-size: 34rpx;
  53. width: 100rpx;
  54. height: 55rpx;
  55. line-height: 55rpx;
  56. color: #ffffff;
  57. text-align: center;
  58. border-radius: 15rpx;
  59. background-color: #169BD5;
  60. margin-right: 30rpx;
  61. }