index.css 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857
  1. /* 头部 */
  2. header{width: 100%;height: 110px;}
  3. .header{height: 110px;}
  4. .header h1{float: left;width: 230px;height: 110px;margin-left: -20px;}
  5. .header h1 img{width: 100%;height: 100%;}
  6. .header_l{width: 570px;height: 110px;margin-left: 80px;}
  7. .header_l .form{width: 570px;margin-top: 30px;position: relative;}
  8. .header_l .form input{width: 365px;height: 40px;border: 3px solid #e51717;outline: none;box-sizing: border-box;float: left;text-indent: 30px;background: url(../images/seek.png) no-repeat 5px 8px;}
  9. .header_l .form a{display: block;width: 100px;height: 40px;background: #e51717;line-height: 40px;text-align: center;color: #fff;font-size: 16px;float: left;}
  10. .header_l .form p{float: left;width: 90px; height: 40px;line-height: 20px;color: #666;margin-left: 10px; cursor: pointer;}
  11. /* 搜索下拉提示 */
  12. .header_l .form .form_down{
  13. position: absolute;
  14. top: 40px;
  15. left: 0;
  16. width: 363px;
  17. background: #fff;
  18. z-index: 9;
  19. border: 1px solid #eee;
  20. border-radius: 0 0 5px 5px;
  21. display: none;
  22. }
  23. .header_l .form .form_down span{
  24. display: block;
  25. color: #666;
  26. line-height: 30px;
  27. cursor: pointer;
  28. text-indent: 15px;
  29. }
  30. .header_l .form .form_down span:hover{background: #eee;}
  31. /* 搜索下拉提示结束 */
  32. .header_l p span{color: #e51717;}
  33. .header_l ul{height: 30px;}
  34. .header_l ul li{float: left;height: 30px;line-height: 30px;margin-right: 7px;color: #666;}
  35. .header_l ul li a{color: #666;}
  36. .header_l ul .red{color: #e51717;}
  37. .header_l ul li .orange{color: #f5681b;}
  38. .header_l ul li em{display: block;width: 10px;height: 30px;background: url(../images/down2.png) no-repeat;float: right;margin-left: 2px;}
  39. .header_r{width: 220px;height: 80px;margin-top: 22px;}
  40. .header_r img{width: 80px;height: 80px;margin-right: 15px;}
  41. /* 导航栏 */
  42. nav{width: 100%;height: 40px;background: #db0f21;}
  43. nav ul li{width: 120px;height: 40px;line-height: 40px;float: left;text-align: center;cursor: pointer;}
  44. nav ul li a{display: block;width: 100%;height: 100%;color: #fff;font-size: 16px;}
  45. nav ul li span{display: block;width: 100%;height: 100%;color: #fff;font-size: 16px;}
  46. nav ul .active{background: #99131a;}
  47. nav ul li:hover{background: #99131a;}
  48. nav ul li a:hover{color: #fff;}
  49. /* 广告 */
  50. .ad{padding-bottom: 20px;}
  51. .ad ul{height: 55px;display: flex;justify-content: space-between;margin-top: 20px;}
  52. .ad ul li{width: 310px;height: 55px;}
  53. .ad ul li:first-child{width: 420px;}
  54. .ad ul li:first-child p{width: 350px;}
  55. .ad ul li img{width: 55px;height: 55px;float: left;margin-right: 15px;}
  56. .ad ul li p{width: 220px;height: 55px;line-height: 27px;}
  57. .ad ul li p a{margin-right: 10px;}
  58. /* .ad ul li p a:hover{color: #e51717;} */
  59. .ad .banner{width: 100%; display: flex;flex-wrap: wrap; justify-content: space-between;margin-top: 20px;}
  60. .ad .banner a{display: block;float: left;width: 140px;height: 70px;overflow: hidden;margin-bottom: 10px;}
  61. .ad .banner a img{width: 100%;height: 100%}
  62. /* 第一部分 */
  63. .jm{height: 530px;padding-top: 20px;}
  64. .jm_l{width: 190px;height: 530px;box-shadow: 0 0 5px #ccc;background: #fff;}
  65. .jm_l h2{height: 38px;line-height: 38px;border-top: 2px solid #eae8e9;background: #f9f8f9;color: #666;font-size: 18px;font-weight: 700;text-align: center;}
  66. .jm_l ul{width: 170px; height: 340px;padding: 10px 0;border-bottom: 1px dashed #ccc;margin: 0 auto;}
  67. .jm_l ul li{height: 40px;line-height: 40px;color: #333;}
  68. .jm_l ul li i{font-size: 20px;margin-right:5px;}
  69. .jm_l ul li a{margin: 0 2px;color: #333;}
  70. .jm_l h3{height: 40px;line-height: 40px;color: #666;font-size: 16px;padding: 0 10px;margin-top: 5px;font-weight: 600;}
  71. .money{height: 100px;padding: 0 10px;}
  72. .money a{display: block;float: left;width: 50%; height: 30px;line-height: 30px;}
  73. /* 轮播 */
  74. .jm_c{width: 720px;height: 530px;margin: 0 15px;}
  75. .jm_c_top{width: 720px;height: 300px;background: rgba(102, 102, 102, .6); overflow: hidden;}
  76. .picFocus{ margin:0 auto; width:720px; position:relative; overflow:hidden; zoom:1; }
  77. .picFocus .hd{ width:100%; padding-top:5px; overflow:hidden; }
  78. .picFocus .hd ul{ margin-right:-5px; overflow:hidden; zoom:1;padding: 0 10px; display: flex;justify-content: space-between;}
  79. .picFocus .hd ul li{ padding-top:5px; float:left; text-align:center; }
  80. .picFocus .hd ul li img{ width:109px; height:65px; border:2px solid #ddd; cursor:pointer; margin-right:5px; }
  81. .picFocus .hd ul li.on{ background:url("../images/icoup.gif") no-repeat center 0; }
  82. .picFocus .hd ul li.on img{ border-color:#f60; }
  83. .picFocus .bd li{ vertical-align:middle; }
  84. .picFocus .bd{ width:720px; height:220px; display:block; overflow:hidden;}
  85. .picFocus .bd img{ width:720px; height:220px; display:block; overflow:hidden;}
  86. .jm_c_bottom{height: 220px;margin-top: 10px;background: #fff;}
  87. .tab{height: 30px;line-height: 30px;}
  88. .tab span{float: left;margin-left: 15px;color: #666;cursor: pointer;font-weight: 600;}
  89. .tab .tab_on{color: #e51717;}
  90. .tab .txtMarquee-left{width: 400px;height: 30px; float: right;color: #999;position: relative;}
  91. .tab .txtMarquee-left strong{color: #666;float: left;}
  92. .tab .txtMarquee-left .bd{ display: inline-block; height: 30px;float: left;}
  93. .tab .txtMarquee-left .bd .tempWrap{ width:300px !important; }/* 用 !important覆盖SuperSlide自动生成的宽度,这样就可以手动控制可视宽度。 */
  94. .tab .txtMarquee-left .bd ul{ overflow:hidden; zoom:1; }
  95. .tab .txtMarquee-left .bd ul li{ margin-right:20px; float:left; height:30px; line-height:30px; text-align:left; _display:inline; width:auto !important; }
  96. .jm_ul{width: 720px;height: 190px;overflow: hidden;}
  97. .jm_ul li{width: 720px;height: 190px;border-top: 1px solid #ccc; display: none;}
  98. .jm_ul .tab_active{display: block;}
  99. .jm_ul li a{display: block;float: left;width: 20%;height: 94.5px;border-left: 1px solid #ccc;border-bottom: 1px solid #ccc;overflow: hidden;}
  100. .jm_ul li a:nth-child(5n){border-right: 1px solid #ccc;}
  101. .jm_ul li a img{width: 100%;height: 100%;}
  102. /* 第一部分右边 */
  103. .jm_r{width: 260px;background: #fff;}
  104. .jm_r_top{height: 50px;}
  105. .jm_r_top a{display: block;width: 125px;height: 50px;line-height: 50px;text-align: center; border: 1px solid #f69a72;color: #f69a72;float: left;font-size: 16px;}
  106. .jm_r_top a:first-child{margin-right: 10px;}
  107. .jm_r_top a i{font-size: 16px;margin-right: 5px;}
  108. /* a链改span */
  109. .jm_r_top span{display: block;width: 125px;height: 50px;line-height: 50px;text-align: center; border: 1px solid #f69a72;color: #f69a72;float: left;font-size: 16px;}
  110. .jm_r_top span:first-child{margin-right: 10px;}
  111. .jm_r_top span i{font-size: 16px;margin-right: 5px;}
  112. .jm_r_cont{margin-top: 9px;border: 1px solid #ddd;border-bottom: 0;height: 300px;}
  113. .jm_r_cont .you_div{height: 40px;}
  114. .jm_r_cont .you_div span{display: block;width: 33.3%;height: 40px;line-height: 40px;float: left;background: #f8f8f8;text-align: center;cursor: pointer;border-top: 1px solid #ddd;color: #666;}
  115. .right_active{background: #fff !important;border-top: 1px solid #e51717 !important;color: #333 !important;}
  116. .jm_r_cont ul{height: 260px;border-bottom: 1px solid #ddd;}
  117. .jm_r_cont ul li{padding: 10px 0;display: none;}
  118. .jm_r_cont ul .you_active{display: block;}
  119. .jm_r_cont ul li a{display: block;height: 30px;line-height: 30px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;position: relative;text-indent: 25px;}
  120. .jm_r_cont ul li a::after{position: absolute;content: "";top: 10px;left: 10px;width: 5px;height: 9px;background: url(../images/you.png);}
  121. .jm_r_cont ul li .red{color: #e51717;}
  122. .jm_r_bottom{width:260px;height: 171px;border: 1px solid #ddd;}
  123. .jm_right_title{width: 100%; height: 40px;line-height: 40px;}
  124. .jm_right_title span{display: block;float: left;width: 50%;height: 40px;line-height: 40px;text-align: center;color: #333;background: #f5f5f5;cursor: pointer;}
  125. .jm_right_title .title_active{background: #fff;}
  126. .jm_r_bottom ul{width: 260px; height: 130px;}
  127. .jm_r_bottom ul li{width: 260px;height: 130px;padding: 10px;float: left;display: none;}
  128. .jm_r_bottom ul li img{width: 240px;height: 110px;}
  129. .title_box{display: block !important;}
  130. /* 广告图 */
  131. .ad1{display: flex;flex-wrap: wrap; justify-content: space-between;margin-top: 20px;}
  132. .ad1 a{display: block;width: 190px;height: 150px;overflow: hidden;margin-bottom: 10px;}
  133. .ad1 a img{width: 100%;height: 100%;}
  134. .guanggao_banner{height: 70px;margin-top: 20px;}
  135. /* 行业推荐 */
  136. .h2{height: 50px;line-height: 50px;border-bottom: 1px solid #ccc;padding: 0 5px;}
  137. .h2 strong{font-size: 20px;font-weight: 700;}
  138. .h2 i{font-size: 22px;margin-right: 5px;}
  139. .h2 p{float: right;}
  140. .h2 p a{color: #999;margin-left: 20px;}
  141. .jm2{margin-top: 10px;}
  142. .jm2 ul{margin-top: 15px;height: 740px;display: flex;justify-content: space-between;flex-wrap: wrap;}
  143. .jm2 ul li{
  144. width: 595px;
  145. height: 360px;
  146. margin-bottom: 10px;
  147. }
  148. .jm2 ul li .jiaoyi_l{
  149. width: 200px;
  150. height: 360px;
  151. background: #ececee;
  152. }
  153. .jm2 ul li .jiaoyi_l span{
  154. display: block;
  155. width: 200px;
  156. height: 240px;
  157. overflow: hidden;
  158. }
  159. .jm2 ul li .jiaoyi_l div{
  160. width: 100%;
  161. height: 120px;
  162. padding: 10px 20px;
  163. }
  164. .jm2 ul li .jiaoyi_l div h3{
  165. font-size: 22px;
  166. line-height: 35px;
  167. color: #ff7200;
  168. font-weight: 800;
  169. }
  170. .jm2 ul li .jiaoyi_l div p{line-height: 25px;color: #666;}
  171. .jm2 ul li .jiaoyi_l div a{display: block;line-height: 25px;color: #666;}
  172. .jiaoyi_r{width: 395px;height: 360px;background: #fff;}
  173. .jiaoyi_top{height: 90px;border-bottom: 1px solid #ccc;padding: 15px 25px;}
  174. .jiaoyi_top_dd{width: 150px;}
  175. .jiaoyi_top_dd h3{font-size: 20px;height: 20px;position: relative;text-indent: 10px;font-weight: 600;}
  176. .jiaoyi_top_dd h3::after{position: absolute;content: '';width: 3px;height: 20px;background: #ff7300;top: 0;left: 0;}
  177. .jiaoyi_top_dd p{margin-top: 15px;}
  178. .jiaoyi_logo{width: 100px;height: 60px;overflow: hidden;}
  179. .jiaoyi_box{
  180. height: 270px;
  181. padding: 20px 25px;
  182. }
  183. .jiaoyi_box_l{
  184. width: 210px;
  185. height: 230px;
  186. border-right: 1px solid #ccc;
  187. }
  188. .jiaoyi_box_l p{margin-bottom: 15px;}
  189. .jiaoyi_box_l p:last-child{margin: 0;}
  190. .jiaoyi_box_l p a{
  191. display: block;
  192. float: left;
  193. width: 65px;
  194. height: 25px;
  195. line-height: 25px;
  196. }
  197. .jiaoyi_box_r{width: 120px;height: 230px;}
  198. .jiaoyi_box_r p{width: 120px; margin-bottom: 15px;}
  199. .jiaoyi_box_r p a{display: block;line-height: 23px;width: 100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
  200. /* 加盟动态 */
  201. .sec3{margin-top: 10px;}
  202. .move{margin-top: 10px;height: 540px;}
  203. .roomove_left{width: 430px;height: 540px;background: #fff;}
  204. /* 轮播 */
  205. .move_play{width: 430px;height: 275px;background: #ccc}
  206. .move_play .slideBox{ width:430px; height:275px; overflow:hidden; position:relative; }
  207. .move_play .slideBox .bd{ position:relative; height:100%; z-index:0; }
  208. .move_play .slideBox .bd li{ zoom:1; vertical-align:middle; position: relative;}
  209. .move_play .slideBox .bd li span{position: absolute;width: 100%;height: 50px;line-height: 50px;background: rgba(0, 0, 0, .5);color: #fff;text-align: center;left: 0;bottom: 0;}
  210. .move_play .slideBox .bd img{ width:430px; height:275px; display:block; }
  211. /* 下面是前/后按钮代码 */
  212. .move_play .slideBox .prev,
  213. .move_play .slideBox .next{ position:absolute; left:3%; top:50%; margin-top:-25px; display:block; width:32px; height:40px; background:url(../images/slider-arrow.png) -110px 5px no-repeat; filter:alpha(opacity=50);opacity:0.5; }
  214. .move_play .slideBox .next{ left:auto; right:3%; background-position:8px 5px; }
  215. .move_play .slideBox .prev:hover,
  216. .move_play .slideBox .next:hover{ filter:alpha(opacity=100);opacity:1; }
  217. .move_play .slideBox .prevStop{ display:none;}
  218. .move_play .slideBox .nextStop{ display:none;}
  219. .roomove_left .roomove_url{width: 430px;height: 265px;}
  220. .roomove_left .roomove_url li{height: 55px;padding: 0 15px;margin-top: 8px;}
  221. .roomove_left .roomove_url li h3{font-size: 16px;color: #666;line-height: 30px;}
  222. .roomove_left .roomove_url li h3 span{margin-right: 5px; font-size: 14px;color: #fff;background: #e51717;padding: 2px 4px;border-radius: 3px;}
  223. .roomove_left .roomove_url li p{line-height: 30px;}
  224. .roomove_left .roomove_url li p a{color: #666;}
  225. .roomove_c{width: 425px;height: 540px;margin: 0 15px;padding: 0 20px;background: #fff;}
  226. .roomove_c dl{height: 275px;}
  227. .roomove_c dl dt{height: 50px;line-height: 50px;}
  228. .roomove_c dl dt span{
  229. display: block;
  230. width: 100px;
  231. height: 50px;
  232. border-top: 2px solid #e51717;
  233. font-size: 16px;
  234. text-align: center;
  235. font-weight: 600;
  236. color: #e51717;
  237. }
  238. .roomove_c dl dd{
  239. height: 75px;
  240. border-top: 1px dashed #ccc;
  241. }
  242. .roomove_c dl dd h3{line-height: 30px;font-size: 16px;font-weight: 600;margin-top: 10px;}
  243. .roomove_c dl dd h3 a{color: #e51717;}
  244. .roomove_c dl dd p{line-height: 30px;}
  245. .roomove_c dl dd p a{color: #666;}
  246. .roomove_c img{width: 100%;height: 60px;}
  247. .roomove_c ul{height: 190px;margin-top: 15px;}
  248. .roomove_c ul li{height: 30px;line-height: 30px;}
  249. .roomove_c ul li span{
  250. display: block;
  251. float: left;
  252. color: #666;
  253. margin-right: 8px;
  254. }
  255. .roomove_c ul li a{
  256. display: block;
  257. float: left;
  258. width: 150px;
  259. color: #333;
  260. overflow: hidden;
  261. text-overflow: ellipsis;
  262. white-space: nowrap;
  263. margin-right: 15px;
  264. }
  265. .roomove_c ul li a:hover{color: #e51717;}
  266. .roomove_right{width: 315px;height: 540px;border-top: 2px solid #e51717;padding: 0 15px;background: #fff;}
  267. .roomove_right h3{
  268. height: 50px;
  269. line-height: 50px;
  270. border-bottom: 1px solid #ccc;
  271. font-size: 16px;
  272. font-weight: 600;
  273. }
  274. .roomove_right h3 span{color: #e51717;}
  275. .roomove_right h3 i{
  276. display: inline-block;
  277. width: 22px;
  278. height: 20px;
  279. background: url(../images/ico1.png) 214px 500px;
  280. }
  281. .roomove_right ul li{
  282. padding: 10px 0;
  283. border-bottom: 1px dashed #ccc;
  284. }
  285. .roomove_right ul li:last-child{border: 0;}
  286. .roomove_right ul li h4{
  287. height: 20px;
  288. line-height: 20px;
  289. }
  290. .roomove_right ul li h4 span {
  291. display: block;
  292. float: left;
  293. width: 14px;
  294. height: 14px;
  295. line-height: 14px;
  296. margin-top: 3px;
  297. color: #fff;
  298. font-size: 12px;
  299. text-align: center;
  300. }
  301. .roomove_righted{background: #e51717;}
  302. .move_grey{background: #c2c2c2;}
  303. .roomove_right ul li h4 a {
  304. display: block;
  305. float: left;
  306. font-size: 14px;
  307. color: #333;
  308. margin-left: 10px;
  309. }
  310. .roomove_right ul li p{
  311. width: 80px;
  312. float: right;
  313. }
  314. .roomove_right ul li p i{
  315. float: left;
  316. display: block;
  317. width: 8px;
  318. height: 9px;
  319. margin-top: 5px;
  320. }
  321. .roomove_right ul li p .up{background: url(../images/ico1.png) 169px 500px;}
  322. .roomove_right ul li p .down{background: url(../images/ico1.png) 136px 500px;}
  323. .roomove_right ul li p .flat{background: url(../images/ico1.png) 210px 469px;}
  324. .roomove_right ul li p em{float: right;color: #999;}
  325. .roomove_right ul li .roomove_jihe{display: none;position: relative;}
  326. .roomove_right ul li:first-child h4{display: none;}
  327. .roomove_right ul li:first-child div{display: block;}
  328. .roomove_jihe{height: 100px;position: relative;}
  329. .roomove_jihe em{
  330. display: block;
  331. float: left;
  332. width: 120px;
  333. height: 100px;
  334. border: 2px solid #e51717;
  335. padding: 5px;
  336. position: relative;
  337. }
  338. .roomove_jihe em img{width: 100%;height: 100%;}
  339. .one::after{
  340. position: absolute;
  341. content: '';
  342. width: 30px;
  343. height: 30px;
  344. top: 0;
  345. left: 0;
  346. background: url(../images/ico1.png) 500px 316px;
  347. }
  348. .two::after{
  349. position: absolute;
  350. content: '';
  351. width: 30px;
  352. height: 30px;
  353. top: 0;
  354. left: 0;
  355. background: url(../images/ico1.png) 414px 316px;
  356. }
  357. .three::after{
  358. position: absolute;
  359. content: '';
  360. width: 30px;
  361. height: 30px;
  362. top: 0;
  363. left: 0;
  364. background: url(../images/ico1.png) 340px 316px;
  365. }
  366. .roomove_jihe dl{
  367. float: left;
  368. margin-left: 10px;
  369. }
  370. .roomove_jihe dl dt{line-height: 25px;}
  371. .roomove_jihe dl dt a{font-size: 15px;font-weight: 600;color: #e51717;}
  372. .roomove_jihe dl dd{color: #666;line-height: 25px;}
  373. .roomove_jihe dl dd a{color: #666;}
  374. /* 火热招商 */
  375. .sec4{margin-top: 20px;}
  376. .fire{height: 580px;background: #fff;padding: 5px 10px;}
  377. .fire ul{display: flex;justify-content: space-between;}
  378. .fire ul:first-child{margin-bottom: 20px;}
  379. .fire ul li{
  380. width: 220px;
  381. height: 270px;
  382. }
  383. .fire ul li img{
  384. width: 220px;
  385. height: 160px;
  386. }
  387. .fire ul li h3{
  388. height: 40px;
  389. line-height: 40px;
  390. text-align: center;
  391. font-size: 18px;
  392. font-weight: 600;
  393. }
  394. .fire ul li p{height: 30px;line-height: 30px;padding: 0 10px;color: #666;}
  395. .fire ul li p span{
  396. display: block;
  397. width: 90px;
  398. float: left;
  399. }
  400. .fire ul li p span em{color: #f2774a;}
  401. .fire ul li p span:first-child{
  402. margin-right: 10px;
  403. overflow: hidden;
  404. text-overflow: ellipsis;
  405. white-space: nowrap;
  406. }
  407. .fire_on{color: #f2774a !important;}
  408. .btn{
  409. display: block;
  410. width: 150px;
  411. height: 30px;
  412. line-height: 30px;
  413. text-align: center;
  414. background: #f2774a;
  415. color: #fff;
  416. border-radius: 20px;
  417. margin: 5px auto;
  418. }
  419. .btn:hover{color: #fff;}
  420. /* 热门品牌 */
  421. .sec5{margin-top: 20px;background: #fff;}
  422. .brand_t{height: 50px;line-height: 50px;background: #fbfbfb;}
  423. .brand_t span{
  424. float: left;
  425. display: block;
  426. width: 70px;
  427. height: 50px;
  428. text-align: center;
  429. color: #666;
  430. cursor: pointer;
  431. }
  432. .brand_t span a{color: #666;}
  433. .brand_t_active{
  434. border-top: 2px solid #e51717;
  435. background: #fff !important;
  436. }
  437. /* .brand_t span:first-child{
  438. width: 94px;
  439. height: 50px;
  440. border-top: 2px solid #e51717;
  441. font-size: 16px;
  442. background: #fff;
  443. } */
  444. .brand_t em{float: left;color: #ccc;margin: 0 6px;}
  445. .brand_b{height: 170px;padding: 0 15px;}
  446. .brand_b li{height: 170px;display: none;}
  447. .brand_b_active{display: block !important;}
  448. .brand_b li a{
  449. display: block;
  450. float: left;
  451. width: 145px;
  452. height: 40px;
  453. line-height: 40px;
  454. color: #999;
  455. position: relative;
  456. text-indent: 10px;
  457. overflow: hidden;
  458. white-space: nowrap;
  459. text-overflow: ellipsis;
  460. }
  461. .brand_b li a:hover{color: #e51717;}
  462. .brand_b li a::after{
  463. position: absolute;
  464. content: '';
  465. width: 5px;
  466. height: 5px;
  467. border-radius: 50%;
  468. background: #ccc;
  469. top: 17px;
  470. left: 0;
  471. }
  472. /* 十大品牌排行榜 */
  473. .sec6{margin-top: 20px;}
  474. .ten{height: 640px;margin-top: 10px;}
  475. .ten_left1{width: 875px; height: 530px;background: #fff;}
  476. .ten_t{
  477. height: 50px;
  478. line-height: 50px;
  479. padding: 10px 20px;
  480. }
  481. .ten_t span{
  482. float: left;
  483. display: block;
  484. height: 30px;
  485. line-height: 30px;
  486. color: #603333;
  487. cursor: pointer;
  488. }
  489. .ten_t em{float: left;margin: 0 10px;color: #603333;height: 30px;line-height: 30px;}
  490. .ten_t_on{font-weight: 600;border-bottom: 2px solid #603333;}
  491. .ten_box1{height: 470px;}
  492. .ten_box1 li{height: 470px;display: none;}
  493. .ten_box1_on{display: block !important;}
  494. .ten_box1 li a{
  495. display: block;
  496. float: left;
  497. width: 125px;
  498. height: 96px;
  499. overflow: hidden;
  500. border-top: 1px solid #ddd;
  501. border-right: 1px solid #ddd;
  502. }
  503. .ten_box1 li a:nth-child(7n){border-right: 0;}
  504. .ten_box1 li a img{width: 100%;height: 100%;}
  505. .ten_left2{width: 875px;height: 100px;margin-top: 10px;background: #fff;}
  506. .ten_box2{width: 875px;height: 100px;}
  507. .ten_box2 li{width: 875px;height: 100px;padding: 5px 0;display: none;}
  508. .ten_box2_on{display: block !important;}
  509. .ten_box2 li a{
  510. display: block;
  511. float: left;
  512. width: 175px;
  513. height: 30px;
  514. line-height: 30px;
  515. text-align: center;
  516. overflow: hidden;
  517. }
  518. .ten_box2_red{color: #e51717;}
  519. .ten_right{width: 310px;height: 640px; background: #fff;}
  520. .ten_box3{padding: 15px;}
  521. .ten_box3 li{display: none;}
  522. .ten_box3_on{display: block !important;}
  523. .ten_box3 li dl{margin-bottom: 20px;}
  524. .ten_box3 li dl dt{
  525. height: 40px;
  526. line-height: 40px;
  527. font-size: 18px;
  528. }
  529. .ten_box3 li dl dt i{font-size: 20px;margin-right: 10px;color: #666;}
  530. .ten_box3 li dl dd{
  531. margin-top: 15px;
  532. }
  533. .ten_box3 li dl dd::after {
  534. display: block;
  535. content: '';
  536. clear: both;
  537. }
  538. .ten_box3 li dl dd a{
  539. display: block;
  540. float: left;
  541. width: 130px;
  542. height: 35px;
  543. line-height: 35px;
  544. color: #666;
  545. text-indent: 25px;
  546. background: url(../images/ico1.png) 396px 356px;
  547. }
  548. .ten_box3 li dl dd a:nth-child(2n){margin-left: 15px;}
  549. /* 新闻中心 */
  550. .sec7{margin-top: 20px;}
  551. .news{margin-top: 10px;height: 460px;}
  552. .news_l{
  553. width: 430px;
  554. height: 460px;
  555. background: #fff;
  556. }
  557. .news_play{width: 430px;height: 340px;}
  558. .lunbo{ width: 415px;height: 340px;position:relative;margin:0 auto; }
  559. .lunbo > .item{ display:none; }
  560. .lunbo > .item.active{ display:block; }
  561. .lunbo > .item a{ font-size:0;display:block; }
  562. .lunbo > .item img{ margin:0 auto; width: 408px;height: 310px;}
  563. .lunbo > ul{ position: absolute; left:50%; margin-left: -40px; bottom: 0;}
  564. .lunbo > ul>li{ margin: 3px; padding: 0;display:inline-block; width:10px; height:10px; background: #ccc; box-sizing:border-box; border-radius:50%; cursor: pointer; list-style: none;}
  565. .lunbo > ul>li.active{ background:#df0303; }
  566. .news_l_img{width: 415px;height: 120px;padding: 10px 0;display: flex;justify-content: space-between;}
  567. .news_l_img img{width: 200px;height: 100px;}
  568. .news_c{width: 420px;height: 460px;margin: 0 15px;}
  569. .tab_top{
  570. width: 420px;
  571. height: 45px;
  572. line-height: 45px;
  573. background: #fff;
  574. padding: 0 15px;
  575. }
  576. .tab_top_b{margin-top: 10px;}
  577. .tab_top span{
  578. float: left;
  579. display: block;
  580. width: 33%;
  581. height: 45px;
  582. font-size: 16px;
  583. text-align: center;
  584. color: #000;
  585. font-weight: 600;
  586. cursor: pointer;
  587. }
  588. .red_active{
  589. color: #e61717;
  590. border-top: 2px solid #e61717;
  591. }
  592. .tab_ul{height: 180px;background: #fff;padding: 0 15px;position: relative;}
  593. .tab_ul li{display: none;position: relative;}
  594. .red_li_active{display: block !important;}
  595. .tab_ul li p{
  596. height: 35px;
  597. line-height: 35px;
  598. position: relative;
  599. }
  600. .tab_ul li p:after{
  601. position: absolute;
  602. content: '';
  603. width: 7px;
  604. height: 7px;
  605. background: #e61717;
  606. border-radius: 50%;
  607. left: 0;
  608. top: 14px;
  609. }
  610. .tab_ul li p a{
  611. display: inline-block;
  612. width: 300px;
  613. line-height: 35px;
  614. margin-left: 15px;
  615. overflow: hidden;
  616. white-space: nowrap;
  617. text-overflow: ellipsis;
  618. }
  619. .tab_ul li p span{float: right; color: #aaa;}
  620. .twos a{
  621. display: block;
  622. width: 195px;
  623. float: left;
  624. }
  625. .twos a:first-child{margin-right: 10px;}
  626. .twos a img{
  627. width: 195px;
  628. height: 150px;
  629. }
  630. .twos a span{
  631. display: block;
  632. width: 195px;
  633. line-height: 30px;
  634. color: #666;
  635. }
  636. .news_r{width: 320px;height: 460px;border-top: 2px solid #e51717;background: #fff;border-bottom: 1px solid #ddd;}
  637. .news_tab{width: 70px;border-left: 1px solid #ddd;}
  638. .news_tab span{
  639. display: block;
  640. width: 70px;
  641. height: 49px;
  642. line-height: 49px;
  643. text-align: center;
  644. margin-bottom: 2px;
  645. background: #f6f6f6;
  646. cursor: pointer;
  647. }
  648. .news_red{color: #fff;background: #ff4f53 !important;position: relative;}
  649. .news_red::after{
  650. position: absolute;
  651. content: '';
  652. width:0;
  653. height:0;
  654. border-width:8px 0 8px 8px;
  655. border-style:solid;
  656. border-color:transparent transparent transparent #ff4f53;/*透明 透明 透明 灰*/
  657. top: 50%;
  658. margin-top: -10px;
  659. right: -8px;
  660. }
  661. /* .news_tab span em{display: block;line-height: 20px;}
  662. .news_tab span:first-child{height: 57px;text-align: center;padding: 10px 0;} */
  663. .news_tab span:last-child{margin-bottom: 0;}
  664. .news_boxs{width: 250px;height: 460px;}
  665. .news_boxs>li{display: none;}
  666. .news_show{display: block !important;}
  667. .news_box{width: 250px;padding: 0 15px;}
  668. .news_box li{padding: 10px 0;border-bottom: 1px solid #ddd;}
  669. .ago i{color: #e51717 !important;}
  670. .news_box li div{display: none;}
  671. .news_box li:first-child h3{display: none;}
  672. .news_box li:first-child div{display: block;}
  673. .news_box li:last-child{border-bottom: 0;}
  674. .news_box li h3{height: 20px;line-height: 20px;color: #666;}
  675. .news_box li h3 i{display: inline-block;width: 20px;text-align: right;margin-right: 20px;color:#666;}
  676. .news_box li h3 em{float: right;color: #ccc;}
  677. .news_box li div{height: 70px;color: #666;}
  678. .news_box li div i{display: block;width: 20px;line-height: 70px; text-align: right;margin-right: 15px;float: left;color:#666;}
  679. .news_box li div img{width: 85px;height: 70px;margin-right: 10px;float: left;}
  680. .news_box li div dl{float: left;width: 90px;}
  681. .news_box li div dl dt{width: 90px;height: 25px; line-height: 25px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
  682. .news_box li div dl dt a{color: #e51717;font-weight: 600;}
  683. .news_box li div dl dd{line-height: 25px;font-size: 12px;}
  684. /* 行业分类 */
  685. .sec8{margin-top: 20px;}
  686. .jiaoyi_cont{
  687. padding: 5px 0;
  688. }
  689. .jiaoyi_cont li{
  690. width: 290px;
  691. height: 125px;
  692. background: #fff;
  693. float: left;
  694. margin: 10px 13px 0 0;
  695. padding: 10px;
  696. }
  697. .jiaoyi_cont li:nth-child(4n){
  698. margin-right: 0;
  699. }
  700. .jiaoyi_cont li h3{
  701. color: #e61717;
  702. font-size: 16px;
  703. font-weight: 600;
  704. line-height: 30px;
  705. }
  706. .jiaoyi_cont li h3 a{
  707. float: right;
  708. font-size: 14px;
  709. font-weight: 500;
  710. color: #666;
  711. }
  712. .jiaoyi_cont li div{
  713. padding: 0 10px;
  714. }
  715. .jiaoyi_cont li div a{
  716. line-height: 25px;
  717. margin-right: 11px;
  718. font-size: 12px;
  719. color: #666;
  720. }
  721. .jiaoyi_cont li div .red{color: #e61717;}
  722. /* 猜你喜欢 */
  723. .sec9{margin-top: 20px;background: #fff;height: 250px;}
  724. .sec9 h2 i{color: #e51717;}
  725. .sec9 h2 strong{color: #e51717;}
  726. .love_play{height: 200px;}
  727. .love_play .slideBox{ overflow:hidden; zoom:1; padding:12px 50px; position:relative; }
  728. .love_play .sPrev,.love_play .sNext{ position:absolute; left:10px; top:10px; display:block; width:30px; height:170px; background:url(../images/left.png) center center no-repeat; cursor: pointer;}
  729. .love_play .sNext{ left:auto; right:10px; background:url(../images/right.png) center center no-repeat; }
  730. .love_play .sPrev:hover,.slideGroup .sNext:hover{ border-color:#f60; }
  731. .love_play ul{ overflow:hidden; zoom:1;}
  732. .love_play ul li{ margin:0 15px; float:left; _display:inline; overflow:hidden; text-align:center; }
  733. .love_play ul li .pic{ text-align:center; }
  734. .love_play ul li .pic img{ width:190px; height:170px; display:block; }
  735. .love_play ul li .pic a:hover img{ border-color:#999; }
  736. /* 创业5步 */
  737. .bg{width: 100%; height: 70px;margin-top: 20px;}
  738. .bg img{width: 100%;height: 100%;}
  739. /* 底部 */
  740. /* footer{padding-bottom: 20px;} */
  741. /* 底部导航 */
  742. .foot_nav{height: 60px;padding: 15px 10px;border-bottom: 1px solid #ccc;margin-top: 20px;}
  743. .foot_nav .p1{
  744. width: 800px;
  745. height: 30px;
  746. float: left;
  747. }
  748. .foot_nav .p1 a{
  749. display: block;
  750. float: left;
  751. width: 110px;
  752. height: 30px;
  753. line-height: 30px;
  754. text-align: center;
  755. color: #333;
  756. }
  757. .foot_nav .p1 em{float: left;color: #ccc;line-height: 30px;}
  758. .p2{width: 300px;height: 30px;line-height: 30px;text-align: right;color: #f26921;float: right;}
  759. .p2 strong{font-size: 20px;}
  760. /* 底部信息 */
  761. .mass{height: 90px;margin-top: 20px;}
  762. .mass_l{width: 250px;height: 90px;}
  763. .mass_l img{margin-left: 33px;height: 65px;}
  764. .mass_l p{height: 20px;line-height: 20px;text-align: center;}
  765. .mass_c{width: 430px;height: 90px;margin-left: 80px;padding-top: 5px;}
  766. .mass_c p{line-height: 30px;color: #666;}
  767. .mass_c p em{color: #444;}
  768. .mass_r{width: 360px;height: 90px;}
  769. .mass_r img{width: 100%;height: 100%;}
  770. /* 友情提醒 */
  771. .notice{
  772. height: 200px;
  773. background: #f3f3f3;
  774. /*padding: 20px;*/
  775. margin-top: 20px;
  776. }
  777. /*.notice p{margin-bottom: 10px;line-height: 30px;color: #999;}*/
  778. /*.notice p span{color: #666;font-weight: 600;}*/
  779. /* 友情链接 */
  780. .foot_link{
  781. height: 100px;
  782. padding: 15px 0;
  783. }
  784. .foot_link a{
  785. display: block;
  786. line-height: 25px;
  787. float: left;
  788. margin-right: 15px;
  789. color: #999;
  790. }
  791. .foot_link a:first-child{color: #666;margin-right: 0;}
  792. /* 404页面 */
  793. .four{
  794. height: 750px;
  795. }
  796. .four img{
  797. display: block;
  798. margin: 80px auto 70px;
  799. }
  800. .four ul li{
  801. height: 35px;
  802. line-height: 35px;
  803. margin-bottom: 20px;
  804. }
  805. .four ul li span{
  806. display: block;
  807. float: left;
  808. width: 68px;
  809. height: 35px;
  810. line-height: 35px;
  811. text-align: center;
  812. background: #db0f21;
  813. color: #fff;
  814. font-size: 18px;
  815. margin-right: 20px;
  816. }
  817. .four ul li p{
  818. float: left;
  819. width: 1000px;
  820. height: 35px;
  821. overflow: hidden;
  822. }
  823. .four ul li p a{
  824. float: left;
  825. margin-right: 30px;
  826. font-size: 18px;
  827. color: #666;
  828. }
  829. .four_btn{
  830. display: block;
  831. width: 70px;
  832. height: 35px;
  833. line-height: 35px;
  834. font-size: 18px;
  835. border: 1px solid #db0f21;
  836. color: #db0f21;
  837. text-align: center;
  838. float: right;
  839. }