index.scss 16 KB

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