list.less 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. }
  19. .two {
  20. flex-grow: 1;
  21. position: relative;
  22. width: 100vw;
  23. .list {
  24. background-color: var(--f9Color);
  25. padding: 2vw;
  26. margin: 0 2vw 2vw 2vw;
  27. .name {
  28. font-size: var(--titleSize);
  29. font-weight: bold;
  30. margin: 0 0 1vw 0;
  31. }
  32. .other {
  33. margin: 0 0 1vw 0;
  34. .other_1 {
  35. font-size: var(--txtSize);
  36. margin: 0 0 1vw 0;
  37. text {
  38. color: var(--labelColor);
  39. }
  40. text:last-child {
  41. color: var(--txtColor);
  42. }
  43. }
  44. }
  45. .btn {
  46. display: flex;
  47. flex-direction: row;
  48. justify-content: center;
  49. text-align: center;
  50. flex-wrap: wrap;
  51. .btn_1 {
  52. width: 20vw;
  53. margin: 0 1vw 1vw 1vw;
  54. button {
  55. width: 100%;
  56. font-size: var(--btnSize);
  57. padding: 2vw;
  58. }
  59. }
  60. }
  61. }
  62. }
  63. }
  64. .scroll-view {
  65. position: absolute;
  66. top: 0;
  67. left: 0;
  68. right: 0;
  69. bottom: 0;
  70. .list-scroll-view {
  71. display: flex;
  72. flex-direction: column;
  73. }
  74. }