index.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .main {
  2. height: var(--thrHeight);
  3. .zero {
  4. margin: 0 2vw 2vw 2vw;
  5. }
  6. .one {
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: space-between;
  10. padding: 2vw;
  11. background-color: var(--footColor);
  12. input {
  13. font-size: var(--txtSize);
  14. }
  15. }
  16. .two {
  17. flex-grow: 1;
  18. position: relative;
  19. .scroll-view {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. right: 0;
  24. bottom: 0;
  25. .list-scroll-view {
  26. display: flex;
  27. flex-wrap: wrap;
  28. align-content: flex-start;
  29. justify-content: space-between;
  30. .list {
  31. background-color: var(--bgColor);
  32. margin: 0 0 2vw 0;
  33. padding: 2vw;
  34. display: flex;
  35. flex-direction: column;
  36. .list_1 {
  37. display: flex;
  38. flex-direction: row;
  39. justify-content: space-between;
  40. font-size: 14px;
  41. margin: 0 0 1vw 0;
  42. color: var(--labelColor);
  43. .name {
  44. width: 65vw;
  45. }
  46. }
  47. .list_2 {
  48. margin: 0 0 3vw 0;
  49. font-size: var(--titleSize);
  50. font-weight: bold;
  51. }
  52. .list_3 {
  53. display: flex;
  54. flex-direction: row;
  55. justify-content: space-between;
  56. font-size: 14px;
  57. color: var(--labelColor);
  58. .btn {
  59. color: #334790;
  60. font-size: 14px;
  61. font-weight: 700;
  62. }
  63. }
  64. }
  65. .list:last-child {
  66. margin: 0;
  67. }
  68. }
  69. }
  70. }
  71. }