list.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .main {
  2. height: var(--twoHeight);
  3. background-color: var(--bgColor);
  4. .one {
  5. display: flex;
  6. flex-direction: row;
  7. width: 96vw;
  8. padding: 2vw;
  9. .one_1 {
  10. flex-grow: 1;
  11. input {
  12. padding: 1vw 2vw 2vw 2vw;
  13. border-radius: 2px;
  14. font-size: var(--txtSize);
  15. background-color: var(--f1Color);
  16. }
  17. }
  18. .one_2 {
  19. width: 15vw;
  20. button {
  21. width: 100%;
  22. font-size: var(--btnSize);
  23. padding: 2vw;
  24. }
  25. }
  26. }
  27. .two {
  28. flex-grow: 1;
  29. position: relative;
  30. width: 100vw;
  31. .list {
  32. background-color: var(--f9Color);
  33. padding: 2vw;
  34. margin: 0 2vw 2vw 2vw;
  35. .name {
  36. font-size: var(--titleSize);
  37. font-weight: bold;
  38. margin: 0 0 1vw 0;
  39. }
  40. .other {
  41. margin: 0 0 1vw 0;
  42. .other_1 {
  43. font-size: var(--txtSize);
  44. margin: 0 0 1vw 0;
  45. text {
  46. color: var(--labelColor);
  47. }
  48. text:last-child {
  49. color: var(--txtColor);
  50. }
  51. }
  52. }
  53. .btn {
  54. display: flex;
  55. flex-direction: row;
  56. justify-content: center;
  57. text-align: center;
  58. flex-wrap: wrap;
  59. .btn_1 {
  60. width: 20vw;
  61. margin: 0 1vw 1vw 1vw;
  62. button {
  63. width: 100%;
  64. font-size: var(--btnSize);
  65. padding: 2vw;
  66. }
  67. }
  68. }
  69. }
  70. }
  71. }
  72. .scroll-view {
  73. position: absolute;
  74. top: 0;
  75. left: 0;
  76. right: 0;
  77. bottom: 0;
  78. .list-scroll-view {
  79. display: flex;
  80. flex-direction: column;
  81. }
  82. }