header_yz.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902
  1. @charset "utf-8";
  2. /*=================公共样式=================*/
  3. .shadow {
  4. -webkit-box-shadow: #ddd 1px 1px 4px;
  5. box-shadow: #ddd 1px 1px 4px;
  6. }
  7. .publicblock {
  8. width: 1200px;
  9. margin: 0 auto;
  10. clear: both;
  11. zoom: 1;
  12. }
  13. .publicblock:after {
  14. content: '';
  15. display: block;
  16. clear: both;
  17. }
  18. .publicblock:after {
  19. content: "";
  20. display: block;
  21. height: 0;
  22. clear: both;
  23. visibility: hidden;
  24. }
  25. .oe {
  26. overflow: hidden;
  27. white-space: nowrap;
  28. text-overflow: ellipsis;
  29. }
  30. /*advertisement*/
  31. .advertisement {
  32. width: 100%;
  33. height: 98px;
  34. -webkit-transition: all 0.3s ease 0s;
  35. transition: all 0.3s ease 0s;
  36. }
  37. .advertisement .publicblock {
  38. height: 100%;
  39. width: 1200px;
  40. }
  41. .advertisement a {
  42. display: block;
  43. height: 100%;
  44. width: 100%;
  45. }
  46. .advertisement i {
  47. display: block;
  48. width: 39px;
  49. height: 29px;
  50. float: right;
  51. margin-top: 69px;
  52. }
  53. .advertisement.hide {
  54. -webkit-transition: all 0.3s ease 0s;
  55. transition: all 0.3s ease 0s;
  56. height: 0;
  57. }
  58. /*header*/
  59. .header {
  60. min-width: 1200px;
  61. background: #fff;
  62. position: relative;
  63. }
  64. .header *{
  65. -webkit-box-sizing: content-box;
  66. -moz-box-sizing: content-box;
  67. box-sizing: content-box;
  68. }
  69. .header .top {
  70. height: 37px;
  71. background: #F6F6F6;
  72. }
  73. .header .top a {
  74. color: #878787;
  75. }
  76. .header .top a:hover {
  77. color: #333;
  78. }
  79. .header .top_left {
  80. height: 100%;
  81. float: left;
  82. }
  83. .header .top_left .welcome {
  84. color: #808080;
  85. float: left;
  86. padding-left: 22px;
  87. position: relative;
  88. line-height: 37px;
  89. }
  90. .header .top_left .welcome i {
  91. display: block;
  92. position: absolute;
  93. left: 0;
  94. top: 50%;
  95. margin-top: -8px;
  96. width: 14px;
  97. height: 14px;
  98. }
  99. .header .top_left .member_entry {
  100. float: left;
  101. margin-left: 10px;
  102. line-height: 37px;
  103. }
  104. .header .top_left .member_entry a {
  105. height: 12px;
  106. border-left: 1px solid #E1E1E1;
  107. padding: 0 10px;
  108. display: inline-block;
  109. line-height: 12px;
  110. }
  111. .header .top_left .login_entry {
  112. color: #CB2B2B !important;
  113. }
  114. .header .top_left .register_entry {
  115. border-right: 1px solid #E1E1E1;
  116. }
  117. .header .top_right {
  118. float: right;
  119. height: 37px;
  120. }
  121. .header .top_right .top_menu {
  122. float: left;
  123. }
  124. .header .top_right .top_menu li {
  125. float: left;
  126. border-left: 1px solid transparent;
  127. border-right: 1px solid transparent;
  128. position: relative;
  129. z-index: 9999;
  130. }
  131. .header .top_right .top_menu li a {
  132. display: block;
  133. padding: 0 10px;
  134. position: relative;
  135. line-height: 37px;
  136. }
  137. .header .top_right .top_menu li a:before {
  138. content: "";
  139. display: block;
  140. position: absolute;
  141. width: 1px;
  142. height: 12px;
  143. top: 50%;
  144. margin-top: -6px;
  145. right: 0;
  146. background: #E1E1E1;
  147. }
  148. .header .top_right .top_menu .lihover:hover {
  149. background: #fff;
  150. border-color: #E6E6E6;
  151. height: 41px;
  152. }
  153. .header .top_right .top_menu .lihover:hover a {
  154. display: block;
  155. line-height: 37px;
  156. height: 38px;
  157. position: relative;
  158. z-index: 2;
  159. background: #fff;
  160. }
  161. .header .top_right .top_menu .lihover:hover a:before {
  162. display: none;
  163. }
  164. .header .top_right .top_menu .lihover:hover .son {
  165. display: block;
  166. }
  167. .header .top_right .soncode {
  168. height: 180px;
  169. width: 320px;
  170. border: 1px solid #E6E6E6;
  171. position: absolute;
  172. right: -1px;
  173. top: 37px;
  174. background: #fff;
  175. z-index: 1;
  176. display: none;
  177. }
  178. .header .top_right .single {
  179. width: 160px;
  180. float: left;
  181. }
  182. .header .top_right .soncode:before {
  183. content: "";
  184. display: block;
  185. position: absolute;
  186. width: 1px;
  187. height: 123px;
  188. top: 17px;
  189. left: 159px;
  190. background: #eee;
  191. }
  192. .header .top_right .soncode .codeimg {
  193. display: block;
  194. width: 125px;
  195. height: 125px;
  196. margin: 15px auto 0 auto;
  197. }
  198. .header .top_right .soncode p {
  199. font-size: 14px;
  200. color: #888888;
  201. line-height: 42px;
  202. text-align: center;
  203. }
  204. .header .top_right .top_menu i {
  205. display: inline-block;
  206. line-height: 5px;
  207. width: 8px;
  208. height: 5px;
  209. position: relative;
  210. top: -2px;
  211. margin-left: 5px;
  212. }
  213. .header .top_right .contact {
  214. float: left;
  215. color: #5B5B5B;
  216. height: 100%;
  217. padding: 0 0 0 20px;
  218. }
  219. .header .top_right .contact em {
  220. font-size: 15px;
  221. font-family: arial;
  222. font-weight: 700;
  223. }
  224. .header .center {
  225. height: 84px;
  226. background: #fff;
  227. position: relative;
  228. }
  229. .header .center .publicblock {
  230. height: 100%;
  231. position: relative;
  232. }
  233. .header .center .logo {
  234. float: left;
  235. position: relative;
  236. z-index: 9;
  237. height: 85px;
  238. display: table-cell;
  239. vertical-align: middle;
  240. line-height: 85px;
  241. }
  242. .header .center .logo img {
  243. /* max-height: 80%; */
  244. max-height: 98%;
  245. }
  246. .header .center ul {
  247. height: 48px;
  248. padding-top: 38px;
  249. margin-left: 225px;
  250. }
  251. .header .center ul li {
  252. height: 100%;
  253. float: left;
  254. margin-right: 21px;
  255. }
  256. .header .center ul li > a {
  257. display: block;
  258. float: left;
  259. height: 46px;
  260. color: #282828;
  261. font-size: 14px;
  262. position: relative;
  263. padding-top: 2px;
  264. }
  265. .header .center ul .li1 > a, .header .center ul .li2 > a {
  266. font-size: 14px;
  267. }
  268. .header .center ul li > a.more {
  269. padding-right: 10px;
  270. position: relative;
  271. }
  272. .header .center ul li > a .new {
  273. display: block;
  274. width: 28px;
  275. height: 19px;
  276. position: absolute;
  277. left: 50%;
  278. top: -24px;
  279. margin-left: -19px;
  280. }
  281. .header .center ul li > a .new font {
  282. display: block;
  283. width: 28px;
  284. height: 19px;
  285. }
  286. .header .center ul li > a .hot {
  287. display: block;
  288. width: 28px;
  289. height: 19px;
  290. position: absolute;
  291. left: 50%;
  292. top: -24px;
  293. margin-left: -19px;
  294. }
  295. .header .center ul li > a .hot font {
  296. display: block;
  297. width: 28px;
  298. height: 19px;
  299. }
  300. .down3 .sonbox .dl dd .icon_stag {
  301. display: inline-block;
  302. width: 31px;
  303. height: 14px;
  304. position: relative;
  305. top: 2px;
  306. left: 12px;
  307. }
  308. .down3 .sonbox .dl dd .icon_stag.icon_hot {
  309. background: url(../images/header_yz_images/sm_hot.png) no-repeat;
  310. }
  311. .down3 .sonbox .dl dd .icon_stag.icon_new {
  312. background: url(../images/header_yz_images/sm_new.png) no-repeat;
  313. }
  314. .header .center ul li > a i {
  315. position: absolute;
  316. right: -5px;
  317. top: 7px;
  318. width: 9px;
  319. height: 5px;
  320. background-image: url("../images/header_yz_images/icon.png");
  321. background-repeat: no-repeat;
  322. }
  323. .header .center ul .li1 {
  324. font-weight: 700;
  325. margin-right: 27px;
  326. }
  327. .header .center ul .li2 {
  328. margin-right: 20px;
  329. }
  330. .header .center ul .li9 {
  331. margin-right: 16px;
  332. }
  333. .header .center ul li.down2 {
  334. padding-right: 21px;
  335. margin-right: 0;
  336. }
  337. .header .center ul li.li5 {
  338. padding-right: 14px;
  339. }
  340. .header .center ul li.li7 {
  341. padding-right: 14px;
  342. }
  343. .header .center ul .li2 > a {
  344. font-weight: 700;
  345. color: #EF1E25;
  346. }
  347. .header .center ul .li10 > a:before {
  348. content: "";
  349. display: block;
  350. height: 9px;
  351. width: 1px;
  352. background: #aaa;
  353. margin-top: 4px;
  354. position: absolute;
  355. right: -18px;
  356. }
  357. .header .center ul .li9 a, .header .center ul .li10 a {
  358. font-weight: 700;
  359. font-size: 14px;
  360. }
  361. .header .center ul .li10 {
  362. margin-right: 48px;
  363. }
  364. .header .btns {
  365. height: 35px;
  366. line-height: 35px;
  367. background: #EF1E25;
  368. border-radius: 5px;
  369. display: block;
  370. text-align: center;
  371. color: #FFFFFF;
  372. font-size: 14px;
  373. width: 105px;
  374. position: absolute;
  375. right: 0;
  376. top: 50%;
  377. margin-top: -58px;
  378. }
  379. .header .btns:hover {
  380. opacity: 0.8;
  381. }
  382. .header .btns span {
  383. position: relative;
  384. padding-left: 17px;
  385. }
  386. .header .btns i {
  387. position: absolute;
  388. top: 50%;
  389. margin-top: -5.5px;
  390. width: 13px;
  391. height: 13px;
  392. left: 0;
  393. background: url(../images/header_yz_images/icon.png) no-repeat -49px -20px;
  394. }
  395. .header .btnsbox {
  396. height: 0;
  397. position: absolute;
  398. width: 1200px;
  399. margin: 0 auto;
  400. }
  401. .header .center ul li.li1 a {
  402. padding-left: 18px;
  403. }
  404. .header .center ul li.li1 i {
  405. position: absolute;
  406. left: 0;
  407. top: 1px;
  408. width: 15px;
  409. height: 16px;
  410. }
  411. .header .center ul li:hover > a {
  412. color: #EF1E25;
  413. }
  414. /*down1*/
  415. .header .center .down1 .sonbox {
  416. width: 1200px;
  417. background: #fff;
  418. position: absolute;
  419. left: 0;
  420. top: 104px;
  421. z-index: 100;
  422. border-top: 1px solid #eee;
  423. -webkit-box-shadow: 1px 1px 1px #eee;
  424. box-shadow: 1px 1px 1px #eee;
  425. display: block;
  426. padding-bottom: 40px;
  427. display: none;
  428. }
  429. .header .center .down1 .sonbox dl {
  430. width: 375px;
  431. border-right: 1px solid #eee;
  432. float: left;
  433. margin-right: 30px;
  434. }
  435. .header .center .down1 .sonbox dl dt {
  436. font-weight: 700;
  437. font-size: 14px;
  438. margin-bottom: 12px;
  439. }
  440. .header .center .down1 .sonbox dl dd a {
  441. display: block;
  442. width: 125px;
  443. float: left;
  444. line-height: 24px;
  445. color: #656565;
  446. font-size: 12px;
  447. }
  448. .header .center .down1 .sonbox dl dd a:hover span {
  449. color: #FC5F1E;
  450. }
  451. .header .center .down1 .sonbox dl dd span {
  452. position: relative;
  453. }
  454. .header .center .down1 .sonbox dl dd span i {
  455. position: absolute;
  456. right: -16px;
  457. top: 50%;
  458. margin-top: -7.5px;
  459. display: block;
  460. width: 15px;
  461. height: 15px;
  462. display: none;
  463. }
  464. .header .center .down1 .sonbox dl dd a.h i {
  465. display: block;
  466. background: url(../images/header_yz_images/icon.png) no-repeat -66px -19px;
  467. }
  468. .header .center .down1 .sonbox dl dt span {
  469. position: relative;
  470. }
  471. .header .center .down1 .sonbox dl dt i {
  472. display: block;
  473. width: 12px;
  474. height: 12px;
  475. position: absolute;
  476. right: -15px;
  477. margin-top: -5px;
  478. top: 50%;
  479. }
  480. .header .center .down1 .sonbox dl {
  481. margin-top: 36px;
  482. }
  483. .header .center .down1 .sonbox dl dd {
  484. overflow: hidden;
  485. }
  486. .header .center .down1 .sonbox dl.dl3 {
  487. border-right: none;
  488. margin-right: 0;
  489. }
  490. /*down2*/
  491. .down2 {
  492. position: relative;
  493. }
  494. .header .sonboxbg {
  495. width: 100%;
  496. height: 36px;
  497. border-top: 1px solid #e4e2ee;
  498. background: #fff;
  499. position: absolute;
  500. left: 0;
  501. bottom: -27px;
  502. z-index: 887;
  503. display: none;
  504. }
  505. .header .center ul li:hover .sonbox2 {
  506. display: block;
  507. }
  508. .down2 .sonbox2 {
  509. width: 550px;
  510. z-index: 888;
  511. position: absolute;
  512. left: 50%;
  513. top: 36px;
  514. -webkit-transform: translateX(-50%);
  515. transform: translateX(-50%);
  516. margin-left: -15px;
  517. text-align: center;
  518. display: none;
  519. }
  520. .header .center ul .li5.down2 .sonbox2 {
  521. width: 475px;
  522. margin-left: -7px;
  523. }
  524. .header .center ul .li7.down2 .sonbox2 {
  525. width: 502px;
  526. }
  527. .header .center ul .li3.down2 .sonbox2,
  528. .header .center ul .li4.down2 .sonbox2 {
  529. margin-left: -18px;
  530. }
  531. .header .center ul .li8.down2 .sonbox2 {
  532. margin-left: -25px;
  533. }
  534. .down2 .sonbox2 span {
  535. display: inline-block;
  536. height: 36px;
  537. line-height: 36px;
  538. vertical-align: top;
  539. padding: 0 16px 0 17px;
  540. position: relative;
  541. }
  542. .down2 .sonbox2 span:after {
  543. content: "";
  544. display: inline-block;
  545. width: 1px;
  546. height: 8px;
  547. background: #dfdfdf;
  548. position: absolute;
  549. left: 0;
  550. top: 14px;
  551. }
  552. .down2 .sonbox2 span:first-child:after {
  553. display: none;
  554. }
  555. .down2 .sonbox2 a {
  556. display: inline-block;
  557. line-height: 36px;
  558. color: #7d7d7d;
  559. font-size: 14px;
  560. }
  561. .down2 .sonbox2 span:first-child a {
  562. color: #EF1E25;
  563. }
  564. .down2 .sonbox2 a:hover, .down2 .sonbox2 span:first-child a:hover {
  565. color: #ff7e00;
  566. }
  567. /*down3*/
  568. .down3 .sonbox {
  569. background: rgba(255,255,255,0.98);
  570. border: 1px solid #ef1e25;
  571. position: absolute;
  572. left: -1px;
  573. top: 70px;
  574. z-index: 100;
  575. -webkit-box-shadow: 0 8px 7.6px rgba(26, 26, 26, 0.3);
  576. box-shadow: 0 8px 7.6px rgba(26, 26, 26, 0.3);
  577. padding: 24px 0 27px;
  578. display: none;
  579. }
  580. .down3 .sonbox:after{
  581. content: "";
  582. display: block;
  583. width: 90px;
  584. height: 38px;
  585. border: 1px solid #ef1e25;
  586. border-bottom: 1px solid rgba(255,255,255,0.98);
  587. position: absolute;
  588. top: -40px;
  589. left: 286px;
  590. }
  591. .down3 .sonbox .dl {
  592. width: 212px;
  593. height: 280px;
  594. float: left;
  595. overflow: hidden;
  596. }
  597. .down3 .sonbox .dl:first-child {
  598. border-left: 1px solid transparent;
  599. }
  600. .down3 .sonbox .dl dt {
  601. height: 40px;
  602. padding: 0 0 0 25px;
  603. position: relative;
  604. }
  605. .down3 .sonbox .dl dt a {
  606. font-size: 16px;
  607. font-weight: bold;
  608. }
  609. .down3 .sonbox .dl:hover dt a, .down3 .sonbox .dl dt a:hover {
  610. color: #EF1E25;
  611. }
  612. .down3 .sonbox .dl dt:after {
  613. content: "";
  614. display: inline-block;
  615. width: 13px;
  616. height: 3px;
  617. background: url("../images/header_yz_images/pro_dot.png") no-repeat;
  618. position: absolute;
  619. left: 26px;
  620. bottom: 7px;
  621. }
  622. .down3 .sonbox dd {
  623. padding: 3px 0;
  624. }
  625. .down3 .sonbox .single {
  626. display: block;
  627. font-size: 14px;
  628. color: #7b7b7b;
  629. line-height: 35px;
  630. height: 35px;
  631. padding: 0 20px 0 50px;
  632. position: relative;
  633. margin-bottom: 4px;
  634. }
  635. .down3 .sonbox .dl01 .single:first-child, .down3 .sonbox .dl02 .single:first-child, .down3 .sonbox .dl03 .single:first-child {
  636. color: #f1001b;
  637. }
  638. .down3 .sonbox .dl04 .single:first-child {
  639. color: #5bc353;
  640. }
  641. .down3 .sonbox .single:hover {
  642. color: #ff7e00;
  643. -webkit-box-shadow: 0 0 3px rgba(225, 225, 225, 0.32);
  644. box-shadow: 0 0 3px rgba(225, 225, 225, 0.32);
  645. }
  646. .down3 .sonbox .single i {
  647. display: inline-block;
  648. vertical-align: top;
  649. width: 18px;
  650. height: 100%;
  651. background-position: center center;
  652. background-repeat: no-repeat;
  653. float: right;
  654. position: absolute;
  655. left: 25px;
  656. top: 0px;
  657. }
  658. .down3 .sonbox .single .icon_r {
  659. background-image: url("../images/header_yz_images/icon_r_new.png");
  660. }
  661. .down3 .sonbox .single .icon_p {
  662. background-image: url("../images/header_yz_images/icon_p.png");
  663. }
  664. .down3 .sonbox .single .icon_c {
  665. background-image: url("../images/header_yz_images/icon_c.png");
  666. }
  667. .down3 .sonbox .single .icon_wd01 {
  668. background-image: url("../images/header_yz_images/icon_wd_new.png");
  669. }
  670. .down3 .sonbox .single .icon_wd02 {
  671. background-image: url("../images/header_yz_images/icon_wd02.png");
  672. }
  673. .down3 .sonbox .single .icon_wd03 {
  674. background-image: url("../images/header_yz_images/icon_wd03.png");
  675. }
  676. .down3 .sonbox .single .icon_wd04 {
  677. background-image: url("../images/header_yz_images/icon_wd04.png");
  678. }
  679. .down3 .sonbox .single .icon_wd05 {
  680. background-image: url("../images/header_yz_images/icon_wd05.png");
  681. }
  682. .down3 .sonbox .single .icon_xm01 {
  683. background-image: url("../images/header_yz_images/icon_xm01.png");
  684. }
  685. .down3 .sonbox .single .icon_xm02 {
  686. background-image: url("../images/header_yz_images/icon_xm02.png");
  687. }
  688. .down3 .sonbox .single .icon_xm03 {
  689. background-image: url("../images/header_yz_images/icon_xm03.png");
  690. }
  691. .down3 .sonbox .single .icon_xm04 {
  692. background-image: url("../images/header_yz_images/icon_xm04.png");
  693. }
  694. .down3 .sonbox .single .icon_xm05 {
  695. background-image: url("../images/header_yz_images/icon_xm05.png");
  696. }
  697. .down3 .sonbox .single .icon_cm01 {
  698. background-image: url("../images/header_yz_images/icon_cm_new.png");
  699. }
  700. .down3 .sonbox .single .icon_cm02 {
  701. background-image: url("../images/header_yz_images/icon_cm02.png");
  702. }
  703. .down3 .sonbox .single .icon_cm03 {
  704. background-image: url("../images/header_yz_images/icon_cm03.png");
  705. }
  706. .down3 .sonbox .single .icon_zq01 {
  707. background-image: url("../images/header_yz_images/icon_zq01.png");
  708. }
  709. .down3 .sonbox .single .icon_zq02 {
  710. background-image: url("../images/header_yz_images/icon_zq_new.png");
  711. }
  712. .down3 .sonbox .single .icon_zq03 {
  713. background-image: url("../images/header_yz_images/icon_zq03.png");
  714. }
  715. .down3 .sonbox .single .icon_hl01 {
  716. background-image: url("../images/header_yz_images/icon_hl01.png");
  717. }
  718. .down3 .sonbox .single .icon_hl02 {
  719. background-image: url("../images/header_yz_images/icon_hl02.png");
  720. }
  721. /*雪碧图*/
  722. .new .iconheader {
  723. background: url(../images/header_yz_images/icon_new.png) no-repeat;
  724. }
  725. .hot .iconheader {
  726. background: url(../images/header_yz_images/hot.png) no-repeat;
  727. }
  728. .icon_ad_close {
  729. background-position: -5px -3px;
  730. }
  731. .header .icon_welcome {
  732. background-position: -50px -1px;
  733. }
  734. .header .icon_home {
  735. background-position: -108px -1px;
  736. }
  737. .header .nav .li1:hover .icon_home {
  738. background-position: -123px -1px;
  739. }
  740. .header .icon_down {
  741. background: -85px -23px;
  742. }
  743. .header .nav li:hover .icon_down {
  744. background-position: -99px -23px;
  745. }
  746. .header .r {
  747. background-position: -6px -36px;
  748. }
  749. .header .p {
  750. background-position: -24px -38px;
  751. }
  752. .header .c {
  753. background-position: -42px -38px;
  754. }