ResearchActivity.module.scss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. .research-activity-wrapper {
  2. :global {
  3. .research-title-box {
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-between;
  7. margin-bottom: 30px;
  8. .research-title {
  9. font-size: 20px;
  10. font-weight: bold;
  11. white-space: nowrap;
  12. .research-act-icon {
  13. width: 20px;
  14. height: 20px;
  15. margin-right: 10px;
  16. }
  17. }
  18. .research-select {
  19. display: flex;
  20. .research-select-item {
  21. padding: 0 5px;
  22. min-width: 86px;
  23. height: 30px;
  24. line-height: 30px;
  25. background-color: #fff;
  26. border-radius: 23px;
  27. text-align: center;
  28. box-sizing: border-box;
  29. margin-left: 20px;
  30. white-space: nowrap;
  31. cursor: pointer;
  32. &.research-select-active {
  33. color: #fff;
  34. background: #faa12f;
  35. }
  36. &:first-child {
  37. margin-left: 0;
  38. }
  39. }
  40. }
  41. }
  42. .act-online-item {
  43. border-top: 4px solid #faa12f;
  44. .research-act-state {
  45. background: #fff6dd;
  46. color: #faa12f;
  47. }
  48. }
  49. .act-underline-item {
  50. border-top: 4px solid #faa12f;
  51. .research-act-state {
  52. background: #fff1e9;
  53. color: #e37318;
  54. }
  55. }
  56. .research-act-item {
  57. padding: 40px 20px 30px 20px;
  58. border-radius: 16px;
  59. background: #fff;
  60. margin: 0 10px 20px 10px;
  61. box-sizing: border-box;
  62. min-height: 212px;
  63. cursor: pointer;
  64. position: relative;
  65. &:hover {
  66. box-shadow: 0px 3px 10px 2px rgba(0, 0, 0, 0.2);
  67. }
  68. .act-status-wrapper {
  69. position: absolute;
  70. top: 5px;
  71. right: 0;
  72. display: flex;
  73. justify-content: center;
  74. align-items: center;
  75. border-radius: 100px 34px 0px 100px;
  76. padding: 4px 10px;
  77. box-sizing: border-box;
  78. font-size: 14px;
  79. }
  80. .waitting-label {
  81. background: #fff6dd;
  82. color: #faa12f;
  83. }
  84. .going-label {
  85. background: #fff8e4;
  86. color: #f2bc23;
  87. }
  88. .end-label {
  89. background: #f0f1f3;
  90. color: #999999;
  91. }
  92. .act-status-icon {
  93. width: 14px;
  94. }
  95. .research-act-oneline {
  96. display: flex;
  97. align-items: center;
  98. flex-wrap: wrap;
  99. margin-bottom: 10px;
  100. .research-act-state {
  101. font-size: 12px;
  102. font-weight: bold;
  103. width: 68px;
  104. height: 28px;
  105. line-height: 28px;
  106. text-align: center;
  107. margin-right: 20px;
  108. margin-bottom: 10px;
  109. }
  110. .research-act-label {
  111. font-size: 12px;
  112. border-radius: 44px;
  113. background: #f0f1f3;
  114. padding: 0 20px;
  115. height: 28px;
  116. line-height: 28px;
  117. margin-right: 20px;
  118. margin-bottom: 10px;
  119. }
  120. }
  121. .research-act-title-line {
  122. font-size: 16px;
  123. font-weight: 600;
  124. line-height: 22px;
  125. margin-bottom: 20px;
  126. .recommend-icon {
  127. width: 22px;
  128. height: 22px;
  129. display: inline-block;
  130. vertical-align: bottom;
  131. margin-right: 5px;
  132. }
  133. }
  134. .research-act-time-line {
  135. display: flex;
  136. margin-bottom: 20px;
  137. .research-act-city {
  138. margin-left: 20px;
  139. color: #faa12f;
  140. white-space: nowrap;
  141. display: flex;
  142. align-items: center;
  143. .city-icon {
  144. color: #faa12f;
  145. margin-right: 2px;
  146. }
  147. }
  148. }
  149. .research-act-btn-line {
  150. display: flex;
  151. justify-content: flex-end;
  152. gap: 8px;
  153. text-align: right;
  154. margin-top: -5px;
  155. }
  156. }
  157. }
  158. }
  159. .list-empty {
  160. border-radius: 16px;
  161. background: #fff;
  162. width: 100%;
  163. padding-bottom: 134px;
  164. :global {
  165. .empty-img {
  166. width: 287px;
  167. height: auto;
  168. display: block;
  169. margin: 0 auto;
  170. }
  171. .list-empty-text {
  172. color: #999;
  173. font-size: 24px;
  174. display: block;
  175. text-align: center;
  176. }
  177. }
  178. }