list.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .main {
  2. height: var(--twoHeight);
  3. .one {
  4. width: 96vw;
  5. padding: 0 2vw 2vw 2vw;
  6. .tab {
  7. margin: 0 0 2vw 0;
  8. }
  9. .input {
  10. input {
  11. padding: 2vw;
  12. background-color: var(--f1Color);
  13. border-radius: 5px;
  14. }
  15. }
  16. }
  17. .two {
  18. flex-grow: 1;
  19. position: relative;
  20. width: 96vw;
  21. margin: 0 2vw 2vw 2vw;
  22. .list {
  23. display: flex;
  24. flex-direction: column;
  25. padding: 2vw;
  26. margin: 0 0 2vw 0;
  27. background-color: var(--mainColor);
  28. .list_1 {
  29. .name {
  30. font-size: var(--font16Size);
  31. font-weight: bold;
  32. margin: 0 0 1vw 0;
  33. text-align: center;
  34. }
  35. .other {
  36. display: flex;
  37. flex-direction: column;
  38. width: 90vw;
  39. justify-content: space-between;
  40. border-top: 1px dashed var(--f1Color);
  41. border-bottom: 1px dashed var(--f1Color);
  42. padding: 1vw;
  43. font-size: var(--font14Size);
  44. margin: 0 0 1vw 0;
  45. .other_1 {
  46. padding: 0 0 1vw 0;
  47. }
  48. .other_1 text:nth-child(1) {
  49. color: #666;
  50. }
  51. }
  52. }
  53. .btn {
  54. width: 92vw;
  55. text-align: center;
  56. margin: 2vw 0 0 0;
  57. button {
  58. font-size: var(--font14Size);
  59. margin: 0 0 0 2vw;
  60. background: -webkit-linear-gradient(right, lightblue, #53C9F8);
  61. }
  62. }
  63. }
  64. }
  65. }
  66. .scroll-view {
  67. position: absolute;
  68. top: 0;
  69. left: 0;
  70. right: 0;
  71. bottom: 0;
  72. .list-scroll-view {
  73. display: flex;
  74. flex-direction: column;
  75. }
  76. }