master.css 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117
  1. @charset "utf-8";
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. overflow-x: hidden;
  6. background: #F4F5FA;
  7. }
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. font-size: 14px;
  12. font-family: '微软雅黑', 'Microsoft YaHei', Verdana, Arial, Helvetica, sans-serif;
  13. color: #666;
  14. font-style: normal;
  15. list-style: none;
  16. text-decoration: none;
  17. box-sizing: border-box;
  18. }
  19. article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  20. display: block;
  21. }
  22. img {
  23. display: block;
  24. max-width: 100%;
  25. max-height: 100%;
  26. border: none;
  27. }
  28. input, button, select {
  29. border: 0;
  30. outline: none;
  31. }
  32. a:hover {
  33. color: #ee0f15 !important;
  34. }
  35. input::-webkit-input-placeholder {
  36. color: #aaa;
  37. }
  38. [placeholder]:focus::-webkit-input-placeholder {
  39. -webkit-transition: opacity 0.5s ease;
  40. -moz-transition: opacity 0.5s ease;
  41. -o-transition: opacity 0.5s ease;
  42. transition: opacity 0.5s ease;
  43. opacity: 0
  44. }
  45. [placeholder]:focus::-moz-input-placeholder {
  46. -webkit-transition: opacity 0.5s ease;
  47. -moz-transition: opacity 0.5s ease;
  48. -o-transition: opacity 0.5s ease;
  49. transition: opacity 0.5s ease;
  50. opacity: 0
  51. }
  52. a, a img, input {
  53. -webkit-transition: all 0.18s ease-out;
  54. -o-transition: all 0.18s ease-out;
  55. -moz-transition: all 0.18s ease-out;
  56. transition: all 0.18s ease-out;
  57. }
  58. .clearfix:after {
  59. content: "";
  60. display: block;
  61. height: 0;
  62. visibility: hidden;
  63. clear: both;
  64. }
  65. .clearfix {
  66. zoom: 1;
  67. }
  68. .nowrap {
  69. overflow: hidden;
  70. -o-text-overflow: ellipsis;
  71. text-overflow: ellipsis;
  72. white-space: nowrap;
  73. }
  74. .fl {
  75. float: left;
  76. }
  77. .fr {
  78. float: right;
  79. }
  80. .container {
  81. position: relative;
  82. width: 1200px;
  83. margin: 0 auto;
  84. }
  85. .mt20 {
  86. margin-top: 20px;
  87. }
  88. .mt10 {
  89. margin-top: 10px;
  90. }
  91. .mt30 {
  92. margin-top: 30px;
  93. }
  94. .ml20 {
  95. margin-left: 20px;
  96. }
  97. .mb30 {
  98. margin-bottom: 30px;
  99. }
  100. .pc_show {
  101. display: none;
  102. }
  103. /* top */
  104. header {
  105. background: #fff;
  106. }
  107. .t-header {
  108. height: 36px;
  109. line-height: 36px;
  110. background: #e3e4e5;
  111. }
  112. .t-header p {
  113. font-size: 12px;
  114. color: #999;
  115. }
  116. .t-header p i {
  117. vertical-align: top;
  118. margin-right: 3px;
  119. font-size: 18px;
  120. color: #777;
  121. line-height: 36px;
  122. }
  123. .t-header p a:hover i {
  124. color: #ee0f15;
  125. }
  126. .t-header p a {
  127. padding: 0 10px;
  128. font-size: 12px;
  129. }
  130. .t-header li {
  131. position: relative;
  132. float: left;
  133. padding: 0 12px;
  134. font-size: 12px;
  135. cursor: pointer;
  136. }
  137. .t-header li:hover {
  138. color: #ee0f15;
  139. }
  140. .t-header li a {
  141. font-size: 12px;
  142. }
  143. .t-header li b {
  144. color: #ee0f15;
  145. }
  146. .t-header li i {
  147. vertical-align: middle;
  148. margin-top: -4px;
  149. margin-right: 8px;
  150. font-size: 20px;
  151. }
  152. .t-header li i.fa-weixin {
  153. font-size: 16px;
  154. }
  155. .t-header li:hover i {
  156. color: #ee0f15;
  157. }
  158. .t-header li.wx div {
  159. z-index: 99;
  160. position: absolute;
  161. top: 36px;
  162. left: 50%;
  163. display: none;
  164. width: 120px;
  165. height: 120px;
  166. margin-left: -60px;
  167. box-shadow: 0 0 6px rgba(0, 0, 0, .3)
  168. }
  169. .t-header li.wx:hover div {
  170. display: block;
  171. }
  172. .t-header li.web-nav i {
  173. margin-right: 4px;
  174. font-size: 16px;
  175. }
  176. .t-header li.web-nav div {
  177. z-index: 999;
  178. position: absolute;
  179. top: 36px;
  180. right: 0;
  181. width: 300px;
  182. display: none;
  183. padding: 15px 20px;
  184. padding-bottom: 0;
  185. background: #Fff;
  186. border: 1px solid #e5e5e5;
  187. }
  188. .t-header li.web-nav dl {
  189. display: block;
  190. padding-bottom: 15px;
  191. margin-bottom: 15px;
  192. line-height: 24px;
  193. overflow: hidden;
  194. border-bottom: 1px solid #e5e5e5;
  195. }
  196. .t-header li.web-nav dl:last-child {
  197. border-bottom: 0;
  198. }
  199. .t-header li.web-nav dt {
  200. display: block;
  201. font-size: 12px;
  202. color: #8a9b42;
  203. }
  204. .t-header li.web-nav dl:nth-of-type(2) dt {
  205. color: #ee0f15;
  206. }
  207. .t-header li.web-nav dl:nth-of-type(3) dt {
  208. color: #ff9326;
  209. }
  210. .t-header li.web-nav dd {
  211. display: block;
  212. width: 270px;
  213. }
  214. .t-header li.web-nav dd a {
  215. display: inline-block;
  216. margin-right: 15px;
  217. }
  218. .t-header li.web-nav:hover div {
  219. display: block;
  220. }
  221. .m-header {
  222. padding: 20px 0;
  223. }
  224. .m-header .logo {
  225. max-width: 240px;
  226. }
  227. .m-header .logo a {
  228. display: block;
  229. }
  230. .m-header .logo p {
  231. margin-top: 5px;
  232. font-size: 12px;
  233. color: #ee0f15;
  234. text-align: center;
  235. letter-spacing: 2px;
  236. }
  237. .search-con {
  238. position: relative;
  239. width: 520px;
  240. margin-right: 40px;
  241. margin-top: 8px;
  242. font-size: 0;
  243. }
  244. .search-con form {
  245. position: relative;
  246. display: block;
  247. width: 100%;
  248. height: 40px;
  249. margin-bottom: 8px;
  250. padding-left: 40px;
  251. padding-right: 100px;
  252. line-height: 40px;
  253. overflow: hidden;
  254. border: 1px solid #ee0f15;
  255. }
  256. .search-con .fa-search {
  257. position: absolute;
  258. left: 0;
  259. top: 0;
  260. width: 40px;
  261. height: 40px;
  262. font-size: 22px;
  263. color: #bbb;
  264. line-height: 36px;
  265. text-align: center;
  266. -webkit-text-stroke: 1px #fff;
  267. }
  268. .search-con .s-input {
  269. width: 100%;
  270. height: 100%;
  271. border: 0;
  272. color: #666;
  273. }
  274. .search-con .s-button {
  275. position: absolute;
  276. top: 0;
  277. right: 0;
  278. width: 100px;
  279. height: 38px;
  280. font-size: 18px;
  281. color: #fff;
  282. background: #ee0f15;
  283. border: 0;
  284. cursor: pointer;
  285. }
  286. .search-con p {
  287. max-width: 100%;
  288. margin-top: 6px;
  289. font-size: 12px;
  290. color: #ee0f15;
  291. overflow: hidden;
  292. }
  293. .search-con p b {
  294. font-size: 12px;
  295. }
  296. .search-con p a {
  297. display: inline-block;
  298. font-size: 12px;
  299. color: #777;
  300. margin-right: 10px;
  301. }
  302. .m-header-sider {
  303. margin-top: 8px;
  304. overflow: hidden;
  305. }
  306. .m-header-sider p {
  307. margin-left: 10px;
  308. }
  309. .m-header-sider p a {
  310. display: block;
  311. width: 110px;
  312. height: 38px;
  313. background: #F4E9C7;
  314. text-align: center;
  315. line-height: 38px;
  316. color: #856F31;
  317. }
  318. .m-header-sider p a:last-child {
  319. margin-top: 8px;
  320. }
  321. .m-header-sider p a:hover {
  322. background: #A0875A;
  323. color: #fff!important;
  324. }
  325. .m-header-sider p i {
  326. margin-right: 6px;
  327. font-size: 16px;
  328. color: #856F31;
  329. }
  330. .m-header-sider p a:hover i {
  331. color: #fff;
  332. }
  333. /*导航*/
  334. .navigation {
  335. width: 100%;
  336. height: 40px;
  337. line-height: 40px;
  338. background: #3A3A41;
  339. }
  340. .fl-nav {
  341. position: relative;
  342. width: 240px;
  343. height: 40px;
  344. margin-right: 25px;
  345. background: #4B4B5B;
  346. text-align: center;
  347. cursor: pointer;
  348. }
  349. .fl-nav span {
  350. display: block;
  351. font-size: 16px;
  352. color: #fff;
  353. }
  354. .fl-nav i {
  355. vertical-align: middle;
  356. margin-right: 10px;
  357. margin-top: -3px;
  358. font-size: 20px;
  359. color: #fff;
  360. -webkit-text-stroke: 1px #4B4B5B;
  361. }
  362. .nav-list li {
  363. float: left;
  364. margin-right: 20px;
  365. position: relative;
  366. }
  367. .nav-list li:nth-of-type(2)::after {
  368. position: absolute;
  369. content: url(../images/icon_hot.png);
  370. top: -4px;
  371. right: -10px;
  372. }
  373. .nav-list li:hover::before, .nav-list li.active::before {
  374. position: absolute;
  375. content: '';
  376. left: 50%;
  377. bottom: 2px;
  378. width: 20px;
  379. height: 4px;
  380. margin-left: -10px;
  381. background: #bfaa6e;
  382. border-radius: 4px;
  383. -webkit-border-radius: 4px;
  384. -moz-border-radius: 4px;
  385. -ms-border-radius: 4px;
  386. -o-border-radius: 4px;
  387. }
  388. .nav-list li.active, .nav-list li:hover {
  389. background: #23232A;
  390. }
  391. .nav-list li a {
  392. display: block;
  393. padding: 0 22px;
  394. font-size: 16px;
  395. color: #fff!important;
  396. }
  397. /* link */
  398. .linkCon {
  399. padding: 30px;
  400. background: #fff;
  401. }
  402. .linkCon h2 {
  403. position: relative;
  404. height: 35px;
  405. font-size: 18px;
  406. font-weight: normal;
  407. color: #333;
  408. line-height: 24px;
  409. border-bottom: 1px solid #dfdfdf;
  410. }
  411. .linkCon h2::before {
  412. position: absolute;
  413. content: '';
  414. left: 0;
  415. bottom: -1px;
  416. width: 72px;
  417. border-bottom: 1px solid #333;
  418. }
  419. .linkCon ul {
  420. width: 1200px;
  421. }
  422. .linkCon ul li {
  423. display: inline-block;
  424. vertical-align: top;
  425. margin-top: 15px;
  426. margin-right: 20px;
  427. }
  428. /*底部*/
  429. .online-box {
  430. padding: 24px 0;
  431. background: #00704A;
  432. }
  433. footer {
  434. padding-top: 30px;
  435. background: url(../images/fd_bg.png) center bottom no-repeat;
  436. background-size: cover;
  437. }
  438. .foot-nav {
  439. line-height: 50px;
  440. text-align: center;
  441. }
  442. .foot-nav li {
  443. position: relative;
  444. display: inline-block;
  445. vertical-align: top;
  446. margin: 0 15px;
  447. }
  448. .foot-nav li a {
  449. color: #fff;
  450. }
  451. .ftlx-box {
  452. margin-top: 30px;
  453. }
  454. .ftlx-box .fl strong {
  455. font-size: 18px;
  456. color: #eee;
  457. font-weight: normal;
  458. }
  459. .ftlx-box .fl span {
  460. display: block;
  461. margin-top: 15px;
  462. color: #eee;
  463. }
  464. .ftlx-box .fr span {
  465. display: inline-block;
  466. vertical-align: top;
  467. width: 100px;
  468. margin-left: 15px;
  469. text-align: center;
  470. color: #ccc;
  471. }
  472. .ftlx-box .fr span img {
  473. margin-bottom: 5px;
  474. }
  475. footer p {
  476. margin-top: 40px;
  477. padding: 15px 0;
  478. font-size: 12px;
  479. color: #bbb;
  480. text-align: center;
  481. line-height: 24px;
  482. border-top: 1px solid #666;
  483. }
  484. footer p a {
  485. font-size: 12px;
  486. color: #ccc;
  487. }
  488. /* 侧边栏 */
  489. .siderBar {
  490. position: fixed;
  491. top: 250px;
  492. right: 0;
  493. -width: 36px;
  494. z-index: 99;
  495. }
  496. .siderBar>div {
  497. width: 36px;
  498. padding: 14px 5px;
  499. text-align: center;
  500. cursor: pointer;
  501. line-height: 17px;
  502. }
  503. .free-tel {
  504. background: #fffbef;
  505. color: #856f31;
  506. border: 1px solid #bca35b;
  507. }
  508. .free-tel:hover {
  509. background: #f4e9c7;
  510. }
  511. .siderBar i {
  512. margin-bottom: 4px;
  513. font-size: 20px;
  514. color: #856f31;
  515. }
  516. .online {
  517. background: #bca35b;
  518. }
  519. .online:hover {
  520. background: #a0875a
  521. }
  522. .online a {
  523. display: block;
  524. color: #fff!important;
  525. }
  526. .online i {
  527. color: #fff;
  528. }
  529. .side-wx {
  530. position: relative;
  531. margin-top: 2px;
  532. background: #fff;
  533. border: 1px solid #ccc;
  534. }
  535. .side-wx:hover {
  536. background: #999;
  537. color: #fff;
  538. }
  539. .side-wx span {
  540. position: absolute;
  541. right: 50px;
  542. top: 0;
  543. display: none;
  544. width: 85px;
  545. box-shadow: 0 0 5px rgba(0, 0, 0, .2);
  546. }
  547. .side-wx span::after {
  548. position: absolute;
  549. content: '';
  550. top: 50%;
  551. right: -16px;
  552. margin-top: -8px;
  553. border: 8px solid transparent;
  554. border-left-color: #fff;
  555. }
  556. .side-wx i {
  557. color: #bcbcbc;
  558. }
  559. .side-wx:hover i {
  560. color: #fff;
  561. }
  562. .side-wx:hover span {
  563. display: block;
  564. }
  565. .input-select {
  566. border: 1px solid #e5e5e5;
  567. width: 140px;
  568. height: 40px;
  569. line-height: 40px;
  570. }
  571. .complaint {
  572. margin-top: 2px;
  573. background: #999;
  574. border: 1px solid #ccc;
  575. }
  576. .complaint a, .complaint i {
  577. color: #fff;
  578. }
  579. .complaint i {
  580. color: #fff;
  581. }
  582. .complaint:hover {
  583. background: #fff;
  584. }
  585. .complaint:hover a {
  586. color: #666!important;
  587. }
  588. .complaint:hover i {
  589. color: #bcbcbc;
  590. }
  591. .siderBar .go-top {
  592. display: none;
  593. padding: 6px 2px;
  594. margin-top: 2px;
  595. background: #fff;
  596. border: 1px solid #ccc;
  597. }
  598. .siderBar .go-top:hover {
  599. border: 1px solid #a0875a;
  600. color: #a0875a;
  601. }
  602. .go-top i {
  603. margin-bottom: 0;
  604. color: #999;
  605. }
  606. /* */
  607. .spot-bg {
  608. z-index: 666;
  609. position: fixed;
  610. top: 0;
  611. left: 0;
  612. display: none;
  613. width: 100%;
  614. height: 100%;
  615. background: rgba(0, 0, 0, .5);
  616. }
  617. .fixed-foot {
  618. z-index: 667;
  619. position: fixed;
  620. left: 0;
  621. bottom: -170px;
  622. width: 100%;
  623. height: 120px;
  624. background: #222;
  625. transition: all 0.3s ease;
  626. -webkit-transition: all 0.3s ease;
  627. -moz-transition: all 0.3s ease;
  628. -ms-transition: all 0.3s ease;
  629. -o-transition: all 0.3s ease;
  630. }
  631. .fixed-foot img {
  632. position: relative;
  633. top: -56px;
  634. float: left;
  635. width: 173px;
  636. }
  637. .fixed-foot p {
  638. width: 260px;
  639. padding-top: 30px;
  640. margin-left: 5px;
  641. }
  642. .fixed-foot p strong {
  643. display: block;
  644. font-size: 26px;
  645. color: #fff;
  646. line-height: 35px;
  647. }
  648. .fixed-foot p span {
  649. display: block;
  650. font-size: 12px;
  651. color: #70777A;
  652. margin-top: 6px;
  653. }
  654. .fixed-foot form {
  655. float: right;
  656. padding-top: 30px;
  657. margin-right: 40px;
  658. position: absolute;
  659. top: 12px;
  660. right: -20px;
  661. /*float: right;
  662. padding-top: 30px;
  663. margin-right: 40px;*/
  664. }
  665. .fixed-foot input {
  666. height: 44px;
  667. margin-right: 10px;
  668. padding-left: 32px;
  669. background: #fff;
  670. background-repeat: no-repeat;
  671. background-position: 10px center;
  672. background-size: 16px;
  673. border-radius: 2px;
  674. -webkit-border-radius: 2px;
  675. -moz-border-radius: 2px;
  676. -ms-border-radius: 2px;
  677. -o-border-radius: 2px;
  678. }
  679. .fixed-foot .name {
  680. width: 160px;
  681. background-image: url(../images/icon_user.png);
  682. }
  683. .fixed-foot .xm {
  684. width: 160px;
  685. background-image: url(../images/icon_project.png);
  686. }
  687. .fixed-foot .phone {
  688. width: 240px;
  689. background-image: url(../images/icon_tel.png);
  690. }
  691. .fixed-foot .submit {
  692. width: 140px;
  693. padding-left: 0;
  694. background: #ee0f15;
  695. font-size: 18px;
  696. color: #fff;
  697. cursor: pointer;
  698. }
  699. .fixed-foot-on {
  700. bottom: 0;
  701. }
  702. .fixed-foot i {
  703. position: absolute;
  704. right: 0;
  705. top: 38px;
  706. font-size: 30px;
  707. color: #ddd;
  708. cursor: pointer;
  709. -webkit-text-stroke: 5px #222;
  710. }
  711. .hb-title {
  712. padding-top: 30px;
  713. padding-bottom: 20px;
  714. font-size: 22px;
  715. color: #333;
  716. }
  717. .hb-title i {
  718. vertical-align: middle;
  719. margin-top: -4px;
  720. margin-right: 8px;
  721. font-size: 28px;
  722. }
  723. .hb-title>a {
  724. float: right;
  725. margin-top: 6px;
  726. color: #999;
  727. font-weight: normal;
  728. }
  729. @media screen and (max-width:768px) {
  730. .mob_none {
  731. display: none!important;
  732. }
  733. .pc_show {
  734. display: block;
  735. }
  736. .container {
  737. width: 100%;
  738. padding: 0;
  739. }
  740. .m-header {
  741. padding: 0 15px;
  742. height: 50px;
  743. border-bottom: 1px solid #e4e7e8;
  744. }
  745. .m-header .logo {
  746. height: 30px;
  747. margin-top: 10px;
  748. }
  749. .m-header .logo a {
  750. height: 100%;
  751. }
  752. .m-header .logo img {
  753. width: auto;
  754. height: 100%;
  755. }
  756. .m-header i {
  757. position: absolute;
  758. right: 15px;
  759. top: 10px;
  760. height: 30px;
  761. line-height: 30px;
  762. font-size: 30px;
  763. color: #777;
  764. -webkit-text-stroke: 1px #fff;
  765. }
  766. .w-header {
  767. width: 100%;
  768. height: 3.429rem;
  769. background: #fff;
  770. display: flex;
  771. border-bottom: 1px solid #D1D4E7;
  772. position: fixed;
  773. top: 0;
  774. left: 0;
  775. z-index: 100;
  776. }
  777. .w-header-left {
  778. width: 3.435rem;
  779. height: 3.429rem;
  780. float: left;
  781. }
  782. .w-header-left a{
  783. width: 3.435rem;
  784. height:3.429rem;
  785. display:block;
  786. background:url(../images/fanhui.png) no-repeat center center;
  787. background-size: 2rem;
  788. }
  789. .w-header-logo{
  790. flex:1;
  791. text-align:center;
  792. line-height: 3.429rem;
  793. font-size: 1.485rem;
  794. color: #ee0f15;
  795. font-weight:bold;
  796. overflow:hidden;
  797. white-space:nowrap;
  798. text-overflow:ellipsis;
  799. }
  800. .w-header-logo img{
  801. width:4.33rem;
  802. height:0.4rem;
  803. margin:.24rem auto;
  804. display:block;
  805. }
  806. .w-header-right{
  807. width: 3.435rem;
  808. height:3.429rem;
  809. float:right;
  810. }
  811. .w-header-right a{
  812. width: 3.435rem;
  813. height:3.429rem;
  814. display:block;
  815. background:url(../images/home.png) no-repeat center center;
  816. background-size: 2rem;
  817. }
  818. .trade-nav {
  819. width: 100%;
  820. height: 736px;
  821. margin-top: 3.429rem;
  822. }
  823. .trade-nav-l {
  824. width: 23%;
  825. height: 100%;
  826. padding-bottom: 15%;
  827. box-sizing: border-box;
  828. background: #F4F5FA;
  829. float: left;
  830. overflow-y: scroll;
  831. }
  832. .trade-nav-l ul li.on {
  833. background: #fff;
  834. }
  835. .trade-nav-l ul li {
  836. height: 3.475rem;
  837. line-height: 3.475rem;
  838. font-size: 1.25rem;
  839. color: #333;
  840. text-align: center;
  841. position: relative;
  842. }
  843. .trade-nav-l ul li.on:after {
  844. border-left: 0.165rem solid #ee0f15;
  845. }
  846. .trade-nav-l ul li:after {
  847. content: '';
  848. height: 3.475rem;
  849. width: 0.165rem;
  850. background: #F4F5FA;
  851. position: absolute;
  852. left: 0;
  853. top: 0;
  854. }
  855. .trade-nav-r {
  856. width: 75%;
  857. height: 100%;
  858. float: right;
  859. margin: 2% 0 2% 0%;
  860. overflow-y: scroll;
  861. padding-bottom: 20%;
  862. }
  863. .trade-nav-r .trade-list-box {
  864. display: none;
  865. }
  866. .trade-nav-r .trade-list-box.on {
  867. display: block;
  868. }
  869. .trade-list-box {
  870. width: 100%;
  871. height: 100%;
  872. display: none;
  873. }
  874. .trade-list-box .trade-title {
  875. font-size: 1.25rem;
  876. color: #333;
  877. padding: 4% 0 2% 0;
  878. text-align: left;
  879. }
  880. .trade-list a {
  881. width: 31%;
  882. height: 2.985rem;
  883. color: #333;
  884. text-align: center;
  885. line-height: 2.985rem;
  886. border: 0.01rem solid #D4D7E9;
  887. float: left;
  888. margin-right: 2%;
  889. margin-top: 2.5%;
  890. overflow: hidden;
  891. }
  892. .mob-navigation {
  893. z-index: 9999;
  894. position: fixed;
  895. top: 0;
  896. left: 0;
  897. right: 0;
  898. bottom: 0;
  899. /* padding: 0 50px;
  900. padding-top: 90px;*/
  901. background: #fff;
  902. opacity: 0;
  903. transform: scale(0);
  904. -webkit-transform: scale(0);
  905. -moz-transform: scale(0);
  906. -ms-transform: scale(0);
  907. -o-transform: scale(0);
  908. text-align: center;
  909. transition: all 0.3s ease;
  910. -webkit-transition: all 0.3s ease;
  911. -moz-transition: all 0.3s ease;
  912. -ms-transition: all 0.3s ease;
  913. -o-transition: all 0.3s ease;
  914. }
  915. .mob-navigation.on {
  916. opacity: 1;
  917. transform: scale(1);
  918. -webkit-transform: scale(1);
  919. -moz-transform: scale(1);
  920. -ms-transform: scale(1);
  921. -o-transform: scale(1);
  922. }
  923. .mob-navigation li a {
  924. display: block;
  925. line-height: 50px;
  926. font-size: 16px;
  927. border-bottom: 1px solid #eee;
  928. }
  929. .mob-navigation li:last-child a {
  930. border-bottom: 0;
  931. }
  932. .mob-navigation i {
  933. position: absolute;
  934. right: 20px;
  935. top: 20px;
  936. font-size: 40px;
  937. color: #666;
  938. -webkit-text-stroke: 5px #fff;
  939. }
  940. /* */
  941. .linkCon {
  942. padding: 10px;
  943. }
  944. .linkCon ul {
  945. width: 104%;
  946. }
  947. /* foot */
  948. footer {
  949. margin-top: 30px;
  950. }
  951. .foot-nav {
  952. line-height: 30px;
  953. }
  954. .foot-nav ul li {
  955. padding: 0 4px;
  956. }
  957. .ftlx-box {
  958. padding: 0 20px;
  959. }
  960. .ftlx-box .fr {
  961. width: 100%;
  962. margin-top: 20px;
  963. }
  964. .ftlx-box .fr span {
  965. margin-left: 0;
  966. margin-right: 20px;
  967. }
  968. footer p {
  969. margin-top: 30px;
  970. padding: 20px;
  971. }
  972. .bgf {
  973. margin-top: 0;
  974. padding: 0 10px 30px 10px;
  975. }
  976. }