index.css 16 KB

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