설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

site.css 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734
  1. .mainColor {
  2. color: #006ce0;
  3. }
  4. .mainColorBack {
  5. background: #006ce0;
  6. }
  7. .subColor {
  8. color: #1d89fd;
  9. }
  10. .subColorBack {
  11. background: #1d89fd;
  12. }
  13. /* 重置项 */
  14. .nav > li > a {
  15. position: unset;
  16. padding: 0;
  17. }
  18. .nav > li > a:focus,
  19. .nav > li > a:hover {
  20. background-color: rgba(255, 255, 255, 0);
  21. }
  22. .swiper .swiper-pagination {
  23. left: 50%;
  24. display: inline-block;
  25. width: 74px;
  26. height: 12px;
  27. margin-left: -40px;
  28. padding-top: 4px;
  29. background: rgba(0, 0, 0, 0.7);
  30. border-radius: 100px;
  31. }
  32. .swiper .swiper-pagination .swiper-pagination-bullet {
  33. background: rgba(255, 255, 255, 0.5);
  34. opacity: 1;
  35. transition: .5s;
  36. }
  37. .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  38. width: 30px;
  39. border-radius: 10px;
  40. background: #ffffff;
  41. }
  42. * {
  43. margin: 0;
  44. padding: 0;
  45. font-family: "Gilroy-Light", "苹方", "微软雅黑", "Arial";
  46. }
  47. html {
  48. color: #222;
  49. font-size: 24px;
  50. overflow-x: hidden;
  51. }
  52. @media (min-width: 768px) {
  53. html {
  54. font-size: 20px;
  55. }
  56. }
  57. @media (min-width: 992px) {
  58. html {
  59. font-size: 18px;
  60. }
  61. }
  62. @media (min-width: 1200px) {
  63. html {
  64. font-size: 14px;
  65. }
  66. }
  67. body {
  68. width: 100%;
  69. min-width: 320px;
  70. overflow-x: hidden;
  71. }
  72. a {
  73. text-decoration: none !important;
  74. transition: .5s;
  75. }
  76. ul {
  77. list-style-type: none;
  78. }
  79. img {
  80. border: 0;
  81. vertical-align: middle;
  82. }
  83. .fl {
  84. float: left;
  85. }
  86. .fr {
  87. float: right;
  88. }
  89. .clear {
  90. clear: both;
  91. }
  92. .z-top {
  93. z-index: 10;
  94. }
  95. .z-toop {
  96. z-index: 100;
  97. }
  98. .z-tooop {
  99. z-index: 1000;
  100. }
  101. .elsis {
  102. white-space: normal;
  103. display: -webkit-box;
  104. -webkit-box-orient: vertical;
  105. }
  106. .p-elsis {
  107. overflow: hidden;
  108. white-space: nowrap;
  109. text-overflow: ellipsis;
  110. }
  111. .p-2elsis {
  112. overflow: hidden;
  113. white-space: nowrap;
  114. text-overflow: ellipsis;
  115. white-space: normal;
  116. display: -webkit-box;
  117. -webkit-box-orient: vertical;
  118. -webkit-line-clamp: 2;
  119. }
  120. .p-3elsis {
  121. overflow: hidden;
  122. white-space: nowrap;
  123. text-overflow: ellipsis;
  124. white-space: normal;
  125. display: -webkit-box;
  126. -webkit-box-orient: vertical;
  127. -webkit-line-clamp: 3;
  128. }
  129. .ul-flex {
  130. display: flex;
  131. display: -webkit-flex;
  132. flex-flow: row nowrap;
  133. justify-content: space-between;
  134. }
  135. .scale {
  136. transition: 1.5s;
  137. }
  138. .shadow {
  139. box-shadow: 0 8px 12px 0px rgba(0, 0, 0, 0.05);
  140. }
  141. .hover-shadow:hover {
  142. box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.12);
  143. }
  144. .crumb {
  145. font-size: 14px;
  146. font-family: "宋体", "黑体";
  147. }
  148. .crumb a {
  149. font-size: 14px;
  150. font-family: "Gilroy-Light", "苹方", "微软雅黑", "Arial";
  151. transition: .5s;
  152. }
  153. .crumb a:hover {
  154. color: #006ce0;
  155. }
  156. .pager {
  157. display: flex;
  158. display: -webkit-flex;
  159. flex-flow: row nowrap;
  160. justify-content: space-between;
  161. justify-content: space-around;
  162. font-size: 14px;
  163. margin: 30px 0;
  164. }
  165. .pager strong {
  166. font-size: 14px;
  167. font-family: "黑体";
  168. font-weight: normal;
  169. }
  170. .pager li {
  171. display: inline-block;
  172. }
  173. .pager li span,
  174. .pager li a {
  175. display: inline-block;
  176. height: 1.2rem;
  177. line-height: 1.2rem;
  178. padding: 0 7px;
  179. color: #555;
  180. font-size: 14px
  181. background:#fff;
  182. border: 1px solid #eee;
  183. transition: .5s;
  184. }
  185. .pager li span.current,
  186. .pager li a.current {
  187. color: #fff;
  188. background: #006ce0;
  189. border: 1px solid #006ce0;
  190. }
  191. @media (min-width: 768px) {
  192. .pager {
  193. width: 400px;
  194. }
  195. .pager strong {
  196. font-size: .8rem;
  197. }
  198. .pager li span,
  199. .pager li a {
  200. height: 1.6rem;
  201. line-height: 1.6rem;
  202. padding: 0 10px;
  203. }
  204. }
  205. @media (min-width: 1200px) {
  206. .pager {
  207. display: block;
  208. text-align: center;
  209. font-size: 14px;
  210. }
  211. .pager strong {
  212. font-size: 16px;
  213. }
  214. .pager li {
  215. margin: 0 3px;
  216. }
  217. .pager li span,
  218. .pager li a {
  219. height: 2.4rem;
  220. line-height: 2.4rem;
  221. padding: 0 12px;
  222. }
  223. .pager li:hover span,
  224. .pager li.active span,
  225. .pager li:hover a,
  226. .pager li.active a {
  227. color: #fff;
  228. background: #006ce0;
  229. border: 1px solid #006ce0;
  230. }
  231. }
  232. @font-face {
  233. font-family: 'iconfont';
  234. src: url('https://at.alicdn.com/t/c/font_2802347_rmbitrhjfkk.woff2?t=1675849353221') format('woff2'), url('https://at.alicdn.com/t/c/font_2802347_rmbitrhjfkk.woff?t=1675849353221') format('woff'), url('https://at.alicdn.com/t/c/font_2802347_rmbitrhjfkk.ttf?t=1675849353221') format('truetype');
  235. }
  236. .iconfont {
  237. font-family: "iconfont" !important;
  238. font-size: .4rem;
  239. font-style: normal;
  240. -webkit-font-smoothing: antialiased;
  241. -webkit-text-stroke-width: 0.2px;
  242. -moz-osx-font-smoothing: grayscale;
  243. }
  244. .nav-bar .nav-menu {
  245. display: flex;
  246. display: -webkit-flex;
  247. flex-flow: row nowrap;
  248. justify-content: space-between;
  249. }
  250. .nav-bar .nav-menu li {
  251. width: 100%;
  252. }
  253. .nav-bar .nav-menu li a {
  254. width: unset;
  255. }
  256. .item li a:hover,
  257. .links li a:hover,
  258. .container .center-670 .item li a:hover {
  259. color: #006ce0;
  260. padding-left: 12px;
  261. }
  262. .links li a:hover span,
  263. .oth ul li a:hover,
  264. .oth .row a:hover {
  265. color: #006ce0;
  266. }
  267. .nav-bar .nav-sec li a {
  268. transition: .5s;
  269. }
  270. .nav-bar .nav-sec li a:hover {
  271. color: #006ce0;
  272. }
  273. .tools li:hover a img,
  274. .header-box li .flex a:hover img {
  275. transform: rotate(12deg);
  276. }
  277. .container .left-945 .tab-box {
  278. position: relative;
  279. margin-right: 22px;
  280. z-index: 1;
  281. }
  282. .container .left-945 .tab-box i {
  283. position: absolute;
  284. top: 5px;
  285. left: 7px;
  286. display: block;
  287. width: 100px;
  288. height: 25px;
  289. border-radius: 5px;
  290. transition: .5s;
  291. z-index: -1;
  292. }
  293. .sec .sample-show .row .img-box {
  294. transition: .5s;
  295. }
  296. .header-meta span:first-child {
  297. margin-right: 20px;
  298. }
  299. .content {
  300. margin-top: 30px;
  301. }
  302. .content img {
  303. display: block;
  304. max-width: 800px;
  305. margin: 0 auto;
  306. }
  307. .header {
  308. left: 0;
  309. top: 0;
  310. width: 100%;
  311. background: #fff;
  312. }
  313. .header .wrap .header-box .dest {
  314. position: relative;
  315. cursor: pointer;
  316. }
  317. .header .wrap .header-box .dest .area {
  318. position: absolute;
  319. top: 32px;
  320. right: 0;
  321. display: none;
  322. width: 270px;
  323. height: auto;
  324. padding: 10px;
  325. box-sizing: border-box;
  326. background: #fff;
  327. }
  328. .header .wrap .header-box .dest .area ul {
  329. flex-flow: row wrap;
  330. justify-content: flex-start;
  331. }
  332. .header .wrap .header-box .dest .area ul a {
  333. display: inline-block;
  334. color: #555;
  335. font-size: 14px;
  336. margin: 0 10px 8px;
  337. transition: .5s;
  338. }
  339. .header .wrap .header-box .dest .area ul a:hover {
  340. color: #006ce0;
  341. }
  342. .zcgz-list {
  343. margin-bottom: 40px;
  344. }
  345. .zcgz-list li div {
  346. flex-shrink: 0;
  347. }
  348. .zcgz-list li div.sort {
  349. width: 80px;
  350. color: #222;
  351. font-size: 16px;
  352. font-weight: bold;
  353. margin-top: 3px;
  354. letter-spacing: 2px;
  355. }
  356. .zcgz-list li div.list {
  357. width: 92%;
  358. margin-left: 20px;
  359. }
  360. .zcgz-list li div.list span {
  361. display: inline-block;
  362. color: #555;
  363. font-size: 14px;
  364. margin: 0 8px 16px;
  365. padding: 4px 16px;
  366. border: 1px solid #006ce0;
  367. border-radius: 100px;
  368. background: #fff;
  369. transition: .5s;
  370. }
  371. .zcgz-list li div.list span:hover {
  372. color: #fff;
  373. background: #006ce0;
  374. border-color: #006ce0;
  375. }
  376. .footer .city {
  377. flex-flow: row wrap;
  378. justify-content: flex-start;
  379. margin-bottom: 20px;
  380. border-bottom: none;
  381. }
  382. .footer .city li {
  383. flex: unset;
  384. flex-shrink: 0;
  385. display: inline-block;
  386. width: 10%;
  387. }
  388. .footer .city li a {
  389. color: #ccc;
  390. line-height: 4;
  391. }
  392. .footer .contact .item i.iconfont {
  393. display: inline-block;
  394. vertical-align: middle;
  395. color: #979797;
  396. font-size: 22px;
  397. margin-right: 6px;
  398. }
  399. .footer .white {
  400. font-size: 16px;
  401. }
  402. .footer .white a {
  403. color: #fff;
  404. font-size: 16px;
  405. }
  406. .others a {
  407. display: inline-block;
  408. width: 220px;
  409. height: 40px;
  410. line-height: 40px;
  411. padding: 0 12px;
  412. color: #555;
  413. font-size: 14px;
  414. border: 1px solid #ddd;
  415. background: #fff;
  416. transition: .5s;
  417. }
  418. .others a:hover {
  419. color: #fff;
  420. background: #006ce0;
  421. border: 1px solid #006ce0;
  422. }
  423. .aside {
  424. position: fixed;
  425. top: 36%;
  426. right: 0;
  427. width: 128px;
  428. padding: 10px;
  429. box-sizing: border-box;
  430. border-radius: 5px;
  431. border: 1px solid #006ce0;
  432. background: #fff;
  433. transition: .5s;
  434. }
  435. .aside .open {
  436. position: absolute;
  437. top: 30px;
  438. left: -26px;
  439. width: 26px;
  440. height: 48px;
  441. text-align: center;
  442. color: #fff;
  443. font-size: 16px;
  444. padding-top: 4px;
  445. border-top-left-radius: 5px;
  446. border-bottom-left-radius: 5px;
  447. transition: .5s;
  448. cursor: pointer;
  449. opacity: 0;
  450. }
  451. .aside .pic {
  452. position: absolute;
  453. top: -94px;
  454. left: 0;
  455. }
  456. .aside .inner .btn {
  457. display: block;
  458. width: 100px;
  459. height: 28px;
  460. text-align: center;
  461. line-height: 28px;
  462. color: #fff;
  463. font-size: 16px;
  464. margin: 0 auto 16px;
  465. }
  466. .aside .inner .ewm {
  467. text-align: center;
  468. }
  469. .aside .inner .ewm img {
  470. width: 108px;
  471. }
  472. .aside .inner .ewm p {
  473. color: #555;
  474. font-size: 16px;
  475. margin-top: 14px;
  476. }
  477. .aside .inner ul {
  478. margin-top: 16px;
  479. }
  480. .aside .inner ul a {
  481. display: block;
  482. width: 100%;
  483. height: 28px;
  484. text-align: center;
  485. line-height: 28px;
  486. color: #555;
  487. font-size: 14px;
  488. border: 1px solid #006ce0;
  489. border-radius: 5px;
  490. background: #fff;
  491. margin-bottom: 10px;
  492. transition: .5s;
  493. }
  494. .aside .inner ul a:hover {
  495. color: #fff;
  496. background: #006ce0;
  497. }
  498. .aside .inner .tel p {
  499. text-align: center;
  500. color: #555;
  501. font-size: 16px;
  502. margin-bottom: 8px;
  503. }
  504. .aside .inner .tel p:last-child {
  505. color: #de0000;
  506. font-size: 16px;
  507. font-weight: bold;
  508. }
  509. .aside .inner .arrow {
  510. color: #555;
  511. font-size: 14px;
  512. text-align: center;
  513. transition: .5s;
  514. cursor: pointer;
  515. }
  516. .aside .inner .arrow span {
  517. font-size: 14px;
  518. font-family: "宋体";
  519. margin-left: 6px;
  520. transition: .5s;
  521. }
  522. .aside .inner .arrow:hover {
  523. color: #006ce0;
  524. }
  525. .aside .inner .arrow:hover span {
  526. color: #006ce0;
  527. }
  528. .ztc {
  529. margin-top: 40px;
  530. }
  531. .ztc .tit {
  532. margin-top: 30px;
  533. }
  534. .ztc .tit a {
  535. color: #222;
  536. font-size: 16px;
  537. font-weight: bold;
  538. }
  539. .ztc ul {
  540. flex-flow: row wrap;
  541. justify-content: flex-start;
  542. margin-top: 12px;
  543. }
  544. .ztc ul li {
  545. display: inline-block;
  546. margin-right: 12px;
  547. margin-bottom: 14px;
  548. padding: 4px 24px;
  549. border: 1px solid #006ce0;
  550. border-radius: 100px;
  551. background: #fff;
  552. cursor: pointer;
  553. }
  554. .ztc ul li a {
  555. color: #555;
  556. font-size: 14px;
  557. }
  558. .ztc ul li:hover {
  559. background: #006ce0;
  560. }
  561. .ztc ul li:hover a {
  562. color: #fff;
  563. }
  564. .ztc ul:last-child {
  565. margin-bottom: 40px;
  566. }
  567. .ztcform {
  568. text-align: center;
  569. margin-top: 30px;
  570. padding-top: 40px;
  571. border-top: 1px solid #ddd;
  572. }
  573. .ztcform .tit {
  574. color: #222;
  575. font-size: 20px;
  576. font-weight: bold;
  577. text-align: center;
  578. }
  579. .ztcform .slogan {
  580. display: inline-block;
  581. margin: 10px auto 16px;
  582. padding: 6px 16px;
  583. color: #fff;
  584. font-size: 16px;
  585. background: #E60012;
  586. border-radius: 5px;
  587. }
  588. .ztcform form {
  589. border: none;
  590. }
  591. .ztcform form input {
  592. display: block;
  593. width: 64%;
  594. }
  595. .ztcform form textarea {
  596. display: block;
  597. width: 62.5%;
  598. }
  599. .ztcform form button {
  600. width: 40%;
  601. height: 42px;
  602. text-align: center;
  603. line-height: 42px;
  604. color: #fff;
  605. font-size: 16px;
  606. margin-top: 20px;
  607. background: #006ce0;
  608. outline: none;
  609. border: none;
  610. cursor: pointer;
  611. }
  612. .container .left-265 .list {
  613. position: relative;
  614. margin-top: 14px;
  615. padding-left: 30px;
  616. }
  617. .container .left-265 .list .line {
  618. position: absolute;
  619. top: 0;
  620. left: 16px;
  621. display: inline-block;
  622. width: 1px;
  623. height: 264px;
  624. border-left: 1px dashed #ddd;
  625. }
  626. .container .left-265 .list .tit {
  627. position: relative;
  628. font-size: 16px;
  629. }
  630. .container .left-265 .list .tit::before {
  631. position: absolute;
  632. top: 50%;
  633. left: -20px;
  634. content: "";
  635. display: block;
  636. width: 12px;
  637. height: 12px;
  638. margin-top: -6px;
  639. border-radius: 100px;
  640. background: #006ce0;
  641. }
  642. .container .left-265 .list ul.ul-flex {
  643. flex-flow: row wrap;
  644. justify-content: flex-start;
  645. margin-bottom: 12px;
  646. }
  647. .container .left-265 .list ul.ul-flex li {
  648. display: inline-block;
  649. width: 28%;
  650. text-align: center;
  651. margin: 8px 4px 0;
  652. padding: 4px;
  653. box-sizing: border-box;
  654. border-radius: 100px;
  655. background: #F8F9FC;
  656. transition: .5s;
  657. }
  658. .container .left-265 .list ul.ul-flex li a {
  659. color: #555;
  660. font-size: 12px;
  661. transition: .5s;
  662. }
  663. .container .left-265 .list ul.ul-flex li:hover {
  664. background: #006ce0;
  665. }
  666. .container .left-265 .list ul.ul-flex li:hover a {
  667. color: #fff;
  668. }
  669. .container .left-265 ul.swiper {
  670. width: 100%;
  671. margin-top: 6px;
  672. }
  673. .container .left-265 ul.swiper .swiper-slide img {
  674. width: 265px;
  675. }
  676. .container .left-265 ul.swiper .swiper-button-next {
  677. right: 0;
  678. width: 18px;
  679. background: rgba(0, 0, 0, 0.5);
  680. transition: .5s;
  681. }
  682. .container .left-265 ul.swiper .swiper-button-next:hover {
  683. background: #006ce0;
  684. }
  685. .container .left-265 ul.swiper .swiper-button-prev {
  686. left: 0;
  687. width: 18px;
  688. background: rgba(0, 0, 0, 0.5);
  689. transition: .5s;
  690. }
  691. .container .left-265 ul.swiper .swiper-button-prev:hover {
  692. background: #006ce0;
  693. }
  694. .container .left-265 ul.swiper .swiper-button-next:after,
  695. .container .left-265 ul.swiper .swiper-button-prev:after {
  696. color: #fff;
  697. font-size: 10px;
  698. z-index: 10;
  699. }
  700. .center-670 .channel {
  701. width: 636px;
  702. margin: 14px auto -10px;
  703. padding: 0 0 16px;
  704. border-bottom: 1px solid #ddd;
  705. }
  706. .center-670 .channel .tit {
  707. display: inline-block;
  708. vertical-align: middle;
  709. font-size: 18px;
  710. font-weight: bold;
  711. margin-left: 10px;
  712. }
  713. .center-670 .channel .tit i {
  714. font-size: 18px;
  715. font-weight: bold;
  716. font-style: normal;
  717. }
  718. .center-670 .channel a {
  719. font-size: 14px;
  720. margin-top: 6px;
  721. transition: .5s;
  722. }
  723. .center-670 .channel a i {
  724. font-family: "宋体";
  725. font-size: 16px;
  726. font-style: normal;
  727. transition: .5s;
  728. }
  729. .center-670 .channel a:hover {
  730. color: #006ce0;
  731. }
  732. .center-670 .channel a:hover i {
  733. color: #006ce0;
  734. }