index.module.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .userDetail {
  2. .banner {
  3. width: 100%;
  4. height: 212px;
  5. overflow: hidden;
  6. vertical-align: middle;
  7. }
  8. .userInfo {
  9. overflow: hidden;
  10. .avatar {
  11. width: 24px;
  12. height: 24px;
  13. border-radius: 50%;
  14. overflow: hidden;
  15. }
  16. .name {
  17. padding-left: 8px;
  18. font-size: 16px;
  19. font-weight: 500;
  20. color: #333333;
  21. line-height: 22px;
  22. display: flex;
  23. align-items: center;
  24. }
  25. .buyNum {
  26. color: #ff802c;
  27. font-size: 14px;
  28. display: flex;
  29. align-items: center;
  30. &::before {
  31. content: ' ';
  32. display: inline-block;
  33. width: 1px;
  34. height: 12px;
  35. margin: 0 8px;
  36. background: #d3d3d3;
  37. }
  38. }
  39. .buyNumInfo {
  40. font-size: 12px;
  41. color: #6a6a6a;
  42. display: flex;
  43. align-items: center;
  44. .iconBuy {
  45. margin-right: 5px;
  46. }
  47. }
  48. .info {
  49. font-size: 16px;
  50. font-weight: 600;
  51. color: var(--van-primary);
  52. line-height: 17px;
  53. }
  54. .userTitle {
  55. font-size: 18px;
  56. color: #1a1a1a;
  57. font-weight: 500;
  58. display: block !important;
  59. }
  60. :global {
  61. .van-cell {
  62. padding: 12px 14px;
  63. }
  64. .van-cell__title {
  65. flex-basis: 60%;
  66. }
  67. .van-cell__title,
  68. .van-cell__value {
  69. display: flex;
  70. align-items: center;
  71. }
  72. .van-cell__value {
  73. flex-basis: 40%;
  74. justify-content: flex-end;
  75. }
  76. .van-cell__label {
  77. margin-top: 0;
  78. }
  79. }
  80. }
  81. }