index.less 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .index {
  2. padding-top: 58px;
  3. box-sizing: border-box;
  4. // 列表
  5. .list-box {
  6. width: 100%;
  7. height: 100%;
  8. margin-top: 36px;
  9. padding: 0 51px;
  10. box-sizing: border-box;
  11. .list-item {
  12. width: 100%;
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-between;
  16. margin-bottom: 20px;
  17. .list-item-left {
  18. display: flex;
  19. align-items: center;
  20. .avatar {
  21. width: 130px;
  22. height: 130px;
  23. border-radius: 50%;
  24. margin-right: 20px;
  25. }
  26. .list-item-left-text {
  27. display: flex;
  28. flex-direction: column;
  29. .name {
  30. font-weight: 700;
  31. font-size: 28px;
  32. color: #000000;
  33. width: 380px;
  34. overflow: hidden;
  35. text-overflow: ellipsis;
  36. white-space: nowrap;
  37. }
  38. .wishNum {
  39. font-weight: 500;
  40. font-size: 24px;
  41. color: #FC8C31;
  42. margin-top: 16px;
  43. }
  44. }
  45. }
  46. .list-item-right {
  47. display: flex;
  48. align-items: center;
  49. justify-content: center;
  50. width: 112px;
  51. height: 64px;
  52. background: linear-gradient(270deg, #FFBD4B 0%, #F3802E 100%);
  53. border-radius: 62px 62px 62px 62px;
  54. font-weight: 700;
  55. font-size: 28px;
  56. color: #FFFFFF;
  57. }
  58. }
  59. }
  60. }