header.css 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409
  1. /* header */
  2. .header {
  3. color:#333;
  4. height: 64px;
  5. line-height: 64px;
  6. background-color: #f9f9f9;
  7. }
  8. .header div>div{
  9. margin-left: 30px;
  10. float:right;
  11. }
  12. .header ul li {
  13. float: left;
  14. margin: 0 10px;
  15. }
  16. .header a{
  17. color:#333;
  18. }
  19. .header .colorRed{
  20. color: #ff570c;
  21. }
  22. /* 导航 */
  23. .topNav{
  24. width: 100%;
  25. background: #ffffff;
  26. height:102px;
  27. }
  28. .topNav.navFix{
  29. position: fixed;
  30. top: 0;
  31. left: 0;
  32. z-index: 9998;
  33. box-shadow: 0 4px 10px #ccc;
  34. }
  35. /* 导航 */
  36. .navHeader {
  37. position: absolute;
  38. width: 1200px;
  39. left: 50%;
  40. margin-left: -600px;
  41. z-index: 999;
  42. }
  43. .navHeader .nav ul li img {
  44. width: 30px;
  45. height: 30px;
  46. position: absolute;
  47. right: 0px;
  48. top: 9px;
  49. }
  50. .navHeader .logo {
  51. float: left;
  52. padding-left: 20px;
  53. margin-top: 20px;
  54. }
  55. .navHeader .logo_right {
  56. margin-top: 14px;
  57. float: left;
  58. padding-left: 20px;
  59. width: 120px;
  60. height: 75px;
  61. background: url("../../../img/index_xuan.png") no-repeat center center;
  62. margin-left: 10px;
  63. }
  64. .navHeader .nav {
  65. float: left;
  66. vertical-align: top;
  67. margin-top: 26px;
  68. padding-left: 40px;
  69. }
  70. .navHeader .nav>ul>li {
  71. float: left;
  72. width: 112px;
  73. vertical-align: middle;
  74. text-align: center;
  75. position: relative;
  76. margin: 0 5px;
  77. }
  78. .navHeader .nav>ul>li.active div{
  79. /* box-shadow: 0 0 15px rgb(219, 218, 218); */
  80. border-bottom: 4px solid #064f87;
  81. }
  82. /*2级导航*/
  83. .navHeader .nav ul li div{
  84. background: #ffffff;
  85. overflow:hidden;
  86. width: 112px;
  87. }
  88. .navHeader .nav ul li:hover{
  89. box-shadow: 0 0 15px rgb(219, 218, 218);
  90. }
  91. .navHeader .nav ul li:hover div{
  92. border-radius: 5px;
  93. }
  94. .navHeader .nav ul li>div>a{
  95. width: 112px;
  96. line-height: 56px;
  97. height: 56px;
  98. display: inline-block;
  99. font-size: 20px;
  100. color: #064f87;
  101. }
  102. .navHeader .nav ul li .subnavigation {
  103. width: 112px;
  104. top: 76px;
  105. z-index: 9999;
  106. background: #ffffff;
  107. display: none;
  108. padding-bottom: 15px;
  109. }
  110. .subnavigation li>a {
  111. width: 110px;
  112. height: 42px;
  113. line-height: 42px;
  114. display: inline-block;
  115. color: #7a7878;
  116. }
  117. .subnavigation li a:hover {
  118. color:#064f87!important;
  119. background: #e5f0f4;
  120. }
  121. .subnavigation li {
  122. height: 30px;
  123. line-height: 30px;
  124. }
  125. /*hot*/
  126. .nav ul li:hover img {
  127. animation: hot 1s infinite linear;
  128. transition: all 1s;
  129. }
  130. @keyframes hot {
  131. 0% {
  132. width: 30px;
  133. height: 30px;
  134. }
  135. 25% {
  136. width: 25px;
  137. height: 25px;
  138. top: 9px;
  139. }
  140. 50% {
  141. width: 30px;
  142. height: 30px;
  143. }
  144. 100% {
  145. width: 25px;
  146. height: 25px;
  147. top: 9px;
  148. }
  149. }
  150. .navHeader .nav_right{
  151. margin-top: 20px;
  152. float: right;
  153. color:#ff570c;
  154. }
  155. .navHeader .nav_right img{
  156. width: 82px;
  157. height: 62px;
  158. margin-right: 14px;
  159. }
  160. @media (min-width: 1200px) {
  161. .container {
  162. width: 1200px;
  163. }
  164. }
  165. .search {
  166. clear: both;
  167. margin-top: 30px;
  168. }
  169. .navMeau {
  170. height: 55px;
  171. }
  172. .search .navMeau {
  173. float: left;
  174. width: 226px;
  175. font-size: 24px;
  176. color: #ffffff;
  177. height: 55px;
  178. line-height: 55px;
  179. text-align: center;
  180. margin-right: 30px;
  181. background: url(../../../img/newMenu/search-bj.jpg)
  182. }
  183. .search>div {
  184. display: inline-block;
  185. float: left;
  186. }
  187. .container .imgs {
  188. overflow: hidden;
  189. padding-top: 35px;
  190. padding-bottom: 62px;
  191. }
  192. .container .imgs img {
  193. width: 100%
  194. }
  195. .search .search-inp {
  196. font-size: 16px;
  197. height: 55px;
  198. line-height: 55px;
  199. }
  200. .search-inp .input-group {
  201. width: 900px;
  202. }
  203. .search-inp div:nth-child(2) {
  204. margin: 0 10px;
  205. }
  206. .search .search-inp input {
  207. font-size: 16px;
  208. height: 55px;
  209. line-height: 55px;
  210. border-color: #1797e9;
  211. border-right: none;
  212. }
  213. .search .search-inp button {
  214. height: 55px;
  215. line-height: 45px;
  216. background-color: #1797e9;
  217. color: #fff;
  218. font-size: 18px;
  219. width: 150px;
  220. border: none;
  221. border-radius: 0 5px 5px 0;
  222. }
  223. input:focus{
  224. outline: none;
  225. }
  226. .btn:focus,.btn:active,.btn.focus,.btn:active:focus,.btn.active:focus{
  227. background: #1797e9;
  228. outline: none;
  229. color:#ffffff;
  230. border: none
  231. }
  232. .search-inp .input-group{
  233. position: relative;
  234. }
  235. .searchBtn{
  236. }
  237. .search-inp .txtVal{
  238. position: absolute;
  239. left: 5px;
  240. top: 0;
  241. height: 24px;
  242. z-index: 999;
  243. line-height: 24px;
  244. padding: 16px 5px 16px 10px;
  245. }
  246. .search-inp .txtVal span{
  247. display: inline-block;
  248. padding: 0 10px;
  249. background: #e9f3f9;
  250. color: #7f7f7f;
  251. font-size: 14px;
  252. margin-right: 10px;
  253. }
  254. .search .search-inp div {
  255. float: left;
  256. }
  257. .search .searchMain {
  258. clear: both;
  259. overflow: hidden;
  260. margin-bottom: 20px
  261. }
  262. .search ol {
  263. clear: both
  264. }
  265. .search ol li {
  266. cursor: pointer;
  267. height: 30px;
  268. line-height: 30px;
  269. float: left;
  270. margin-right: 20px;
  271. font-size: 14px;
  272. }
  273. .search ol li a{
  274. color: #393838;
  275. }
  276. .search ol li:hover {
  277. color: #ff570c;
  278. }
  279. .search ol li.active {
  280. color: #ff570c;
  281. }
  282. .search .navMeau>div {
  283. position: relative;
  284. width: 100%;
  285. }
  286. .colorRed {
  287. font-size: 12px;
  288. color: #ff570c;
  289. }
  290. .colorBlur {
  291. font-size: 12px;
  292. color: #0289df;
  293. vertical-align: middle
  294. }
  295. .colorWrite {
  296. color: #ccc;
  297. height: 40px;
  298. margin: 12px 0px;
  299. }
  300. .navMeau .menuList {
  301. /* display: none; */
  302. position: absolute;
  303. top: 55px;
  304. padding: 20px 20px 40px;
  305. left: 0;
  306. z-index: 999;
  307. background: #3b3b3b;
  308. color: #ffffff;
  309. font-size: 14px;
  310. }
  311. .navMeau .menuList ul li {
  312. float: left;
  313. box-sizing: border-box;
  314. width: 50%;
  315. height: 36px;
  316. line-height: 36px;
  317. text-align: center
  318. }
  319. .menuList ul li.active{
  320. color: #ff570c
  321. }
  322. .navMeau .menuList ul li:hover a{
  323. cursor: pointer;
  324. color: #0289df
  325. }
  326. .menuList ul li a{
  327. width: 100%;
  328. height: 36px;
  329. line-height: 36px;
  330. display: inline-block;
  331. color: #ffffff
  332. }
  333. /* 主体内容 */
  334. .demand-marq {
  335. position: relative;
  336. top: -12px;
  337. clear: both;
  338. width: 100%;
  339. height: 50px;
  340. line-height: 50px;
  341. box-shadow: 0 5px 5px #ccc;
  342. padding: 0 20px;
  343. background-color: #ffffff;
  344. }
  345. .demand-marq span {
  346. float: left;
  347. width: 96px;
  348. height: 20px;
  349. display: inline-block;
  350. background: url(../../../img/newMenu/demand-1.png) no-repeat;
  351. vertical-align: top;
  352. margin-top: 15px
  353. }
  354. .demand-marq marquee ul {
  355. overflow: hidden;
  356. width: 3500px;
  357. height: 50px;
  358. }
  359. .demand-marq marquee {
  360. overflow: hidden;
  361. margin-left: 20px;
  362. width: 980px;
  363. float: left;
  364. }
  365. .demand-marq ul li {
  366. margin: 0 30px;
  367. float: left;
  368. }