index.css 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139
  1. a {
  2. background-color: transparent;
  3. text-decoration: none;
  4. cursor: pointer;
  5. color: #333;
  6. }
  7. a:active,
  8. a:hover {
  9. color: #F10215;
  10. outline: 0;
  11. text-decoration: none;
  12. }
  13. a.nohover:hover {
  14. color: inherit;
  15. outline: 0;
  16. text-decoration: none;
  17. }
  18. .fl {
  19. float: left;
  20. }
  21. .fr {
  22. float: right;
  23. }
  24. .width-1200 {
  25. width: 1200px;
  26. margin: 0 auto;
  27. }
  28. .overflow {
  29. width: 100%;
  30. overflow: hidden;
  31. white-space: nowrap;
  32. text-overflow: ellipsis;
  33. }
  34. .b-title {
  35. font-weight: 600;
  36. font-size: 26px;
  37. position: relative;
  38. padding-bottom: 30px;
  39. width: 105px;
  40. }
  41. ul, li, ol {
  42. margin: 0;
  43. padding: 0;
  44. list-style: none outside none;
  45. }
  46. /** 首页头部样式 **/
  47. .header {
  48. background-color: #0E144A;
  49. color: #fff;
  50. position: fixed;
  51. width: 100%;
  52. height: 68px;
  53. z-index: 9;
  54. }
  55. .header .top-bg {
  56. height: 30px;
  57. line-height: 30px;
  58. color: #666;
  59. font-size: 13px;
  60. background-color: #f5f5f5;
  61. }
  62. .header .header-top {
  63. height: 90px;
  64. padding: 10px 0;
  65. }
  66. .header .logo-box {
  67. display: flex;
  68. justify-content: center;
  69. height: 48px;
  70. }
  71. .header .logo {
  72. height: 50px;
  73. margin-right: 20px;
  74. max-height: 50px;
  75. position: relative;
  76. top: 0;
  77. }
  78. .header .space-line {
  79. height: 100%;
  80. width: 1px;
  81. background-color: rgba(0, 0, 0, 0.1);
  82. margin-right: 20px;
  83. }
  84. .header .logo-brand {
  85. margin-right: 10px;
  86. width: 100px;
  87. height: 70px;
  88. }
  89. .header .logo-title {
  90. font-size: 32px;
  91. font-weight: bold;
  92. color: #fff;
  93. display: inline;
  94. position: relative;
  95. }
  96. .btn-login {
  97. background-color: #DC3223;
  98. color: #fff;
  99. width: 60px;
  100. height: 30px;
  101. text-align: center;
  102. line-height: 30px;
  103. cursor: pointer;
  104. margin-top: 15px;
  105. border-radius: 5px;
  106. }
  107. .flex-between {
  108. display: flex;
  109. flex-wrap: nowrap;
  110. justify-content: space-between;
  111. }
  112. .detail_link_kefu {
  113. width: 800px;
  114. height: 250px;
  115. background: url(../images/pc_jiaocheng_banner_bg.png) no-repeat;
  116. background-size: auto;
  117. background-size: 100% 100%;
  118. text-align: center;
  119. box-sizing: border-box;
  120. margin-top: 20px;
  121. }
  122. .detail_link_kefu p {
  123. color: #fff;
  124. font-size: 24px;
  125. margin-bottom: 5px;
  126. }
  127. .nav {
  128. box-shadow: -2px -2px 10px #eee;
  129. color: #333;
  130. height: 60px;
  131. background-color: #fff;
  132. }
  133. .nav .nav-list {
  134. display: flex;
  135. flex-wrap: wrap;
  136. }
  137. .nav-item {
  138. text-align: center;
  139. font-weight: 600;
  140. font-size: 18px;
  141. cursor: pointer;
  142. position: relative;
  143. margin: 0 10px;
  144. padding: 0 10px;
  145. }
  146. .nav-item.active, .nav-item:hover {
  147. color: #00e099;
  148. }
  149. #navbarSupportedContent {
  150. justify-content: flex-end;
  151. }
  152. .nav-product:hover .nav-product-menu {
  153. display: block;
  154. }
  155. .nav-product-menu {
  156. width: 190px;
  157. background-color: rgba(0, 0, 0, 0.4);
  158. position: absolute;
  159. z-index: 9;
  160. display: none;
  161. }
  162. .nav-product-menu li {
  163. margin: 0 10px;
  164. line-height: 48px;
  165. font-size: 15px;
  166. color: #fff;
  167. border-bottom: 1px solid #ddd;
  168. }
  169. .call-24 {
  170. margin-top: 10px;
  171. }
  172. .call-24 .dh-ico {
  173. width: 40px;
  174. height: 40px;
  175. margin: 5px 5px 0 0;
  176. }
  177. .call-24 .dh-title {
  178. font-size: 16px;
  179. color: #666;
  180. letter-spacing: 4px;
  181. text-align: center;
  182. }
  183. .call-24 .dh-phone {
  184. font-size: 24px;
  185. color: #DC3223;
  186. font-weight: 600;
  187. }
  188. /* 底部導航 */
  189. .index-footer {
  190. width: 100%;
  191. background-color: #2f3036;
  192. text-align: center;
  193. padding: 60px 0 10px;
  194. }
  195. .flex-start {
  196. display: flex;
  197. flex-wrap: nowrap;
  198. justify-content: flex-start;
  199. }
  200. .footer-menu {
  201. padding: 40px 0 20px;
  202. }
  203. .footer-menu span {
  204. margin: 0 8px 0 10px;
  205. }
  206. .footer-address span {
  207. margin-right: 20px;
  208. }
  209. .footer-bottom {
  210. font-size: 12px;
  211. line-height: 30px;
  212. color: #c5cbe8;
  213. text-align: center;
  214. }
  215. .footer-item {
  216. width: 25%;
  217. color: #c5cbe8;
  218. text-align: center;
  219. line-height: 1.8;
  220. margin-bottom: 40px;
  221. }
  222. .footer-item .footer-title {
  223. color: #fff;
  224. font-size: 24px;
  225. font-weight: 600;
  226. padding: 50px 0 10px;
  227. }
  228. .footer-item .footer-img {
  229. width: 140px;
  230. padding-top: 50px;
  231. box-sizing: content-box;
  232. }
  233. .footer-center {
  234. text-align: center;
  235. }
  236. .follow-tips {
  237. padding-top: 5px;
  238. }
  239. .noselect {
  240. -webkit-touch-callout: none; /* iOS Safari */
  241. -webkit-user-select: none; /* Chrome/Safari/Opera */
  242. -khtml-user-select: none; /* Konqueror */
  243. -moz-user-select: none; /* Firefox */
  244. -ms-user-select: none; /* Internet Explorer/Edge */
  245. user-select: none; /* Non-prefixed version, currently*/
  246. }
  247. /** 首頁輪播圖 **/
  248. .banner-bg {
  249. width: 100%;
  250. min-width: 1200px;
  251. height: 700px;
  252. background-repeat: no-repeat;
  253. background-position: center center;
  254. background-size: 100% 100%;
  255. background-image: url('../images/swiper-bg.jpg');
  256. padding-top: 10px;
  257. }
  258. .index-banner {
  259. position: relative;
  260. }
  261. .swiper-container {
  262. /*min-width: 1200px;*/
  263. /*height: 500px;*/
  264. }
  265. .swiper-pagination-bullet {
  266. background: #fff;
  267. opacity: 1;
  268. width: 10px;
  269. height: 10px;
  270. }
  271. .swiper-pagination-bullet-active {
  272. opacity: 1;
  273. background: #fff !important;
  274. }
  275. .index-about {
  276. background-color: #fff;
  277. padding-bottom: 30px;
  278. }
  279. .index-title {
  280. text-align: center;
  281. padding: 30px 0;
  282. }
  283. .index-title .name {
  284. color: #343c55;
  285. font-size: 24px;
  286. font-weight: 600;
  287. padding: 35px 0 20px;
  288. }
  289. .index-title .desc {
  290. width: 276px;
  291. margin: 0 auto;
  292. background-color: #ebebeb;
  293. border-radius: 18px;
  294. color: #999;
  295. font-size: 14px;
  296. text-align: center;
  297. line-height: 36px;
  298. }
  299. .a-bg {
  300. width: 580px;
  301. height: 350px;
  302. position: relative;
  303. background: url(../images/29.png) no-repeat center center;
  304. }
  305. .a-bg2 {
  306. background: url(../images/30.png) no-repeat center center;
  307. }
  308. .a-bg .area-title {
  309. position: absolute;
  310. width: 500px;
  311. height: 100px;
  312. bottom: 0;
  313. left: 0;
  314. right: 0;
  315. margin: auto;
  316. background-color: rgba(242, 242, 242, 0.78);
  317. padding: 10px 15px;
  318. }
  319. .a-bg .a-title {
  320. font-size: 18px;
  321. font-weight: 600;
  322. margin-bottom: 8px;
  323. }
  324. .a-bg .a-desc {
  325. font-size: 16px;
  326. color: #666;
  327. }
  328. .why-item {
  329. width: 25%;
  330. text-align: center;
  331. }
  332. .why-img {
  333. width: 130px;
  334. height: 130px;
  335. }
  336. .why-title {
  337. font-size: 30px;
  338. font-weight: 600;
  339. margin: 6px 0 12px;
  340. color: #fff;
  341. }
  342. .why-desc {
  343. font-size: 20px;
  344. color: #c5cbe8;
  345. }
  346. .serve-item {
  347. width: 23%;
  348. padding: 40px 20px;
  349. background-color: #eeeeee;
  350. text-align: center;
  351. }
  352. .serve-item:hover {
  353. background-color: #ff9278;
  354. }
  355. .serve-item .serve-img {
  356. width: 150px;
  357. height: 150px;
  358. margin-bottom: 80px;
  359. }
  360. .serve-item .serve-title {
  361. font-size: 22px;
  362. font-weight: 600;
  363. padding-bottom: 12px;
  364. }
  365. .serve-item .serve-desc {
  366. color: #666;
  367. font-size: 14px;
  368. }
  369. .course-list {
  370. background-color: #eee;
  371. padding: 20px;
  372. flex-wrap: wrap;
  373. line-height: 2.2;
  374. }
  375. .course-list .course-item {
  376. width: 33.33%;
  377. }
  378. .btn-more {
  379. width: 160px;
  380. height: 44px;
  381. margin: auto;
  382. background-color: #ebebeb;
  383. font-size: #999;
  384. line-height: 44px;
  385. text-align: center;
  386. margin-top: 20px;
  387. }
  388. a {
  389. color: inherit !important;
  390. }
  391. /* 软件中心 */
  392. .soft-list {
  393. flex-wrap: wrap;
  394. }
  395. .soft-item {
  396. width: 600px;
  397. padding: 0 10px;
  398. display: flex;
  399. flex-wrap: nowrap;
  400. justify-content: flex-start;
  401. border-right: 1px solid #ccc;
  402. margin-bottom: 50px;
  403. }
  404. .soft-item .soft-img {
  405. width: 100px;
  406. height: 100px;
  407. margin-right: 20px;
  408. }
  409. .soft-item .soft-title {
  410. font-size: 22px;
  411. font-weight: 600;
  412. margin: 10px 0;
  413. }
  414. .soft-item .soft-desc {
  415. width: 300px;
  416. font-size: 14px;
  417. color: #666;
  418. }
  419. .soft-item .soft-btn {
  420. width: 140px;
  421. }
  422. .soft-item .sbtn-download {
  423. background-color: #DC3223;
  424. color: #fff;
  425. text-align: center;
  426. height: 35px;
  427. line-height: 35px;
  428. margin: 10px 0;
  429. cursor: pointer;
  430. }
  431. .soft-item .sbtn-detail {
  432. border: 1px solid #DC3223;
  433. color: #DC3223;
  434. text-align: center;
  435. height: 35px;
  436. line-height: 35px;
  437. cursor: pointer;
  438. }
  439. .buy-list .soft-item {
  440. border: none;
  441. box-shadow: 2px 2px 14px #666;
  442. padding: 20px;
  443. width: 48%;
  444. }
  445. .buy-soft-img {
  446. width: 50px;
  447. height: 50px;
  448. margin-right: 10px;
  449. }
  450. .buy-soft-title {
  451. text-align: center;
  452. font-size: 24px;
  453. font-weight: 600;
  454. line-height: 80px;
  455. background-color: #ffccbd;
  456. }
  457. .buy-item {
  458. width: 25%;
  459. line-height: 50px;
  460. font-size: 18px;
  461. font-weight: 600;
  462. text-align: center;
  463. margin: 30px 0;
  464. }
  465. .buy-item .buy-img {
  466. width: 40px;
  467. height: 40px;
  468. margin-right: 10px;
  469. }
  470. .buy-area {
  471. border: 1px solid #ddd;
  472. padding: 40px;
  473. margin-bottom: 60px;
  474. }
  475. .member-item {
  476. width: 20%;
  477. text-align: center;
  478. border: 1px solid #ddd;
  479. padding: 40px 20px;
  480. text-align: center;
  481. cursor: pointer;
  482. margin-bottom: 40px;
  483. }
  484. .member-item:hover, .member-item.active {
  485. border: 1px solid #DC3223;
  486. background-color: #FFCCBD;
  487. }
  488. .member-item .member-title {
  489. font-size: 28px;
  490. font-weight: 600;
  491. padding-bottom: 10px;
  492. margin-bottom: 30px;
  493. border-bottom: 1px solid #eee;
  494. }
  495. .member-item .member-money {
  496. font-size: 22px;
  497. font-weight: 600;
  498. color: #DC3223;
  499. margin-left: 4px;
  500. }
  501. .member-item .member-desc {
  502. margin-top: 12px;
  503. color: #666;
  504. font-size: 14px;
  505. }
  506. .pay-detail {
  507. width: 60%;
  508. line-height: 2;
  509. }
  510. .pay-title {
  511. font-weight: 600;
  512. font-size: 22px;
  513. margin-top: 18px;
  514. }
  515. .pay-desc {
  516. width: 40%;
  517. }
  518. .pay-type {
  519. padding: 4px 20px;
  520. border-radius: 4px;
  521. margin-right: 10px;
  522. }
  523. .buy-now {
  524. margin: 60px 0;
  525. width: 280px;
  526. height: 60px;
  527. line-height: 60px;
  528. background-color: #DC3223;
  529. color: #fff;
  530. text-align: center;
  531. border-radius: 4px;
  532. }
  533. .pay-money {
  534. color: #DC3223;
  535. font-size: 20px;
  536. font-weight: 600;
  537. }
  538. .pay-desc .pay-img {
  539. width: 180px;
  540. height: 180px;
  541. }
  542. .pay-content {
  543. line-height: 1.8;
  544. padding: 20px;
  545. font-size: 14px;
  546. }
  547. /* 帮助中心 */
  548. .qa-item {
  549. background-color: #fff;
  550. padding: 30px;
  551. box-shadow: 4px 4px 10px #999;
  552. margin-bottom: 30px;
  553. }
  554. .qa-soft {
  555. width: 28%;
  556. border-right: 1px solid #ddd;
  557. margin-right: 2%;
  558. }
  559. .qa-soft-img {
  560. width: 100px;
  561. height: 100px;
  562. margin-right: 20px;
  563. }
  564. .qa-title {
  565. font-size: 18px;
  566. font-weight: 600;
  567. padding: 10px 0;
  568. }
  569. .qa-more {
  570. border: 1px solid #DC3223;
  571. color: #DC3223;
  572. width: 80px;
  573. height: 30px;
  574. text-align: center;
  575. line-height: 30px;
  576. border-radius: 4px;
  577. cursor: pointer;
  578. }
  579. .qa-list {
  580. width: 70%;
  581. flex-wrap: wrap;
  582. }
  583. .question-item {
  584. width: 50%;
  585. height: 30px;
  586. line-height: 20px;
  587. }
  588. .about-list {
  589. width: 800px;
  590. min-height: 500px;
  591. }
  592. .about-detail {
  593. width: 360px;
  594. margin-left: 40px;
  595. }
  596. .about-detail .about-area {
  597. background-color: #fff;
  598. margin-bottom: 20px;
  599. padding: 20px;
  600. }
  601. .about-area .about-title {
  602. font-size: 20px;
  603. font-weight: 600;
  604. padding-bottom: 10px;
  605. margin-bottom: 10px;
  606. border-bottom: 2px solid #DC3223;
  607. }
  608. .about-area .news-item {
  609. line-height: 2.6;
  610. border-bottom: 1px solid #eee;
  611. }
  612. .about-list .about-item {
  613. display: flex;
  614. flex-wrap: wrap;
  615. justify-content: flex-start;
  616. background-color: #fff;
  617. margin-bottom: 6px;
  618. cursor: pointer;
  619. border-bottom: 1px solid #eee;
  620. }
  621. .no-data {
  622. text-align: center;
  623. padding: 50px;
  624. font-size: 18px;
  625. }
  626. .about-list .about-item a:hover {
  627. color: #fff;
  628. }
  629. .about-list .about-item:hover {
  630. background-color: #DC3223;
  631. color: #fff;
  632. }
  633. .about-list .about-item .i-time {
  634. width: 143px;
  635. padding: 24px;
  636. }
  637. .new-img {
  638. width: 120px;
  639. height: 80px;
  640. }
  641. .about-list .about-item .i-content {
  642. width: 600px;
  643. padding: 24px;
  644. }
  645. .about-item .i-content .i-title {
  646. font-size: 18px;
  647. font-weight: 600;
  648. }
  649. .about-item .i-content .i-desc {
  650. font-size: 14px;
  651. margin-top: 12px;
  652. }
  653. .news-detail {
  654. background-color: #fff;
  655. }
  656. .news-detail .news-title {
  657. font-size: 24px;
  658. font-weight: 600;
  659. text-align: center;
  660. padding: 40px 0 20px;
  661. }
  662. .news-detail .news-time {
  663. font-size: 14px;
  664. color: #666;
  665. text-align: center;
  666. padding-bottom: 20px;
  667. border-bottom: 1px dashed #eee;
  668. }
  669. .news-detail .news-content {
  670. padding: 40px 10px;
  671. line-height: 2.2;
  672. text-indent: 2em;
  673. }
  674. .news-content img, .news-content video {
  675. width: 100%;
  676. height: auto;
  677. padding: 10px 0;
  678. }
  679. .news-content video {
  680. height: 450px;
  681. }
  682. .pro-menu .menu-title {
  683. width: 292px;
  684. height: 60px;
  685. background-image: url('../images/menu-bg.png');
  686. background-repeat: no-repeat;
  687. background-size: 100% 100%;
  688. color: #fff;
  689. font-size: 26px;
  690. text-align: center;
  691. line-height: 60px;
  692. }
  693. .pro-menu .menu-list {
  694. background-color: #EBEBEB;
  695. padding: 16px;
  696. line-height: 2;
  697. }
  698. .index-product {
  699. margin-top: 40px;
  700. }
  701. .menu-list .menu-item {
  702. height: 40px;
  703. line-height: 40px;
  704. padding: 0 15px;
  705. background-color: #fff;
  706. color: #333;
  707. font-size: 14px;
  708. margin-bottom: 8px;
  709. display: flex;
  710. flex-wrap: wrap;
  711. justify-content: space-between;
  712. cursor: pointer;
  713. }
  714. .menu-item .arrow-active,
  715. .menu-item .arrow {
  716. width: 12px;
  717. height: 12px;
  718. margin-top: 14px;
  719. }
  720. .menu-item .arrow-active {
  721. display: none;
  722. }
  723. .menu-item.active,
  724. .menu-item:hover {
  725. color: #DC3223;
  726. }
  727. .menu-item.active .arrow-active,
  728. .menu-item:hover .arrow-active {
  729. display: block;
  730. }
  731. .menu-item.active .arrow,
  732. .menu-item:hover .arrow {
  733. display: none;
  734. }
  735. /*公司简介页面*/
  736. .menu-list .contact-info {
  737. color: #333;
  738. padding: 2px;
  739. }
  740. .introduce-detail {
  741. width: 100%;
  742. margin-left: 30px;
  743. }
  744. .de-title {
  745. width: 100%;
  746. border-bottom: 2px solid #DC3223;
  747. }
  748. .de-title .name {
  749. font-size: 28px;
  750. }
  751. .de-title .en-name {
  752. font-size: 14px;
  753. color: #999999;
  754. padding: 11px 0;
  755. }
  756. .introduce-content {
  757. color: #666;
  758. line-height: 2.2;
  759. text-indent: 2em;
  760. padding: 20px;
  761. margin-bottom: 40px;
  762. }
  763. .img-area {
  764. padding: 20px 0;
  765. }
  766. .car-img {
  767. margin: 20px;
  768. }
  769. /* 登录弹窗 */
  770. .login-model {
  771. height: 340px;
  772. }
  773. .login-title {
  774. font-size: 16px;
  775. }
  776. .phone-login {
  777. padding: 40px 20px;
  778. }
  779. .login-title span {
  780. display: inline-block;
  781. padding: 10px 0;
  782. width: 49%;
  783. text-align: center;
  784. cursor: pointer;
  785. border-bottom: 2px solid #eee;
  786. }
  787. .login-title span.active {
  788. color: #BD2C00;
  789. border-bottom: 2px solid #BD2C00;
  790. }
  791. .wei-login {
  792. text-align: center;
  793. padding: 20px;
  794. }
  795. .login-border {
  796. display: inline-block;
  797. margin-top: 0;
  798. margin-bottom: 10px;
  799. }
  800. .login-code {
  801. width: 220px;
  802. height: 220px;
  803. border: 1px solid #eee;
  804. }
  805. .no-code {
  806. width: 220px;
  807. height: 220px;
  808. text-align: center;
  809. background-color: #eee;
  810. color: #e12424;
  811. font-size: 22px;
  812. font-weight: 600;
  813. cursor: pointer;
  814. padding-top: 70px;
  815. }
  816. .expire-time {
  817. font-size: 12px;
  818. font-weight: 600;
  819. color: #e12424;
  820. }
  821. .demo-spin-icon-load {
  822. animation: ani-demo-spin 1s linear infinite;
  823. }
  824. @keyframes ani-demo-spin {
  825. from {
  826. transform: rotate(0deg);
  827. }
  828. 50% {
  829. transform: rotate(180deg);
  830. }
  831. to {
  832. transform: rotate(360deg);
  833. }
  834. }
  835. .login-icon {
  836. vertical-align: middle !important;
  837. margin-right: 5px;
  838. width: 30px;
  839. height: 30px;
  840. }
  841. /* jimp */
  842. .info-flex {
  843. display: flex;
  844. flex-wrap: nowrap;
  845. justify-content: space-around;
  846. align-items: center;
  847. padding: 50px 0;
  848. }
  849. .info-img, .info-content {
  850. width: 40%;
  851. }
  852. .into-title {
  853. font-size: 22px;
  854. line-height: 2.2;
  855. font-weight: 600;
  856. }
  857. .info-desc {
  858. font-size: 14px;
  859. line-height: 1.8;
  860. color: #666;
  861. }
  862. .info-flex .f-item {
  863. display: flex;
  864. flex-wrap: nowrap;
  865. justify-content: center;
  866. width: 33.33%;
  867. align-items: center;
  868. margin: 20px 0;
  869. font-size: 14px;
  870. }
  871. .font-14 {
  872. font-size: 14px;
  873. }
  874. .info-flex .icon-o {
  875. width: 50px;
  876. height: 40px;
  877. margin-right: 20px;
  878. }
  879. .info-flex .f-item2 {
  880. width: 26%;
  881. text-align: center;
  882. margin: 20px 0;
  883. font-size: 14px;
  884. }
  885. .f-item2 .f-cont {
  886. font-weight: 600;
  887. font-size: 16px;
  888. margin: 20px 0 10px 0;
  889. }
  890. .info-flex .icon-o2 {
  891. width: 50px;
  892. height: 50px;
  893. }
  894. .swiper-button-next, .swiper-button-prev{
  895. border: 1px solid #ccc;
  896. width: 50px;
  897. height: 50px;
  898. border-radius: 5px;
  899. background-size: 50% 50%;
  900. }
  901. .navbar{
  902. background: #0E144A;
  903. }
  904. /*** 新版 ***/
  905. .ab-item{
  906. margin-bottom: 32px;
  907. overflow: hidden;
  908. }
  909. .ab-img{
  910. width: 100%;
  911. transition: transform 0.5s ease;
  912. }
  913. .ab-img:hover{
  914. transform: scale(1.1);
  915. }
  916. .ab-block{
  917. position: absolute;
  918. background-color: #00e099;
  919. color: #fff;
  920. width:220px;
  921. height:220px;
  922. left:180px;
  923. top:200px;
  924. font-size: 26px;
  925. font-weight: 600;
  926. text-align:center;
  927. padding: 60px 0;
  928. border-radius: 10px;
  929. }
  930. .abo-item{
  931. text-align: center;
  932. padding: 0 45px;
  933. }
  934. .icon-ab{
  935. width: 80px;
  936. }
  937. .abo-title{
  938. font-weight: 600;
  939. font-size: 18px;
  940. padding: 20px 0 40px;
  941. }
  942. .a-btn-download{
  943. padding: 5px 0;
  944. font-size: 16px;
  945. font-weight: 700;
  946. border-radius: 28px;
  947. color: #fff;
  948. outline: 0 none;
  949. background: #00e099;
  950. border: 2px solid #00e099;
  951. cursor: pointer;
  952. width: 120px;
  953. margin: auto;
  954. text-align: center;
  955. }
  956. .a-btn-download:hover{
  957. background: #fff;
  958. color: #00e099;
  959. }
  960. .coa-item:hover{
  961. color: #00e099 !important;
  962. }