index.scss 18 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036
  1. .developer-container {
  2. width: 1100px;
  3. margin-left: auto;
  4. margin-right: auto;
  5. overflow: hidden;
  6. }
  7. .block {
  8. padding: 24px;
  9. background: #fff;
  10. // border-radius: 6px;
  11. margin-bottom: 20px;
  12. }
  13. .title {
  14. font-size: 20px;
  15. font-weight: 400;
  16. color: #0b121a;
  17. line-height: 28px;
  18. }
  19. .tips {
  20. margin-top: 2px;
  21. font-size: 14px;
  22. font-weight: 400;
  23. color: #828c99;
  24. line-height: 21px;
  25. }
  26. .developer-left {
  27. float: left;
  28. width: 730px;
  29. }
  30. .developer-right {
  31. float: right;
  32. width: 350px;
  33. }
  34. // 接单流程
  35. .developer-process-list {
  36. margin-top: 24px;
  37. display: flex;
  38. justify-content: space-between;
  39. }
  40. .developer-process-item {
  41. width: 139px;
  42. flex: 1;
  43. &:nth-last-child(1) {
  44. flex: 0;
  45. }
  46. &.cur {
  47. .developer-process-step {
  48. background-color: #288bff;
  49. color: #fff;
  50. }
  51. .developer-process-step-icon {
  52. background-image: url("~@/assets/img/developer/process1.png") !important;
  53. }
  54. .line{
  55. &::after{
  56. // background-color: #288bff;
  57. background: url("~@/assets/img/developer/next.png") no-repeat center center;
  58. background-size: 35px 18px;
  59. height:20px;
  60. }
  61. }
  62. }
  63. &.cur + .developer-process-item{
  64. // background-color: #f00;
  65. .developer-process-step{
  66. border:1px solid #288bff;
  67. }
  68. }
  69. }
  70. .developer-process-step {
  71. width: 139px;
  72. height: 42px;
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. border-radius: 4px;
  77. font-size: 16px;
  78. font-weight: 400;
  79. border: 1px solid rgba(0, 0, 0, 0.05);
  80. background: #ffffff;
  81. color: #0b121a;
  82. &.line {
  83. position: relative;
  84. &::after {
  85. position: absolute;
  86. right: 0;
  87. top: 50%;
  88. transform: translate(100%, -50%);
  89. content: "";
  90. width: 43px;
  91. height: 1px;
  92. background-color: #ced3d9;
  93. }
  94. }
  95. }
  96. .developer-process-tips {
  97. margin-top: 12px;
  98. width: 139px;
  99. text-align: center;
  100. font-size: 13px;
  101. font-weight: 400;
  102. color: #828c99;
  103. line-height: 18px;
  104. }
  105. .developer-process-step-icon {
  106. width: 20px;
  107. height: 20px;
  108. background-position: 50% 50%;
  109. background-repeat: no-repeat;
  110. background-size: cover;
  111. margin-right: 8px;
  112. }
  113. @for $i from 1 through 4 {
  114. .developer-process-step-icon.icon-#{$i} {
  115. background-image: url("~@/assets/img/developer/process#{$i}.png");
  116. }
  117. }
  118. // 新人接单
  119. .developer-order-list {
  120. font-size: 0;
  121. position: relative;
  122. z-index: 1;
  123. margin-top: 20px;
  124. }
  125. .developer-order-item {
  126. width: 333px;
  127. height: 116px;
  128. background: #ffffff;
  129. border-radius: 16px;
  130. border: 1px solid rgba(0, 0, 0, 0.05);
  131. box-sizing: border-box;
  132. padding: 16px 16px 0;
  133. float: left;
  134. box-sizing: border-box;
  135. margin-top: 16px;
  136. &:nth-child(2n + 1) {
  137. margin-right: 16px;
  138. }
  139. }
  140. .developer-order-item-activity {
  141. position: relative;
  142. z-index: 10;
  143. }
  144. .developer-activity-tips {
  145. position: absolute;
  146. z-index: 2;
  147. left: 0px;
  148. top: -12px;
  149. width: 118px;
  150. height: 40px;
  151. background: #ff4e33;
  152. border-radius: 8px 8px 0px 0px;
  153. padding: 4px 0 0 8px;
  154. box-sizing: border-box;
  155. white-space: nowrap;
  156. font-size: 12px;
  157. font-family: PingFangSC-Regular, PingFang SC;
  158. font-weight: 400;
  159. color: #ffffff;
  160. line-height: 17px;
  161. }
  162. .developer-order-list {
  163. &::after {
  164. content: "";
  165. display: block;
  166. clear: both;
  167. }
  168. }
  169. .developer-order-title-area-wrap {
  170. display: flex;
  171. align-items: center;
  172. }
  173. .developer-order-title-area {
  174. display: flex;
  175. align-items: center;
  176. justify-content: space-between;
  177. }
  178. .developer-order-tips {
  179. margin-top: 15px;
  180. font-size: 14px;
  181. font-weight: 400;
  182. color: #4b5d73;
  183. line-height: 20px;
  184. }
  185. .developer-order-icon {
  186. width: 24px;
  187. height: 24px;
  188. margin-right: 10px;
  189. background-position: center;
  190. background-repeat: no-repeat;
  191. background-size: cover;
  192. }
  193. @for $i from 1 through 5 {
  194. .developer-order-icon.icon-#{$i} {
  195. background-image: url("~@/assets/img/developer/order-#{$i}.png");
  196. }
  197. }
  198. .developer-order-title {
  199. font-size: 16px;
  200. font-weight: 400;
  201. color: #0b121a;
  202. line-height: 22px;
  203. margin-right: 16px;
  204. position: relative;
  205. z-index: 3;
  206. }
  207. .developer-order-link {
  208. font-size: 14px;
  209. font-weight: 400;
  210. color: #308eff;
  211. line-height: 20px;
  212. }
  213. // 热门课程
  214. .developer-hot {
  215. overflow: hidden;
  216. }
  217. .developer-hot-class {
  218. float: left;
  219. width: 288px;
  220. // height:100px;
  221. // background-color: #f00
  222. }
  223. .developer-hot-resource {
  224. float: left;
  225. width: 288px;
  226. margin-left: 71px;
  227. // background-color: #f00;
  228. // height:100px;
  229. }
  230. .developer-hot-list {
  231. margin-top: 20px;
  232. height: 160px;
  233. }
  234. .developer-hot-item {
  235. margin-bottom: 12px;
  236. font-size: 16px;
  237. font-weight: 400;
  238. color: #0b121a;
  239. line-height: 22px;
  240. padding-left: 21px;
  241. position: relative;
  242. a {
  243. color: #0b121a;
  244. }
  245. &:nth-last-child(1) {
  246. margin-bottom: 0;
  247. }
  248. &:nth-child(1) {
  249. .index {
  250. background: #ff4e33;
  251. border-radius: 2px;
  252. color: #fff;
  253. font-size: 12px;
  254. }
  255. }
  256. &:nth-child(2) {
  257. .index {
  258. background: #ff4e33;
  259. border-radius: 2px;
  260. color: #fff;
  261. font-size: 12px;
  262. }
  263. }
  264. &:nth-child(3) {
  265. .index {
  266. background: #ff4e33;
  267. border-radius: 2px;
  268. color: #fff;
  269. font-size: 12px;
  270. }
  271. }
  272. .index {
  273. position: absolute;
  274. line-height: 1;
  275. left: 0;
  276. top: 50%;
  277. transform: translateY(-50%);
  278. width: 16px;
  279. height: 16px;
  280. font-size: 16px;
  281. font-weight: 600;
  282. color: #4a5d74;
  283. display: flex;
  284. align-items: center;
  285. justify-content: center;
  286. }
  287. }
  288. .developer-workbench-user {
  289. display: flex;
  290. overflow: hidden;
  291. // &-logined{
  292. // cursor: pointer;
  293. // }
  294. }
  295. .developer-workbench-user-logined {
  296. cursor: pointer;
  297. }
  298. .developer-user-avatar {
  299. width: 52px;
  300. height: 52px;
  301. margin-right: 8px;
  302. border-radius: 50px;
  303. background-color: rgba(0, 0, 0, 0.05);
  304. position: relative;
  305. img {
  306. width: 100%;
  307. height: 100%;
  308. border-radius: 100%;
  309. overflow: hidden;
  310. }
  311. .developer-flag{
  312. position: absolute;
  313. width:16px;
  314. height:14px;
  315. right:0;
  316. bottom:0;
  317. background-size: cover;
  318. background-repeat: no-repeat;
  319. background-position: center;
  320. }
  321. .developer-vip-flag{
  322. background-image: url("~@/assets/img/developer/vip_flag.png");
  323. }
  324. .developer-notvip-flag{
  325. background-image: url("~@/assets/img/developer/notvip_flag.png");
  326. }
  327. }
  328. .developer-user-info {
  329. flex: 1;
  330. display: flex;
  331. flex-direction: column;
  332. justify-content: space-around;
  333. }
  334. .developer-vip-btn-area{
  335. display:block;
  336. width: 54px;
  337. height: 17px;
  338. // background-color: #f00;
  339. background-repeat: no-repeat;
  340. background-size: cover;
  341. background-position: center;
  342. }
  343. .developer-vip-renewal-btn{
  344. background-image: url("~@/assets/img/developer/vip_btn.png")
  345. }
  346. .developer-vip-apply-btn{
  347. background-image: url("~@/assets/img/developer/not_vip_btn.png")
  348. }
  349. .developer-user-name {
  350. font-size: 14px;
  351. font-weight: 500;
  352. color: #0b121a;
  353. font-family: PingFangSC-Medium, PingFang SC;
  354. line-height: 20px;
  355. }
  356. .developer-user-level {
  357. font-size: 12px;
  358. font-weight: 400;
  359. color: #828c99;
  360. line-height: 1;
  361. cursor: pointer;
  362. }
  363. .developer-use-vip{
  364. display: flex;
  365. flex-direction: column;
  366. align-items: flex-end;
  367. justify-content: center;
  368. }
  369. .developer-vip-end-date{
  370. font-size: 12px;
  371. font-weight: 400;
  372. color: #828c99;
  373. line-height: 1;
  374. margin-top: 8px;;
  375. }
  376. .user-title {
  377. margin-top: 30px;
  378. font-size: 16px;
  379. font-weight: 500;
  380. color: #0b121a;
  381. line-height: 22px;
  382. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  383. padding-bottom: 10px;
  384. }
  385. .developer-work-list {
  386. margin-top: 16px;
  387. display: flex;
  388. justify-content: space-between;
  389. }
  390. .developer-work-item {
  391. //width: 40px;
  392. text-align: center;
  393. cursor: pointer;
  394. }
  395. .developer-work-count {
  396. font-size: 18px;
  397. font-weight: 500;
  398. color: #0b121a;
  399. line-height: 25px;
  400. padding: 0 15px;
  401. }
  402. .developer-work-tips {
  403. font-size: 13px;
  404. font-weight: 400;
  405. color: #828c99;
  406. line-height: 18px;
  407. }
  408. .developer-setting-area {
  409. margin-top: 36px;
  410. display: flex;
  411. position: relative;
  412. }
  413. .developer-setting-item {
  414. flex: 1;
  415. width: 50%;
  416. display: flex;
  417. align-items: center;
  418. justify-content: center;
  419. cursor: pointer;
  420. }
  421. .developer-setting-icon {
  422. width: 18px;
  423. height: 18px;
  424. margin-right: 5px;
  425. background-repeat: no-repeat;
  426. background-position: 50% 50%;
  427. background-size: contain;
  428. }
  429. .setting-icon {
  430. background-image: url("~@/assets/img/developer/setting.png");
  431. }
  432. .ping-icon {
  433. background-image: url("~@/assets/img/developer/ping.png");
  434. }
  435. .developer-setting-tips {
  436. font-size: 14px;
  437. font-weight: 400;
  438. color: #0b111a;
  439. line-height: 21px;
  440. }
  441. .developer-setting-line {
  442. position: absolute;
  443. left: 50%;
  444. top: 50%;
  445. transform: translate(-50%, -50%);
  446. width: 1px;
  447. height: 12px;
  448. background: #aeb6ca;
  449. // border: 1px solid #AEB6CA;
  450. }
  451. .developer-reward {
  452. cursor: pointer;
  453. }
  454. .developer-reward-title {
  455. display: flex;
  456. justify-content: space-between;
  457. align-items: center;
  458. p {
  459. font-size: 14px;
  460. font-weight: 400;
  461. color: #828c99;
  462. line-height: 20px;
  463. cursor: pointer;
  464. }
  465. }
  466. .developer-reward-show-setting {
  467. width: 20px;
  468. height: 20px;
  469. // border: 1px solid #aeb6ca;
  470. background-position: 50% 50%;
  471. background-repeat: no-repeat;
  472. background-size: 100% auto;
  473. cursor: pointer;
  474. &.show {
  475. background-image: url("~@/assets/img/developer/show.png");
  476. }
  477. &.hide {
  478. background-image: url("~@/assets/img/developer/hide.png");
  479. }
  480. }
  481. .developer-reward-count {
  482. margin-top: 8px;
  483. font-size: 20px;
  484. font-weight: 500;
  485. color: #0b121a;
  486. line-height: 28px;
  487. }
  488. .developer-reward-detail {
  489. margin-top: 22px;
  490. overflow: hidden;
  491. }
  492. .developer-reward-item {
  493. width: 50%;
  494. float: left;
  495. font-size: 13px;
  496. font-weight: 400;
  497. color: #828c99;
  498. line-height: 18px;
  499. margin-bottom: 10px;
  500. span.num {
  501. font-size: 16px;
  502. font-weight: 400;
  503. color: #0b121a;
  504. line-height: 22px;
  505. }
  506. }
  507. .developer-skill.block {
  508. padding: 0;
  509. display: flex;
  510. flex-wrap: wrap;
  511. }
  512. .developer-skill-item {
  513. width: 175px;
  514. height: 55px;
  515. box-sizing: border-box;
  516. display: flex;
  517. align-items: center;
  518. justify-content: center;
  519. font-size: 14px;
  520. font-weight: 400;
  521. color: #0b121a;
  522. cursor: pointer;
  523. transition: all 0.3s;
  524. border-right: 1px solid #ebeced;
  525. border-bottom: 1px solid #ebeced;
  526. // &:nth-last-child(n + 3) {
  527. // }
  528. &.cur {
  529. color: #288bff;
  530. }
  531. &:hover {
  532. color: #288bff;
  533. }
  534. }
  535. .developer-skill-icon {
  536. width: 18px;
  537. height: 18px;
  538. margin-right: 6px;
  539. background-size: contain;
  540. }
  541. @for $i from 1 through 4 {
  542. .developer-skill-item {
  543. .icon#{$i} {
  544. transition: all 0.3s;
  545. background-image: url("~@/assets/img/developer/sk_icno_#{$i}.png");
  546. }
  547. &:hover,
  548. &.cur {
  549. .icon#{$i} {
  550. background-image: url("~@/assets/img/developer/sk_icno_#{$i}_hover.png");
  551. }
  552. }
  553. }
  554. }
  555. .developer-tab {
  556. background-color: #fff;
  557. // border-radius: 8px;
  558. padding-top: 0px;
  559. }
  560. .developer-tab-title-list {
  561. display: flex;
  562. position: relative;
  563. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  564. }
  565. .developer-tab-title-item {
  566. height: 62px;
  567. display: inline-flex;
  568. justify-content: center;
  569. align-items: center;
  570. margin-right: 20px;
  571. font-size: 16px;
  572. font-weight: 400;
  573. color: #4b5d73;
  574. cursor: pointer;
  575. transition: all 0.5s;
  576. &.cur {
  577. font-size: 16px;
  578. font-weight: 500;
  579. color: #0b121a;
  580. border-bottom: 3px #308eff solid;
  581. }
  582. }
  583. .developer-tab-title-line {
  584. position: absolute;
  585. left: 0;
  586. bottom: 0;
  587. width: 24px;
  588. height: 4px;
  589. background: #308eff;
  590. border-radius: 3px;
  591. transition: all 0.5s;
  592. }
  593. .developer-tab-main {
  594. padding: 24px 0;
  595. }
  596. .developer-tab-tips {
  597. padding-left: 24px;
  598. font-size: 14px;
  599. font-weight: 400;
  600. color: #828c99;
  601. background: url("~@/assets/img/developer/notice.png") no-repeat left 50%;
  602. background-size: contain;
  603. }
  604. .developer-dynamic-list {
  605. overflow: hidden;
  606. margin-top: 24px;
  607. }
  608. .dynamic-empty {
  609. margin-top: 100px;
  610. display: flex;
  611. flex-direction: column;
  612. justify-content: center;
  613. align-items: center;
  614. p {
  615. margin-top: 24px;
  616. text-align: center;
  617. font-size: 14px;
  618. font-weight: 400;
  619. color: #828c99;
  620. line-height: 21px;
  621. }
  622. }
  623. .developer-dynamic-item {
  624. margin-bottom: 41px;
  625. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  626. &:nth-last-child(1) {
  627. border-bottom: none;
  628. }
  629. }
  630. .dynamic-user {
  631. display: flex;
  632. position: relative;
  633. // left: -50px;
  634. }
  635. .dynamic-user-avatar {
  636. display: block;
  637. width: 40px;
  638. height: 40px;
  639. font-size: 0;
  640. margin-right: 10px;
  641. position: relative;
  642. img {
  643. width: 40px;
  644. height: 40px;
  645. overflow: hidden;
  646. border-radius: 100%;
  647. }
  648. .dynamic-user-avatar-vip-icon{
  649. position:absolute;
  650. right: -2px;;
  651. bottom: -2px;
  652. width: 14px;
  653. height: 14px;
  654. background: url('~@/assets/img/developer/vip_flag.png') no-repeat center center;
  655. background-size: 100% auto;
  656. }
  657. }
  658. .dynamic-user-info {
  659. flex: 1;
  660. display: flex;
  661. flex-direction: column;
  662. }
  663. .dynamic-user-nickname {
  664. font-size: 14px;
  665. font-weight: 500;
  666. color: #0b121a;
  667. line-height: 20px;
  668. vertical-align: baseline;
  669. }
  670. .dynamic-level {
  671. display: inline-block;
  672. margin-left: 8px;
  673. // width: 26px;
  674. padding: 0 6px;
  675. height: 14px;
  676. background: #4b5d73;
  677. border-radius: 9px;
  678. text-align: center;
  679. line-height: 16px;
  680. font-size: 10px;
  681. font-weight: 500;
  682. color: #ffffff;
  683. }
  684. .dynamic-job {
  685. font-size: 12px;
  686. font-weight: 400;
  687. color: #828c99;
  688. line-height: 17px;
  689. margin-top: 3px;
  690. }
  691. .dynamic-margin {
  692. margin-left: 50px;
  693. margin-right: 24px;
  694. }
  695. .dynamic-title {
  696. margin-top: 12px;
  697. font-size: 14px;
  698. font-weight: 400;
  699. color: #0b111a;
  700. line-height: 21px;
  701. }
  702. .dynamic-type-list {
  703. margin-top: 10px;
  704. }
  705. .dynamic-type-item {
  706. display: inline-block;
  707. padding: 0 10px;
  708. height: 23px;
  709. background: #ebf4ff;
  710. border-radius: 12px;
  711. line-height: 23px;
  712. font-size: 12px;
  713. font-weight: 400;
  714. color: #288bff;
  715. }
  716. .dynamic-img-area {
  717. margin-top: 16px;
  718. overflow: hidden;
  719. }
  720. .dynamic-img-item {
  721. float: left;
  722. margin-right: 10px;
  723. width: 90px;
  724. height: 90px;
  725. margin-bottom: 10px;
  726. }
  727. .dynamic-link-area {
  728. display: flex;
  729. height: 50px;
  730. background: #f7f8fa;
  731. align-items: center;
  732. margin-top: 10px;
  733. cursor: pointer;
  734. }
  735. .dynamic-link-img-area {
  736. width: 34px;
  737. height: 34px;
  738. margin-left: 8px;
  739. margin-right: 8px;
  740. }
  741. .dynamic-link-content {
  742. a,
  743. span {
  744. font-size: 14px;
  745. font-weight: 400;
  746. color: #0b111a;
  747. line-height: 21px;
  748. }
  749. }
  750. .dynamic-control {
  751. margin-top: 16px;
  752. margin-bottom: 16px;
  753. display: flex;
  754. align-items: center;
  755. }
  756. .dynamic-control-item {
  757. width: 30%;
  758. flex: 1;
  759. display: flex;
  760. align-items: center;
  761. justify-content: center;
  762. cursor: pointer;
  763. font-size: 14px;
  764. font-weight: 400;
  765. color: #333333;
  766. line-height: 20px;
  767. }
  768. .dynamic-icon {
  769. display: inline-block;
  770. width: 18px;
  771. height: 18px;
  772. background-position: center;
  773. background-repeat: no-repeat;
  774. background-size: contain;
  775. margin-right: 6px;
  776. }
  777. .icon-share {
  778. background-image: url("~@/assets/img/developer/ic_ community_share@2x.png");
  779. }
  780. .icon-comment {
  781. background-image: url("~@/assets/img/developer/ic_ community_comment@2x.png");
  782. }
  783. .icon-like {
  784. background-image: url("~@/assets/img/developer/ic_ community_praise_s@2x.png");
  785. }
  786. .arrow_icon {
  787. position: relative;
  788. &::after {
  789. content: "";
  790. position: absolute;
  791. right: -12px;
  792. top: 50%;
  793. width: 8px;
  794. height: 8px;
  795. margin-top: -4px;
  796. border-right: 1px solid #828c99;
  797. border-bottom: 1px solid #828c99;
  798. transform: rotate(-45deg);
  799. }
  800. }
  801. .nologin {
  802. cursor: pointer;
  803. }
  804. // 经验等级介绍
  805. .ma-level-dialog {
  806. background: #ffffff;
  807. border-radius: 8px !important;
  808. }
  809. .dev-level-container {
  810. display: flex;
  811. justify-content: space-between;
  812. }
  813. .dev-level-highline {
  814. color: #308eff;
  815. }
  816. .dev-level-detail {
  817. width: 328px;
  818. margin-left: 59px;
  819. }
  820. .dev-level-introduce {
  821. width: 360px;
  822. margin-right: 46px;
  823. background: #f7f8fa;
  824. border-radius: 8px;
  825. padding-bottom: 20px;
  826. }
  827. .dev-level-info {
  828. width: 108px;
  829. height: 98px;
  830. margin: 0 auto;
  831. background: url('"~@/assets/img/developer/level_bg.png') no-repeat 50% 50%;
  832. background-size: 100% auto;
  833. position: relative;
  834. }
  835. .dev-level-info-tips {
  836. position: absolute;
  837. top: 35px;
  838. left: 50%;
  839. transform: translateX(-50%);
  840. font-size: 16px;
  841. font-family: Arial-BoldMT, Arial;
  842. font-weight: normal;
  843. color: #308eff;
  844. line-height: 18px;
  845. }
  846. .dev-level-line-container {
  847. margin-top: 17px;
  848. overflow: hidden;
  849. p {
  850. font-size: 14px;
  851. font-family: PingFangSC-Regular, PingFang SC;
  852. font-weight: 400;
  853. color: #666666;
  854. line-height: 22px;
  855. margin-top: 6px;
  856. }
  857. }
  858. .dev-level-line {
  859. height: 6px;
  860. background: #d8d8d8;
  861. border-radius: 3px;
  862. overflow: hidden;
  863. position: relative;
  864. span {
  865. position: absolute;
  866. left: 0;
  867. top: 0;
  868. bottom: 0;
  869. width: 100%;
  870. transform: translateX(-100%);
  871. transition: all 0.8s;
  872. transition-delay: 0.5s;
  873. background: #308eff;
  874. border-radius: 3px;
  875. }
  876. }
  877. .dev-level-line-left {
  878. float: left;
  879. }
  880. .dev-level-line-right {
  881. float: right;
  882. }
  883. .dev-level-details-list {
  884. margin-top: 31px;
  885. }
  886. .dev-level-details-item {
  887. display: flex;
  888. margin-bottom: 12px;
  889. }
  890. .dev-level-details-tit {
  891. flex: 1;
  892. font-size: 14px;
  893. font-family: PingFangSC-Regular, PingFang SC;
  894. font-weight: 400;
  895. color: #000000;
  896. line-height: 20px;
  897. .label {
  898. color: #999999;
  899. font-size: 12px;
  900. margin-left: 12px;
  901. }
  902. }
  903. .dev-level-introduce-section {
  904. margin-left: 20px;
  905. margin-right: 20px;
  906. padding-top: 40px;
  907. &:nth-child(1) {
  908. padding-top: 50px;
  909. }
  910. h3 {
  911. font-size: 14px;
  912. font-family: PingFangSC-Medium, PingFang SC;
  913. font-weight: 500;
  914. color: #308eff;
  915. line-height: 20px;
  916. }
  917. p {
  918. margin-top: 8px;
  919. font-size: 14px;
  920. font-family: PingFangSC-Regular, PingFang SC;
  921. font-weight: 400;
  922. color: #000000;
  923. line-height: 22px;
  924. }
  925. }
  926. .dev-level-table-container {
  927. margin-left: 20px;
  928. margin-right: 20px;
  929. margin-top: 30px;
  930. }
  931. .dev-level-table {
  932. border-collapse: collapse;
  933. width: 100%;
  934. background: #fff;
  935. th,
  936. td {
  937. border: 1px solid #ccc;
  938. background: #fff;
  939. color: #000;
  940. height: 29px;
  941. vertical-align: middle;
  942. text-align: left;
  943. text-indent: 5px;
  944. }
  945. }