index.css 16 KB

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