list.less 2.5 KB

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