index.module.scss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .Left {
  2. position: absolute;
  3. left: 0;
  4. top: 0;
  5. width: 384px;
  6. height: 100%;
  7. padding: 20px;
  8. transition: all 0.5s ease-in-out;
  9. :global {
  10. .infoContainer {
  11. display: flex;
  12. flex-direction: column;
  13. width: 100%;
  14. height: 100%;
  15. background: url('../../../assets/img/infoContainerBg.png') no-repeat 100% 100%;
  16. border-radius: 20px;
  17. padding: 20px;
  18. .topInfo {
  19. display: flex;
  20. width: 100%;
  21. height: 20%;
  22. gap: 16px;
  23. .finding,
  24. .found {
  25. width: 50%;
  26. height: 100%;
  27. display: flex;
  28. flex-direction: column;
  29. border-radius: 10px;
  30. background: url('../../../assets/img/foundBg.png') no-repeat center;
  31. .title {
  32. width: 100%;
  33. height: 65%;
  34. color: #fff;
  35. font-weight: 600;
  36. font-size: 18px;
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. & > img {
  41. height: 70px;
  42. object-fit: none;
  43. }
  44. }
  45. .num {
  46. height: 0;
  47. width: 100%;
  48. color: #fff;
  49. font-weight: 600;
  50. font-size: 24px;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. }
  55. }
  56. }
  57. .mainInfoBox {
  58. padding: 20px;
  59. border-radius: 10px;
  60. background: url('../../../assets/img/mainInfoBoxBg.png') no-repeat 100% 100%;
  61. height: 80%;
  62. width: 100%;
  63. .tab {
  64. display: flex;
  65. align-items: center;
  66. gap: 10px;
  67. width: 100%;
  68. height: 30px;
  69. margin-bottom: 20px;
  70. font-size: 20px;
  71. font-weight: 500;
  72. & > div {
  73. padding-bottom: 5px;
  74. }
  75. .active {
  76. font-weight: 600;
  77. padding-bottom: 1px;
  78. border-bottom: 4px solid;
  79. }
  80. }
  81. .mainInfoListBox {
  82. position: relative;
  83. display: flex;
  84. width: 100%;
  85. height: calc(100% - 50px);
  86. .slide {
  87. position: absolute;
  88. left: -20px;
  89. width: 20px;
  90. height: 100%;
  91. background: url(../../../assets/img/slide.png) no-repeat 100% 100%;
  92. }
  93. .mainInfoList {
  94. display: flex;
  95. flex-direction: column;
  96. width: 100%;
  97. height: 100%;
  98. overflow-y: auto;
  99. overflow-x: hidden;
  100. gap: 10px;
  101. &::-webkit-scrollbar {
  102. display: none; /* 隐藏滚动条 */
  103. }
  104. .mainInfo {
  105. width: 100%;
  106. height: fit-content;
  107. padding: 16px;
  108. border-radius: 10px;
  109. background: #ecd5d1;
  110. display: flex;
  111. flex-direction: column;
  112. gap: 10px;
  113. .labelList {
  114. display: flex;
  115. gap: 10px;
  116. height: 35px;
  117. .label {
  118. width: 95px;
  119. height: 100%;
  120. font-size: 13px;
  121. display: flex;
  122. align-items: center;
  123. justify-content: center;
  124. background: url('../../../assets/img/label.png');
  125. background-size: cover;
  126. }
  127. }
  128. .name {
  129. font-weight: 600;
  130. font-size: 20px;
  131. width: 100%;
  132. height: 30px;
  133. }
  134. .content {
  135. word-break: break-word;
  136. }
  137. .media {
  138. width: 100%;
  139. height: fit-content;
  140. display: flex;
  141. align-items: center;
  142. flex-wrap: wrap;
  143. gap: 3px;
  144. video {
  145. width: 32%;
  146. height: 70px;
  147. object-fit: cover;
  148. cursor: pointer;
  149. }
  150. }
  151. }
  152. .ant-pagination {
  153. margin: 0 auto;
  154. }
  155. }
  156. }
  157. }
  158. }
  159. }
  160. }