assessment.wxss 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  1. .container.data-v-cc3734ea {
  2. width: 100%;
  3. height: 100vh;
  4. background-color: #F8F9FB;
  5. position: relative;
  6. overflow: hidden;
  7. }
  8. .loading-box.data-v-cc3734ea {
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: center;
  13. height: 80vh;
  14. padding-top: 200rpx;
  15. }
  16. .loading-box .loading-spinner.data-v-cc3734ea {
  17. width: 60rpx;
  18. height: 60rpx;
  19. border: 6rpx solid #f3f3f3;
  20. border-top: 6rpx solid #1F6CFF;
  21. border-radius: 50%;
  22. animation: spin-cc3734ea 1s linear infinite;
  23. }
  24. .loading-box .loading-text.data-v-cc3734ea {
  25. margin-top: 20rpx;
  26. font-size: 28rpx;
  27. color: #999;
  28. }
  29. @keyframes spin-cc3734ea {
  30. 0% {
  31. transform: rotate(0deg);
  32. }
  33. 100% {
  34. transform: rotate(360deg);
  35. }
  36. }
  37. .fixed-header.data-v-cc3734ea {
  38. position: fixed;
  39. top: 0;
  40. left: 0;
  41. right: 0;
  42. z-index: 100;
  43. }
  44. .gradient-section.data-v-cc3734ea {
  45. background: linear-gradient(180deg, #1F6CFF 0%, #FFFFFF 100%);
  46. padding: 0 40rpx 20rpx;
  47. }
  48. .search-bar.data-v-cc3734ea {
  49. background: rgba(255, 255, 255, 0.95);
  50. border-radius: 40rpx;
  51. display: flex;
  52. align-items: center;
  53. padding: 0 30rpx;
  54. box-shadow: 0 4rpx 20rpx rgba(31, 108, 255, 0.1);
  55. margin-right: 200rpx;
  56. height: 100%;
  57. }
  58. .search-bar .search-icon.data-v-cc3734ea {
  59. width: 32rpx;
  60. height: 32rpx;
  61. margin-right: 20rpx;
  62. opacity: 0.4;
  63. }
  64. .search-bar .search-input.data-v-cc3734ea {
  65. flex: 1;
  66. font-size: 28rpx;
  67. }
  68. .search-bar .ph-color.data-v-cc3734ea {
  69. color: #999;
  70. }
  71. .white-section.data-v-cc3734ea {
  72. background: #FFF;
  73. padding-bottom: 0;
  74. }
  75. .horizontal-tabs-wrap.data-v-cc3734ea {
  76. display: flex;
  77. justify-content: space-between;
  78. align-items: center;
  79. padding: 20rpx 40rpx;
  80. }
  81. .horizontal-tabs-wrap .main-tabs.data-v-cc3734ea {
  82. display: flex;
  83. gap: 40rpx;
  84. }
  85. .horizontal-tabs-wrap .main-tabs .main-tab.data-v-cc3734ea {
  86. font-size: 34rpx;
  87. font-weight: bold;
  88. color: #888;
  89. position: relative;
  90. padding-bottom: 10rpx;
  91. }
  92. .horizontal-tabs-wrap .main-tabs .main-tab.active.data-v-cc3734ea {
  93. color: #1A1A1A;
  94. }
  95. .horizontal-tabs-wrap .main-tabs .main-tab.active.data-v-cc3734ea:after {
  96. content: "";
  97. position: absolute;
  98. left: 50%;
  99. bottom: 0;
  100. transform: translateX(-50%);
  101. width: 36rpx;
  102. height: 6rpx;
  103. background: #1F6CFF;
  104. border-radius: 3rpx;
  105. }
  106. .horizontal-tabs-wrap .record-text.data-v-cc3734ea {
  107. font-size: 28rpx;
  108. color: #1F6CFF;
  109. }
  110. .filter-row.data-v-cc3734ea {
  111. display: flex;
  112. justify-content: space-between;
  113. padding: 20rpx 40rpx 20rpx;
  114. }
  115. .filter-row .filter-item.data-v-cc3734ea {
  116. font-size: 28rpx;
  117. color: #333;
  118. font-weight: 500;
  119. display: flex;
  120. align-items: center;
  121. transition: all 0.3s;
  122. }
  123. .filter-row .filter-item.active.data-v-cc3734ea {
  124. color: #1F6CFF;
  125. }
  126. .filter-row .filter-item .arrow-down.data-v-cc3734ea {
  127. width: 24rpx;
  128. height: 24rpx;
  129. margin-left: 8rpx;
  130. opacity: 0.3;
  131. transition: transform 0.3s;
  132. }
  133. .filter-row .filter-item .arrow-down.rotate.data-v-cc3734ea {
  134. transform: rotate(180deg);
  135. opacity: 0.8;
  136. }
  137. .dropdown-wrapper.data-v-cc3734ea {
  138. position: absolute;
  139. top: 100%;
  140. left: 0;
  141. right: 0;
  142. height: calc(100vh - 100%);
  143. z-index: 99;
  144. }
  145. .dropdown-wrapper .mask.data-v-cc3734ea {
  146. position: absolute;
  147. top: 0;
  148. left: 0;
  149. right: 0;
  150. bottom: 0;
  151. background: rgba(0, 0, 0, 0.4);
  152. animation: fadeIn-cc3734ea 0.3s ease-out;
  153. }
  154. .dropdown-wrapper .dropdown-content.data-v-cc3734ea {
  155. background: #FFF;
  156. position: relative;
  157. z-index: 1;
  158. border-top: 1rpx solid #F0F0F0;
  159. border-radius: 0 0 32rpx 32rpx;
  160. padding: 10rpx 0;
  161. max-height: 60vh;
  162. overflow-y: auto;
  163. animation: slideDown-cc3734ea 0.3s ease-out;
  164. }
  165. .dropdown-wrapper .dropdown-content .option-item.data-v-cc3734ea {
  166. display: flex;
  167. justify-content: space-between;
  168. align-items: center;
  169. padding: 30rpx 40rpx;
  170. font-size: 28rpx;
  171. color: #333;
  172. }
  173. .dropdown-wrapper .dropdown-content .option-item.data-v-cc3734ea:active {
  174. background: #F8F9FB;
  175. }
  176. .dropdown-wrapper .dropdown-content .option-item.selected.data-v-cc3734ea {
  177. color: #1F6CFF;
  178. font-weight: bold;
  179. }
  180. .dropdown-wrapper .dropdown-content .option-item .check-icon.data-v-cc3734ea {
  181. width: 32rpx;
  182. height: 32rpx;
  183. }
  184. @keyframes fadeIn-cc3734ea {
  185. from {
  186. opacity: 0;
  187. }
  188. to {
  189. opacity: 1;
  190. }
  191. }
  192. @keyframes slideDown-cc3734ea {
  193. from {
  194. transform: translateY(-20%);
  195. opacity: 0;
  196. }
  197. to {
  198. transform: translateY(0);
  199. opacity: 1;
  200. }
  201. }
  202. .scroll-body.data-v-cc3734ea {
  203. position: fixed;
  204. left: 0;
  205. right: 0;
  206. bottom: 0;
  207. background-color: #F8F9FB;
  208. }
  209. .assessment-list.data-v-cc3734ea {
  210. padding: 30rpx 40rpx;
  211. display: flex;
  212. flex-direction: column;
  213. gap: 30rpx;
  214. }
  215. .training-list.data-v-cc3734ea {
  216. padding: 30rpx 40rpx;
  217. display: flex;
  218. flex-direction: column;
  219. gap: 30rpx;
  220. }
  221. .training-card.data-v-cc3734ea {
  222. background: #FFF;
  223. border-radius: 32rpx;
  224. padding: 32rpx;
  225. box-shadow: 0 4rpx 24rpx rgba(0, 0, 0, 0.03);
  226. }
  227. .training-card .t-title.data-v-cc3734ea {
  228. font-size: 32rpx;
  229. font-weight: bold;
  230. color: #1A1A1A;
  231. line-height: 1.4;
  232. display: block;
  233. margin-bottom: 20rpx;
  234. }
  235. .training-card .tag-row.data-v-cc3734ea {
  236. display: flex;
  237. gap: 10rpx;
  238. margin: 12rpx 0;
  239. }
  240. .training-card .tag-row .tag-badge.data-v-cc3734ea {
  241. font-size: 20rpx;
  242. color: #999;
  243. background: #F5F7FA;
  244. padding: 6rpx 14rpx;
  245. border-radius: 6rpx;
  246. }
  247. .training-card .tag-row .tag-badge.type-tag.data-v-cc3734ea {
  248. color: #1F6CFF;
  249. background: rgba(31, 108, 255, 0.08);
  250. }
  251. .training-card .tag-row .tag-badge.category-tag.data-v-cc3734ea {
  252. color: #FF9500;
  253. background: rgba(255, 149, 0, 0.08);
  254. }
  255. .training-card .info-list.data-v-cc3734ea {
  256. margin-top: 24rpx;
  257. display: flex;
  258. flex-direction: column;
  259. gap: 16rpx;
  260. }
  261. .training-card .info-list .info-item.data-v-cc3734ea {
  262. display: flex;
  263. align-items: center;
  264. }
  265. .training-card .info-list .info-item .i-icon.data-v-cc3734ea {
  266. width: 28rpx;
  267. height: 28rpx;
  268. margin-right: 16rpx;
  269. opacity: 0.5;
  270. }
  271. .training-card .info-list .info-item .i-text.data-v-cc3734ea {
  272. font-size: 26rpx;
  273. color: #666;
  274. }
  275. .training-card .info-list .info-item .ending-tag.data-v-cc3734ea {
  276. font-size: 22rpx;
  277. color: #FF4D4F;
  278. margin-left: 20rpx;
  279. }
  280. .video-card.data-v-cc3734ea {
  281. background: #FFF;
  282. border-radius: 32rpx;
  283. overflow: hidden;
  284. box-shadow: 0 4rpx 24rpx rgba(0, 0, 0, 0.03);
  285. }
  286. .video-card .video-cover-wrap.data-v-cc3734ea {
  287. width: 100%;
  288. height: 380rpx;
  289. position: relative;
  290. }
  291. .video-card .video-cover-wrap .v-cover.data-v-cc3734ea {
  292. width: 100%;
  293. height: 100%;
  294. }
  295. .video-card .video-cover-wrap .play-overlay.data-v-cc3734ea {
  296. position: absolute;
  297. left: 50%;
  298. top: 50%;
  299. transform: translate(-50%, -50%);
  300. }
  301. .video-card .video-cover-wrap .play-overlay .play-icon.data-v-cc3734ea {
  302. width: 100rpx;
  303. height: 100rpx;
  304. opacity: 0.9;
  305. }
  306. .video-card .video-cover-wrap .v-bottom-info.data-v-cc3734ea {
  307. position: absolute;
  308. left: 0;
  309. right: 0;
  310. bottom: 0;
  311. height: 80rpx;
  312. background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  313. padding: 0 24rpx;
  314. display: flex;
  315. justify-content: space-between;
  316. align-items: center;
  317. color: #FFF;
  318. font-size: 24rpx;
  319. }
  320. .video-card .video-cover-wrap .v-bottom-info .m-icon.data-v-cc3734ea {
  321. width: 24rpx;
  322. height: 24rpx;
  323. margin-right: 8rpx;
  324. }
  325. .video-card .video-cover-wrap .v-bottom-info .play-mini-icon.data-v-cc3734ea {
  326. width: 0;
  327. height: 0;
  328. border-left: 12rpx solid #FFF;
  329. border-top: 8rpx solid transparent;
  330. border-bottom: 8rpx solid transparent;
  331. margin-right: 10rpx;
  332. }
  333. .video-card .video-cover-wrap .v-bottom-info .v-info-left.data-v-cc3734ea, .video-card .video-cover-wrap .v-bottom-info .v-info-right.data-v-cc3734ea {
  334. display: flex;
  335. align-items: center;
  336. }
  337. .video-card .video-cover-wrap .live-status.data-v-cc3734ea {
  338. position: absolute;
  339. right: 24rpx;
  340. top: 24rpx;
  341. border-radius: 8rpx;
  342. padding: 4rpx 12rpx;
  343. font-size: 22rpx;
  344. color: #FFF;
  345. }
  346. .video-card .video-cover-wrap .live-status.streaming.data-v-cc3734ea {
  347. background: #FF4D4F;
  348. }
  349. .video-card .video-cover-wrap .live-status.upcoming.data-v-cc3734ea {
  350. background: #1F6CFF;
  351. }
  352. .video-card .video-cover-wrap .live-status.not-started.data-v-cc3734ea {
  353. background: #999;
  354. }
  355. .video-card .video-cover-wrap .live-status.finished.data-v-cc3734ea {
  356. background: #666;
  357. }
  358. .video-card .v-content.data-v-cc3734ea {
  359. padding: 24rpx;
  360. }
  361. .video-card .v-content .v-title.data-v-cc3734ea {
  362. font-size: 32rpx;
  363. font-weight: bold;
  364. color: #1A1A1A;
  365. }
  366. .video-card .v-content .v-title-row.data-v-cc3734ea {
  367. display: flex;
  368. justify-content: space-between;
  369. align-items: center;
  370. }
  371. .video-card .v-content .spectators.data-v-cc3734ea {
  372. display: flex;
  373. align-items: center;
  374. color: #999;
  375. font-size: 24rpx;
  376. }
  377. .video-card .v-content .spectators .s-icon.data-v-cc3734ea {
  378. width: 24rpx;
  379. height: 24rpx;
  380. margin-right: 8rpx;
  381. }
  382. .job-card.data-v-cc3734ea {
  383. background: #FFF;
  384. border-radius: 32rpx;
  385. padding: 24rpx;
  386. display: flex;
  387. box-shadow: 0 4rpx 24rpx rgba(0, 0, 0, 0.03);
  388. position: relative;
  389. }
  390. .job-card .card-left.data-v-cc3734ea {
  391. width: 220rpx;
  392. height: 220rpx;
  393. flex-shrink: 0;
  394. margin-right: 24rpx;
  395. }
  396. .job-card .card-left .cover-img.data-v-cc3734ea {
  397. width: 100%;
  398. height: 100%;
  399. border-radius: 16rpx;
  400. }
  401. .job-card .card-right.data-v-cc3734ea {
  402. flex: 1;
  403. display: flex;
  404. flex-direction: column;
  405. justify-content: space-between;
  406. }
  407. .job-card .card-right .top-line.data-v-cc3734ea {
  408. display: flex;
  409. justify-content: space-between;
  410. align-items: center;
  411. }
  412. .job-card .card-right .top-line .job-title.data-v-cc3734ea {
  413. font-size: 34rpx;
  414. font-weight: bold;
  415. color: #1A1A1A;
  416. }
  417. .job-card .card-right .top-line .job-level-tag.data-v-cc3734ea {
  418. font-size: 22rpx;
  419. color: #1F6CFF;
  420. background: rgba(31, 108, 255, 0.1);
  421. padding: 4rpx 12rpx;
  422. border-radius: 8rpx;
  423. }
  424. .job-card .card-right .tag-row.data-v-cc3734ea {
  425. display: flex;
  426. gap: 10rpx;
  427. margin: 12rpx 0;
  428. }
  429. .job-card .card-right .tag-row .tag-badge.data-v-cc3734ea {
  430. font-size: 20rpx;
  431. color: #999;
  432. background: #F5F7FA;
  433. padding: 6rpx 14rpx;
  434. border-radius: 6rpx;
  435. }
  436. .job-card .card-right .tag-row .tag-badge.type-tag.data-v-cc3734ea {
  437. color: #1F6CFF;
  438. background: rgba(31, 108, 255, 0.08);
  439. }
  440. .job-card .card-right .tag-row .tag-badge.category-tag.data-v-cc3734ea {
  441. color: #FF9500;
  442. background: rgba(255, 149, 0, 0.08);
  443. }
  444. .job-card .card-right .desc-text.data-v-cc3734ea {
  445. font-size: 24rpx;
  446. color: #888;
  447. line-height: 1.4;
  448. margin-bottom: 16rpx;
  449. display: -webkit-box;
  450. -webkit-box-orient: vertical;
  451. -webkit-line-clamp: 2;
  452. line-clamp: 2;
  453. overflow: hidden;
  454. }
  455. .job-card .card-right .btn-wrap.data-v-cc3734ea {
  456. display: flex;
  457. justify-content: flex-end;
  458. gap: 10rpx;
  459. }
  460. .job-card .card-right .btn-wrap .consult-btn.data-v-cc3734ea {
  461. margin: 0;
  462. background: #FFB700;
  463. color: #FFF;
  464. border-radius: 30rpx;
  465. height: 56rpx;
  466. line-height: 56rpx;
  467. padding: 0 36rpx;
  468. font-size: 26rpx;
  469. font-weight: bold;
  470. }
  471. .job-card .card-right .btn-wrap .consult-btn.data-v-cc3734ea::after {
  472. border: none;
  473. }
  474. .job-card .card-right .btn-wrap .start-btn.data-v-cc3734ea {
  475. margin: 0;
  476. background: linear-gradient(135deg, #1F6CFF 0%, #0056FF 100%);
  477. color: #FFF;
  478. border-radius: 30rpx;
  479. height: 56rpx;
  480. line-height: 56rpx;
  481. padding: 0 36rpx;
  482. font-size: 26rpx;
  483. font-weight: bold;
  484. }
  485. .job-card .card-right .btn-wrap .start-btn.data-v-cc3734ea::after {
  486. border: none;
  487. }
  488. .job-card .card-right .btn-wrap .apply-btn.data-v-cc3734ea {
  489. margin: 0;
  490. background: #1F6CFF;
  491. color: #FFF;
  492. border-radius: 30rpx;
  493. height: 56rpx;
  494. line-height: 56rpx;
  495. padding: 0 36rpx;
  496. font-size: 26rpx;
  497. font-weight: bold;
  498. }
  499. .job-card .card-right .btn-wrap .apply-btn.data-v-cc3734ea::after {
  500. border: none;
  501. }
  502. .job-card .card-right .btn-wrap .applied-btn.data-v-cc3734ea {
  503. margin: 0;
  504. background: #E0E0E0;
  505. color: #999;
  506. border-radius: 30rpx;
  507. height: 56rpx;
  508. line-height: 56rpx;
  509. padding: 0 36rpx;
  510. font-size: 26rpx;
  511. font-weight: bold;
  512. }
  513. .job-card .card-right .btn-wrap .applied-btn.data-v-cc3734ea::after {
  514. border: none;
  515. }
  516. .job-card .card-right .btn-wrap .retry-btn.data-v-cc3734ea {
  517. margin: 0;
  518. background: #E8F0FF;
  519. color: #2B5CFF;
  520. border-radius: 30rpx;
  521. height: 56rpx;
  522. line-height: 56rpx;
  523. padding: 0 36rpx;
  524. font-size: 26rpx;
  525. font-weight: bold;
  526. }
  527. .job-card .card-right .btn-wrap .retry-btn.data-v-cc3734ea::after {
  528. border: none;
  529. }
  530. .job-card .card-right .btn-wrap .report-btn.data-v-cc3734ea {
  531. margin: 0;
  532. background: #E8F0FF;
  533. color: #2B5CFF;
  534. border-radius: 30rpx;
  535. height: 56rpx;
  536. line-height: 56rpx;
  537. padding: 0 36rpx;
  538. font-size: 26rpx;
  539. font-weight: bold;
  540. }
  541. .job-card .card-right .btn-wrap .report-btn.data-v-cc3734ea::after {
  542. border: none;
  543. }
  544. .job-card .card-right .btn-wrap .report-btn.disabled.data-v-cc3734ea {
  545. background: #F0F2F5;
  546. color: #C0C4CC;
  547. pointer-events: none;
  548. }
  549. .text-ellipsis-2.data-v-cc3734ea {
  550. display: -webkit-box;
  551. -webkit-box-orient: vertical;
  552. -webkit-line-clamp: 2;
  553. line-clamp: 2;
  554. overflow: hidden;
  555. }
  556. .no-data.data-v-cc3734ea {
  557. display: flex;
  558. flex-direction: column;
  559. align-items: center;
  560. justify-content: center;
  561. padding: 100rpx 0;
  562. }
  563. .no-data .empty-icon.data-v-cc3734ea {
  564. width: 200rpx;
  565. height: 200rpx;
  566. margin-bottom: 20rpx;
  567. opacity: 0.5;
  568. }
  569. .no-data text.data-v-cc3734ea {
  570. font-size: 28rpx;
  571. color: #999;
  572. }
  573. .no-more.data-v-cc3734ea {
  574. text-align: center;
  575. font-size: 26rpx;
  576. color: #BBB;
  577. padding: 40rpx 0;
  578. }
  579. .tabbar-placeholder.data-v-cc3734ea {
  580. height: 180rpx;
  581. }
  582. .card-anim.data-v-cc3734ea {
  583. animation: fadeUp-cc3734ea 0.6s ease-out backwards;
  584. }
  585. .card-anim.data-v-cc3734ea:nth-child(1) {
  586. animation-delay: 0.1s;
  587. }
  588. .card-anim.data-v-cc3734ea:nth-child(2) {
  589. animation-delay: 0.2s;
  590. }
  591. .card-anim.data-v-cc3734ea:nth-child(3) {
  592. animation-delay: 0.3s;
  593. }
  594. .card-anim.data-v-cc3734ea:nth-child(4) {
  595. animation-delay: 0.4s;
  596. }
  597. .card-anim.data-v-cc3734ea:nth-child(5) {
  598. animation-delay: 0.5s;
  599. }
  600. @keyframes fadeUp-cc3734ea {
  601. from {
  602. opacity: 0;
  603. transform: translateY(30rpx);
  604. }
  605. to {
  606. opacity: 1;
  607. transform: translateY(0);
  608. }
  609. }