index.wxss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .main {
  2. height: 88.8vh;
  3. }
  4. .main .zero {
  5. width: 96vw;
  6. margin: 0 0 2vw 0;
  7. }
  8. .main .zero:last-child {
  9. margin: 0;
  10. }
  11. .main .one {
  12. display: flex;
  13. flex-direction: column;
  14. }
  15. .main .one .one_1 {
  16. width: 92vw;
  17. padding: 2vw;
  18. margin: 0 0 1vw 0;
  19. background-color: #f1f1f1;
  20. }
  21. .main .one .one_2 {
  22. text-align: center;
  23. display: flex;
  24. flex-direction: row;
  25. justify-content: space-around;
  26. width: 96vw;
  27. }
  28. .main .one .one_2 button {
  29. width: 100%;
  30. margin: 0 2vw;
  31. font-size: 14px;
  32. }
  33. .main .two {
  34. flex-grow: 1;
  35. position: relative;
  36. }
  37. .main .two .scroll-view {
  38. position: absolute;
  39. top: 0;
  40. left: 0;
  41. right: 0;
  42. bottom: 0;
  43. }
  44. .main .two .scroll-view .list-scroll-view {
  45. display: flex;
  46. flex-wrap: wrap;
  47. align-content: flex-start;
  48. justify-content: space-between;
  49. }
  50. .main .two .scroll-view .list-scroll-view .list {
  51. background-color: #ffffff;
  52. border-bottom: 1px solid #cccccc;
  53. width: 96vw;
  54. padding: 2vw;
  55. }
  56. .main .two .scroll-view .list-scroll-view .list .name {
  57. font-size: 18px;
  58. margin: 0 0 1vw 0;
  59. font-weight: bold;
  60. }
  61. .main .two .scroll-view .list-scroll-view .list .name text {
  62. color: #ff0000;
  63. font-size: 20px;
  64. padding: 0 2vw;
  65. }
  66. .main .two .scroll-view .list-scroll-view .list .other {
  67. margin: 0 0 1vw 0;
  68. }
  69. .main .two .scroll-view .list-scroll-view .list .other .other_1 {
  70. margin: 0 0 1vw 0;
  71. font-size: 15px;
  72. }
  73. .main .two .scroll-view .list-scroll-view .list .other .other_1 text {
  74. color: #000000;
  75. }
  76. .main .two .scroll-view .list-scroll-view .list .other .other_1 text:nth-child(1) {
  77. color: #858585;
  78. }
  79. .main .two .scroll-view .list-scroll-view .list .btn {
  80. text-align: center;
  81. }
  82. .main .two .scroll-view .list-scroll-view .list .btn button {
  83. margin: 0 2vw;
  84. font-size: 14px;
  85. }
  86. .main .two .scroll-view .list-scroll-view .list:last-child {
  87. border-bottom: none;
  88. }