about.scss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  1. @media screen and (min-width: 768px) {
  2. .main {
  3. .about {
  4. padding: 120px 0;
  5. background: #fff;
  6. .title {
  7. font-size: 34px;
  8. text-align: center;
  9. margin-bottom: 32px;
  10. }
  11. .description {
  12. font-size: 16px;
  13. color: #505050;
  14. text-align: center;
  15. line-height: 32px;
  16. }
  17. .content {
  18. display: -webkit-box;
  19. display: -ms-flexbox;
  20. display: flex;
  21. -webkit-box-pack: justify;
  22. -ms-flex-pack: justify;
  23. justify-content: space-between;
  24. margin-top: 80px;
  25. .item {
  26. display: -webkit-box;
  27. display: -ms-flexbox;
  28. display: flex;
  29. -webkit-box-orient: vertical;
  30. -webkit-box-direction: normal;
  31. -ms-flex-direction: column;
  32. flex-direction: column;
  33. -webkit-box-align: center;
  34. -ms-flex-align: center;
  35. align-items: center;
  36. width: 380px;
  37. height: 387px;
  38. -webkit-box-sizing: border-box;
  39. box-sizing: border-box;
  40. border: 1px solid #e8e8e8;
  41. padding: 40px 30px;
  42. img {
  43. display: block;
  44. width: 72px;
  45. height: 72px;
  46. margin-top: 20px;
  47. }
  48. .tip {
  49. font-size: 18px;
  50. color: #505050;
  51. font-weight: bold;
  52. margin-top: 32px;
  53. }
  54. .desc {
  55. margin-top: 32px;
  56. font-size: 16px;
  57. color: #505050;
  58. line-height: 32px;
  59. text-align: center;
  60. }
  61. }
  62. }
  63. }
  64. .profile {
  65. background: #f7f7f7;
  66. padding: 60px 0;
  67. .cover {
  68. width: 470px;
  69. height: 479px;
  70. overflow: hidden;
  71. background-color: pink;
  72. img {
  73. display: block;
  74. width: 100%;
  75. height: 100%;
  76. }
  77. }
  78. .content {
  79. width: 672px;
  80. margin-left: 50px;
  81. .title {
  82. font-size: 34px;
  83. }
  84. .subtitle {
  85. font-size: 34px;
  86. color: #0688d2;
  87. margin: 40px 0 16px;
  88. span {
  89. font-size: 24px;
  90. color: #272727;
  91. margin-left: 12px;
  92. }
  93. }
  94. .tags {
  95. display: -webkit-box;
  96. display: -ms-flexbox;
  97. display: flex;
  98. -webkit-box-align: center;
  99. -ms-flex-align: center;
  100. align-items: center;
  101. font-size: 0;
  102. span {
  103. font-size: 16px;
  104. }
  105. i {
  106. display: block;
  107. height: 12px;
  108. width: 1px;
  109. background: #505050;
  110. margin: 0 24px;
  111. }
  112. }
  113. .line {
  114. width: 100%;
  115. height: 1px;
  116. background: #e8e8e8;
  117. position: relative;
  118. margin: 20px 0 40px;
  119. &::before {
  120. content: '';
  121. display: block;
  122. width: 24px;
  123. height: 2px;
  124. background: #0688d2;
  125. position: absolute;
  126. left: 0;
  127. bottom: 0;
  128. }
  129. }
  130. .description {
  131. font-size: 16px;
  132. color: #999;
  133. line-height: 32px;
  134. text-align: justify;
  135. }
  136. }
  137. }
  138. .team {
  139. padding: 120px 0;
  140. background: #fff;
  141. .title {
  142. font-size: 34px;
  143. text-align: center;
  144. }
  145. .content {
  146. margin-top: 80px;
  147. .item {
  148. width: 388px;
  149. height: 340px;
  150. float: left;
  151. margin-right: 17px;
  152. margin-top: 18px;
  153. overflow: hidden;
  154. &:first-child {
  155. position: relative;
  156. background: #eff9ff;
  157. display: -webkit-box;
  158. display: -ms-flexbox;
  159. display: flex;
  160. -webkit-box-pack: center;
  161. -ms-flex-pack: center;
  162. justify-content: center;
  163. -webkit-box-align: center;
  164. -ms-flex-align: center;
  165. align-items: center;
  166. .cover {
  167. width: 160px;
  168. .line {
  169. width: 18px;
  170. height: 3px;
  171. background: #0688d2;
  172. margin: 18px 0 24px;
  173. }
  174. .tip {
  175. font-size: 34px;
  176. }
  177. .desc {
  178. font-size: 16px;
  179. color: #999;
  180. }
  181. }
  182. }
  183. &:nth-child(-n + 3) {
  184. margin-top: 0;
  185. }
  186. &:nth-child(3),
  187. &:nth-child(5),
  188. &:nth-child(8),
  189. &:nth-child(10) {
  190. margin-right: 0;
  191. }
  192. &:nth-child(5),
  193. &:nth-child(9) {
  194. width: 795px;
  195. }
  196. img {
  197. display: block;
  198. width: 100%;
  199. -webkit-transition: all 0.4s;
  200. transition: all 0.4s;
  201. }
  202. &:hover {
  203. img {
  204. -webkit-transform: scale(1.2);
  205. transform: scale(1.2);
  206. }
  207. }
  208. }
  209. }
  210. }
  211. .development {
  212. padding: 100px 0;
  213. background: #f7f7f7;
  214. .title {
  215. font-size: 34px;
  216. text-align: center;
  217. }
  218. .content {
  219. position: relative;
  220. margin-top: 80px;
  221. width: 2px;
  222. margin: 0 auto;
  223. background: #e8e8e8;
  224. .item {
  225. position: relative;
  226. width: 2px;
  227. margin-top: 60px;
  228. &::before {
  229. content: '';
  230. position: absolute;
  231. width: 10px;
  232. height: 10px;
  233. -webkit-box-sizing: border-box;
  234. box-sizing: border-box;
  235. border: 1px solid #999999;
  236. background: #fff;
  237. border-radius: 50%;
  238. left: -4px;
  239. z-index: 5;
  240. top: 32px;
  241. }
  242. &:last-child {
  243. &::before {
  244. background: #0688d2;
  245. border-color: #fff;
  246. }
  247. .time {
  248. border: 1px solid #0688d2;
  249. border-left: 0;
  250. color: #0688d2;
  251. }
  252. .node {
  253. background: #0688d2;
  254. dt,
  255. .tip,
  256. .subtip {
  257. color: #ffffff;
  258. }
  259. }
  260. }
  261. &.with-time-left {
  262. .time {
  263. position: absolute;
  264. left: -16px;
  265. top: 0;
  266. -webkit-transform: translateX(-100%);
  267. transform: translateX(-100%);
  268. }
  269. .node {
  270. padding-left: 44px;
  271. margin-left: -16px;
  272. }
  273. }
  274. &.with-time-right {
  275. .time {
  276. position: absolute;
  277. top: 0;
  278. left: 16px;
  279. }
  280. .node {
  281. position: relative;
  282. -webkit-transform: translate(-100%);
  283. transform: translate(-100%);
  284. text-align: right;
  285. padding-right: 44px;
  286. right: -16px;
  287. }
  288. }
  289. .time {
  290. font-size: 34px;
  291. color: #505050;
  292. white-space: nowrap;
  293. padding: 20px 24px;
  294. height: 100%;
  295. -webkit-box-sizing: border-box;
  296. box-sizing: border-box;
  297. span {
  298. font-size: 14px;
  299. margin-left: 10px;
  300. }
  301. }
  302. .node {
  303. width: 526px;
  304. margin: 0;
  305. -webkit-box-sizing: border-box;
  306. box-sizing: border-box;
  307. padding: 20px 24px;
  308. dd,
  309. dt {
  310. margin-left: 0;
  311. }
  312. dt {
  313. font-size: 34px;
  314. color: #505050;
  315. }
  316. dd {
  317. font-size: 14px;
  318. color: #505050;
  319. margin-top: 24px;
  320. .tip {
  321. margin-bottom: 8px;
  322. }
  323. }
  324. }
  325. }
  326. }
  327. }
  328. .honor {
  329. padding: 120px 0;
  330. padding-bottom: 0;
  331. background: #fff;
  332. .title {
  333. font-size: 32px;
  334. text-align: center;
  335. }
  336. .content {
  337. margin-top: 80px;
  338. .item {
  339. width: 288px;
  340. height: 330px;
  341. float: left;
  342. margin-right: 15px;
  343. &:nth-child(4n) {
  344. margin-right: 0;
  345. }
  346. }
  347. }
  348. }
  349. }
  350. }
  351. @media screen and (max-width: 768px) {
  352. .main {
  353. .about {
  354. padding: 1.2rem 0;
  355. background: #fff;
  356. .title {
  357. font-size: 0.34rem;
  358. text-align: center;
  359. margin-bottom: 0.4rem;
  360. }
  361. .description {
  362. width: 6.24rem;
  363. margin: 0 auto;
  364. font-size: 0.26rem;
  365. color: #505050;
  366. text-align: center;
  367. line-height: 0.48rem;
  368. word-break: break-all;
  369. }
  370. .content {
  371. margin-top: 0.4rem;
  372. padding-bottom: 0.24rem;
  373. &::-webkit-scrollbar {
  374. width: 2px;
  375. height: 2px;
  376. background-color: #f5f5f5;
  377. }
  378. &::-webkit-scrollbar-thumb {
  379. border-radius: 2px;
  380. background-color: #cccecf;
  381. }
  382. .item {
  383. display: inline-block;
  384. width: 5.96rem;
  385. height: 5.62rem;
  386. -webkit-box-sizing: border-box;
  387. box-sizing: border-box;
  388. border: 1px solid #e8e8e8;
  389. padding: 0 0.3rem 0.4rem;
  390. margin-left: 0.32rem;
  391. vertical-align: top;
  392. &:last-child {
  393. margin-right: 0.32rem;
  394. }
  395. img {
  396. display: block;
  397. width: 1.4rem;
  398. height: 1.4rem;
  399. margin: 0.5rem auto 0;
  400. }
  401. .tip {
  402. font-size: 0.3rem;
  403. color: #505050;
  404. font-weight: bold;
  405. margin-top: 0.4rem;
  406. text-align: center;
  407. }
  408. .desc {
  409. margin-top: 0.32rem;
  410. font-size: 0.26rem;
  411. color: #505050;
  412. line-height: 0.48rem;
  413. text-align: center;
  414. white-space: initial;
  415. }
  416. }
  417. }
  418. }
  419. .profile {
  420. background: #f7f7f7;
  421. padding: 0.8rem 0 6.98rem;
  422. position: relative;
  423. .cover {
  424. position: absolute;
  425. width: 5.46rem;
  426. height: 5.46rem;
  427. overflow: hidden;
  428. bottom: 0.7rem;
  429. left: 50%;
  430. -webkit-transform: translateX(-50%);
  431. transform: translateX(-50%);
  432. img {
  433. display: block;
  434. width: 100%;
  435. height: 100%;
  436. }
  437. }
  438. .content {
  439. width: 5.52rem;
  440. margin-left: 50px;
  441. .title {
  442. font-size: 0.34rem;
  443. text-align: center;
  444. }
  445. .subtitle {
  446. font-size: 0.34rem;
  447. color: #0688d2;
  448. text-align: center;
  449. margin-top: 0.2rem;
  450. span {
  451. font-size: 0.24rem;
  452. color: #272727;
  453. margin-left: 12px;
  454. }
  455. }
  456. .tags {
  457. font-size: 0;
  458. text-align: center;
  459. span {
  460. display: block;
  461. font-size: 0.26rem;
  462. margin-top: 0.16rem;
  463. }
  464. i {
  465. display: block;
  466. }
  467. }
  468. .line {
  469. width: 100%;
  470. height: 1px;
  471. background: #e8e8e8;
  472. position: relative;
  473. margin: 0.48rem 0;
  474. }
  475. .description {
  476. font-size: 0.24rem;
  477. color: #999;
  478. line-height: 0.48rem;
  479. text-align: center;
  480. }
  481. }
  482. }
  483. .team {
  484. padding: 1.2rem 0;
  485. background: #fff;
  486. padding-left: 0.32rem;
  487. .title {
  488. font-size: 0.34rem;
  489. text-align: center;
  490. }
  491. .content {
  492. margin-top: 0.4rem;
  493. .item {
  494. width: 2.2rem;
  495. height: 1.94rem;
  496. float: left;
  497. margin-right: 0.12rem;
  498. margin-top: 0.12rem;
  499. overflow: hidden;
  500. &:first-child {
  501. position: relative;
  502. background: #eff9ff;
  503. display: -webkit-box;
  504. display: -ms-flexbox;
  505. display: flex;
  506. -webkit-box-pack: center;
  507. -ms-flex-pack: center;
  508. justify-content: center;
  509. -webkit-box-align: center;
  510. -ms-flex-align: center;
  511. align-items: center;
  512. .cover {
  513. width: 1.8rem;
  514. .line {
  515. width: 0.16rem;
  516. height: 0.03rem;
  517. background: #0688d2;
  518. margin: 0.24rem 0;
  519. }
  520. .tip {
  521. font-size: 0.26rem;
  522. }
  523. .desc {
  524. font-size: 0.18rem;
  525. color: #999;
  526. }
  527. }
  528. }
  529. &:nth-child(-n + 3) {
  530. margin-top: 0;
  531. }
  532. &:nth-child(3),
  533. &:nth-child(5),
  534. &:nth-child(8),
  535. &:nth-child(10) {
  536. margin-right: 0;
  537. }
  538. &:nth-child(5),
  539. &:nth-child(9) {
  540. width: 4.52rem;
  541. }
  542. img {
  543. display: block;
  544. width: 100%;
  545. -webkit-transition: all 0.4s;
  546. transition: all 0.4s;
  547. }
  548. }
  549. }
  550. }
  551. .development {
  552. padding: 0.8rem 0;
  553. background: #f7f7f7;
  554. .title {
  555. font-size: 0.34rem;
  556. text-align: center;
  557. }
  558. .content {
  559. position: relative;
  560. margin-top: 0.8rem;
  561. width: 0.02rem;
  562. margin: 0 auto;
  563. background: #e8e8e8;
  564. .item {
  565. position: relative;
  566. width: 2px;
  567. margin-top: 0.6rem;
  568. &::before {
  569. content: '';
  570. position: absolute;
  571. width: 0.12rem;
  572. height: 0.12rem;
  573. -webkit-box-sizing: border-box;
  574. box-sizing: border-box;
  575. border: 0.01rem solid #999999;
  576. background: #fff;
  577. border-radius: 50%;
  578. left: -0.04rem;
  579. z-index: 5;
  580. }
  581. &.with-time-left {
  582. .time {
  583. position: absolute;
  584. top: 0;
  585. -webkit-transform: translateX(-100%);
  586. transform: translateX(-100%);
  587. left: -0.3rem;
  588. }
  589. .node {
  590. margin-left: 0.3rem;
  591. }
  592. }
  593. &.with-time-right {
  594. .time {
  595. position: absolute;
  596. top: 0;
  597. left: 0.3rem;
  598. }
  599. .node {
  600. position: relative;
  601. -webkit-transform: translate(-100%);
  602. transform: translate(-100%);
  603. text-align: right;
  604. margin-left: -0.3rem;
  605. }
  606. }
  607. .time {
  608. font-size: 0.26rem;
  609. color: #505050;
  610. white-space: nowrap;
  611. height: 100%;
  612. -webkit-box-sizing: border-box;
  613. box-sizing: border-box;
  614. span {
  615. font-size: 0.2rem;
  616. margin-left: 0.1rem;
  617. }
  618. }
  619. .node {
  620. width: 3rem;
  621. margin: 0;
  622. -webkit-box-sizing: border-box;
  623. box-sizing: border-box;
  624. dd,
  625. dt {
  626. margin-left: 0;
  627. }
  628. dt {
  629. font-size: 0.26rem;
  630. color: #505050;
  631. }
  632. dd {
  633. font-size: 0.2rem;
  634. color: #505050;
  635. margin-top: 0.16rem;
  636. line-height: 1.2;
  637. .subtip {
  638. margin-top: 0.04rem;
  639. }
  640. }
  641. }
  642. }
  643. }
  644. }
  645. .honor {
  646. padding: 1.2rem 0;
  647. padding-bottom: 0;
  648. background: #fff;
  649. padding-left: 0.32rem;
  650. .title {
  651. font-size: 32px;
  652. text-align: center;
  653. }
  654. .content {
  655. margin-top: 0.8rem;
  656. .item {
  657. width: 2.2rem;
  658. height: 3.52rem;
  659. float: left;
  660. margin-right: 0.13rem;
  661. margin-bottom: 0.13rem;
  662. img {
  663. display: block;
  664. width: 100%;
  665. height: 100%;
  666. }
  667. &:nth-child(3n) {
  668. margin-right: 0;
  669. }
  670. }
  671. }
  672. }
  673. }
  674. }