index.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:last-child {
  8. margin: 0;
  9. }
  10. .two {
  11. flex-grow: 1;
  12. position: relative;
  13. .scroll-view {
  14. position: absolute;
  15. top: 0;
  16. left: 0;
  17. right: 0;
  18. bottom: 0;
  19. .list-scroll-view {
  20. display: flex;
  21. flex-direction: column;
  22. .list {
  23. background-color: #ffffff;
  24. border-bottom: 1px solid #cccccc;
  25. width: 96vw;
  26. padding: 2vw;
  27. .name {
  28. font-size: 18px;
  29. margin: 0 0 1vw 0;
  30. font-weight: bold;
  31. }
  32. .other {
  33. margin: 0 0 1vw 0;
  34. .other_1 {
  35. margin: 0 0 1vw 0;
  36. font-size: 15px;
  37. text {
  38. color: #000000;
  39. }
  40. text:nth-child(1) {
  41. color: #858585;
  42. }
  43. }
  44. }
  45. .btn {
  46. text-align: center;
  47. button {
  48. margin: 0 2vw;
  49. font-size: 14px;
  50. }
  51. }
  52. }
  53. .list:last-child {
  54. border-bottom: none;
  55. }
  56. }
  57. }
  58. }
  59. }