list.less 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. .name {
  25. font-size: var(--font16Size);
  26. font-weight: bold;
  27. margin: 0 0 1vw 0;
  28. text-align: center;
  29. }
  30. .other {
  31. display: flex;
  32. flex-direction: column;
  33. width: 90vw;
  34. justify-content: space-between;
  35. border-top: 1px dashed var(--f1Color);
  36. border-bottom: 1px dashed var(--f1Color);
  37. padding: 1vw;
  38. font-size: var(--font14Size);
  39. margin: 0 0 1vw 0;
  40. .other_1 {
  41. padding: 0 0 1vw 0;
  42. }
  43. .other_1 text:nth-child(1) {
  44. color: #666;
  45. }
  46. }
  47. }
  48. .btn {
  49. width: 92vw;
  50. text-align: center;
  51. margin: 2vw 0 0 0;
  52. button {
  53. font-size: var(--font14Size);
  54. background: -webkit-linear-gradient(right, lightblue, #53C9F8);
  55. }
  56. }
  57. }
  58. }
  59. }
  60. .scroll-view {
  61. position: absolute;
  62. top: 0;
  63. left: 0;
  64. right: 0;
  65. bottom: 0;
  66. .list-scroll-view {
  67. display: flex;
  68. flex-direction: column;
  69. }
  70. }