inside.css 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067
  1. @charset "utf-8";
  2. .crumbs {
  3. height: 60px;
  4. line-height: 60px;
  5. }
  6. /* 项目库 */
  7. .top-classify {
  8. padding: 5px 30px;
  9. background: #fff;
  10. overflow: hidden;
  11. border: 1px solid #82d3b5;
  12. }
  13. .top-classify dl {
  14. display: block;
  15. padding-top: 10px;
  16. padding-bottom: 8px;
  17. overflow: hidden;
  18. border-bottom: 1px solid #ECEDF6;
  19. }
  20. .top-classify dl:last-child {
  21. border-bottom: 0;
  22. }
  23. .top-classify dt {
  24. float: left;
  25. width: 80px;
  26. height: 30px;
  27. line-height: 30px;
  28. color: #333;
  29. font-weight: bold;
  30. }
  31. .top-classify dd {
  32. float: left;
  33. overflow: hidden;
  34. position: relative;
  35. float: left;
  36. width: 1050px;
  37. line-height: 30px;
  38. }
  39. .top-classify dd ul {
  40. overflow: hidden;
  41. }
  42. .top-classify dd ul li {
  43. float: left;
  44. margin-bottom: 6px;
  45. padding-right: 10px;
  46. }
  47. .top-classify dd ul li a {
  48. display: block;
  49. margin-top: 5px;
  50. font-size: 12px;
  51. padding: 0 8px;
  52. line-height: 22px;
  53. }
  54. .top-classify dd ul li.on a {
  55. color: #fff !important;
  56. background: #ee0f15;
  57. border-radius: 2px;
  58. -webkit-border-radius: 2px;
  59. -moz-border-radius: 2px;
  60. -ms-border-radius: 2px;
  61. -o-border-radius: 2px;
  62. }
  63. .top-classify .sub_box i {
  64. position: absolute;
  65. right: 0;
  66. bottom: 3px;
  67. width: 64px;
  68. height: 26px;
  69. padding: 0 10px;
  70. font-size: 14px;
  71. color: #999;
  72. line-height: 24px;
  73. cursor: pointer;
  74. border: 1px solid #ccc;
  75. background: #fff;
  76. }
  77. .top-classify .sub_box i::before {
  78. position: absolute;
  79. right: 8px;
  80. font-size: 16px;
  81. }
  82. .top-classify .sub_box .fa-angle-down {
  83. z-index: 10;
  84. }
  85. /* */
  86. .inner-content {
  87. margin-bottom: 50px;
  88. }
  89. .inner-content>.fl {
  90. width: 880px;
  91. }
  92. .project-content {
  93. padding: 0 30px;
  94. background: #fff;
  95. }
  96. .project-top {
  97. height: 50px;
  98. line-height: 50px;
  99. }
  100. .project-top h2 {
  101. float: left;
  102. font-size: 16px;
  103. color: #333;
  104. }
  105. .project-top span {
  106. float: right;
  107. font-size: 12px;
  108. color: #999;
  109. }
  110. .project-top span em {
  111. font-size: 12px;
  112. color: #ee0f15;
  113. }
  114. .item-list {
  115. border-top: 1px solid #dfdfdf;
  116. }
  117. .item-list li {
  118. padding: 20px 0;
  119. border-bottom: 1px solid #dfdfdf;
  120. overflow: hidden;
  121. }
  122. .item-list li .li-le {
  123. width: 180px;
  124. }
  125. .item-list li .li-mid {
  126. width: 410px;
  127. margin-left: 20px;
  128. }
  129. .item-list li .li-mid div a {
  130. font-size: 18px;
  131. color: #333;
  132. font-weight: bold;
  133. }
  134. .item-list li .li-mid div span {
  135. font-size: 12px;
  136. color: #999;
  137. }
  138. .item-list li .li-mid p {
  139. margin-top: 15px;
  140. font-size: 12px;
  141. overflow: hidden;
  142. }
  143. .item-list li .li-mid p span {
  144. float: left;
  145. min-width: 150px;
  146. font-size: 12px;
  147. color: #999;
  148. overflow: hidden;
  149. text-overflow: ellipsis;
  150. white-space: nowrap;
  151. }
  152. .item-list li .li-mid p em {
  153. font-size: 12px;
  154. }
  155. .item-list li .li-mid p b {
  156. font-size: 15px;
  157. color: #ed625e;
  158. }
  159. .item-list li .li-mid p i {
  160. float: left;
  161. width: 78px;
  162. height: 22px;
  163. background: url(../images/yx-icon.png) no-repeat;
  164. }
  165. .item-list li .fr {
  166. width: 80px;
  167. }
  168. .item-list li .fr span {
  169. display: block;
  170. width: 100%;
  171. height: 30px;
  172. margin-bottom: 21px;
  173. text-align: center;
  174. font-size: 12px;
  175. color: #ee0f15;
  176. line-height: 28px;
  177. border: 1px solid #ee0f15;
  178. border-radius: 100px;
  179. -webkit-border-radius: 100px;
  180. -moz-border-radius: 100px;
  181. -ms-border-radius: 100px;
  182. -o-border-radius: 100px;
  183. }
  184. .item-list li .fr:hover span {
  185. background: #ee0f15;
  186. color: #fff;
  187. }
  188. .pagCon {
  189. height: 60px;
  190. padding: 10px;
  191. background: #fff;
  192. line-height: 40px;
  193. text-align: center;
  194. }
  195. .pagCon li {
  196. display: inline-block;
  197. vertical-align: top;
  198. margin: 0 4px;
  199. }
  200. .pagCon li a, .pagCon li span {
  201. display: block;
  202. padding: 0 10px;
  203. }
  204. .pagCon li.thisclass a, .pagCon li.thisclass span {
  205. color: #ee0f15;
  206. }
  207. .pagCon li b {
  208. font-weight: bold;
  209. color: #333;
  210. }
  211. /* 右侧边栏 */
  212. .right-sidebar {
  213. width: 290px;
  214. }
  215. .right-sidebar>div {
  216. margin-bottom: 20px;
  217. padding-bottom: 15px;
  218. background: #fff;
  219. }
  220. .side-box {
  221. padding: 0 20px;
  222. padding-top: 16px;
  223. background: #fff;
  224. border: 1px solid #dfdfdf;
  225. border-top: 2px solid #ee0f15;
  226. }
  227. .side-box h2 {
  228. margin-bottom: 10px;
  229. font-size: 16px;
  230. color: #ee0f15;
  231. }
  232. .join-butler {
  233. position: relative;
  234. padding-bottom: 10px;
  235. }
  236. .join-butler .swiper-slide {
  237. overflow: hidden;
  238. }
  239. .join-butler .swiper-slide img {
  240. border-radius: 100%;
  241. -webkit-border-radius: 100%;
  242. -moz-border-radius: 100%;
  243. -ms-border-radius: 100%;
  244. -o-border-radius: 100%;
  245. }
  246. .join-butler .swiper-slide div {
  247. width: 160px;
  248. margin-left: 15px;
  249. }
  250. .join-butler .swiper-slide strong {
  251. display: block;
  252. color: #333;
  253. }
  254. .join-butler .swiper-slide p {
  255. margin-top: 7px;
  256. font-size: 12px;
  257. color: #333;
  258. }
  259. .join-butler .swiper-slide a {
  260. display: block;
  261. width: 120px;
  262. height: 26px;
  263. margin-top: 10px;
  264. text-align: center;
  265. font-size: 12px;
  266. color: #ee0f15;
  267. line-height: 24px;
  268. border: 1px solid #ee0f15;
  269. border-radius: 2px;
  270. -webkit-border-radius: 2px;
  271. -moz-border-radius: 2px;
  272. -ms-border-radius: 2px;
  273. -o-border-radius: 2px;
  274. }
  275. .swiper-button {
  276. position: absolute;
  277. top: 24px;
  278. left: -10px;
  279. cursor: pointer;
  280. outline: none;
  281. }
  282. .swiper-button.btn-next {
  283. left: auto;
  284. right: -10px;
  285. }
  286. .swiper-button i {
  287. font-size: 36px;
  288. color: #ccc;
  289. }
  290. .new-brand, .hot-trade {
  291. overflow: hidden;
  292. }
  293. .new-brand a, .hot-trade a {
  294. float: left;
  295. width: 50%;
  296. margin-bottom: 8px;
  297. overflow: hidden;
  298. text-overflow: ellipsis;
  299. white-space: nowrap;
  300. font-size: 12px;
  301. }
  302. .hot-trade a {
  303. width: 33.33%;
  304. }
  305. /* */
  306. .rqb-list li {
  307. height: 40px;
  308. line-height: 40px;
  309. overflow: hidden;
  310. }
  311. .rqb-list li i {
  312. display: inline-block;
  313. vertical-align: middle;
  314. width: 20px;
  315. height: 20px;
  316. margin-right: 10px;
  317. background: #ccc;
  318. text-align: center;
  319. font-size: 12px;
  320. color: #fff;
  321. line-height: 20px;
  322. }
  323. .rqb-list li a {
  324. display: inline-block;
  325. vertical-align: middle;
  326. max-width: 150px;
  327. overflow: hidden;
  328. text-overflow: ellipsis;
  329. white-space: nowrap;
  330. color: #333;
  331. }
  332. .rqb-list li:nth-of-type(-n+3) a {
  333. font-weight: bold;
  334. }
  335. .rqb-list li:nth-of-type(1) i {
  336. background: url(../images/1.png) center no-repeat;
  337. }
  338. .rqb-list li:nth-of-type(2) i {
  339. background: url(../images/2.png) center no-repeat;
  340. }
  341. .rqb-list li:nth-of-type(3) i {
  342. background: url(../images/3.png) center no-repeat;
  343. }
  344. .rqb-list li:nth-of-type(4) i::before {
  345. content: '4';
  346. }
  347. .rqb-list li:nth-of-type(5) i::before {
  348. content: '5';
  349. }
  350. .rqb-list li:nth-of-type(6) i::before {
  351. content: '6';
  352. }
  353. .rqb-list li:nth-of-type(7) i::before {
  354. content: '7';
  355. }
  356. .rqb-list li:nth-of-type(8) i::before {
  357. content: '8';
  358. }
  359. .rqb-list li:nth-of-type(9) i::before {
  360. content: '9';
  361. }
  362. .rqb-list li:nth-of-type(10) i::before {
  363. content: '10';
  364. }
  365. .rqb-list li span {
  366. padding-right: 22px;
  367. color: #999;
  368. background-image: url(../images/huo04.png);
  369. background-position: right center;
  370. background-repeat: no-repeat;
  371. background-size: 14px;
  372. }
  373. .rqb-list li:nth-of-type(1) span {
  374. background-image: url(../images/huo01.png);
  375. }
  376. .rqb-list li:nth-of-type(2) span {
  377. background-image: url(../images/huo02.png);
  378. }
  379. .rqb-list li:nth-of-type(3) span {
  380. background-image: url(../images/huo03.png);
  381. }
  382. .mob-item h2 {
  383. height: 50px;
  384. padding: 0 20px;
  385. margin-bottom: 15px;
  386. line-height: 50px;
  387. font-size: 16px;
  388. color: #fff;
  389. background: #ee0f15;
  390. }
  391. .mob-item div {
  392. padding: 0 20px;
  393. }
  394. .mob-item div img {
  395. display: inline-block;
  396. vertical-align: middle;
  397. margin-right: 10px;
  398. }
  399. .mob-item div p {
  400. display: inline-block;
  401. vertical-align: middle;
  402. }
  403. .mob-item div p strong {
  404. display: block;
  405. color: #333;
  406. }
  407. .mob-item div p span {
  408. display: block;
  409. padding-left: 22px;
  410. margin-top: 10px;
  411. background: url(../images/ss-icon.png) 0 center no-repeat;
  412. font-size: 12px;
  413. color: #333;
  414. }
  415. /* 新闻列表 */
  416. .infor-content {
  417. background: #fff;
  418. }
  419. .infro-list {
  420. padding: 0 25px;
  421. }
  422. .infro-list li {
  423. padding: 25px 0;
  424. overflow: hidden;
  425. border-bottom: 1px solid #dfdfdf;
  426. }
  427. .infro-list li img {
  428. width: 230px;
  429. }
  430. .infro-list li .listent {
  431. width: 570px;
  432. margin-left: 25px;
  433. }
  434. .infro-list li .listent a {
  435. display: block;
  436. font-size: 18px;
  437. color: #333;
  438. font-weight: bold;
  439. }
  440. .infro-list li .listent p {
  441. height: 70px;
  442. overflow: hidden;
  443. margin: 15px 0;
  444. line-height: 24px;
  445. }
  446. .infro-list li .listent i {
  447. margin-right: 6px;
  448. font-size: 18px;
  449. color: #999;
  450. }
  451. .infro-list li .listent span {
  452. display: inline-block;
  453. vertical-align: top;
  454. margin-right: 30px;
  455. font-size: 12px;
  456. color: #999;
  457. }
  458. .new-sort {
  459. width: 100%;
  460. display: flex;
  461. justify-content: space-between;
  462. flex-wrap: wrap;
  463. }
  464. .new-sort a {
  465. width: 100px;
  466. padding-left: 23px;
  467. margin-bottom: 12px;
  468. background: url(../images/icon-img1.png) left center no-repeat;
  469. }
  470. .new-sort-2 {
  471. padding-top: 12px;
  472. border-top: 1px dashed #d8d8d8;
  473. }
  474. .new-sort-2 a {
  475. background: url(../images/icon-img2.png) left center no-repeat;
  476. }
  477. .hot-article li {
  478. position: relative;
  479. padding-left: 12px;
  480. margin-top: 10px;
  481. overflow: hidden;
  482. }
  483. .hot-article li::before {
  484. position: absolute;
  485. content: '';
  486. left: 0;
  487. top: 50%;
  488. width: 4px;
  489. height: 4px;
  490. margin-top: -2px;
  491. background: #999;
  492. }
  493. .hot-article li a {
  494. float: left;
  495. max-width: 180px;
  496. overflow: hidden;
  497. text-overflow: ellipsis;
  498. white-space: nowrap;
  499. font-size: 12px;
  500. color: #333;
  501. }
  502. .hot-article li span {
  503. float: right;
  504. font-size: 12px;
  505. color: #999;
  506. }
  507. .hot-tags a {
  508. display: inline-block;
  509. vertical-align: top;
  510. margin-bottom: 12px;
  511. margin-right: 14px;
  512. font-size: 12px;
  513. }
  514. .hot-tags i {
  515. margin-right: 4px;
  516. font-size: 16px;
  517. color: #999;
  518. }
  519. /* 项目详情 */
  520. .wrap-box {
  521. padding-bottom: 30px;
  522. background: #fff;
  523. }
  524. .item-detail-top>.fl {
  525. width: 480px;
  526. }
  527. .item-slide {
  528. margin-bottom: 10px;
  529. }
  530. .item-slide-nav .swiper-slide {
  531. border: 1px solid transparent;
  532. }
  533. .item-slide-nav .item-active {
  534. border: 1px solid #ee0f15;
  535. }
  536. .item-slide-nav .swiper-button-white {
  537. width: 20px;
  538. height: 42px;
  539. left: 0;
  540. background-color: rgba(0, 0, 0, .5);
  541. background-size: 9px;
  542. }
  543. .item-slide-nav .swiper-button-next {
  544. left: auto;
  545. right: 0;
  546. }
  547. .item-detail-top>.fr {
  548. width: 680px;
  549. }
  550. .item-detail-top>.fr h2 {
  551. font-size: 22px;
  552. color: #333;
  553. line-height: 46px;
  554. }
  555. .item-detail-top>.fr .box01 {
  556. margin-top: 30px;
  557. margin-bottom: 20px;
  558. }
  559. .item-detail-top>.fr .box01>span {
  560. display: inline-block;
  561. vertical-align: top;
  562. padding-right: 36px;
  563. line-height: 40px;
  564. border-right: 1px solid #e5e5e5;
  565. }
  566. .item-detail-top>.fr .box01 b {
  567. font-size: 16px;
  568. color: #ee0f15;
  569. }
  570. .item-detail-top>.fr .box01 em {
  571. font-size: 30px;
  572. color: #ee0f15;
  573. }
  574. .item-detail-top>.fr .box01 p {
  575. display: inline-block;
  576. vertical-align: top;
  577. width: 270px;
  578. margin-left: 36px;
  579. }
  580. .item-detail-top>.fr .box01 p span {
  581. display: inline-block;
  582. vertical-align: top;
  583. margin-right: 15px;
  584. margin-top: 4px;
  585. font-size: 12px;
  586. }
  587. .item-detail-top>.fr .box02 {
  588. line-height: 80px;
  589. border-top: 1px dashed #e5e5e5;
  590. border-bottom: 1px dashed #e5e5e5;
  591. }
  592. .item-detail-top>.fr .box02 span {
  593. display: inline-block;
  594. vertical-align: top;
  595. margin-right: 30px;
  596. font-size: 16px;
  597. }
  598. .item-detail-top>.fr .box02 i {
  599. width: 40px;
  600. height: 40px;
  601. margin-right: 10px;
  602. background: #e6e6e6;
  603. font-size: 22px;
  604. color: #fff;
  605. text-align: center;
  606. line-height: 40px;
  607. border-radius: 50%;
  608. -webkit-border-radius: 50%;
  609. -moz-border-radius: 50%;
  610. -ms-border-radius: 50%;
  611. -o-border-radius: 50%;
  612. }
  613. .item-detail-top>.fr .box03 {
  614. margin-top: 16px;
  615. overflow: hidden;
  616. }
  617. .item-detail-top>.fr .box03 span {
  618. float: left;
  619. width: 64px;
  620. font-size: 12px;
  621. }
  622. .item-detail-top>.fr .box03 ul {
  623. overflow: hidden;
  624. }
  625. .item-detail-top>.fr .box03 li {
  626. float: left;
  627. width: 25%;
  628. margin-bottom: 15px;
  629. font-size: 12px;
  630. }
  631. .item-detail-top>.fr .box03 li i {
  632. margin-right: 5px;
  633. color: #ee0f15;
  634. }
  635. .item-detail-top>.fr .box04 {
  636. margin-top: 15px;
  637. overflow: hidden;
  638. }
  639. .item-detail-top>.fr .box04 a {
  640. float: left;
  641. width: 170px;
  642. height: 50px;
  643. background: #ee0f15;
  644. font-size: 16px;
  645. color: #fff !important;
  646. text-align: center;
  647. line-height: 50px;
  648. border-radius: 6px;
  649. -webkit-border-radius: 6px;
  650. -moz-border-radius: 6px;
  651. -ms-border-radius: 6px;
  652. -o-border-radius: 6px;
  653. }
  654. .item-detail-top>.fr .box04 a:first-child {
  655. width: 200px;
  656. margin-right: 30px;
  657. color: #ee0f15 !important;
  658. background: #fff;
  659. border: 1px solid #ee0f15;
  660. }
  661. .item-detail-top>.fr .box04 i {
  662. margin-right: 10px;
  663. font-size: 20px;
  664. color: #fff;
  665. }
  666. .item-detail-top>.fr .box04 a:first-child i {
  667. color: #ee0f15;
  668. }
  669. /* */
  670. .item-detail-content {
  671. background: #fff;
  672. border: 1px solid #dfdfdf;
  673. }
  674. .nav-box {
  675. position: relative;
  676. height: 54px;
  677. }
  678. .item-nav {
  679. width: 880px;
  680. height: 54px;
  681. line-height: 52px;
  682. background: #fff;
  683. text-align: center;
  684. border-bottom: 2px solid #ee0f15;
  685. }
  686. .item-nav ul {
  687. float: left;
  688. overflow: hidden;
  689. }
  690. .item-nav li {
  691. float: left;
  692. width: 110px;
  693. }
  694. .item-nav li a {
  695. display: block;
  696. font-size: 16px;
  697. }
  698. .item-nav li a.active {
  699. color: #fff;
  700. background: #ee0f15!important;
  701. }
  702. .item-nav span {
  703. position: relative;
  704. width: 110px;
  705. margin-right: 10px;
  706. font-size: 16px;
  707. color: #e55450!important;
  708. font-weight: bold;
  709. cursor: pointer;
  710. }
  711. .item-nav span::after {
  712. position: absolute;
  713. content: '';
  714. top: 5px;
  715. right: 0;
  716. width: 18px;
  717. height: 18px;
  718. background: url(../images/call-icon.gif);
  719. background-size: 100%;
  720. }
  721. .item-nav-fixed {
  722. z-index: 999;
  723. position: fixed;
  724. top: 0;
  725. box-shadow: 5px 0 10px rgba(0, 0, 0, .15);
  726. }
  727. .item-con-box {
  728. padding: 30px;
  729. padding-bottom: 0;
  730. }
  731. .item-con-box p {
  732. margin-top: 20px;
  733. line-height: 28px;
  734. font-size: 15px;
  735. text-align: justify;
  736. }
  737. .item-con-box p img {
  738. margin: 0 auto;
  739. }
  740. .item-con-tit {
  741. font-size: 20px;
  742. color: #ee0f15;
  743. font-weight: bold;
  744. }
  745. .item-con-box ul {
  746. overflow: hidden;
  747. margin: 0 -8px;
  748. padding: 20px 0;
  749. }
  750. .item-con-box ul li {
  751. float: left;
  752. width: 25%;
  753. margin-bottom: 10px;
  754. padding: 0 8px;
  755. }
  756. /* 新闻详情 */
  757. .art-content {
  758. padding: 30px 40px;
  759. background: #fff;
  760. box-shadow: 0 0 6px 0 rgba(204, 204, 204, .5);
  761. }
  762. .art-content h1 {
  763. font-size: 22px;
  764. color: #333;
  765. line-height: 32px;
  766. text-align: center;
  767. }
  768. .art-message {
  769. padding: 15px 0;
  770. text-align: center;
  771. border-bottom: 1px solid #e5e5e5;
  772. }
  773. .art-message span {
  774. display: inline-block;
  775. vertical-align: top;
  776. margin: 0 10px;
  777. font-size: 12px;
  778. color: #777;
  779. }
  780. .remark {
  781. margin-top: 30px;
  782. padding: 15px;
  783. line-height: 26px;
  784. background: #f4f5fa;
  785. text-align: justify;
  786. }
  787. .art-body p, .art-body div {
  788. margin-top: 24px;
  789. font-size: 16px;
  790. line-height: 30px;
  791. text-align: justify;
  792. }
  793. .art-body img {
  794. margin: 0 auto;
  795. }
  796. .related-tags {
  797. margin-top: 40px;
  798. color: #999;
  799. }
  800. .related-tags a {
  801. display: inline-block;
  802. height: 28px;
  803. padding: 0 8px;
  804. margin-right: 12px;
  805. line-height: 26px;
  806. border: 1px solid #9195ac;
  807. border-radius: 14px;
  808. -webkit-border-radius: 14px;
  809. -moz-border-radius: 14px;
  810. -ms-border-radius: 14px;
  811. -o-border-radius: 14px;
  812. }
  813. .turn-page {
  814. margin-top: 40px;
  815. overflow: hidden;
  816. }
  817. .turn-page li {
  818. float: left;
  819. width: 48%;
  820. color: #ee0f15;
  821. overflow: hidden;
  822. text-overflow: ellipsis;
  823. white-space: nowrap;
  824. }
  825. .turn-page li:last-child {
  826. float: right;
  827. }
  828. /* 留言咨询 */
  829. .message-box {
  830. background: #fff;
  831. border: 1px solid #dfdfdf;
  832. }
  833. .message-box-top {
  834. height: 50px;
  835. padding: 0 30px;
  836. overflow: hidden;
  837. font-size: 18px;
  838. color: #fff;
  839. font-weight: bold;
  840. line-height: 50px;
  841. background: #ee0f15;
  842. }
  843. .message-box-top p {
  844. float: right;
  845. color: #fff;
  846. font-weight: normal;
  847. }
  848. .message-box-top p i {
  849. vertical-align: middle;
  850. margin-top: -2px;
  851. font-size: 20px;
  852. color: #ffff;
  853. }
  854. .message-box-top p b {
  855. font-size: 20px;
  856. color: #fff
  857. }
  858. .message-box-form {
  859. position: relative;
  860. padding: 30px;
  861. }
  862. .message-box-form label {
  863. display: block;
  864. margin-bottom: 20px;
  865. overflow: hidden;
  866. line-height: 40px;
  867. }
  868. .message-box-form label span {
  869. position: relative;
  870. float: left;
  871. width: 64px;
  872. padding-left: 11px;
  873. font-size: 16px;
  874. }
  875. .message-box-form label b {
  876. position: absolute;
  877. left: 0;
  878. font-size: 16px;
  879. color: #ee0f15;
  880. }
  881. .message-box-form label input {
  882. float: left;
  883. width: 340px;
  884. height: 40px;
  885. padding: 0 10px;
  886. border: 1px solid #e5e5e5;
  887. }
  888. .message-box-form .liuyan {
  889. width: 100%;
  890. }
  891. .message-box-form .liuyan input {
  892. width: 100%;
  893. height: 140px;
  894. padding-bottom: 100px;
  895. }
  896. .message-box-form .submit {
  897. overflow: hidden;
  898. padding-left: 64px;
  899. }
  900. .message-box-form .submit input {
  901. width: 340px;
  902. height: 50px;
  903. background: #ee0f15;
  904. font-size: 18px;
  905. color: #fff;
  906. font-weight: bold;
  907. cursor: pointer;
  908. }
  909. .message-box-form .submit p {
  910. display: block;
  911. width: 340px;
  912. margin-top: 6px;
  913. font-size: 12px;
  914. line-height: 22px;
  915. }
  916. .message-box-form .submit p b {
  917. font-size: 12px;
  918. color: #ee0f15;
  919. }
  920. .form-kjly {
  921. position: absolute;
  922. top: 190px;
  923. right: 30px;
  924. width: 370px;
  925. }
  926. .form-kjly strong {
  927. position: relative;
  928. display: block;
  929. height: 40px;
  930. padding-left: 20px;
  931. background: #fa6165;
  932. font-size: 16px;
  933. color: #fff;
  934. line-height: 40px;
  935. }
  936. .form-kjly strong::before {
  937. position: absolute;
  938. content: '';
  939. top: 50%;
  940. left: -12px;
  941. margin-top: -6px;
  942. border: 6px solid transparent;
  943. border-right-color: #fa6165;
  944. }
  945. .form-kjly ul {
  946. padding: 16px;
  947. border: 1px solid #fa6165;
  948. border-top: 0;
  949. }
  950. .form-kjly ul li {
  951. position: relative;
  952. padding-left: 10px;
  953. margin-bottom: 13px;
  954. overflow: hidden;
  955. text-overflow: ellipsis;
  956. white-space: nowrap;
  957. color: #999;
  958. cursor: pointer;
  959. }
  960. .form-kjly ul li:hover {
  961. color: #ee0f15;
  962. }
  963. .form-kjly ul li::before {
  964. position: absolute;
  965. content: '';
  966. left: 0;
  967. top: 50%;
  968. width: 4px;
  969. height: 4px;
  970. margin-top: -2px;
  971. background: #e5e5e5;
  972. }
  973. /* 加盟留言 */
  974. .join-form {
  975. background: #fff;
  976. box-shadow: 0 0 6px 0 rgba(204, 204, 204, .5);
  977. overflow: hidden;
  978. }
  979. .join-form .fl {
  980. width: 310px;
  981. padding-bottom: 60px;
  982. text-align: center;
  983. background: #f3fbf8;
  984. }
  985. .join-form .fl img {
  986. margin: 40px auto 20px;
  987. }
  988. .join-form .fl strong {
  989. display: block;
  990. font-size: 20px;
  991. color: #ee0f15;
  992. }
  993. .join-form .fl span {
  994. display: block;
  995. margin-top: 3px;
  996. color: #ee0f15;
  997. }
  998. .join-form .fr {
  999. width: 570px;
  1000. padding: 30px 80px;
  1001. }
  1002. .join-form .fr label {
  1003. display: block;
  1004. height: 40px;
  1005. margin-bottom: 18px;
  1006. overflow: hidden;
  1007. line-height: 40px;
  1008. }
  1009. .join-form .fr label span {
  1010. float: left;
  1011. width: 60px;
  1012. padding-right: 10px;
  1013. text-align: right;
  1014. color: #333;
  1015. }
  1016. .join-form .fr label input {
  1017. float: left;
  1018. width: 340px;
  1019. height: 40px;
  1020. padding: 0 10px;
  1021. border: 1px solid #ddd;
  1022. }
  1023. .join-form .submit {
  1024. padding-left: 60px;
  1025. }
  1026. .join-form .submit input {
  1027. display: block;
  1028. width: 340px;
  1029. height: 40px;
  1030. background: #ee0f15;
  1031. font-size: 16px;
  1032. color: #fff;
  1033. font-weight: bold;
  1034. cursor: pointer;
  1035. ;
  1036. }
  1037. /* 相关资讯 */
  1038. .art-information {
  1039. background: #fff;
  1040. box-shadow: 0 0 6px 0 rgba(204, 204, 204, .5);
  1041. }
  1042. .art-information h2 {
  1043. height: 50px;
  1044. padding-left: 20px;
  1045. font-size: 16px;
  1046. color: #fff;
  1047. font-weight: bold;
  1048. line-height: 50px;
  1049. background: #ee0f15;
  1050. }
  1051. .art-information ul {
  1052. overflow: hidden;
  1053. padding: 10px 30px 30px;
  1054. }
  1055. .art-information ul li {
  1056. position: relative;
  1057. float: left;
  1058. width: 50%;
  1059. margin-top: 16px;
  1060. padding-left: 12px;
  1061. padding-right: 30px;
  1062. overflow: hidden;
  1063. text-overflow: ellipsis;
  1064. white-space: nowrap;
  1065. }
  1066. .art-information ul li::before {
  1067. position: absolute;
  1068. content: '';
  1069. top: 50%;
  1070. left: 0;
  1071. width: 4px;
  1072. height: 4px;
  1073. margin-top: -2px;
  1074. background: #ee0f15;
  1075. border-radius: 100%;
  1076. -webkit-border-radius: 100%;
  1077. -moz-border-radius: 100%;
  1078. -ms-border-radius: 100%;
  1079. -o-border-radius: 100%;
  1080. }
  1081. .related-new {
  1082. padding: 20px 30px;
  1083. background: #fff;
  1084. border: 1px solid #dfdfdf;
  1085. }
  1086. .related-new>div {
  1087. width: 46%;
  1088. }
  1089. .related-new h2 {
  1090. margin-bottom: 15px;
  1091. font-size: 18px;
  1092. color: #333;
  1093. line-height: 35px;
  1094. }
  1095. .related-new h2 a {
  1096. color: #999;
  1097. font-weight: normal;
  1098. }
  1099. .fir-nbox {
  1100. margin-bottom: 20px;
  1101. overflow: hidden;
  1102. }
  1103. .fir-nbox img {
  1104. float: left;
  1105. width: 170px;
  1106. margin-right: 15px;
  1107. }
  1108. .fir-nbox h3 {
  1109. max-height: 40px;
  1110. color: #333;
  1111. line-height: 22px;
  1112. overflow: hidden;
  1113. }
  1114. .fir-nbox p {
  1115. max-height: 60px;
  1116. overflow: hidden;
  1117. margin-top: 5px;
  1118. font-size: 12px;
  1119. color: #999;
  1120. line-height: 20px;
  1121. }
  1122. .fir-nbox span {
  1123. display: block;
  1124. margin-top: 4px;
  1125. text-align: right;
  1126. font-size: 12px;
  1127. color: #999;
  1128. }
  1129. .related-new ul li {
  1130. position: relative;
  1131. margin-top: 15px;
  1132. padding-left: 10px;
  1133. overflow: hidden;
  1134. line-height: 18px;
  1135. }
  1136. .related-new ul li::before {
  1137. position: absolute;
  1138. content: '';
  1139. left: 0;
  1140. top: 50%;
  1141. width: 4px;
  1142. height: 4px;
  1143. margin-top: -2px;
  1144. background: #ee0f15;
  1145. border-radius: 100%;
  1146. -webkit-border-radius: 100%;
  1147. -moz-border-radius: 100%;
  1148. -ms-border-radius: 100%;
  1149. -o-border-radius: 100%;
  1150. }
  1151. .related-new ul li a {
  1152. float: left;
  1153. max-width: 310px;
  1154. overflow: hidden;
  1155. text-overflow: ellipsis;
  1156. white-space: nowrap;
  1157. }
  1158. .related-new ul li span {
  1159. float: right;
  1160. font-size: 12px;
  1161. color: #999;
  1162. }
  1163. /* */
  1164. .brand-recome li {
  1165. margin-top: 20px;
  1166. overflow: hidden;
  1167. }
  1168. .brand-recome li img {
  1169. margin-right: 15px;
  1170. }
  1171. .brand-recome li h3 {
  1172. color: #333;
  1173. }
  1174. .brand-recome li p {
  1175. margin-top: 3px;
  1176. font-size: 12px;
  1177. }
  1178. .brand-recome li em {
  1179. font-size: 12px;
  1180. color: #ee0f15;
  1181. }
  1182. .join-information li {
  1183. position: relative;
  1184. padding-left: 12px;
  1185. margin-top: 13px;
  1186. overflow: hidden;
  1187. text-overflow: ellipsis;
  1188. white-space: nowrap;
  1189. }
  1190. .join-information li::before {
  1191. position: absolute;
  1192. content: '';
  1193. top: 50%;
  1194. left: 0;
  1195. width: 4px;
  1196. height: 4px;
  1197. margin-top: -2px;
  1198. background: #ee0f15;
  1199. border-radius: 100%;
  1200. -webkit-border-radius: 100%;
  1201. -moz-border-radius: 100%;
  1202. -ms-border-radius: 100%;
  1203. -o-border-radius: 100%;
  1204. }
  1205. .join-information li a {
  1206. font-size: 12px;
  1207. color: #333;
  1208. }
  1209. /* 排行榜 */
  1210. .phb-box {
  1211. width: 291px;
  1212. background: #fff;
  1213. box-shadow: 0 0 10px 0 rgba(204, 204, 204, .5);
  1214. }
  1215. .phb-title {
  1216. height: 50px;
  1217. padding: 0 10px;
  1218. line-height: 50px;
  1219. background: #f0f7ff;
  1220. font-size: 16px;
  1221. color: #39f;
  1222. font-weight: bold;
  1223. }
  1224. .phb-title i {
  1225. margin-right: 8px;
  1226. font-size: 20px;
  1227. color: #39f;
  1228. }
  1229. .phb-box-nav {
  1230. display: flex;
  1231. justify-content: space-between;
  1232. margin: 0 10px;
  1233. padding: 15px 0 6px 0;
  1234. border-bottom: 1px dashed #dfdfdf;
  1235. }
  1236. .phb-box-nav span {
  1237. font-size: 12px;
  1238. color: #999;
  1239. }
  1240. .phb-box ul {
  1241. padding: 0 10px;
  1242. padding-bottom: 21px;
  1243. }
  1244. .phb-box ul li {
  1245. margin-top: 12px;
  1246. overflow: hidden;
  1247. line-height: 20px;
  1248. }
  1249. .phb-box ul li i {
  1250. float: left;
  1251. width: 18px;
  1252. height: 20px;
  1253. font-size: 12px;
  1254. color: #999;
  1255. text-align: center;
  1256. background: url(../images/rank-icon3.png) no-repeat;
  1257. }
  1258. .phb-box ul li:nth-of-type(-n+3) i {
  1259. background: url(../images/rank-icon2.png) no-repeat;
  1260. font-weight: bold;
  1261. color: #333;
  1262. }
  1263. .phb-box ul li i::before {
  1264. content: '1';
  1265. }
  1266. .phb-box ul li:nth-of-type(2) i::before {
  1267. content: '2';
  1268. }
  1269. .phb-box ul li:nth-of-type(3) i::before {
  1270. content: '3';
  1271. }
  1272. .phb-box ul li:nth-of-type(4) i::before {
  1273. content: '4';
  1274. }
  1275. .phb-box ul li:nth-of-type(5) i::before {
  1276. content: '5';
  1277. }
  1278. .phb-box ul li:nth-of-type(6) i::before {
  1279. content: '6';
  1280. }
  1281. .phb-box ul li:nth-of-type(7) i::before {
  1282. content: '7';
  1283. }
  1284. .phb-box ul li:nth-of-type(8) i::before {
  1285. content: '8';
  1286. }
  1287. .phb-box ul li:nth-of-type(9) i::before {
  1288. content: '9';
  1289. }
  1290. .phb-box ul li:nth-of-type(10) i::before {
  1291. content: '10';
  1292. }
  1293. .phb-box ul li h3 {
  1294. float: left;
  1295. width: 100px;
  1296. margin-left: 10px;
  1297. font-size: 13px;
  1298. }
  1299. .phb-box ul li em {
  1300. float: left;
  1301. margin-left: 10px;
  1302. /*margin-left: 20px;*/
  1303. font-size: 12px;
  1304. }
  1305. .phb-box ul li span {
  1306. float: right;
  1307. font-size: 12px;
  1308. color: #999;
  1309. }
  1310. .phb-box ul li .beli {
  1311. overflow: hidden;
  1312. }
  1313. .phb-box ul li .afli {
  1314. display: none;
  1315. padding-top: 15px;
  1316. }
  1317. .phb-box ul li .afli img {
  1318. float: left;
  1319. margin-right: 20px;
  1320. }
  1321. .phb-box ul li .afli p {
  1322. margin-bottom: 4px;
  1323. font-size: 12px;
  1324. }
  1325. .phb-box ul li.active em {
  1326. display: none;
  1327. }
  1328. .phb-box ul li.active h3 {
  1329. width: 170px;
  1330. }
  1331. .phb-box ul li.active .afli {
  1332. display: block;
  1333. overflow: hidden;
  1334. }
  1335. .phb-middle {
  1336. width: 592px;
  1337. margin-left: 12px;
  1338. }
  1339. .phb-recommend {
  1340. padding: 0 10px;
  1341. margin-top: 10px;
  1342. background: #fff;
  1343. }
  1344. .phb-recommend h2 {
  1345. height: 48px;
  1346. line-height: 48px;
  1347. font-size: 18px;
  1348. color: #ee0f15;
  1349. }
  1350. .phb-recommend h2 i {
  1351. margin-right: 5px;
  1352. font-size: 20px;
  1353. color: #ee0f15;
  1354. }
  1355. .relist-1 {
  1356. height: 102px;
  1357. margin: 0 -5px;
  1358. }
  1359. .relist-1 li {
  1360. float: left;
  1361. width: 25%;
  1362. padding: 0 5px;
  1363. transition: all .3s ease;
  1364. -webkit-transition: all .3s ease;
  1365. -moz-transition: all .3s ease;
  1366. -ms-transition: all .3s ease;
  1367. -o-transition: all .3s ease;
  1368. }
  1369. .relist-1 li a {
  1370. position: relative;
  1371. display: block;
  1372. }
  1373. .relist-1 li p {
  1374. position: absolute;
  1375. bottom: 0;
  1376. left: 0;
  1377. width: 100%;
  1378. height: 22px;
  1379. padding: 0 10px;
  1380. font-size: 12px;
  1381. color: #fff;
  1382. text-align: center;
  1383. line-height: 22px;
  1384. background: rgba(0, 0, 0, .3);
  1385. }
  1386. .relist-1 li:hover {
  1387. transform: translateY(-5px);
  1388. -webkit-transform: translateY(-5px);
  1389. -moz-transform: translateY(-5px);
  1390. -ms-transform: translateY(-5px);
  1391. -o-transform: translateY(-5px);
  1392. }
  1393. .relist-2 {
  1394. overflow: hidden;
  1395. padding: 7px 0;
  1396. }
  1397. .relist-2 li {
  1398. position: relative;
  1399. float: left;
  1400. width: 25%;
  1401. padding: 0 12px;
  1402. margin-top: 6px;
  1403. }
  1404. .relist-2 li::before {
  1405. position: absolute;
  1406. content: '';
  1407. top: 50%;
  1408. left: 0;
  1409. width: 3px;
  1410. height: 3px;
  1411. margin-top: -1px;
  1412. background: #999;
  1413. }
  1414. .relist-2 li a {
  1415. display: block;
  1416. font-size: 12px;
  1417. overflow: hidden;
  1418. text-overflow: ellipsis;
  1419. white-space: nowrap;
  1420. }
  1421. .rank-bot-content .fl {
  1422. width: 880px;
  1423. }
  1424. .new-product ul {
  1425. margin: 0 -8px;
  1426. padding-top: 5px;
  1427. overflow: hidden;
  1428. }
  1429. .new-product ul li {
  1430. float: left;
  1431. width: 20%;
  1432. padding: 0 8px;
  1433. margin-bottom: 15px;
  1434. }
  1435. .new-product ul li a {
  1436. display: block;
  1437. padding-bottom: 10px;
  1438. background: #fff;
  1439. transition: all 0.3s ease;
  1440. -webkit-transition: all 0.3s ease;
  1441. -moz-transition: all 0.3s ease;
  1442. -ms-transition: all 0.3s ease;
  1443. -o-transition: all 0.3s ease;
  1444. }
  1445. .new-product ul li a:hover {
  1446. transform: translateY(-5px);
  1447. -webkit-transform: translateY(-5px);
  1448. -moz-transform: translateY(-5px);
  1449. -ms-transform: translateY(-5px);
  1450. -o-transform: translateY(-5px);
  1451. }
  1452. .new-product ul li h3 {
  1453. padding: 0 10px;
  1454. margin-top: 8px;
  1455. font-weight: normal;
  1456. }
  1457. .new-product ul li p {
  1458. margin-top: 4px;
  1459. padding: 0 10px;
  1460. overflow: hidden;
  1461. }
  1462. .new-product ul li b {
  1463. float: left;
  1464. font-size: 12px;
  1465. color: #E65450;
  1466. }
  1467. .new-product ul li span {
  1468. float: right;
  1469. font-size: 12px;
  1470. color: #999;
  1471. }
  1472. .new-information {
  1473. width: 300px;
  1474. margin-top: 5px;
  1475. margin-bottom: 50px;
  1476. }
  1477. .new-infor-box {
  1478. padding: 15px;
  1479. background: #fff;
  1480. box-shadow: 0 0 4px 0 rgba(204, 204, 204, .5);
  1481. }
  1482. .new-infor-box>a {
  1483. display: block;
  1484. overflow: hidden;
  1485. }
  1486. .new-infor-box h3 {
  1487. margin-bottom: 10px;
  1488. color: #333;
  1489. }
  1490. .new-infor-box img {
  1491. float: left;
  1492. margin-right: 15px;
  1493. }
  1494. .new-infor-box p {
  1495. height: 60px;
  1496. font-size: 12px;
  1497. line-height: 20px;
  1498. overflow: hidden;
  1499. }
  1500. .new-infor-box span {
  1501. display: block;
  1502. text-align: right;
  1503. font-size: 12px;
  1504. color: #999;
  1505. }
  1506. .new-infor-box ul li {
  1507. position: relative;
  1508. padding-left: 12px;
  1509. margin-top: 13px;
  1510. overflow: hidden;
  1511. }
  1512. .new-infor-box ul li::before {
  1513. position: absolute;
  1514. content: '';
  1515. top: 50%;
  1516. left: 0;
  1517. width: 4px;
  1518. height: 4px;
  1519. margin-top: -2px;
  1520. background: #999;
  1521. }
  1522. .new-infor-box ul li a {
  1523. float: left;
  1524. width: 200px;
  1525. font-size: 12px;
  1526. color: #333;
  1527. overflow: hidden;
  1528. text-overflow: ellipsis;
  1529. white-space: nowrap;
  1530. }
  1531. .new-infor-box ul li span {
  1532. float: right;
  1533. font-size: 12px;
  1534. color: #999;
  1535. }
  1536. @media screen and (max-width:768px) {
  1537. .top-classify {
  1538. padding: 5px;
  1539. }
  1540. .top-classify dl {
  1541. padding: 10px;
  1542. }
  1543. .top-classify dd {
  1544. width: 100%;
  1545. height: auto !important;
  1546. padding: 0;
  1547. }
  1548. .top-classify dd ul li {
  1549. padding-right: 10px;
  1550. margin-bottom: 0;
  1551. }
  1552. .top-classify dd ul li a {
  1553. font-size: 12px;
  1554. }
  1555. .top-classify .sub_box i {
  1556. display: none;
  1557. }
  1558. /* 项目库 */
  1559. .inner-content>.fl {
  1560. float: none;
  1561. width: 100%;
  1562. }
  1563. .project-content {
  1564. padding: 0 13px;
  1565. }
  1566. .item-list li .li-le {
  1567. width: 110px;
  1568. }
  1569. .item-list li .li-mid {
  1570. width: calc(100% - 110px);
  1571. margin-left: 0;
  1572. padding-left: 10px;
  1573. }
  1574. .item-list li .li-mid div a {
  1575. font-size: 16px;
  1576. }
  1577. .item-list li .li-mid div span {
  1578. display: none;
  1579. }
  1580. .item-list li .li-mid p {
  1581. margin-top: 0;
  1582. }
  1583. .item-list li .li-mid p span {
  1584. min-width: 100px;
  1585. margin-top: 3px;
  1586. }
  1587. .pagCon li {
  1588. margin: 0;
  1589. }
  1590. .pagCon li b {
  1591. font-size: 0;
  1592. }
  1593. .pagCon li a, .pagCon li span {
  1594. padding: 0 6px;
  1595. }
  1596. /* */
  1597. .crumbs {
  1598. padding: 0 10px;
  1599. }
  1600. /* */
  1601. .related-new {
  1602. padding: 20px;
  1603. padding-bottom: 0;
  1604. }
  1605. .related-new div {
  1606. width: 100%;
  1607. margin-bottom: 20px;
  1608. }
  1609. /* 文章详情 */
  1610. .art-content {
  1611. padding: 30px 20px;
  1612. }
  1613. .art-content h1 {
  1614. font-size: 18px;
  1615. }
  1616. .art-infro span {
  1617. font-size: 12px;
  1618. }
  1619. .turn-page li {
  1620. width: 100%;
  1621. line-height: 50px;
  1622. }
  1623. .join-form .fr {
  1624. width: 100%;
  1625. padding: 20px 15px;
  1626. }
  1627. .join-form .fr label input {
  1628. width: calc(100% - 60px);
  1629. }
  1630. .join-form .submit input {
  1631. width: 100%;
  1632. }
  1633. .art-information ul li {
  1634. width: 100%;
  1635. padding-right: 0;
  1636. }
  1637. /* 留言咨询 */
  1638. .message-box-top {
  1639. padding: 0 20px;
  1640. }
  1641. .message-box-top p {
  1642. margin-top: 6px;
  1643. font-size: 12px;
  1644. }
  1645. .message-box-top p span {
  1646. font-size: 12px;
  1647. }
  1648. .message-box-form {
  1649. padding: 20px;
  1650. }
  1651. .message-box-form label {
  1652. width: 100%;
  1653. margin-bottom: 10px;
  1654. }
  1655. .message-box-form label span {
  1656. font-size: 14px;
  1657. display: block;
  1658. }
  1659. .message-box-form label input {
  1660. width: 100%;
  1661. }
  1662. .message-box-form .submit {
  1663. padding: 0;
  1664. margin-top: 20px;
  1665. }
  1666. .message-box-form .submit input {
  1667. width: 100%;
  1668. height: 40px;
  1669. font-size: 16px;
  1670. -webkit-appearance: none;
  1671. }
  1672. /* 项目详情 */
  1673. .item-detail-top {
  1674. padding: 0 10px;
  1675. }
  1676. .item-detail-top>.fl {
  1677. width: 100%;
  1678. }
  1679. .item-slide {
  1680. margin-bottom: 10px;
  1681. }
  1682. .item-detail-top>.fr {
  1683. width: 100%;
  1684. margin-top: 20px;
  1685. }
  1686. .item-detail-top>.fr h2 {
  1687. max-height: 64px;
  1688. font-size: 16px;
  1689. line-height: 30px;
  1690. }
  1691. .item-detail-top>.fr .box01 {
  1692. margin-top: 5px;
  1693. }
  1694. .item-detail-top>.fr .box01>span {
  1695. display: block;
  1696. padding: 0;
  1697. border: 0;
  1698. line-height: 24px;
  1699. }
  1700. .item-detail-top>.fr .box01 p {
  1701. display: block;
  1702. width: 100%;
  1703. margin: 0;
  1704. }
  1705. .item-detail-top>.fr .box01 em {
  1706. font-size: 18px;
  1707. }
  1708. .item-detail-top>.fr .box04 a {
  1709. width: 40%;
  1710. height: 36px;
  1711. line-height: 36px;
  1712. font-size: 14px;
  1713. }
  1714. .item-detail-top>.fr .box04 a:first-child {
  1715. width: 44%;
  1716. }
  1717. .item-nav {
  1718. width: 100%;
  1719. height: 40px;
  1720. line-height: 40px;
  1721. }
  1722. .item-nav ul {
  1723. display: block!important;
  1724. width: 100%;
  1725. }
  1726. .item-nav li {
  1727. width: 20%;
  1728. }
  1729. .item-nav li a {
  1730. font-size: 13px;
  1731. }
  1732. .item-con-box {
  1733. padding: 15px;
  1734. }
  1735. .item-con-box ul li {
  1736. width: 50%;
  1737. }
  1738. /* 新闻资讯 */
  1739. .infro-list {
  1740. padding: 0 15px;
  1741. }
  1742. .infro-list li img {
  1743. width: 120px;
  1744. }
  1745. .infro-list li .listent {
  1746. width: calc(100% - 135px);
  1747. margin-left: 15px;
  1748. }
  1749. .infro-list li .listent a {
  1750. font-size: 15px;
  1751. }
  1752. .infro-list li .listent p {
  1753. height: 40px;
  1754. margin: 6px 0;
  1755. font-size: 12px;
  1756. line-height: 20px;
  1757. }
  1758. .infro-list li .listent span {
  1759. margin-right: 10px;
  1760. }
  1761. /* 排行榜 */
  1762. .phb-box {
  1763. width: 100%;
  1764. }
  1765. .phb-box ul li.active .afli {
  1766. display: none;
  1767. }
  1768. .phb-box ul li.active em {
  1769. display: block;
  1770. }
  1771. .phb-box ul li h3, .phb-box ul li.active h3 {
  1772. width: 110px;
  1773. }
  1774. .new-information {
  1775. width: 100%;
  1776. }
  1777. }