image.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849
  1. @keyframes spread {
  2. 0% {
  3. transform: scale(0);
  4. -webkit-transform: scale(0);
  5. -moz-transform: scale(0);
  6. transform: scale(0);
  7. }
  8. 100% {
  9. transform: scale(1);
  10. -webkit-transform: scale(1);
  11. -moz-transform: scale(1);
  12. transform: scale(1);
  13. }
  14. }
  15. @-webkit-keyframes spread {
  16. 0% {
  17. transform: scale(0);
  18. -webkit-transform: scale(0);
  19. -moz-transform: scale(0);
  20. transform: scale(0);
  21. }
  22. 100% {
  23. transform: scale(1);
  24. -webkit-transform: scale(1);
  25. -moz-transform: scale(1);
  26. transform: scale(1);
  27. }
  28. }
  29. @-moz-keyframes spread {
  30. 0% {
  31. transform: scale(0);
  32. -webkit-transform: scale(0);
  33. -moz-transform: scale(0);
  34. transform: scale(0);
  35. }
  36. 100% {
  37. transform: scale(1);
  38. -webkit-transform: scale(1);
  39. -moz-transform: scale(1);
  40. transform: scale(1);
  41. }
  42. }
  43. @-o-keyframes spread {
  44. 0% {
  45. transform: scale(0);
  46. -webkit-transform: scale(0);
  47. -moz-transform: scale(0);
  48. transform: scale(0);
  49. }
  50. 100% {
  51. transform: scale(1);
  52. -webkit-transform: scale(1);
  53. -moz-transform: scale(1);
  54. transform: scale(1);
  55. }
  56. }
  57. @keyframes pronamei {
  58. 0% {
  59. top: -18px;
  60. }
  61. 50% {
  62. top: -25px;
  63. }
  64. 100% {
  65. top: -18px;
  66. }
  67. }
  68. @-webkit-keyframes pronamei {
  69. 0% {
  70. top: -18px;
  71. }
  72. 50% {
  73. top: -25px;
  74. }
  75. 100% {
  76. top: -18px;
  77. }
  78. }
  79. .w {
  80. width: 1200px;
  81. margin: 0 auto;
  82. }
  83. /* header */
  84. .header-box {
  85. position: relative;
  86. width: 100%;
  87. height: 1079px;
  88. background: url(../imgs/bg.png) no-repeat center center;
  89. background-size: cover;
  90. }
  91. .header-top {
  92. position: absolute;
  93. left: 50%;
  94. top: 0;
  95. transform: translateX(-50%);
  96. z-index: 11;
  97. width: 1200px;
  98. height: 60px;
  99. display: flex;
  100. justify-content: space-between;
  101. align-items: center;
  102. }
  103. .header-left {
  104. display: flex;
  105. align-items: center;
  106. }
  107. .header-left img {
  108. width: 40px;
  109. }
  110. .header-left h1 {
  111. font-size: 18px;
  112. font-family: MicrosoftYaHei;
  113. font-weight: 400;
  114. color: #FFFFFF;
  115. letter-spacing: 2px;
  116. margin-left: 10px;
  117. }
  118. .header-right {
  119. display: flex;
  120. align-items: center;
  121. }
  122. .header-right a {
  123. font-size: 18px;
  124. font-family: MicrosoftYaHei;
  125. color: #FFFFFF;
  126. letter-spacing: 1px;
  127. margin-left: 41px;
  128. }
  129. .header-right a:hover {
  130. color: #bacbf8;
  131. }
  132. .header-content {
  133. display: flex;
  134. flex-direction: column;
  135. justify-content: center;
  136. height: 100%;
  137. }
  138. .banner-content {
  139. display: flex;
  140. justify-content: space-between;
  141. align-items: center;
  142. margin-top: 30px;
  143. }
  144. .banner-title {
  145. position: relative;
  146. display: flex;
  147. align-items: flex-end;
  148. width: fit-content;
  149. }
  150. .banner-title h1 {
  151. font-family: 'Microsoft YaHei';
  152. font-style: normal;
  153. font-weight: 700;
  154. font-size: 56px;
  155. line-height: 61px;
  156. color: #FFFFFF;
  157. margin-right: 30px;
  158. }
  159. .banner-title > span {
  160. font-family: 'Microsoft YaHei';
  161. font-style: normal;
  162. font-weight: 700;
  163. font-size: 34px;
  164. line-height: 31px;
  165. color: #EEEFFF;
  166. border-left: 2px solid #CBB3FF;
  167. padding-left: 24px;
  168. padding-top: 8px;
  169. box-sizing: border-box;
  170. }
  171. .banner-label {
  172. position: absolute;
  173. right: -100px;
  174. top: -14px;
  175. animation: pronamei 1s infinite both;
  176. -webkit-animation: pronamei 1s infinite both;
  177. -moz-animation: pronamei 1s infinite both;
  178. -o-animation: pronamei 1s infinite both;
  179. }
  180. .banner-label span {
  181. position: absolute;
  182. left: 13px;
  183. top: 6px;
  184. font-family: 'Microsoft YaHei';
  185. font-style: normal;
  186. font-weight: 700;
  187. font-size: 17.1429px;
  188. color: #FFFFFF;
  189. }
  190. .banner-left ul {
  191. margin-top: 46px;
  192. margin-bottom: 72px;
  193. }
  194. .banner-left ul li {
  195. display: flex;
  196. align-items: center;
  197. margin-bottom: 20px;
  198. }
  199. .banner-left ul li:last-child {
  200. margin-bottom: 0;
  201. }
  202. .banner-left ul li h2 {
  203. font-family: 'Microsoft YaHei';
  204. font-style: normal;
  205. font-weight: 700;
  206. font-size: 22px;
  207. line-height: 32px;
  208. color: #FFFFFF;
  209. opacity: 0.9;
  210. margin-left: 14px;
  211. margin-right: 14px;
  212. }
  213. .banner-left ul li p {
  214. font-family: 'Source Han Sans CN';
  215. font-style: normal;
  216. font-weight: 400;
  217. font-size: 20px;
  218. line-height: 36px;
  219. color: #FFFFFF;
  220. opacity: 0.9;
  221. margin-left: 14px;
  222. }
  223. .banner-left a {
  224. display: flex;
  225. justify-content: center;
  226. align-items: center;
  227. width: 323px;
  228. height: 74px;
  229. background: #FFFFFF;
  230. border-radius: 14px;
  231. }
  232. .banner-left a span {
  233. font-family: 'Source Han Sans CN';
  234. font-style: normal;
  235. font-weight: 500;
  236. font-size: 24px;
  237. color: #585FFF;
  238. margin: 0 21px;
  239. }
  240. .banner-left a:hover {
  241. box-shadow: 0px 0px 12px 4px #7b81ec;
  242. }
  243. .sys {
  244. font-family: 'Microsoft YaHei';
  245. font-style: normal;
  246. font-weight: 400;
  247. font-size: 18px;
  248. line-height: 24px;
  249. letter-spacing: 0.155em;
  250. color: #E7EDFF;
  251. margin-top: 16px;
  252. margin-bottom: 9px;
  253. }
  254. .num {
  255. font-family: 'Microsoft YaHei';
  256. font-style: normal;
  257. font-weight: 400;
  258. font-size: 18px;
  259. line-height: 24px;
  260. letter-spacing: 0.1em;
  261. color: #E7EDFF;
  262. }
  263. .num span {
  264. font-family: 'Microsoft YaHei';
  265. font-style: normal;
  266. font-weight: 700;
  267. font-size: 25px;
  268. line-height: 34px;
  269. letter-spacing: 0.1em;
  270. color: #E7EDFF;
  271. margin: 0 8px;
  272. }
  273. .update-time-box {
  274. font-family: 'Microsoft YaHei';
  275. font-style: normal;
  276. font-weight: 400;
  277. font-size: 18px;
  278. line-height: 24px;
  279. letter-spacing: 0.1em;
  280. color: #E7EDFF;
  281. margin-top: 9px;
  282. }
  283. .banner-right {
  284. padding: 26px;
  285. background: rgba(255, 255, 255, 0.2);
  286. border-radius: 56px;
  287. }
  288. .banner-right video {
  289. width: 630px;
  290. border-radius: 30px;
  291. }
  292. .banner-bottom ul {
  293. display: flex;
  294. align-items: center;
  295. justify-content: space-between;
  296. margin-top: 99px;
  297. }
  298. .banner-bottom ul li {
  299. display: flex;
  300. flex-direction: column;
  301. align-items: center;
  302. }
  303. .banner-bottom ul li h3 {
  304. font-family: 'Source Han Sans CN';
  305. font-style: normal;
  306. font-weight: 500;
  307. font-size: 18px;
  308. line-height: 27px;
  309. text-align: center;
  310. color: #EFEEFF;
  311. margin-top: 25px;
  312. }
  313. /* hidden-header */
  314. .hidden-header-box {
  315. display: none;
  316. width: 100%;
  317. height: 60px;
  318. background-color: #FFFFFF;
  319. position: fixed;
  320. top: 0;
  321. left: 0;
  322. z-index: 999;
  323. border-bottom: 1px solid #ddd;
  324. }
  325. .hidden-header-box .header-top .header-left h1 {
  326. font-size: 18px;
  327. font-family: MicrosoftYaHei;
  328. font-weight: 400;
  329. color: #000000;
  330. letter-spacing: 2px;
  331. }
  332. .hidden-header-box .header-top .header-right a {
  333. font-size: 18px;
  334. font-family: MicrosoftYaHei;
  335. color: #000000;
  336. letter-spacing: 1px;
  337. }
  338. .hidden-header-box .header-top .header-right a:hover {
  339. color: #5a75be;
  340. }
  341. /* 功能介绍 */
  342. .func-box {
  343. width: 100%;
  344. background: #FBFCFD;
  345. padding: 80px 0;
  346. }
  347. .common-title {
  348. position: relative;
  349. font-family: 'Source Han Sans CN';
  350. font-style: normal;
  351. font-weight: 700;
  352. font-size: 38px;
  353. line-height: 57px;
  354. color: #363D42;
  355. text-align: center;
  356. }
  357. .common-title img {
  358. position: absolute;
  359. left: 50%;
  360. bottom: -20px;
  361. transform: translateX(-50%);
  362. }
  363. .func-box ul {
  364. display: flex;
  365. justify-content: space-between;
  366. }
  367. .func-box ul.func-ul1 {
  368. margin-top: 80px;
  369. margin-bottom: 50px;
  370. }
  371. .func-box ul li {
  372. display: flex;
  373. flex-direction: column;
  374. align-items: center;
  375. width: 220px;
  376. height: 300px;
  377. background: #FBFCFD;
  378. box-shadow: 0px 0px 40px 6px rgba(235, 238, 248, 0.75);
  379. border-radius: 20px;
  380. padding-top: 46px;
  381. padding-left: 40px;
  382. padding-right: 40px;
  383. box-sizing: border-box;
  384. }
  385. .func-box ul li h2 {
  386. font-family: 'Microsoft YaHei';
  387. font-style: normal;
  388. font-weight: 400;
  389. font-size: 20px;
  390. line-height: 26px;
  391. color: #494C53;
  392. margin-top: 25px;
  393. margin-bottom: 17px;
  394. }
  395. .func-box ul li p {
  396. font-family: 'Microsoft YaHei';
  397. font-style: normal;
  398. font-weight: 400;
  399. font-size: 14px;
  400. line-height: 24px;
  401. text-align: center;
  402. color: #778086;
  403. }
  404. .func-box ul li:hover h2 {
  405. margin-top: 5px;
  406. }
  407. /* 产品亮点 */
  408. .advantage-box {
  409. width: 100%;
  410. padding-top: 80px;
  411. padding-bottom: 100px;
  412. background: #F8FAFF;
  413. }
  414. .advantage-item {
  415. display: flex;
  416. align-items: center;
  417. justify-content: space-between;
  418. }
  419. .advantage-item1 {
  420. margin-top: 90px;
  421. margin-bottom: 120px;
  422. }
  423. .advantage-item2 .advantage-text {
  424. display: flex;
  425. flex-direction: column;
  426. align-items: flex-end;
  427. }
  428. .advantage-text h2 {
  429. position: relative;
  430. font-family: 'Source Han Sans CN';
  431. font-style: normal;
  432. font-weight: 700;
  433. font-size: 40px;
  434. line-height: 60px;
  435. letter-spacing: 0.1em;
  436. color: #494C53;
  437. }
  438. .advantage-text-left h2 img {
  439. position: absolute;
  440. left: 0;
  441. top: -27px;
  442. }
  443. .advantage-text-right h2 {
  444. text-align: right;
  445. }
  446. .advantage-text-right h2 img {
  447. position: absolute;
  448. right: 0;
  449. top: -27px;
  450. }
  451. .advantage-text-left p {
  452. width: 435px;
  453. }
  454. .advantage-text-right p {
  455. width: 448px;
  456. }
  457. .advantage-text p {
  458. font-family: 'Source Han Sans CN';
  459. font-style: normal;
  460. font-weight: 400;
  461. font-size: 16px;
  462. line-height: 24px;
  463. letter-spacing: 0.04em;
  464. color: #778086;
  465. margin-top: 19px;
  466. margin-bottom: 42px;
  467. }
  468. .advantage-text a {
  469. display: flex;
  470. justify-content: center;
  471. align-items: center;
  472. width: 206px;
  473. height: 59px;
  474. background: linear-gradient(0deg, #507EFF 3.39%, #7443FF 100%);
  475. border-radius: 10px;
  476. font-family: 'Source Han Sans CN';
  477. font-style: normal;
  478. font-weight: 400;
  479. font-size: 24px;
  480. color: #FFFFFF;
  481. }
  482. .advantage-text a:hover {
  483. background: linear-gradient(0deg, #7443FF 3.39%, #507EFF 100%);
  484. }
  485. .advantage-text a img {
  486. margin-left: 20px;
  487. }
  488. /* 应用场景 */
  489. .scen-box {
  490. width: 100%;
  491. padding: 80px 0;
  492. box-sizing: border-box;
  493. }
  494. .scen-box ul {
  495. display: flex;
  496. justify-content: space-between;
  497. }
  498. .scen-box ul.scen-ul1 {
  499. margin-top: 80px;
  500. margin-bottom: 50px;
  501. }
  502. .scen-box ul li {
  503. position: relative;
  504. width: 380px;
  505. height: 319px;
  506. border-radius: 20px;
  507. overflow: hidden;
  508. }
  509. .scen-text {
  510. position: absolute;
  511. left: 0;
  512. bottom: 0;
  513. width: 100%;
  514. height: 70px;
  515. line-height: 70px;
  516. background: rgba(35, 58, 102, .7);
  517. border-radius: 0px 0px 20px 20px;
  518. }
  519. .scen-text img {
  520. position: absolute;
  521. left: 24px;
  522. top: -20px;
  523. }
  524. .scen-text span {
  525. display: block;
  526. text-align: center;
  527. font-family: 'Microsoft YaHei';
  528. font-style: normal;
  529. font-weight: 400;
  530. font-size: 20px;
  531. color: #FFFFFF;
  532. }
  533. /* 评价 */
  534. .assess-box {
  535. width: 100%;
  536. height: 800px;
  537. background: #ebf0fc;
  538. padding-top: 59px;
  539. box-sizing: border-box;
  540. }
  541. .assess-content {
  542. width: 1200px;
  543. margin: 0 auto;
  544. margin-top: 66px;
  545. }
  546. .assess-content ul:nth-child(1) li {
  547. display: none;
  548. width: 100%;
  549. height: 307px;
  550. box-sizing: border-box;
  551. background: #FFFFFF;
  552. border-radius: 30px;
  553. position: relative;
  554. z-index: 10;
  555. text-align: center;
  556. padding-top: 48px;
  557. }
  558. .assess-star h1 {
  559. font-size: 26px;
  560. font-weight: 700;
  561. color: #2D2856;
  562. margin-bottom: 24px;
  563. }
  564. .assess-content ul:nth-child(1) li span {
  565. display: block;
  566. width: 1000px;
  567. height: 1px;
  568. background: #EDF0F3;
  569. border-radius: 0px 0px 0px 0px;
  570. margin: 40px auto 0 auto;
  571. }
  572. .assess-content ul:nth-child(1) li p {
  573. font-size: 18px;
  574. font-weight: 400;
  575. color: #666473;
  576. margin-top: 44px;
  577. }
  578. .assess-content ul:nth-child(1) li i {
  579. display: block;
  580. width: 40px;
  581. height: 40px;
  582. background: #FFFFFF;
  583. border-radius: 2px 2px 2px 2px;
  584. transform: rotate(45deg);
  585. -ms-transform: rotate(45deg);
  586. -moz-transform: rotate(45deg);
  587. -webkit-transform: rotate(45deg);
  588. -o-transform: rotate(45deg);
  589. position: absolute;
  590. bottom: -20px;
  591. }
  592. .left1 {
  593. left: 82px;
  594. }
  595. .left2 {
  596. left: 293px;
  597. }
  598. .left3 {
  599. left: 495px;
  600. }
  601. .left4 {
  602. left: 686px;
  603. }
  604. .left5 {
  605. left: 874px;
  606. }
  607. .left6 {
  608. left: 1073px;
  609. }
  610. .assess-content ul:nth-child(1) li:first-child {
  611. display: block;
  612. }
  613. .assess-content ul:nth-child(2) {
  614. display: flex;
  615. align-items: center;
  616. justify-content: space-around;
  617. margin-top: 63px;
  618. }
  619. .assess-content ul:nth-child(2) li {
  620. display: flex;
  621. flex-direction: column;
  622. align-items: center;
  623. }
  624. .assess-content ul:nth-child(2) li:hover {
  625. cursor: pointer;
  626. }
  627. .assess-content ul:nth-child(2) li img {
  628. width: 76px;
  629. height: 76px;
  630. }
  631. .assess-content ul:nth-child(2) li p {
  632. font-family: 'Microsoft YaHei';
  633. font-style: normal;
  634. font-weight: 400;
  635. font-size: 18px;
  636. color: rgba(0, 0, 0, 0.5);
  637. margin-top: 17px;
  638. margin-bottom: 11px;
  639. }
  640. .assess-content ul:nth-child(2) li h2 {
  641. font-family: 'Microsoft YaHei';
  642. font-style: normal;
  643. font-weight: 400;
  644. font-size: 20px;
  645. color: #000000;
  646. }
  647. /* footer */
  648. .footer-box {
  649. width: 100%;
  650. height: 40px;
  651. background: #000;
  652. display: flex;
  653. align-items: center;
  654. justify-content: center;
  655. }
  656. .footer-box span {
  657. font-size: 14px;
  658. color: #888;
  659. }
  660. .footer-box span a {
  661. font-size: 14px;
  662. color: #888;
  663. }
  664. .footer-box i {
  665. width: 1px;
  666. height: 12px;
  667. background-color: #888;
  668. margin: 0 30px;
  669. }
  670. /** 使用场景 **/
  671. .titleh2 {
  672. width: 100%;
  673. font-family: 'Microsoft YaHei UI';
  674. font-style: normal;
  675. font-weight: 700;
  676. font-size: 38px;
  677. line-height: 48px;
  678. text-align: center;
  679. color: #161F2D;
  680. margin-top: 92px;
  681. }
  682. /* 使用场景 */
  683. .pdf-imgscra {
  684. height: 682px;
  685. background: #F7F8FA;
  686. overflow: hidden;
  687. position: relative;
  688. }
  689. .imgscraList {
  690. width: 1200px;
  691. margin: 72px auto 0 auto;
  692. display: flex;
  693. justify-content: space-between;
  694. align-items: center;
  695. }
  696. .imgscraItmes {
  697. width: 278px;
  698. height: 362px;
  699. background: #FFFFFF;
  700. box-shadow: 0 8px 30px rgba(12, 68, 152, 0.08);
  701. border-radius: 16px;
  702. position: relative;
  703. overflow: hidden;
  704. }
  705. .imgscraItmes>img {
  706. display: block;
  707. width: 278px;
  708. height: 180px;
  709. margin: 0 auto;
  710. }
  711. .imgscraItmes>h3 {
  712. width: 100%;
  713. font-family: 'Microsoft YaHei UI';
  714. font-style: normal;
  715. font-weight: 400;
  716. font-size: 22px;
  717. line-height: 28px;
  718. text-align: center;
  719. color: #161F2D;
  720. margin-top: 20px;
  721. }
  722. .imgscraItmes>p {
  723. width: 100%;
  724. font-family: 'Microsoft YaHei UI';
  725. font-style: normal;
  726. font-weight: 400;
  727. font-size: 16px;
  728. line-height: 24px;
  729. text-align: center;
  730. color: rgba(115, 126, 144, 0.8);
  731. box-sizing: border-box;
  732. padding: 0 26px;
  733. margin-top: 12px;
  734. }
  735. /* 小于1200 */
  736. @media screen and (max-width: 1280px) {
  737. .pdf-imgscra {
  738. height: 1092px;
  739. }
  740. .imgscraList {
  741. width: 992px;
  742. flex-wrap: wrap;
  743. }
  744. .imgscraItmes {
  745. width: 294px;
  746. height: 362px;
  747. margin-bottom: 48px;
  748. }
  749. .imgscraItmes>img {
  750. width: 294px;
  751. }
  752. .imgscraItmes>p {
  753. padding: 0 35px;
  754. }
  755. }
  756. /* 移动 */
  757. @media screen and (max-width: 1000px) {
  758. .pdf-imgscra {
  759. height: 1032px;
  760. }
  761. .imgscraList {
  762. width: 750px;
  763. margin: 64px auto 0 auto;
  764. justify-content: center;
  765. }
  766. .imgscraItmes {
  767. width: 340px;
  768. margin: 0 14px 32px 14px;
  769. }
  770. .imgscraItmes>img {
  771. width: 340px;
  772. }
  773. .imgscraItmes>p {
  774. padding: 0 28px;
  775. }
  776. }