about.css 15 KB

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