| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067 |
- @charset "utf-8";
- .crumbs {
- height: 60px;
- line-height: 60px;
- }
- /* 项目库 */
- .top-classify {
- padding: 5px 30px;
- background: #fff;
- overflow: hidden;
- border: 1px solid #82d3b5;
- }
- .top-classify dl {
- display: block;
- padding-top: 10px;
- padding-bottom: 8px;
- overflow: hidden;
- border-bottom: 1px solid #ECEDF6;
- }
- .top-classify dl:last-child {
- border-bottom: 0;
- }
- .top-classify dt {
- float: left;
- width: 80px;
- height: 30px;
- line-height: 30px;
- color: #333;
- font-weight: bold;
- }
- .top-classify dd {
- float: left;
- overflow: hidden;
- position: relative;
- float: left;
- width: 1050px;
- line-height: 30px;
- }
- .top-classify dd ul {
- overflow: hidden;
- }
- .top-classify dd ul li {
- float: left;
- margin-bottom: 6px;
- padding-right: 10px;
- }
- .top-classify dd ul li a {
- display: block;
- margin-top: 5px;
- font-size: 12px;
- padding: 0 8px;
- line-height: 22px;
- }
- .top-classify dd ul li.on a {
- color: #fff !important;
- background: #ee0f15;
- border-radius: 2px;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- -ms-border-radius: 2px;
- -o-border-radius: 2px;
- }
- .top-classify .sub_box i {
- position: absolute;
- right: 0;
- bottom: 3px;
- width: 64px;
- height: 26px;
- padding: 0 10px;
- font-size: 14px;
- color: #999;
- line-height: 24px;
- cursor: pointer;
- border: 1px solid #ccc;
- background: #fff;
- }
- .top-classify .sub_box i::before {
- position: absolute;
- right: 8px;
- font-size: 16px;
- }
- .top-classify .sub_box .fa-angle-down {
- z-index: 10;
- }
- /* */
- .inner-content {
- margin-bottom: 50px;
- }
- .inner-content>.fl {
- width: 880px;
- }
- .project-content {
- padding: 0 30px;
- background: #fff;
- }
- .project-top {
- height: 50px;
- line-height: 50px;
- }
- .project-top h2 {
- float: left;
- font-size: 16px;
- color: #333;
- }
- .project-top span {
- float: right;
- font-size: 12px;
- color: #999;
- }
- .project-top span em {
- font-size: 12px;
- color: #ee0f15;
- }
- .item-list {
- border-top: 1px solid #dfdfdf;
- }
- .item-list li {
- padding: 20px 0;
- border-bottom: 1px solid #dfdfdf;
- overflow: hidden;
- }
- .item-list li .li-le {
- width: 180px;
- }
- .item-list li .li-mid {
- width: 410px;
- margin-left: 20px;
- }
- .item-list li .li-mid div a {
- font-size: 18px;
- color: #333;
- font-weight: bold;
- }
- .item-list li .li-mid div span {
- font-size: 12px;
- color: #999;
- }
- .item-list li .li-mid p {
- margin-top: 15px;
- font-size: 12px;
- overflow: hidden;
- }
- .item-list li .li-mid p span {
- float: left;
- min-width: 150px;
- font-size: 12px;
- color: #999;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .item-list li .li-mid p em {
- font-size: 12px;
- }
- .item-list li .li-mid p b {
- font-size: 15px;
- color: #ed625e;
- }
- .item-list li .li-mid p i {
- float: left;
- width: 78px;
- height: 22px;
- background: url(../images/yx-icon.png) no-repeat;
- }
- .item-list li .fr {
- width: 80px;
- }
- .item-list li .fr span {
- display: block;
- width: 100%;
- height: 30px;
- margin-bottom: 21px;
- text-align: center;
- font-size: 12px;
- color: #ee0f15;
- line-height: 28px;
- border: 1px solid #ee0f15;
- border-radius: 100px;
- -webkit-border-radius: 100px;
- -moz-border-radius: 100px;
- -ms-border-radius: 100px;
- -o-border-radius: 100px;
- }
- .item-list li .fr:hover span {
- background: #ee0f15;
- color: #fff;
- }
- .pagCon {
- height: 60px;
- padding: 10px;
- background: #fff;
- line-height: 40px;
- text-align: center;
- }
- .pagCon li {
- display: inline-block;
- vertical-align: top;
- margin: 0 4px;
- }
- .pagCon li a, .pagCon li span {
- display: block;
- padding: 0 10px;
- }
- .pagCon li.thisclass a, .pagCon li.thisclass span {
- color: #ee0f15;
- }
- .pagCon li b {
- font-weight: bold;
- color: #333;
- }
- /* 右侧边栏 */
- .right-sidebar {
- width: 290px;
- }
- .right-sidebar>div {
- margin-bottom: 20px;
- padding-bottom: 15px;
- background: #fff;
- }
- .side-box {
- padding: 0 20px;
- padding-top: 16px;
- background: #fff;
- border: 1px solid #dfdfdf;
- border-top: 2px solid #ee0f15;
- }
- .side-box h2 {
- margin-bottom: 10px;
- font-size: 16px;
- color: #ee0f15;
- }
- .join-butler {
- position: relative;
- padding-bottom: 10px;
- }
- .join-butler .swiper-slide {
- overflow: hidden;
- }
- .join-butler .swiper-slide img {
- border-radius: 100%;
- -webkit-border-radius: 100%;
- -moz-border-radius: 100%;
- -ms-border-radius: 100%;
- -o-border-radius: 100%;
- }
- .join-butler .swiper-slide div {
- width: 160px;
- margin-left: 15px;
- }
- .join-butler .swiper-slide strong {
- display: block;
- color: #333;
- }
- .join-butler .swiper-slide p {
- margin-top: 7px;
- font-size: 12px;
- color: #333;
- }
- .join-butler .swiper-slide a {
- display: block;
- width: 120px;
- height: 26px;
- margin-top: 10px;
- text-align: center;
- font-size: 12px;
- color: #ee0f15;
- line-height: 24px;
- border: 1px solid #ee0f15;
- border-radius: 2px;
- -webkit-border-radius: 2px;
- -moz-border-radius: 2px;
- -ms-border-radius: 2px;
- -o-border-radius: 2px;
- }
- .swiper-button {
- position: absolute;
- top: 24px;
- left: -10px;
- cursor: pointer;
- outline: none;
- }
- .swiper-button.btn-next {
- left: auto;
- right: -10px;
- }
- .swiper-button i {
- font-size: 36px;
- color: #ccc;
- }
- .new-brand, .hot-trade {
- overflow: hidden;
- }
- .new-brand a, .hot-trade a {
- float: left;
- width: 50%;
- margin-bottom: 8px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 12px;
- }
- .hot-trade a {
- width: 33.33%;
- }
- /* */
- .rqb-list li {
- height: 40px;
- line-height: 40px;
- overflow: hidden;
- }
- .rqb-list li i {
- display: inline-block;
- vertical-align: middle;
- width: 20px;
- height: 20px;
- margin-right: 10px;
- background: #ccc;
- text-align: center;
- font-size: 12px;
- color: #fff;
- line-height: 20px;
- }
- .rqb-list li a {
- display: inline-block;
- vertical-align: middle;
- max-width: 150px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: #333;
- }
- .rqb-list li:nth-of-type(-n+3) a {
- font-weight: bold;
- }
- .rqb-list li:nth-of-type(1) i {
- background: url(../images/1.png) center no-repeat;
- }
- .rqb-list li:nth-of-type(2) i {
- background: url(../images/2.png) center no-repeat;
- }
- .rqb-list li:nth-of-type(3) i {
- background: url(../images/3.png) center no-repeat;
- }
- .rqb-list li:nth-of-type(4) i::before {
- content: '4';
- }
- .rqb-list li:nth-of-type(5) i::before {
- content: '5';
- }
- .rqb-list li:nth-of-type(6) i::before {
- content: '6';
- }
- .rqb-list li:nth-of-type(7) i::before {
- content: '7';
- }
- .rqb-list li:nth-of-type(8) i::before {
- content: '8';
- }
- .rqb-list li:nth-of-type(9) i::before {
- content: '9';
- }
- .rqb-list li:nth-of-type(10) i::before {
- content: '10';
- }
- .rqb-list li span {
- padding-right: 22px;
- color: #999;
- background-image: url(../images/huo04.png);
- background-position: right center;
- background-repeat: no-repeat;
- background-size: 14px;
- }
- .rqb-list li:nth-of-type(1) span {
- background-image: url(../images/huo01.png);
- }
- .rqb-list li:nth-of-type(2) span {
- background-image: url(../images/huo02.png);
- }
- .rqb-list li:nth-of-type(3) span {
- background-image: url(../images/huo03.png);
- }
- .mob-item h2 {
- height: 50px;
- padding: 0 20px;
- margin-bottom: 15px;
- line-height: 50px;
- font-size: 16px;
- color: #fff;
- background: #ee0f15;
- }
- .mob-item div {
- padding: 0 20px;
- }
- .mob-item div img {
- display: inline-block;
- vertical-align: middle;
- margin-right: 10px;
- }
- .mob-item div p {
- display: inline-block;
- vertical-align: middle;
- }
- .mob-item div p strong {
- display: block;
- color: #333;
- }
- .mob-item div p span {
- display: block;
- padding-left: 22px;
- margin-top: 10px;
- background: url(../images/ss-icon.png) 0 center no-repeat;
- font-size: 12px;
- color: #333;
- }
- /* 新闻列表 */
- .infor-content {
- background: #fff;
- }
- .infro-list {
- padding: 0 25px;
- }
- .infro-list li {
- padding: 25px 0;
- overflow: hidden;
- border-bottom: 1px solid #dfdfdf;
- }
- .infro-list li img {
- width: 230px;
- }
- .infro-list li .listent {
- width: 570px;
- margin-left: 25px;
- }
- .infro-list li .listent a {
- display: block;
- font-size: 18px;
- color: #333;
- font-weight: bold;
- }
- .infro-list li .listent p {
- height: 70px;
- overflow: hidden;
- margin: 15px 0;
- line-height: 24px;
- }
- .infro-list li .listent i {
- margin-right: 6px;
- font-size: 18px;
- color: #999;
- }
- .infro-list li .listent span {
- display: inline-block;
- vertical-align: top;
- margin-right: 30px;
- font-size: 12px;
- color: #999;
- }
- .new-sort {
- width: 100%;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- }
- .new-sort a {
- width: 100px;
- padding-left: 23px;
- margin-bottom: 12px;
- background: url(../images/icon-img1.png) left center no-repeat;
- }
- .new-sort-2 {
- padding-top: 12px;
- border-top: 1px dashed #d8d8d8;
- }
- .new-sort-2 a {
- background: url(../images/icon-img2.png) left center no-repeat;
- }
- .hot-article li {
- position: relative;
- padding-left: 12px;
- margin-top: 10px;
- overflow: hidden;
- }
- .hot-article li::before {
- position: absolute;
- content: '';
- left: 0;
- top: 50%;
- width: 4px;
- height: 4px;
- margin-top: -2px;
- background: #999;
- }
- .hot-article li a {
- float: left;
- max-width: 180px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 12px;
- color: #333;
- }
- .hot-article li span {
- float: right;
- font-size: 12px;
- color: #999;
- }
- .hot-tags a {
- display: inline-block;
- vertical-align: top;
- margin-bottom: 12px;
- margin-right: 14px;
- font-size: 12px;
- }
- .hot-tags i {
- margin-right: 4px;
- font-size: 16px;
- color: #999;
- }
- /* 项目详情 */
- .wrap-box {
- padding-bottom: 30px;
- background: #fff;
- }
- .item-detail-top>.fl {
- width: 480px;
- }
- .item-slide {
- margin-bottom: 10px;
- }
- .item-slide-nav .swiper-slide {
- border: 1px solid transparent;
- }
- .item-slide-nav .item-active {
- border: 1px solid #ee0f15;
- }
- .item-slide-nav .swiper-button-white {
- width: 20px;
- height: 42px;
- left: 0;
- background-color: rgba(0, 0, 0, .5);
- background-size: 9px;
- }
- .item-slide-nav .swiper-button-next {
- left: auto;
- right: 0;
- }
- .item-detail-top>.fr {
- width: 680px;
- }
- .item-detail-top>.fr h2 {
- font-size: 22px;
- color: #333;
- line-height: 46px;
- }
- .item-detail-top>.fr .box01 {
- margin-top: 30px;
- margin-bottom: 20px;
- }
- .item-detail-top>.fr .box01>span {
- display: inline-block;
- vertical-align: top;
- padding-right: 36px;
- line-height: 40px;
- border-right: 1px solid #e5e5e5;
- }
- .item-detail-top>.fr .box01 b {
- font-size: 16px;
- color: #ee0f15;
- }
- .item-detail-top>.fr .box01 em {
- font-size: 30px;
- color: #ee0f15;
- }
- .item-detail-top>.fr .box01 p {
- display: inline-block;
- vertical-align: top;
- width: 270px;
- margin-left: 36px;
- }
- .item-detail-top>.fr .box01 p span {
- display: inline-block;
- vertical-align: top;
- margin-right: 15px;
- margin-top: 4px;
- font-size: 12px;
- }
- .item-detail-top>.fr .box02 {
- line-height: 80px;
- border-top: 1px dashed #e5e5e5;
- border-bottom: 1px dashed #e5e5e5;
- }
- .item-detail-top>.fr .box02 span {
- display: inline-block;
- vertical-align: top;
- margin-right: 30px;
- font-size: 16px;
- }
- .item-detail-top>.fr .box02 i {
- width: 40px;
- height: 40px;
- margin-right: 10px;
- background: #e6e6e6;
- font-size: 22px;
- color: #fff;
- text-align: center;
- line-height: 40px;
- border-radius: 50%;
- -webkit-border-radius: 50%;
- -moz-border-radius: 50%;
- -ms-border-radius: 50%;
- -o-border-radius: 50%;
- }
- .item-detail-top>.fr .box03 {
- margin-top: 16px;
- overflow: hidden;
- }
- .item-detail-top>.fr .box03 span {
- float: left;
- width: 64px;
- font-size: 12px;
- }
- .item-detail-top>.fr .box03 ul {
- overflow: hidden;
- }
- .item-detail-top>.fr .box03 li {
- float: left;
- width: 25%;
- margin-bottom: 15px;
- font-size: 12px;
- }
- .item-detail-top>.fr .box03 li i {
- margin-right: 5px;
- color: #ee0f15;
- }
- .item-detail-top>.fr .box04 {
- margin-top: 15px;
- overflow: hidden;
- }
- .item-detail-top>.fr .box04 a {
- float: left;
- width: 170px;
- height: 50px;
- background: #ee0f15;
- font-size: 16px;
- color: #fff !important;
- text-align: center;
- line-height: 50px;
- border-radius: 6px;
- -webkit-border-radius: 6px;
- -moz-border-radius: 6px;
- -ms-border-radius: 6px;
- -o-border-radius: 6px;
- }
- .item-detail-top>.fr .box04 a:first-child {
- width: 200px;
- margin-right: 30px;
- color: #ee0f15 !important;
- background: #fff;
- border: 1px solid #ee0f15;
- }
- .item-detail-top>.fr .box04 i {
- margin-right: 10px;
- font-size: 20px;
- color: #fff;
- }
- .item-detail-top>.fr .box04 a:first-child i {
- color: #ee0f15;
- }
- /* */
- .item-detail-content {
- background: #fff;
- border: 1px solid #dfdfdf;
- }
- .nav-box {
- position: relative;
- height: 54px;
- }
- .item-nav {
- width: 880px;
- height: 54px;
- line-height: 52px;
- background: #fff;
- text-align: center;
- border-bottom: 2px solid #ee0f15;
- }
- .item-nav ul {
- float: left;
- overflow: hidden;
- }
- .item-nav li {
- float: left;
- width: 110px;
- }
- .item-nav li a {
- display: block;
- font-size: 16px;
- }
- .item-nav li a.active {
- color: #fff;
- background: #ee0f15!important;
- }
- .item-nav span {
- position: relative;
- width: 110px;
- margin-right: 10px;
- font-size: 16px;
- color: #e55450!important;
- font-weight: bold;
- cursor: pointer;
- }
- .item-nav span::after {
- position: absolute;
- content: '';
- top: 5px;
- right: 0;
- width: 18px;
- height: 18px;
- background: url(../images/call-icon.gif);
- background-size: 100%;
- }
- .item-nav-fixed {
- z-index: 999;
- position: fixed;
- top: 0;
- box-shadow: 5px 0 10px rgba(0, 0, 0, .15);
- }
- .item-con-box {
- padding: 30px;
- padding-bottom: 0;
- }
- .item-con-box p {
- margin-top: 20px;
- line-height: 28px;
- font-size: 15px;
- text-align: justify;
- }
- .item-con-box p img {
- margin: 0 auto;
- }
- .item-con-tit {
- font-size: 20px;
- color: #ee0f15;
- font-weight: bold;
- }
- .item-con-box ul {
- overflow: hidden;
- margin: 0 -8px;
- padding: 20px 0;
- }
- .item-con-box ul li {
- float: left;
- width: 25%;
- margin-bottom: 10px;
- padding: 0 8px;
- }
- /* 新闻详情 */
- .art-content {
- padding: 30px 40px;
- background: #fff;
- box-shadow: 0 0 6px 0 rgba(204, 204, 204, .5);
- }
- .art-content h1 {
- font-size: 22px;
- color: #333;
- line-height: 32px;
- text-align: center;
- }
- .art-message {
- padding: 15px 0;
- text-align: center;
- border-bottom: 1px solid #e5e5e5;
- }
- .art-message span {
- display: inline-block;
- vertical-align: top;
- margin: 0 10px;
- font-size: 12px;
- color: #777;
- }
- .remark {
- margin-top: 30px;
- padding: 15px;
- line-height: 26px;
- background: #f4f5fa;
- text-align: justify;
- }
- .art-body p, .art-body div {
- margin-top: 24px;
- font-size: 16px;
- line-height: 30px;
- text-align: justify;
- }
- .art-body img {
- margin: 0 auto;
- }
- .related-tags {
- margin-top: 40px;
- color: #999;
- }
- .related-tags a {
- display: inline-block;
- height: 28px;
- padding: 0 8px;
- margin-right: 12px;
- line-height: 26px;
- border: 1px solid #9195ac;
- border-radius: 14px;
- -webkit-border-radius: 14px;
- -moz-border-radius: 14px;
- -ms-border-radius: 14px;
- -o-border-radius: 14px;
- }
- .turn-page {
- margin-top: 40px;
- overflow: hidden;
- }
- .turn-page li {
- float: left;
- width: 48%;
- color: #ee0f15;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .turn-page li:last-child {
- float: right;
- }
- /* 留言咨询 */
- .message-box {
- background: #fff;
- border: 1px solid #dfdfdf;
- }
- .message-box-top {
- height: 50px;
- padding: 0 30px;
- overflow: hidden;
- font-size: 18px;
- color: #fff;
- font-weight: bold;
- line-height: 50px;
- background: #ee0f15;
- }
- .message-box-top p {
- float: right;
- color: #fff;
- font-weight: normal;
- }
- .message-box-top p i {
- vertical-align: middle;
- margin-top: -2px;
- font-size: 20px;
- color: #ffff;
- }
- .message-box-top p b {
- font-size: 20px;
- color: #fff
- }
- .message-box-form {
- position: relative;
- padding: 30px;
- }
- .message-box-form label {
- display: block;
- margin-bottom: 20px;
- overflow: hidden;
- line-height: 40px;
- }
- .message-box-form label span {
- position: relative;
- float: left;
- width: 64px;
- padding-left: 11px;
- font-size: 16px;
- }
- .message-box-form label b {
- position: absolute;
- left: 0;
- font-size: 16px;
- color: #ee0f15;
- }
- .message-box-form label input {
- float: left;
- width: 340px;
- height: 40px;
- padding: 0 10px;
- border: 1px solid #e5e5e5;
- }
- .message-box-form .liuyan {
- width: 100%;
- }
- .message-box-form .liuyan input {
- width: 100%;
- height: 140px;
- padding-bottom: 100px;
- }
- .message-box-form .submit {
- overflow: hidden;
- padding-left: 64px;
- }
- .message-box-form .submit input {
- width: 340px;
- height: 50px;
- background: #ee0f15;
- font-size: 18px;
- color: #fff;
- font-weight: bold;
- cursor: pointer;
- }
- .message-box-form .submit p {
- display: block;
- width: 340px;
- margin-top: 6px;
- font-size: 12px;
- line-height: 22px;
- }
- .message-box-form .submit p b {
- font-size: 12px;
- color: #ee0f15;
- }
- .form-kjly {
- position: absolute;
- top: 190px;
- right: 30px;
- width: 370px;
- }
- .form-kjly strong {
- position: relative;
- display: block;
- height: 40px;
- padding-left: 20px;
- background: #fa6165;
- font-size: 16px;
- color: #fff;
- line-height: 40px;
- }
- .form-kjly strong::before {
- position: absolute;
- content: '';
- top: 50%;
- left: -12px;
- margin-top: -6px;
- border: 6px solid transparent;
- border-right-color: #fa6165;
- }
- .form-kjly ul {
- padding: 16px;
- border: 1px solid #fa6165;
- border-top: 0;
- }
- .form-kjly ul li {
- position: relative;
- padding-left: 10px;
- margin-bottom: 13px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- color: #999;
- cursor: pointer;
- }
- .form-kjly ul li:hover {
- color: #ee0f15;
- }
- .form-kjly ul li::before {
- position: absolute;
- content: '';
- left: 0;
- top: 50%;
- width: 4px;
- height: 4px;
- margin-top: -2px;
- background: #e5e5e5;
- }
- /* 加盟留言 */
- .join-form {
- background: #fff;
- box-shadow: 0 0 6px 0 rgba(204, 204, 204, .5);
- overflow: hidden;
- }
- .join-form .fl {
- width: 310px;
- padding-bottom: 60px;
- text-align: center;
- background: #f3fbf8;
- }
- .join-form .fl img {
- margin: 40px auto 20px;
- }
- .join-form .fl strong {
- display: block;
- font-size: 20px;
- color: #ee0f15;
- }
- .join-form .fl span {
- display: block;
- margin-top: 3px;
- color: #ee0f15;
- }
- .join-form .fr {
- width: 570px;
- padding: 30px 80px;
- }
- .join-form .fr label {
- display: block;
- height: 40px;
- margin-bottom: 18px;
- overflow: hidden;
- line-height: 40px;
- }
- .join-form .fr label span {
- float: left;
- width: 60px;
- padding-right: 10px;
- text-align: right;
- color: #333;
- }
- .join-form .fr label input {
- float: left;
- width: 340px;
- height: 40px;
- padding: 0 10px;
- border: 1px solid #ddd;
- }
- .join-form .submit {
- padding-left: 60px;
- }
- .join-form .submit input {
- display: block;
- width: 340px;
- height: 40px;
- background: #ee0f15;
- font-size: 16px;
- color: #fff;
- font-weight: bold;
- cursor: pointer;
- ;
- }
- /* 相关资讯 */
- .art-information {
- background: #fff;
- box-shadow: 0 0 6px 0 rgba(204, 204, 204, .5);
- }
- .art-information h2 {
- height: 50px;
- padding-left: 20px;
- font-size: 16px;
- color: #fff;
- font-weight: bold;
- line-height: 50px;
- background: #ee0f15;
- }
- .art-information ul {
- overflow: hidden;
- padding: 10px 30px 30px;
- }
- .art-information ul li {
- position: relative;
- float: left;
- width: 50%;
- margin-top: 16px;
- padding-left: 12px;
- padding-right: 30px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .art-information ul li::before {
- position: absolute;
- content: '';
- top: 50%;
- left: 0;
- width: 4px;
- height: 4px;
- margin-top: -2px;
- background: #ee0f15;
- border-radius: 100%;
- -webkit-border-radius: 100%;
- -moz-border-radius: 100%;
- -ms-border-radius: 100%;
- -o-border-radius: 100%;
- }
- .related-new {
- padding: 20px 30px;
- background: #fff;
- border: 1px solid #dfdfdf;
- }
- .related-new>div {
- width: 46%;
- }
- .related-new h2 {
- margin-bottom: 15px;
- font-size: 18px;
- color: #333;
- line-height: 35px;
- }
- .related-new h2 a {
- color: #999;
- font-weight: normal;
- }
- .fir-nbox {
- margin-bottom: 20px;
- overflow: hidden;
- }
- .fir-nbox img {
- float: left;
- width: 170px;
- margin-right: 15px;
- }
- .fir-nbox h3 {
- max-height: 40px;
- color: #333;
- line-height: 22px;
- overflow: hidden;
- }
- .fir-nbox p {
- max-height: 60px;
- overflow: hidden;
- margin-top: 5px;
- font-size: 12px;
- color: #999;
- line-height: 20px;
- }
- .fir-nbox span {
- display: block;
- margin-top: 4px;
- text-align: right;
- font-size: 12px;
- color: #999;
- }
- .related-new ul li {
- position: relative;
- margin-top: 15px;
- padding-left: 10px;
- overflow: hidden;
- line-height: 18px;
- }
- .related-new ul li::before {
- position: absolute;
- content: '';
- left: 0;
- top: 50%;
- width: 4px;
- height: 4px;
- margin-top: -2px;
- background: #ee0f15;
- border-radius: 100%;
- -webkit-border-radius: 100%;
- -moz-border-radius: 100%;
- -ms-border-radius: 100%;
- -o-border-radius: 100%;
- }
- .related-new ul li a {
- float: left;
- max-width: 310px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .related-new ul li span {
- float: right;
- font-size: 12px;
- color: #999;
- }
- /* */
- .brand-recome li {
- margin-top: 20px;
- overflow: hidden;
- }
- .brand-recome li img {
- margin-right: 15px;
- }
- .brand-recome li h3 {
- color: #333;
- }
- .brand-recome li p {
- margin-top: 3px;
- font-size: 12px;
- }
- .brand-recome li em {
- font-size: 12px;
- color: #ee0f15;
- }
- .join-information li {
- position: relative;
- padding-left: 12px;
- margin-top: 13px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .join-information li::before {
- position: absolute;
- content: '';
- top: 50%;
- left: 0;
- width: 4px;
- height: 4px;
- margin-top: -2px;
- background: #ee0f15;
- border-radius: 100%;
- -webkit-border-radius: 100%;
- -moz-border-radius: 100%;
- -ms-border-radius: 100%;
- -o-border-radius: 100%;
- }
- .join-information li a {
- font-size: 12px;
- color: #333;
- }
- /* 排行榜 */
- .phb-box {
- width: 291px;
- background: #fff;
- box-shadow: 0 0 10px 0 rgba(204, 204, 204, .5);
- }
- .phb-title {
- height: 50px;
- padding: 0 10px;
- line-height: 50px;
- background: #f0f7ff;
- font-size: 16px;
- color: #39f;
- font-weight: bold;
- }
- .phb-title i {
- margin-right: 8px;
- font-size: 20px;
- color: #39f;
- }
- .phb-box-nav {
- display: flex;
- justify-content: space-between;
- margin: 0 10px;
- padding: 15px 0 6px 0;
- border-bottom: 1px dashed #dfdfdf;
- }
- .phb-box-nav span {
- font-size: 12px;
- color: #999;
- }
- .phb-box ul {
- padding: 0 10px;
- padding-bottom: 21px;
- }
- .phb-box ul li {
- margin-top: 12px;
- overflow: hidden;
- line-height: 20px;
- }
- .phb-box ul li i {
- float: left;
- width: 18px;
- height: 20px;
- font-size: 12px;
- color: #999;
- text-align: center;
- background: url(../images/rank-icon3.png) no-repeat;
- }
- .phb-box ul li:nth-of-type(-n+3) i {
- background: url(../images/rank-icon2.png) no-repeat;
- font-weight: bold;
- color: #333;
- }
- .phb-box ul li i::before {
- content: '1';
- }
- .phb-box ul li:nth-of-type(2) i::before {
- content: '2';
- }
- .phb-box ul li:nth-of-type(3) i::before {
- content: '3';
- }
- .phb-box ul li:nth-of-type(4) i::before {
- content: '4';
- }
- .phb-box ul li:nth-of-type(5) i::before {
- content: '5';
- }
- .phb-box ul li:nth-of-type(6) i::before {
- content: '6';
- }
- .phb-box ul li:nth-of-type(7) i::before {
- content: '7';
- }
- .phb-box ul li:nth-of-type(8) i::before {
- content: '8';
- }
- .phb-box ul li:nth-of-type(9) i::before {
- content: '9';
- }
- .phb-box ul li:nth-of-type(10) i::before {
- content: '10';
- }
- .phb-box ul li h3 {
- float: left;
- width: 100px;
- margin-left: 10px;
- font-size: 13px;
- }
- .phb-box ul li em {
- float: left;
- margin-left: 10px;
- /*margin-left: 20px;*/
- font-size: 12px;
- }
- .phb-box ul li span {
- float: right;
- font-size: 12px;
- color: #999;
- }
- .phb-box ul li .beli {
- overflow: hidden;
- }
- .phb-box ul li .afli {
- display: none;
- padding-top: 15px;
- }
- .phb-box ul li .afli img {
- float: left;
- margin-right: 20px;
- }
- .phb-box ul li .afli p {
- margin-bottom: 4px;
- font-size: 12px;
- }
- .phb-box ul li.active em {
- display: none;
- }
- .phb-box ul li.active h3 {
- width: 170px;
- }
- .phb-box ul li.active .afli {
- display: block;
- overflow: hidden;
- }
- .phb-middle {
- width: 592px;
- margin-left: 12px;
- }
- .phb-recommend {
- padding: 0 10px;
- margin-top: 10px;
- background: #fff;
- }
- .phb-recommend h2 {
- height: 48px;
- line-height: 48px;
- font-size: 18px;
- color: #ee0f15;
- }
- .phb-recommend h2 i {
- margin-right: 5px;
- font-size: 20px;
- color: #ee0f15;
- }
- .relist-1 {
- height: 102px;
- margin: 0 -5px;
- }
- .relist-1 li {
- float: left;
- width: 25%;
- padding: 0 5px;
- transition: all .3s ease;
- -webkit-transition: all .3s ease;
- -moz-transition: all .3s ease;
- -ms-transition: all .3s ease;
- -o-transition: all .3s ease;
- }
- .relist-1 li a {
- position: relative;
- display: block;
- }
- .relist-1 li p {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 22px;
- padding: 0 10px;
- font-size: 12px;
- color: #fff;
- text-align: center;
- line-height: 22px;
- background: rgba(0, 0, 0, .3);
- }
- .relist-1 li:hover {
- transform: translateY(-5px);
- -webkit-transform: translateY(-5px);
- -moz-transform: translateY(-5px);
- -ms-transform: translateY(-5px);
- -o-transform: translateY(-5px);
- }
- .relist-2 {
- overflow: hidden;
- padding: 7px 0;
- }
- .relist-2 li {
- position: relative;
- float: left;
- width: 25%;
- padding: 0 12px;
- margin-top: 6px;
- }
- .relist-2 li::before {
- position: absolute;
- content: '';
- top: 50%;
- left: 0;
- width: 3px;
- height: 3px;
- margin-top: -1px;
- background: #999;
- }
- .relist-2 li a {
- display: block;
- font-size: 12px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .rank-bot-content .fl {
- width: 880px;
- }
- .new-product ul {
- margin: 0 -8px;
- padding-top: 5px;
- overflow: hidden;
- }
- .new-product ul li {
- float: left;
- width: 20%;
- padding: 0 8px;
- margin-bottom: 15px;
- }
- .new-product ul li a {
- display: block;
- padding-bottom: 10px;
- background: #fff;
- transition: all 0.3s ease;
- -webkit-transition: all 0.3s ease;
- -moz-transition: all 0.3s ease;
- -ms-transition: all 0.3s ease;
- -o-transition: all 0.3s ease;
- }
- .new-product ul li a:hover {
- transform: translateY(-5px);
- -webkit-transform: translateY(-5px);
- -moz-transform: translateY(-5px);
- -ms-transform: translateY(-5px);
- -o-transform: translateY(-5px);
- }
- .new-product ul li h3 {
- padding: 0 10px;
- margin-top: 8px;
- font-weight: normal;
- }
- .new-product ul li p {
- margin-top: 4px;
- padding: 0 10px;
- overflow: hidden;
- }
- .new-product ul li b {
- float: left;
- font-size: 12px;
- color: #E65450;
- }
- .new-product ul li span {
- float: right;
- font-size: 12px;
- color: #999;
- }
- .new-information {
- width: 300px;
- margin-top: 5px;
- margin-bottom: 50px;
- }
- .new-infor-box {
- padding: 15px;
- background: #fff;
- box-shadow: 0 0 4px 0 rgba(204, 204, 204, .5);
- }
- .new-infor-box>a {
- display: block;
- overflow: hidden;
- }
- .new-infor-box h3 {
- margin-bottom: 10px;
- color: #333;
- }
- .new-infor-box img {
- float: left;
- margin-right: 15px;
- }
- .new-infor-box p {
- height: 60px;
- font-size: 12px;
- line-height: 20px;
- overflow: hidden;
- }
- .new-infor-box span {
- display: block;
- text-align: right;
- font-size: 12px;
- color: #999;
- }
- .new-infor-box ul li {
- position: relative;
- padding-left: 12px;
- margin-top: 13px;
- overflow: hidden;
- }
- .new-infor-box ul li::before {
- position: absolute;
- content: '';
- top: 50%;
- left: 0;
- width: 4px;
- height: 4px;
- margin-top: -2px;
- background: #999;
- }
- .new-infor-box ul li a {
- float: left;
- width: 200px;
- font-size: 12px;
- color: #333;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .new-infor-box ul li span {
- float: right;
- font-size: 12px;
- color: #999;
- }
- @media screen and (max-width:768px) {
- .top-classify {
- padding: 5px;
- }
- .top-classify dl {
- padding: 10px;
- }
- .top-classify dd {
- width: 100%;
- height: auto !important;
- padding: 0;
- }
- .top-classify dd ul li {
- padding-right: 10px;
- margin-bottom: 0;
- }
- .top-classify dd ul li a {
- font-size: 12px;
- }
- .top-classify .sub_box i {
- display: none;
- }
- /* 项目库 */
- .inner-content>.fl {
- float: none;
- width: 100%;
- }
- .project-content {
- padding: 0 13px;
- }
- .item-list li .li-le {
- width: 110px;
- }
- .item-list li .li-mid {
- width: calc(100% - 110px);
- margin-left: 0;
- padding-left: 10px;
- }
- .item-list li .li-mid div a {
- font-size: 16px;
- }
- .item-list li .li-mid div span {
- display: none;
- }
- .item-list li .li-mid p {
- margin-top: 0;
- }
- .item-list li .li-mid p span {
- min-width: 100px;
- margin-top: 3px;
- }
- .pagCon li {
- margin: 0;
- }
- .pagCon li b {
- font-size: 0;
- }
- .pagCon li a, .pagCon li span {
- padding: 0 6px;
- }
- /* */
- .crumbs {
- padding: 0 10px;
- }
- /* */
- .related-new {
- padding: 20px;
- padding-bottom: 0;
- }
- .related-new div {
- width: 100%;
- margin-bottom: 20px;
- }
- /* 文章详情 */
- .art-content {
- padding: 30px 20px;
- }
- .art-content h1 {
- font-size: 18px;
- }
- .art-infro span {
- font-size: 12px;
- }
- .turn-page li {
- width: 100%;
- line-height: 50px;
- }
- .join-form .fr {
- width: 100%;
- padding: 20px 15px;
- }
- .join-form .fr label input {
- width: calc(100% - 60px);
- }
- .join-form .submit input {
- width: 100%;
- }
- .art-information ul li {
- width: 100%;
- padding-right: 0;
- }
- /* 留言咨询 */
- .message-box-top {
- padding: 0 20px;
- }
- .message-box-top p {
- margin-top: 6px;
- font-size: 12px;
- }
- .message-box-top p span {
- font-size: 12px;
- }
- .message-box-form {
- padding: 20px;
- }
- .message-box-form label {
- width: 100%;
- margin-bottom: 10px;
- }
- .message-box-form label span {
- font-size: 14px;
- display: block;
- }
- .message-box-form label input {
- width: 100%;
- }
- .message-box-form .submit {
- padding: 0;
- margin-top: 20px;
- }
- .message-box-form .submit input {
- width: 100%;
- height: 40px;
- font-size: 16px;
- -webkit-appearance: none;
- }
- /* 项目详情 */
- .item-detail-top {
- padding: 0 10px;
- }
- .item-detail-top>.fl {
- width: 100%;
- }
- .item-slide {
- margin-bottom: 10px;
- }
- .item-detail-top>.fr {
- width: 100%;
- margin-top: 20px;
- }
- .item-detail-top>.fr h2 {
- max-height: 64px;
- font-size: 16px;
- line-height: 30px;
- }
- .item-detail-top>.fr .box01 {
- margin-top: 5px;
- }
- .item-detail-top>.fr .box01>span {
- display: block;
- padding: 0;
- border: 0;
- line-height: 24px;
- }
- .item-detail-top>.fr .box01 p {
- display: block;
- width: 100%;
- margin: 0;
- }
- .item-detail-top>.fr .box01 em {
- font-size: 18px;
- }
- .item-detail-top>.fr .box04 a {
- width: 40%;
- height: 36px;
- line-height: 36px;
- font-size: 14px;
- }
- .item-detail-top>.fr .box04 a:first-child {
- width: 44%;
- }
- .item-nav {
- width: 100%;
- height: 40px;
- line-height: 40px;
- }
- .item-nav ul {
- display: block!important;
- width: 100%;
- }
- .item-nav li {
- width: 20%;
- }
- .item-nav li a {
- font-size: 13px;
- }
- .item-con-box {
- padding: 15px;
- }
- .item-con-box ul li {
- width: 50%;
- }
- /* 新闻资讯 */
- .infro-list {
- padding: 0 15px;
- }
- .infro-list li img {
- width: 120px;
- }
- .infro-list li .listent {
- width: calc(100% - 135px);
- margin-left: 15px;
- }
- .infro-list li .listent a {
- font-size: 15px;
- }
- .infro-list li .listent p {
- height: 40px;
- margin: 6px 0;
- font-size: 12px;
- line-height: 20px;
- }
- .infro-list li .listent span {
- margin-right: 10px;
- }
- /* 排行榜 */
- .phb-box {
- width: 100%;
- }
- .phb-box ul li.active .afli {
- display: none;
- }
- .phb-box ul li.active em {
- display: block;
- }
- .phb-box ul li h3, .phb-box ul li.active h3 {
- width: 110px;
- }
- .new-information {
- width: 100%;
- }
- }
|