index.scss 16 KB

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