group.less 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. .one {
  11. background-color: #f1f1f1;
  12. width: 92vw;
  13. padding: 2vw;
  14. }
  15. .two {
  16. flex-grow: 1;
  17. width: 96vw;
  18. position: relative;
  19. .scroll-view {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. right: 0;
  24. bottom: 0;
  25. .list-scroll-view {
  26. display: flex;
  27. flex-direction: column;
  28. .list {
  29. background-color: #ffffff;
  30. border-bottom: 1px solid #cccccc;
  31. width: 96vw;
  32. padding: 2vw;
  33. .name {
  34. font-size: 18px;
  35. margin: 0 0 1vw 0;
  36. font-weight: bold;
  37. }
  38. .other {
  39. margin: 0 0 1vw 0;
  40. .other_1 {
  41. margin: 0 0 1vw 0;
  42. font-size: 15px;
  43. text {
  44. color: #000000;
  45. }
  46. text:nth-child(1) {
  47. color: #858585;
  48. }
  49. }
  50. }
  51. .btn {
  52. text-align: center;
  53. button {
  54. margin: 0 2vw;
  55. font-size: 14px;
  56. }
  57. }
  58. }
  59. .list:last-child {
  60. border-bottom: none;
  61. }
  62. }
  63. }
  64. }
  65. }