main.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839
  1. /*全局样式*/
  2. * {
  3. padding: 0;
  4. margin: 0;
  5. }
  6. html {
  7. height: 100%;
  8. }
  9. body {
  10. background: #FFF;
  11. color: #000;
  12. font-family: "SimHei";
  13. -moz-user-select: none;
  14. -ms-user-select: none;
  15. user-select: none;
  16. }
  17. div,
  18. dl,
  19. dt,
  20. dd,
  21. form,
  22. h1,
  23. h2,
  24. h3,
  25. h4,
  26. h5,
  27. h6,
  28. img,
  29. ol,
  30. ul,
  31. li,
  32. table,
  33. th,
  34. td,
  35. p,
  36. span,
  37. a {
  38. border: 0;
  39. }
  40. img,
  41. input {
  42. border: none;
  43. vertical-align: middle;
  44. }
  45. ul,
  46. ol {
  47. list-style-type: none;
  48. margin: 0;
  49. }
  50. input {
  51. outline: none;
  52. border: none;
  53. box-shadow: none;
  54. }
  55. button {
  56. border: none;
  57. cursor: pointer;
  58. font-size: 12px;
  59. background-color: transparent;
  60. }
  61. select {
  62. border-width: 1px;
  63. _zoom: 1;
  64. border-style: solid;
  65. padding-top: 2px;
  66. font-size: 12px;
  67. }
  68. em {
  69. font-style: normal;
  70. }
  71. a:focus,
  72. a:hover {
  73. color: #23527c;
  74. text-decoration: none;
  75. }
  76. ::-webkit-scrollbar {
  77. /*滚动条整体样式*/
  78. width: 6px !important;
  79. ;
  80. /*高宽分别对应横竖滚动条的尺寸*/
  81. height: 6px !important;
  82. ;
  83. background: #ffffff !important;
  84. ;
  85. cursor: pointer !important;
  86. }
  87. ::-webkit-scrollbar-thumb {
  88. /*滚动条里面小方块*/
  89. border-radius: 5px !important;
  90. -webkit-box-shadow: inset 0 0 5px rgba(240, 240, 240, .5) !important;
  91. ;
  92. background: rgba(63, 98, 131, 0.8) !important;
  93. ;
  94. cursor: pointer !important;
  95. }
  96. ::-webkit-scrollbar-track {
  97. /*滚动条里面轨道*/
  98. -webkit-box-shadow: inset 0 0 5px rgba(240, 240, 240, .5) !important;
  99. ;
  100. border-radius: 0 !important;
  101. ;
  102. background: rgba(240, 240, 240, 0.5) !important;
  103. ;
  104. cursor: pointer !important;
  105. }
  106. /* 全局样式 end*/
  107. header {
  108. position: relative;
  109. }
  110. /* 底部提交 */
  111. .footer-submit {
  112. position: fixed;
  113. bottom: 0;
  114. z-index: 999;
  115. background-color: #2D425D;
  116. height: 80px;
  117. width: 100%;
  118. line-height: 80px;
  119. }
  120. .submit-body {
  121. margin-left: 280px;
  122. }
  123. .submit-name {
  124. width: 194px;
  125. height: 40px;
  126. padding-left: 10px;
  127. margin-right: 20px;
  128. border-radius: 5px;
  129. }
  130. .submit-button {
  131. width: 140px;
  132. height: 40px;
  133. border-radius: 2px;
  134. font-size: 16px;
  135. background: #276ace;
  136. background: -moz-linear-gradient(-90deg, #29bdd9 0%, #276ace 100%);
  137. background: -webkit-linear-gradient(-90deg, #29bdd9 0%, #276ace 100%);
  138. background: linear-gradient(-90deg, #29bdd9 0%, #276ace 100%);
  139. box-shadow: 0 5px 20px rgba(9, 83, 187, 0.31);
  140. color: #fff;
  141. text-align: center;
  142. line-height: 36px;
  143. -moz-transition: all .36s ease;
  144. -o-transition: all .36s ease;
  145. transition: all .36s ease;
  146. margin-right: 10px;
  147. }
  148. .submit-close {
  149. cursor: pointer;
  150. font-size: 20px;
  151. font-weight: bold;
  152. color: white;
  153. margin-left: 60px;
  154. }
  155. #submit-close {
  156. position: absolute;
  157. right: 20px;
  158. top: 10px;
  159. cursor: pointer;
  160. }
  161. /* 电脑端导航栏 */
  162. .pc_nav {
  163. position: fixed;
  164. top: 0;
  165. left: 0;
  166. right: 0;
  167. width: 100%;
  168. background-color: rgba(6, 6, 6, 0.29);
  169. height: 80px;
  170. z-index: 999;
  171. display: flex;
  172. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .1);
  173. }
  174. .pc_nav:hover {
  175. background: #000000;
  176. }
  177. .pc_nav::after {
  178. content: "";
  179. display: block;
  180. clear: both;
  181. }
  182. .pc_nav ul {
  183. flex: 1;
  184. padding-left: 10px;
  185. position: relative;
  186. }
  187. .pc_nav ul::after {
  188. content: "";
  189. display: block;
  190. clear: both;
  191. }
  192. .pc_nav>ul>li {
  193. float: left;
  194. padding: 10px 20px;
  195. padding-top: 30px;
  196. padding-bottom: 21px;
  197. }
  198. .pc_nav>ul>li:hover a {
  199. color: #1296DB;
  200. }
  201. .pc_nav>ul>li>a {
  202. color: #ffffff;
  203. font-size: 18px;
  204. }
  205. .pc_nav .logo {
  206. width: 201px;
  207. padding: 10px 15px;
  208. float: left;
  209. }
  210. .pc_nav .logo img {
  211. width: 100%;
  212. }
  213. @media screen and (max-width: 1300px) {
  214. .pc_nav .kede_phone {
  215. display: none;
  216. }
  217. }
  218. @media screen and (max-width: 973px) {
  219. .pc_nav ul li a {
  220. font-size: 16px;
  221. }
  222. .pc_nav>ul>li{
  223. padding: 10px 13px;
  224. padding-top: 30px;
  225. padding-bottom: 21px;
  226. }
  227. }
  228. @media screen and (max-width: 906px) {
  229. .pc_nav ul li a {
  230. font-size: 16px;
  231. }
  232. .pc_nav .logo {
  233. padding: 0px;
  234. width: 140px;
  235. display: flex;
  236. align-items: center;
  237. }
  238. }
  239. .pc_nav .kede_phone {
  240. float: right;
  241. width: 331px;
  242. line-height: 80px;
  243. text-align: right;
  244. padding-right: 40px;
  245. }
  246. .pc_nav .kede_phone span {
  247. color: #BFBFBF;
  248. font-size: 18px;
  249. margin-right: 20px;
  250. }
  251. .pc_nav .kede_phone em {
  252. color: #ffffff;
  253. font-size: 22px;
  254. }
  255. .pc_nav .nav-dog {
  256. position: absolute;
  257. left: 10px;
  258. bottom: 0;
  259. width: 65px;
  260. height: 4px;
  261. background-color: #0058FA;
  262. }
  263. .wx_wb>div>img {
  264. width: 100px;
  265. }
  266. /* 下拉菜单 */
  267. .pc_nav .product-serve {
  268. display: none;
  269. position: absolute;
  270. width: 100%;
  271. height: 374px;
  272. background: #ffffff;
  273. left: 0;
  274. top: 79px;
  275. box-shadow: inset 0 8px 10px -8px rgba(0, 0, 0, .2);
  276. padding: 0px 20px;
  277. }
  278. .pc_nav .product-serve>.list::after {
  279. content: "";
  280. display: block;
  281. clear: both;
  282. }
  283. .pc_nav .product-serve>.list {
  284. width: 10%;
  285. float: left;
  286. }
  287. .pc_nav .product-serve>.list>div {
  288. width: 100%;
  289. padding-right: 20px;
  290. }
  291. .pc_nav .product-serve>.list>div>p {
  292. line-height: 35px;
  293. font-size: 16px;
  294. color: #000000;
  295. text-decoration: none;
  296. margin-left: 8px;
  297. display: block;
  298. font-weight: bold;
  299. border-bottom: 1px dashed#403e3e;
  300. margin-bottom: 3px;
  301. text-align: left;
  302. }
  303. .pc_nav .product-serve>.list:nth-child(7) {
  304. width: 30%;
  305. }
  306. .pc_nav .product-serve>.list:nth-child(7)>div>p {
  307. text-align: left;
  308. }
  309. .pc_nav .product-serve>.list:nth-child(7)>div>ul {
  310. width: 33.333%;
  311. float: left;
  312. }
  313. .kjxm-li {
  314. line-height: 1.2;
  315. }
  316. .kjxm-a {
  317. font-weight: bold;
  318. }
  319. .pc_nav .product-serve>.list>div>ul>li {
  320. text-align: left;
  321. }
  322. .pc_nav .product-serve>.list>div>ul>.min-p {
  323. padding-left: 0px;
  324. }
  325. .pc_nav .product-serve>.list>div>ul>.min-p li {
  326. line-height: 1.2;
  327. }
  328. .pc_nav .product-serve>.list>div a {
  329. color: #888888;
  330. font-size: 13px;
  331. white-space: nowrap;
  332. text-overflow: ellipsis;
  333. width: 100%;
  334. overflow: hidden;
  335. display: inline-block;
  336. }
  337. .pc_nav .product-serve>.list>div a:hover {
  338. color: #1296DB;
  339. }
  340. /* 电脑端导航栏 end */
  341. /* 手机端导航栏 */
  342. .mobile_nav {
  343. display: none;
  344. width: 100%;
  345. background: #FFF;
  346. position: fixed;
  347. width: 100%;
  348. top: 0;
  349. z-index: 999;
  350. }
  351. .logoimg {
  352. width: 192px;
  353. }
  354. .logoimg>img {
  355. width: 100%;
  356. }
  357. .m_contant {
  358. display: none;
  359. }
  360. .m_contant ul li {
  361. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  362. padding: 12px 0px;
  363. padding-left: 20px;
  364. }
  365. .m_contant ul li:first-child {
  366. border-top: 1px solid rgba(0, 0, 0, 0.1);
  367. ;
  368. }
  369. .m_contant ul li a {
  370. color: #5a5c5f;
  371. font-weight: 600;
  372. font-size: 16px;
  373. }
  374. /* 汉堡按钮 */
  375. .hamburger {
  376. position: absolute;
  377. top: 14px;
  378. right: 32px;
  379. }
  380. .hamburger .line {
  381. width: 34px;
  382. height: 3px;
  383. background-color: #7f7f7f;
  384. display: block;
  385. margin: 8px auto;
  386. -webkit-transition: all 0.3s ease-in-out;
  387. -o-transition: all 0.3s ease-in-out;
  388. transition: all 0.3s ease-in-out;
  389. }
  390. .hamburger:hover {
  391. cursor: pointer;
  392. }
  393. #hamburger-1.is-active .line:nth-child(2) {
  394. opacity: 0;
  395. }
  396. #hamburger-1.is-active .line:nth-child(1) {
  397. -webkit-transform: translateY(10px) rotate(45deg);
  398. -ms-transform: translateY(10px) rotate(45deg);
  399. -o-transform: translateY(10px) rotate(45deg);
  400. transform: translateY(10px) rotate(45deg);
  401. }
  402. #hamburger-1.is-active .line:nth-child(3) {
  403. -webkit-transform: translateY(-13px) rotate(-45deg);
  404. -ms-transform: translateY(-13px) rotate(-45deg);
  405. -o-transform: translateY(-13px) rotate(-45deg);
  406. transform: translateY(-13px) rotate(-45deg);
  407. }
  408. /* 汉堡按钮 end */
  409. /* 手机端导航栏 end */
  410. /* 底部样式 */
  411. footer {
  412. width: 100%;
  413. /* height: 440px; */
  414. }
  415. .line01,
  416. .line02 {
  417. width: 1px;
  418. height: 220px;
  419. background: #3d3d3d;
  420. }
  421. .line01 {
  422. position: absolute;
  423. top: 0;
  424. left: 280px;
  425. }
  426. .line02 {
  427. position: absolute;
  428. top: 0;
  429. right: 340px;
  430. }
  431. /* 底部内容 */
  432. .contentDown {
  433. /* height: 380px; */
  434. background: #2E3238;
  435. /* padding-top: 60px; */
  436. }
  437. .contentDown p {
  438. color: #FFF;
  439. font-size: 18px;
  440. }
  441. .down_left>ul {
  442. float: left;
  443. width: 50%;
  444. }
  445. .down_left>ul>li {
  446. margin-bottom: 7px;
  447. }
  448. .down_left>ul>li>a,
  449. .down_middle>ul>li a,
  450. .down_right>span {
  451. color: #7E7F7F;
  452. font-size: 15px;
  453. }
  454. .down_left>ul>li>a:hover,
  455. .down_middle>ul>li a:hover {
  456. color: #ffffff;
  457. }
  458. .down_middle ul::after {
  459. content: "";
  460. display: block;
  461. clear: both;
  462. }
  463. .down_middle>ul>li {
  464. float: left;
  465. width: 20%;
  466. }
  467. .down_middle>ul>li:nth-child(3) {
  468. width: 55%;
  469. }
  470. .down_right>p {
  471. text-align: left;
  472. }
  473. .down_right>h6 {
  474. font-size: 35px;
  475. color: #1296DB;
  476. margin-top: 30px;
  477. }
  478. .down_middle>ul>li>ul>li {
  479. margin-bottom: 7px;
  480. }
  481. .down_left>ul,
  482. .down_middle>ul>li>ul {
  483. margin-top: 50px;
  484. }
  485. .wx_wb {
  486. width: 100%;
  487. margin-top: 30px;
  488. }
  489. .wx_wb::after {
  490. content: "";
  491. display: block;
  492. clear: both;
  493. }
  494. .wx_wb>div {
  495. float: left;
  496. width: 50%;
  497. }
  498. .wx_wb>div>p {
  499. font-size: 14px;
  500. margin: 0;
  501. }
  502. .infoDown {
  503. width: 100%;
  504. height: 60px;
  505. background: #272A30;
  506. line-height: 60px;
  507. color: #888888;
  508. }
  509. .infoDown .container{
  510. text-align: center;
  511. }
  512. .info_one {
  513. display: inline-block;
  514. margin-right: 20px;
  515. }
  516. /* 底部信息 */
  517. /* 回到顶部 */
  518. .toTop {
  519. width: 70px;
  520. height: 50px;
  521. bottom: 110px;
  522. right: 0px;
  523. position: fixed;
  524. cursor: pointer;
  525. z-index: 999;
  526. }
  527. .toTop img {
  528. width: 100%;
  529. }
  530. /* 回到顶部 end*/
  531. /* 手机底部导航 */
  532. .spans {
  533. color:#7E7F7F;
  534. }
  535. .mobail_link {
  536. width: 100%;
  537. background: #272A30;
  538. display: none;
  539. }
  540. .spanLink > span:hover {
  541. color: white !important;
  542. }
  543. .spans:hover {
  544. color: white !important;
  545. }
  546. .spanLinkMore:hover {
  547. color: #333 !important;
  548. }
  549. .spanLinkMore>a:hover {
  550. color: #333 !important;
  551. }
  552. .spanLink>a:hover {
  553. color: white !important;
  554. }
  555. .phone_footer {
  556. display: none;
  557. background: #1296DB;
  558. position: fixed;
  559. bottom: 0;
  560. width: 100%;
  561. }
  562. .phone_footer>div {
  563. flex: 1;
  564. text-align: center;
  565. }
  566. .phone_footer .product-center {
  567. position: relative;
  568. }
  569. .phone_footer .product-center>ul {
  570. position: absolute;
  571. top: -277px;
  572. left: -15px;
  573. background: #ffffff;
  574. padding: 5px 10px;
  575. border: 2px solid #1296DB;
  576. display: none;
  577. width: 120%;
  578. }
  579. .phone_footer .product-center>ul::after {
  580. content: "";
  581. position: absolute;
  582. bottom: -12px;
  583. width: 0;
  584. height: 0;
  585. border-right: 5px solid transparent;
  586. border-left: 5px solid transparent;
  587. border-top: 10px solid #1296DB;
  588. }
  589. .phone_footer .product-center>ul li {
  590. margin-bottom: 5px;
  591. border-bottom: 1px solid #999999;
  592. }
  593. .phone_footer .product-center>ul li:nth-last-child(1) {
  594. border-bottom: none
  595. }
  596. .phone_footer .product-center>ul a {
  597. color: #666666;
  598. font-size: 18px;
  599. }
  600. .topmenu {
  601. display: block !important;
  602. }
  603. .phone_footer>div>a>span,
  604. .phone_footer>div>a>p {
  605. color: #ffffff;
  606. margin-bottom: 0;
  607. }
  608. @media (min-width: 1200px) {
  609. .container {
  610. width: 1280px;
  611. }
  612. }
  613. @media screen and (max-width: 768px) {
  614. #newBridge {
  615. display: none !important;
  616. }
  617. .pc_nav {
  618. display: none;
  619. }
  620. #swiper1 {
  621. margin-top: 69px;
  622. }
  623. .app>.container-fluid {
  624. padding-right: 0;
  625. padding-left: 0;
  626. }
  627. .mobail_link {
  628. display: block;
  629. }
  630. .mobile_nav {
  631. display: block;
  632. }
  633. .phone_footer {
  634. display: flex;
  635. padding: 5px;
  636. z-index: 999;
  637. }
  638. .footer-submit{
  639. display: none;
  640. }
  641. .toTop {
  642. width: 45px;
  643. height: 45px;
  644. bottom: 66px;
  645. }
  646. .swiper1 {
  647. margin-top: 70px;
  648. }
  649. footer {
  650. height: auto;
  651. /* padding-bottom: 52px; */
  652. }
  653. .contentDown {
  654. display: none;
  655. }
  656. .infoDown {
  657. height: auto;
  658. line-height: 1.3;
  659. text-align: center;
  660. }
  661. .info_one {
  662. display: block;
  663. margin-right: 20px;
  664. }
  665. .milld {
  666. display: none;
  667. }
  668. .footer-submit {
  669. bottom: 53px;
  670. line-height: 35px;
  671. }
  672. .submit-body{
  673. margin-left: 0;
  674. text-align: center;
  675. }
  676. .submit-body span:nth-child(1){
  677. font-size: 12px !important;
  678. }
  679. .submit-name{
  680. width: 129px;
  681. height: 29px;
  682. margin-right: 0;
  683. font-size: 12px;
  684. }
  685. .submit-button{
  686. width: 86px;
  687. height: 32px;
  688. font-size: 12px;
  689. line-height: 18px;
  690. }
  691. #submit-close{
  692. width: 23px;
  693. }
  694. }