| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571 |
- html {
- /*IE10 IE11始终显示滚动条*/
- -ms-overflow-style:scrollbar;
- }
- body {
- margin: 0;
- padding: 0;
- font-size: 16px;
- /*font-family: "SimSun";*/
- /*background-color: #CDEBFB;*/
- /*-webkit-text-size-adjust: none;*/
- }
- .body {
- background-color: #fff;
- }
- ul,
- li {
- margin: 0;
- padding: 0;
- }
- .fl {
- float: left;
- }
- .rl {
- float: right;
- }
- li {
- list-style-type: none;
- }
- img {
- border: 0;
- }
- p {
- margin: 0;
- padding: 0;
- }
- .clearfix {
- zoom: 1;
- overflow: hidden;
- }
- .clearfix:after {
- content: "";
- display: block;
- clear: both;
- }
- a {
- text-decoration: none;
- }
- a:hover {
- color: rgb(22, 100, 162);
- }
- .s-14 {
- font-size: 14px;
- }
- .m-r {
- margin-right: 7px;
- }
- .min-wrap {
- max-width: 1280px;
- min-width: 1000px;
- margin: 0 auto;
- }
- .main-wrap {
- width: 1200px;
- margin: 0 auto;
- }
- .main-body {
- background-color: white;
- margin-bottom: 20px;
- }
- .header{
- width: 100%;
- margin: 0 auto;
- }
- .navcon {
- width:1246px;
- margin: 0 auto;
- background-color: #c12729;
- position: relative;
- }
- .navcon_box {
- width: 1246px;
- margin: 0 auto;
-
- }
- #navcon:before, #navcon:after{
- display: block;
- content: "";
- position: absolute;
- width: 0;
- height: 0;
- top: 0;
- }
- #navcon:before{
- left: 0;
- top: 54px;
- border-top: 13px solid #96140a;
- border-bottom: 13px solid transparent;
- border-left: 13px solid transparent;
- border-right: 13px solid #96140a;
- }
- #navcon:after{
- right: 0!important;
- border-top: 13px solid #96140a;
- border-bottom: 13px solid transparent;
- border-left: 13px solid #96140a;
- border-right: 13px solid transparent;
- top: 54px;
- }
- .logo_box {
- float: left;
- width: 35%;
- }
- .logo {
- float: left;
- height: 100%;
- line-height: 80px;
- font-size: 32px;
- color: #02b2b5;
- }
- .logoImg_box {
- padding-left: 76px;
- }
- .nav_right {
- width: 65%;
- float: right;
- }
- .navs .active {
- border-bottom: 2px solid #fff;
- }
- .Hidens {
- display: none;
- }
- .Input_box {
- border: 1px solid #99b6cd;
- height: 22px;
- width: 55%;
- position: relative;
- padding: 2px;
- margin-top: 20px;
- border-radius: 5px;
- }
- .Seach_box {
- height: 18px;
- width: 140px;
- border: 0;
- background: transparent;
- outline: none;
- position: absolute;
- font-size: 14px;
- padding: 2px;
- color: #99b6cd;
- }
- .Seac_icon {
- background: url(../img/ss.png)no-repeat;
- width: 20px;
- height: 20px;
- display: block;
- position: absolute;
- right: 0;
- /* line-height: 51px; */
- top: 7px;
- }
- .login_icon {
- background: url(../img/login.png)no-repeat;
- width: 20px;
- height: 20px;
- display: block;
- margin-top: 25px;
- }
- .login_btton {
- color: #fff;
- }
- .login_box {
- padding-left: 10px;
- }
- .login_box a {
- color: #fff;
- cursor: pointer;
- }
- input::-webkit-input-placeholder,
- textarea::-webkit-input-placeholder {
- color: #99b6cd;
- }
- input:-moz-placeholder,
- textarea:-moz-placeholder {
- color: #99b6cd;
- }
- input::-moz-placeholder,
- textarea::-moz-placeholder {
- color: #99b6cd6;
- }
- input:-ms-input-placeholder,
- textarea:-ms-input-placeholder {
- color: #99b6cd;
- }
- .navcon_1,.navcon_2 {
- margin-bottom: 10px;
- margin: 0 auto;
- margin-top: 30px;
- }
- .navcon_1 {
- width: 96%;
- }
- .navcon_2 {
- width: 100%;
- }
- .navCon {
- margin-top: 15px;
- }
- .Content_box {
- height: 290px;
- /*background-color: #03B2B7;*/
- border: 1px solid #CCCCCC;
- /*border-top: 5px solid #00a1cb;*/
- }
- .Content{
- width: 1246px;
- margin: 0 auto;
- }
- .ss_Content_box{
- border: 15px solid #eee2d6;
- border-radius: 15px;
- }
- .ss_CountBox{
- display: inline-block;
- background: #c29673;
- padding: 2px 5px;
- border-radius: 8px;
- margin: 8px 0 5px 0;
- }
- .ss_CountBox .Count_title,#totalCount{
- color: #fff;
- font-size: 18px;
- font-family: "SimSun";
- }
- #totalCount{
- color: #ff0000;
- }
- .content_title {
- padding-top: 4px;
- font-weight: bold;
- line-height: 26px;
- background: #efe2d7;
- padding-left: 15px;
- }
- .ms_content_title{
- background: -webkit-linear-gradient(left, #fcd07a , #fff); /* Safari 5.1 - 6.0 */
- background: -o-linear-gradient(right, #fcd07a , #fff); /* Opera 11.1 - 12.0 */
- background: -moz-linear-gradient(right, #fcd07a , #fff); /* Firefox 3.6 - 15 */
- background: linear-gradient(to right, #fcd07a , #fff); /* 标准的语法(必须放在最后) */
- color: #a14243;
- font-family: "仿宋";
- border-top-left-radius: 10px;
- }
- .ms_content_title .fl{
- font-size: 24px;
- background: #fff;
- padding: 10px 19px;
- border-top-left-radius: 7px;
- border-top-right-radius: 7px;
- }
- .ms_content_title .mores a{
- font-size: 16px;
- color: #a14243;
- }
- .content_moddile {
- padding: 0 15px;
- padding-top: 12px;
- }
- .cont_modtitle {
- color: #00a1cb;
- }
- .cont_wz {
- margin-bottom: 14px;
- }
- .fx {
- border-bottom: 1px dashed #ccc;
- }
- .new_list li {
- height: 30px;
- }
- .new_list li:hover {
- background-color: #f5f5f5;
- }
- /*.content_foot ul.MQ li:nth-of-type(even){
- background-color: #f3f3f3;
- } */
- .new_title {
- height: 100%;
- line-height: 30px;
- padding: 0 15px;
- }
- .new_title h1 {
- margin: 0;
- padding: 0;
- font-weight: normal;
- line-height: 30px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- float: left;
- width: 55%;
- }
- .new_title em {
- font-style: normal;
- }
- .new_title a {
- color: #000;
- display: block;
- width: 100%;
- font-size: 18px;
- font-family: "SimSun";
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .new_title a:hover {
- color: #00b5e4!important;
- }
- .mores {
- font-weight: normal;
- margin-right: 20px;
- font-size: 14px;
- }
- .mores a{
- color: #000;
- }
- .mores a:hover{
- color: #00a1cb;
- }
- .new_img li {
- float: left;
- width: 24%;
- }
- .content_foot_img {
- padding: 15px 10px 0 10px;
- }
- ._imgbox {
- margin-bottom: 15px;
- cursor: pointer;
- }
- /*主体*/
- .main-bar {
- height: 80px;
- background-color: #02B2B5;
- }
- .main-bar .logo {
- float: left;
- margin-top: 19px;
- width: 408px;
- height: 53px;
- /*background: * url("") no-repeat;*/
- border: 1px solid red;
- }
- .main-bar .back {
- float: right;
- background-color: #ea544a;
- border-radius: 20px;
- font-family: "Microsoft Yahei";
- height: 30px;
- line-height: 30px;
- width: 92px;
- text-align: center;
- margin-top: 28px;
- color: white;
- }
- .main-bar .back a {
- color: white;
- font-size: .93em;
- }
- .main-bar .back a:hover {
- color: white;
- text-decoration: underline;
- }
- .main-bar .nav {
- /*float: left;*/
- font-family: "Microsoft Yahei";
- }
- .Foots {
- border: 1px solid #ccc;
- }
- .foot_ul li {
- float: left;
- width: 20%;
- margin-bottom: 15px;
- cursor: pointer;
- }
- .FootBox {
- text-align: center;
- padding: 50px;
- }
- .index-banner {
- line-height: 0;
- height: 300px;
- }
- .index-banner img {
- display: block;
- width: 100%;
- height: 100%;
- }
- .col-wide {
- float: left;
- width: 650px;
- }
- .col-narrow {
- margin-left: 700px;
- }
- .box-01 .box-title {
- padding: 16px 10px 16px 0;
- height: 16px;
- margin-bottom: 20px;
- }
- .box-01.red-bg .box-title {
- background-color: #85c300;
- text-align: center;
- color: #fff;
- }
- .col-narrow .rt-box {
- height: 47px;
- line-height: 47px;
- border-bottom: 2px solid #000;
- position: relative;
- }
- .col-narrow .rt-box .right-title {
- float: left;
- color: #c44542;
- }
- .col-narrow .rt-box .bor-line {
- width: 50%;
- height: 2px;
- line-height: 0;
- background: #c44542;
- position: absolute;
- bottom: -2px;
- }
- .col-narrow .rt-box .right-more {
- float: right;
- }
- .col-narrow .rt-box .right-more a {
- color: #000;
- font-size: 12px;
- }
- .col-narrow .rt-box .right-more a:hover {
- color: #ac2e3b;
- }
- .col-narrow .bianmin-con {
- margin-left: -10px;
- height: 240px;
- }
- .col-narrow .bianmin-con li {
- float: left;
- width: 30%;
- height: 70px;
- margin-left: 10px;
- background: aqua;
- margin-top: 10px;
- }
- .col-narrow .bianmin-con li a,
- .col-narrow .bianmin-con li a img {
- display: block;
- width: 100%;
- height: 100%;
- }
- .col-narrow .bianmin-con li.seven,
- .col-narrow .bianmin-con li.four {
- width: 63%;
- }
- .col-narrow .sjtj-con {
- border: 1px solid #707070;
- text-align: center;
- font-size: 16px;
- border-radius: 5px;
- overflow: hidden;
- margin-top: 10px;
- padding-bottom: 15px;
- }
- .col-narrow .sjtj-con .sjtj-title {
- background: #ac2e3b;
- color: #fff;
- height: 45px;
- line-height: 45px;
- }
- .col-narrow .sjtj-con ul li {
- width: 50%;
- float: left;
- margin-top: 25px;
- }
- .box-01 .box-title-name {
- float: left;
- font-family: "Microsoft Yahei";
- line-height: 1em;
- height: 2em;
- padding-left: 10px;
- border-left: 7px solid #00a1cb;
- }
- .col-narrow .box-01.gray-bg .box-title .right-title {
- border-left: 0;
- color: rgb(22, 100, 162);
- }
- .col-narrow .box-01.gray-bg .box-title .box-title-name,
- .col-narrow .box-01.gray-bg .box-title .box-title-more a {
- /*color: #000;*/
- }
- .box-01.red-decoration .main-content {
- padding: 0px 30px 0px 20px;
- color: #333;
- font-size: .875em;
- border: 1px solid #d8d8d8;
- }
- .box-01.red-decoration .main-content .content-title {
- text-align: center;
- color: #000000;
- font-size: 20px;
- font-family: "宋体", "黑体", "新宋体";
- font-weight: bold;
- margin: 20px auto;
- }
- .box-01.red-decoration .main-content .gary-line {
- border-bottom: solid 1px #ddd;
- margin: 10px 36px;
- }
- .box-01.red-decoration .main-content .content-info {
- text-align: center;
- font-size: 12px;
- border: #dcdcdc dashed 1px;
- border-width: 0 0 1px 0;
- padding-bottom: 15px;
- }
- .box-01.red-decoration .main-content .content-text {
- margin: 15px 32px;
- line-height: 30px;
- }
- .box-01 .box-title-more {
- float: right;
- text-align: right;
- color: #999999;
- font-size: .75em;
- line-height: 1.34em;
- }
- .box-01 .box-title-more a {
- color: #333;
- }
- .box-01 .box-title-more a:hover {
- color: #ac2e3b;
- text-decoration: none;
- }
- ul.news-list.gray-line>li {
- height: 50px;
- border-bottom: 1px dashed #e0e0e0;
- padding-right: 20px;
- }
- ul.news-list.gray-line>li .news-title {
- height: 100%;
- }
- ul.news-list.gray-line>li:prev-child {
- border: none;
- padding-top: 10px;
- }
- ul.news-list.gray-line>li:after {
- content: "";
- display: block;
- clear: both;
- height: 0;
- }
- ul.news-list.gray-line .news-pic img {
- width: 120px;
- height: 90px;
- display: block;
- }
- ul.news-list.gray-line .news-title>h1 {
- margin: 0;
- padding: 0;
- font-weight: normal;
- color: #ea544a;
- font-size: .875em;
- line-height: 50px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- float: left;
- width: 55%;
- }
- ul.news-list.gray-line .news-title>h1>a {
- display: block;
- width: 100%;
- color: #666;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- ul.news-list.gray-line .news-title:hover h1>a {
- color: rgb(22, 100, 162);
- /*text-decoration: underline;*/
- }
- ul.news-list.gray-line .news-title>p {
- margin: 0;
- padding: 0;
- color: #999999;
- font-size: .75em;
- line-height: 2.4em;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- ul.news-list.gray-line .news-title>em {
- display: block;
- font-style: normal;
- font-family: Verdana;
- font-size: .75em;
- line-height: 50px;
- color: #666666;
- float: right;
- }
- .lm-table {
- table-layout: fixed;
- width: 100%;
- font-size: .75em;
- padding-bottom: 11px;
- }
- .lm-table td {
- border-bottom: 1px solid #f6f6f6;
- height: 48px;
- line-height: 48px;
- padding: 0 15px;
- text-align: center;
- font-size: 13px;
- }
- .lm-table .lm-title td {
- background-color: #f2f2f2;
- font-family: "Microsoft Yahei";
- color: #1a1a1a;
- font-size: 1.17em;
- height: 40px;
- line-height: 40px;
- }
- .lm-table .last td {
- border: none;
- }
- .lm-table .red {
- color: #f18c86;
- }
- .lm-table .date {
- color: #8c8c8c;
- font-family: Verdana;
- }
- .lm-table .organizer {
- color: #666666;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .lm-table .content a {
- font-size: 13px;
- display: block;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- color: #3f3f3f;
- }
- .lm-table .content a:hover {
- color: #c44542;
- }
- ul.news-list.news-r-red>li {
- border-bottom: 1px dashed #ccc;
- background-color: #F6F6F6;
- height: 50px;
- }
- ul.news-list.news-r-red>li>.m-across {
- padding: 0px 20px 0px;
- height: 100%;
- }
- ul.news-list.news-r-red>li>.m-across:hover {
- /* border-right: 2px solid #ff5256;*/
- cursor: pointer;
- }
- ul.news-list.news-r-red>li.odd {
- /*background-color: #f6f6f6;*/
- }
- ul.news-list.news-r-red>li>.m-across>a {
- display: block;
- font-size: .875em;
- line-height: 44px;
- color: #666;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- float: left;
- width: 50%;
- height: 100%;
- line-height: 50px;
- }
- ul.news-list.news-r-red>li>.m-across:hover a {
- color: #c44542;
- }
- ul.news-list.news-r-red>li>.m-across>em {
- display: block;
- font-style: normal;
- font-family: Verdana;
- font-size: .75em;
- height: 100%;
- line-height: 50px;
- color: #666;
- float: right;
- }
- .count {
- font-family: "Microsoft Yahei";
- color: white;
- }
- .count .all-count {
- background-color: #F6F6F6;
- }
- .all-count ul.acceptance {
- font-size: .875em;
- color: #666666;
- }
- .today-count ul.acceptance {
- font-size: 14px;
- color: #666;
- }
- ul.acceptance li .pl-30 {
- height: 100%;
- line-height: 50px;
- }
- ul.acceptance li {
- width: 100%;
- height: 50px;
- text-align: center;
- }
- .all-count .dcon {
- text-indent: 30px;
- color: #262626;
- font-size: 14px;
- padding: 20px 10px 10px 10px;
- line-height: 25px;
- }
- .all-count .dcan {
- width: 75%;
- margin: 0 auto;
- padding: 10px 0;
- }
- .all-count .dcan a {
- display: block;
- height: 30px;
- width: 85px;
- text-align: center;
- line-height: 30px;
- background: #03b2b7;
- border-radius: 20px;
- color: #fff;
- font-size: 15px;
- }
- .all-count .dcan a.dc {
- float: left;
- }
- .all-count .dcan a.ck {
- float: right;
- }
- ul.acceptance>li>img {
- display: block;
- float: left;
- margin-top: 3px;
- }
- .count .number {
- margin: 0 15px;
- }
- .box-content .fw-guide {
- margin-left: -20px;
- }
- .box-content .fw-guide li {
- float: left;
- width: 22%;
- height: 70px;
- margin-left: 20px;
- margin-top: 25px;
- border-radius: 3px;
- }
- .box-content .fw-guide li a {
- display: block;
- width: 100%;
- height: 100%;
- text-align: center;
- color: #fff;
- font-size: 14px;
- box-sizing: border-box;
- }
- .box-content .fw-guide li a i {
- display: block;
- height: 32px;
- width: 32px;
- margin: 0 auto;
- margin-top: 8px;
- }
- .box-content .fw-guide li.serv1 {
- background: #4b83b4;
- }
- .box-content .fw-guide li.serv1 a i {
- background: url("../img/sky .png") no-repeat 0 0;
- }
- .box-content .fw-guide li.serv2 {
- background: #cdc27c;
- }
- .box-content .fw-guide li.serv2 a i {
- background: url(../img/email.png) no-repeat 0 3px;
- }
- .box-content .fw-guide li.serv3 {
- background: #cdb49e;
- }
- .box-content .fw-guide li.serv3 a i {
- background: url(../img/chaxun.png) no-repeat 0 0;
- }
- .box-content .fw-guide li.serv4 {
- background: #9cc0e0;
- }
- .box-content .fw-guide li.serv4 a i {
- background: url(../img/tousu.png) no-repeat 0 0;
- }
- .box-content .fw-guide li.serv5 {
- background: #d0c6de;
- }
- .box-content .fw-guide li.serv5 a i {
- background: url(../img/churu.png) no-repeat 0 0;
- }
- .box-content .fw-guide li.serv6 {
- background: #88bcb7;
- }
- .box-content .fw-guide li.serv6 a i {
- width: 34px;
- height: 34px;
- background: url(../img/trade.png) no-repeat 0 0;
- }
- .box-content .fw-guide li.serv7 {
- background: #9dadc6;
- }
- .box-content .fw-guide li.serv7 a i {
- background: url(../img/cost.png) no-repeat 0 0;
- }
- .box-content .fw-guide li.serv8 {
- background: #e48b93;
- }
- .box-content .fw-guide li.serv8 a i {
- background: url(../img/pulic.png) no-repeat 0 0;
- }
- .footer {
- background: #a22100;
- font-size: 16px;
- color: #fff;
- padding: 30px 0;
- padding-bottom:0px;
- }
- .footer .footer-con {
- height: 100%;
- width: 1000px;
- margin: 0 auto;
- }
- .footerbox {
- text-align: center;
- line-height: 20px;
- }
- .footerbox a{
- color: #fff;
- }
- .box-01 .sqsl_detail {
- position: relative;
- /*padding: 10px 36px 36px;*/
- }
- .box-01 .sqsl_detail table {
- width: 100%;
- border-collapse: collapse;
- }
- .box-01 .sqsl_detail table th {
- width: 15%;
- text-align: center;
- background: rgb(240, 244, 247);
- padding: 10px 15px;
- font-weight: normal;
- border: 1px solid #e6e6e6;
- font-size: 14px;
- color: #000;
- }
- .box-01 .sqsl_detail table td {
- padding: 5px 15px;
- font-size: 14px;
- line-height: 30px;
- border: 1px solid #e6e6e6;
- color: #666;
- }
- .accessible-wrap {
- display: none;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
- }
- .accessible-body {
- position: fixed;
- z-index: 10;
- width: 100%;
- min-width: 1000px;
- text-align: right;
- padding: 10px 0;
- font-size: .875em;
- background-color: white !important;
- border-bottom: 1px solid #ddd;
- }
- .accessible-body-fixed {
- height: 47px;
- }
- .accessible-body span {
- display: inline-block;
- padding: 0 10px;
- margin-left: 6px;
- border: 1px solid #ccc;
- border-radius: 5px;
- background-color: #f3f3f3 !important;
- line-height: 24px;
- color: #444 !important;
- cursor: pointer;
- }
- .contrast,
- .contrast * {
- background: black !important;
- color: white !important;
- }
- .pagination {
- display: block;
- width: 100%;
- margin: 5px auto;
- }
- .pagination-detail{
- margin-top: 8px;
- }
- .fixed-table-pagination {
- font-size: 14px;
- }
- .fixed-table-pagination div.pagination {
- width: 55%;
- }
- .JumpPage {
- padding: 6px 0;
- height: 18px;
- }
- .ban-bottom {
- margin: 25px 0;
- }
- .ban-bottom li {
- float: left;
- width: 16.6%;
- height: 112px;
- box-sizing: border-box;
- padding: 10px;
- border-right: 1px dashed #ccc;
- }
- .firli {
- text-align: center;
- color: #ac2e3b;
- font-size: 20px;
- }
- .firli b {
- font-size: 45px;
- }
- .ban-bottom li a {
- display: block;
- width: 100%;
- text-align: center;
- }
- .ban-bottom li a .bbtop {
- margin: 8px 0;
- }
- .ban-bottom li a p {
- font-size: 14px;
- color: #666666;
- }
- .ban-bottom li a i.icon {
- display: inline-block;
- background: url(../img/icon.png) no-repeat;
- background-size: 25px;
- height: 25px;
- width: 25px;
- vertical-align: middle;
- margin-right: 5px;
- }
- .ban-bottom li a i.icon1 {
- background-position: 0 0;
- }
- .ban-bottom li a i.icon2 {
- background-position: 0 -25px;
- height: 23px;
- }
- .ban-bottom li a i.icon3 {
- background-position: 0 -47px;
- }
- .ban-bottom li a i.icon4 {
- background-position: 0 -72px;
- height: 21px
- }
- .ban-bottom li a i.icon5 {
- background-position: 0 -93px;
- }
- .chaxun-con {
- padding: 20px;
- }
- .box-title .chaxun>div {
- float: left;
- }
- .box-title .chaxun {
- float: right;
- }
- .box-title .chaxun>div>p {
- display: inline-block;
- width: 150px;
- height: 25px;
- border: 1px solid #ccc;
- position: relative;
- margin-right: 5px;
- }
- .box-title .chaxun>div>p>input {
- border: 0;
- width: 90%;
- height: 23px;
- outline: none;
- padding-left: 5px;
- }
- .box-title .chaxun>div.zonghe {
- margin-left: 35px;
- cursor: pointer;
- line-height: 26px;
- }
- .box-title .chaxun>div.zonghe .zhank {
- display: inline-block;
- background: url(../img/zhank.png);
- height: 9px;
- width: 15px;
- margin-left: 5px;
- animation: bounce .5s ease-in-out infinite;
- }
- @keyframes bounce {
- 0% {
- -webkit-transform: translate3d(0, 0px, 0);
- transform: translate3d(0, 0px, 0);
- }
- 50% {
- -webkit-transform: translate3d(0, -3px, 0);
- transform: translate3d(0, -3px, 0);
- }
- 100% {
- -webkit-transform: translate3d(0, 0px, 0);
- transform: translate3d(0, 0px, 0);
- }
- }
- .cxr * {
- box-sizing: content-box!important;
- }
- .cxr {
- height: auto;
- }
- .cx-title {
- width: 100%;
- height: 30px;
- text-align: center;
- line-height: 30px;
- background: #02b2b7;
- color: #fff;
- margin-bottom: 20px;
- }
- .cxr p {
- font-size: 15px;
- }
- .cxr .gjcx-row1 p,
- .cxr .gjcx-row2 p {
- float: left;
- width: 33.3%;
- text-align: center;
- margin-bottom: 15px;
- }
- .cxr .gjcx-row1 input {
- padding-left: 10px;
- width: 143px;
- }
- .cxr .gjcx-row1 input.laydate-icon {
- padding-right: 0;
- }
- .cxr .gjcx-row2 select {
- height: 25px;
- line-height: 25px;
- outline: none;
- padding-left: 30px;
- width: 125px;
- }
- .gjcx-row3 {
- width: 30%;
- margin: 0 auto;
- }
- .gjcx-row3 .psw {
- outline: none;
- height: 27px;
- padding-left: 10px;
- font-size: 15px;
- cursor: pointer;
- width: 140px;
- border-radius: 5px;
- background-color: #337ab7;
- border-color: #337ab7;
- color: #fff;
- margin-top: 10px;
- border: 0;
- }
- .gjcx-row3 p span {
- display: inline-block;
- width: 300px;
- height: 25px;
- border: 1px solid #ccc;
- position: relative;
- }
- .gjcx-row3 p span input {
- height: 90%;
- border: 0;
- width: 90%;
- }
- .gjcx-row3 p span a {
- display: block;
- height: 25px;
- width: 25px;
- position: absolute;
- right: 2px;
- top: 0px;
- background: url(../img/search.png) center center no-repeat;
- background-position: center center;
- }
- .diaocha {
- color: #4c4c4c;
- font-family: "microsoft yahei";
- padding: 30px 35px;
- }
- .diaocha .diaocha-title {
- font-size: 24px;
- text-align: center;
- /*margin-top: 30px;*/
- }
- .dctle-con {
- text-indent: 32px;
- font-size: 16px;
- padding: 30px 0;
- }
- .diaocha-con h2 {
- font-weight: normal;
- font-size: 16px;
- }
- .diaocha-con .radio,
- .diaocha-con .checkbox {
- font-size: 14px;
- padding-left: 30px;
- }
- .diaocha-con .checkbox {
- width: 22.5%;
- float: left;
- margin-top: 0;
- }
- .checkbox+.checkbox {
- margin-top: 0px;
- }
- .diaocha hr {
- border-top: 4px solid #ccc;
- margin-bottom: 40px;
- }
- .tj-box {
- width: 30%;
- margin: 0 auto;
- }
- .tj-box a {
- display: block;
- height: 35px;
- width: 100px;
- text-align: center;
- line-height: 35px;
- background: #03b2b7;
- color: #fff;
- border-radius: 3px;
- }
- .tj-box .dctj {
- float: left;
- }
- .tj-box .dcck {
- float: right;
- }
- .result-con {
- padding-left: 30px;
- }
- .result-con>div {
- float: left;
- font-size: 14px;
- }
- .result-con .releft {
- width: 30%;
- }
- .result-con .remiddle {
- width: 40%;
- }
- .result-con .reright {
- width: 10%;
- margin-left: 20px;
- }
- .progress {
- height: 16px;
- }
- .progress-bar-success {
- background-color: #97c44f;
- }
- .progress-bar-warning {
- background-color: #f2d561;
- }
- .progress-bar-zise {
- background-color: #c278a9;
- }
- .progress-bar-cheng {
- background-color: #fc9765;
- }
- .progress-bar-bohe {
- background-color: #87ebf1;
- }
- .progress-bar-fen {
- background-color: #ffe6de;
- }
- .progress-bar-dousha {
- background-color: #ef9c94;
- }
- .progress-bar-qing {
- background-color: #deffde;
- }
- .lv {
- color: #97c44f;
- }
- .huang {
- color: #f2d561;
- }
- .hong {
- color: #d9534f;
- }
- .lan {
- color: #5bc0de;
- }
- .zise {
- color: #c278a9;
- }
- .cheng {
- color: #fc9765;
- }
- .bohe {
- color: #87ebf1;
- }
- .fen {
- color: #ffe6de;
- }
- .dousha {
- color: #ef9c94;
- }
- .qing {
- color: #deffde;
- }
- .return {
- display: block;
- height: 35px;
- width: 100px;
- text-align: center;
- line-height: 35px;
- background: #03b2b7;
- color: #fff;
- border-radius: 3px;
- margin: 0 auto;
- }
- .nextGo {
- display: block;
- line-height: 35px;
- width: 100px;
- text-align: center;
- line-height: 35px;
- background: #00a1cb;
- color: #fff;
- border-radius: 3px;
- margin: 0 auto;
- outline: none;
- border-color: #00a1cb;
- }
- .personal .table {
- width: 90%;
- margin: 20px auto;
- }
- .personal .table tr td {
- text-align: center;
- }
- .personal .table tr td img {
- margin-right: 5px;
- }
- .personal .table tr td input[type=text] {
- width: 90%;
- height: 20px;
- border: 0;
- outline: none;
- text-align: center;
- }
- .personal .table tr td:first-child {
- text-align: right;
- width: 20%;
- }
- .personal .table tr td select {
- vertical-align: middle;
- font-size: 14px;
- outline: none;
- width: 100px;
- height: 30px;
- padding-left: 5px;
- }
- .personal .table tr td button {
- color: #fff;
- background: #ac2e3b;
- border: 0;
- padding: 5px 10px;
- border-radius: 3px;
- margin: 10px auto;
- display: block;
- }
- .Input_ {
- background-color: #FFF;
- background-image: none;
- border: 1px solid #ccc;
- border-radius: 1px;
- color: inherit;
- padding: 6px 12px;
- }
- .sys-title {
- color: #990000;
- font-size: 40px;
- font-family: "宋体";
- height: 140px;
- line-height: 140px;
- padding-left: 50px;
- }
- .hr {
- border-top: 1px solid #d9d9d9;
- }
- .sys-con img {
- display: block;
- height: 295px;
- width: 340px;
- margin: 40px auto;
- }
- .sys-word .weihu,
- .sys-word .sys-time {
- color: #b10808;
- font-size: 36px;
- text-align: center;
- }
- .sys-word .sys-time {
- font-size: 25px;
- }
- .sys-word .sys-xuan {
- text-align: right;
- width: 50%;
- margin: 0 auto;
- color: #b10808;
- font-size: 24px;
- }
- ._imgbox img {
- width: 168px;
- height: 110px;
- }
- .m-r a {
- display: block;
- width: 100%;
- color: #666;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- cursor: pointer;
- }
- .m-r .new_imga{
- height: 20px;
- line-height: 20px;
- text-align: center;
- margin-top: 5px;
- margin-bottom: 10px;
- }
- /*头部*/
- .topbar {
- padding: 5px 0;
- background-color: #e2e2e2;
- }
- .container {
- width: 1246px;
- font-size: 14px;
- }
- .Right_f li {
- display: inline-block;
- padding-left: 5px;
- padding-right: 5px;
- }
- .Right_f img {
- vertical-align: middle;
- }
- .Right_f .weibo {
- vertical-align: middle;
- margin-left: -6px;
- line-height: 18px;
- width: 22px;
- height: 18px;
- display: inline-block;
- background: url(../img/sidebar-icons.jpg) 0 -2px no-repeat;
- }
- .container ul li a {
- color: #5d5d5d;
- }
- .container ul li a:hover {
- color: #00a1cb;
- }
- .headbar {
- height: 120px;
- background-color: #fff;
- border-bottom: 1px solid #ddd;
- }
- .brand {
- margin-top: 20px;
- width: 50%;
- margin-left: 30px;
- }
- .headbar .Right_nav{
- margin-top: 34px;
- width: 43%;
- }
- .Right_nav li{
- display: inline-block;
- height: 25px;
- padding-left: 30px;
- padding-right: 30px;
- line-height: 25px;
- position: relative;
- }
- .Right_nav li::after{
- content: "";
- position: absolute;
- top: 0px;
- height: 50px;
- width: 1px;
- right: 0;
- background-color: #7ec5d7;
- }
- .Right_nav li:nth-of-type(5):after {
- width: 0;
- }
- .container .Right_nav li a{
- color: #8a8686;
- width: 36px;
- font-size: 16px;
- display: inline-block;
- }
- .container .Right_nav li a:hover{
- color: #00a1cb;
- }
- .container .Right_nav li a.active{
- color: #00a1cb;
- }
- .nav-justified {
- width: 100%;
- }
- .nav-justified>li>a {
- display: block;
- font-size: 18px;
- color: #fff;
- /*font-weight: bold;
- border-left: 1px solid #00b5e4;*/
- padding: 15px 0;
- }
- #navcon_box li{
- width: 14.28571428571429%;
- float: left;
-
- }
- #navcon_box li a{
- display: block;
- font-size: 18px;
- color: #fff;
- /*font-weight: bold;
- border-left: 1px solid #00b5e4;*/
- padding: 15px 0;
- text-align: center;
- position: relative;
- }
- #navcon_box li a:before{
- content: "";
- position: absolute;
- width: 1px;
- height: 25px;
- background: #c58d8f;
- right: 0;
- top: 14px;
-
- }
- #navcon_box .navLast a:before{
- width: 0;
- height: 0;
- }
- .dongTaiTitle{
- font-size: 26px;
- color: #f5821b;
- font-weight: 500;
- width: 95%;
- text-align: center;
- margin: 15px auto;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- font-family: "黑体";
- }
- .new_listBox{
- font-family: "仿宋";
- color: #757575;
- font-size: 19px;
- text-indent: 38px;
- position: relative;
- overflow: hidden;
- line-height: 20px;
- max-height: 40px;
- }
- .otherTitle{
- background: #cc0014;
- color: #fff;
- font-size: 24px;
- padding: 13px 0 9px 18px;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
- }
- .otherCon{
- background: #f4e9e7;
- padding: 23px 0 43px 0;
- }
- .otherCon div p{
- display: inline-block;
- text-align: center;
- width: 30%;
- }
- .otherCon div.secondDiv{
- margin-top: 40px;
- padding-left: 20%;
- }
- .otherCon div p img{
- display: block;
- margin: 0 auto 15px auto;
- }
- .carouselTitle{
- background: #CC0014;
- padding: 11px 0 11px 15px;
- border-top-left-radius: 15px;
- border-top-right-radius: 15px;
- font-size: 24px;
- color: #fff;
- }
- .carouselCon{
- height: 200px;
- border: 1px solid #ea99c8;
- border-top: 0;
- margin-bottom: 20px;
- padding-top: 25px;
- }
- .GZ li {
- list-style: none;
- margin-bottom: 8px;
- }
- .GZ li span{
- display: inline-block;
- width: 7px;
- height: 7px;
- border-radius: 10px;
- background: #ff7b00;
- margin-right: 7px;
-
- }
- /*.MQ li a{
- color: #86898a;
- }*/
- .MQ li{
- padding: 6px 0;
- }
- .MQ li.active {
- background: #eeeeee!important;
- }
- .ms_new_listBox{
- border-top: 3px solid #cd1c1e;
- }
- .TG li{
- padding: 2px 0;
- }
- .searchTitle{
- width: 100%;
- background: #f0ece1;
- color: #a74f4f;
- font-size: 24px;
- padding: 6px 0;
- text-align: center;
- border-top-left-radius: 10px;
- border-top-right-radius: 10px;
- }
- .searchTitle i{
- display: inline-block;
- height: 26px;
- width: 26px;
- background: url(../img/searchIcon.png) no-repeat center;
- vertical-align: middle;
- }
- .searchCon{
- background: #f3e8cf;
- padding: 20px 0;
- }
- .searchCon p {
- padding: 15px 0;
- text-align: center;
- }
- .searchCon input{
- width: 80%;
- margin: 0 auto;
- box-shadow: -1px -4px 8px #968f8f;
- }
- .searchCon p button{
- background: #ff9456;
- border: 0;
- height: 54px;
- width: 169px;
- font-size: 22px;
- }
- .nav-justified>li:first-child>a {
- border-left: 0;
- }
- .nav>li>a:focus,
- .nav>li>a:hover {
- text-decoration: none;
- background-color: #c12729;
- }
- .btn-primary {
- color: #ffffff;
- background-color: #00a1cb;
- border-color: transparent;
- }
- .btn {
- display: inline-block;
- margin-bottom: 0;
- font-weight: normal;
- text-align: center;
- vertical-align: middle;
- touch-action: manipulation;
- cursor: pointer;
- background-image: none;
- border: 1px solid transparent;
- white-space: nowrap;
- padding: 6px 25px;
- font-size: 14px;
- line-height: 1.42857143;
- border-radius: 0;
- }
- .bg-default {
- background-color: #f5f5f5;
- text-align: right;
- }
- #searchx {
- outline: none;
- box-shadow: none !important;
- background-color: transparent !important;
- padding: 6px 12px;
- font-size: 14px;
- line-height: 1.42857143;
- color: #777777;
- background-color: #ffffff;
- background-image: none;
- border: 1px solid #fff;
- border-radius: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
- }
- .input-group-addon {
- position: relative;
- right: -12px;
- border: none!important;
- background: #f5f5f5!important;
- padding: 6px 12px;
- font-size: 14px;
- font-weight: normal;
- line-height: 1;
- color: #777777;
- text-align: center;
- background-color: #ffffff;
- border: 1px solid #cccccc;
- border-radius: 0;
- }
- ::-webkit-input-placeholder {
- /* WebKit browsers */
- color: #ccc!important;
- }
- :-moz-placeholder {
- /* Mozilla Firefox 4 to 18 */
- color: #ccc!important;
- opacity: 1;
- }
- ::-moz-placeholder {
- /* Mozilla Firefox 19+ */
- color: #ccc!important;
- opacity: 1;
- }
- :-ms-input-placeholder {
- /* Internet Explorer 10+ */
- color: #ccc!important;
- }
- .seach_img {
- background: url(../img/search.png)no-repeat;
- width: 20px;
- height: 20px;
- display: block;
- }
- .actives {
- /*background: #00B5e4;*/
- background: #c1282a;
- }
- .imgs a {
- color: #000000!important;
- display: block;
- }
- .imgs a:hover {
- color: #00b5e4!important;
- }
- ._imgbox img {
- width: 168px;
- height: 110px;
- }
- .Sl {
- text-align: center;
- padding: 10px;
- }
- .Sl li {
- width: 50%;
- float: left;
- }
- .btn {
- text-align: center;
- background: #00b5e4;
- color: #fff;
- border-radius: 3px;
- margin: 0 auto;
- outline: none;
- border-color: #00b5e4;
- }
- .box-show {
- cursor: pointer;
- opacity: 0.5;
- }
- .new_imga:hover {
- color: #00b5e4!important;
- }
- /*分界图片1*/
- .img-boundary{
- margin-bottom: 10px;
- margin-left: 0;
- padding-left:0;
- padding-right: 0;
- }
- .img-boundary li{
- float: left;
- width: 19%;
- height: 60px;
- margin-right: 1%;
- }
- .img-boundary li:nth-of-type(5){
- margin-right: 0;
- }
- /*实时统计*/
- .content_foot{
- padding: 10px;
- }
- /*.left-statistics,
- .right-statistics{
- margin: 20px;
- width: 40%;
- }*/
- .left-statistics{
- position: relative;
- width: 100%;
- padding-left: 10px;
- padding-top: 5px;
- }
- .left-statistics p,
- .right-statistics p{
- margin-bottom: 20px;
- }
- .left-statistics p:nth-of-type(1){
- margin-bottom: 10px;
- }
- .left-statistics span,
- .right-statistics span{
- color: #626262;
- font-size: 14px;
- }
- .left-statistics p span:nth-of-type(1),
- .left-statistics p span:nth-of-type(4),
- .right-statistics p span:nth-of-type(1){
- color: #616161;
- font-weight: bold;
- font-size: 16px;
- }
- .left-statistics .CountBox .Count_title{
- color: #616161;
- font-weight: bold;
- font-size: 16px;
- }
- .left-statistics .CountBox #jrtotalCount,.left-statistics .CountBox #totalCount,.left-statistics .CountBox #jrtotalCountJ{
- color: #bd261f;
- font-weight: bold;
- font-size: 16px;
- }
- .left-statistics p span:nth-of-type(2),
- .left-statistics p span:nth-of-type(5),
- .right-statistics p span:nth-of-type(2){
- color: #bd261f;
- font-weight: bold;
- font-size: 16px;
- }
- .statistics-content li{
- float: left;
- position: relative;
- height: 40px;
- margin-bottom: 10px;
- width: 25%;
- }
- .statistics-content li span:nth-of-type(1){
- padding-left: 24px;
- padding-right: 10px;
- }
- .statistics-content li span.fspan{
- padding-left: 24px;
- padding-right: 10px;
- }
- .statistics-content li span.tspan{
- position: absolute;
- color: #049ad9;
- font-weight: bold;
- width: 94px;
- display: inline-block;
- text-align: center;
- left: 0;
- top: 24px;
- }
- .statistics-content li span:nth-of-type(2){
- position: absolute;
- color: #049ad9;
- font-weight: bold;
- width: 94px;
- display: inline-block;
- text-align: center;
- left: 0;
- top: 24px;
- }
- .left-statistics .statistics-content li .grayColor{
- color: #b3b3b3;
- }
- .statistics-icon{
- width: 22px;
- height: 19px;
- display: inline-block;
- background: url(../img/sidebar-icons.jpg) no-repeat left top;
- position: absolute;
- top: 2px;
- }
- .statistics-icon-1{
- background-position: -93px 0;
- }
- .statistics-icon-2{
- height: 13px;
- line-height: 13px;
- background-position: -93px -17px;
- }
- .statistics-icon-3{
- background-position: -93px -30px;
- }
- .statistics-icon-4{
- height: 16px;
- line-height: 16px;
- background-position: -93px -47px;
- }
- .statistics-icon-5{
- height: 16px;
- line-height: 16px;
- background-position: -92px -63px;
- }
- .statistics-icon-6{
- background-position: -93px -79px;
- }
- .statistics-icon-7{
- background-position: -93px -97px;
- }
- /*商丘简介*/
- .introduction{
- margin-bottom: 10px;
- margin-left: 0;
- padding-left:0;
- padding-right: 0;
- }
- .introduction-left{
- width: 26%;
- padding-left: 10px;
- margin-right: 15px;
- margin-top: 30px;
- }
- .introduction-left span{
- float: left;
- width: 112px;
- height: 42px;
- text-align: center;
- line-height: 42px;
- font-size: 42px;
- font-weight: bold;
- text-indent: 0.5em;
- color: #00a1cb;
- }
- .introduction-left p{
- color: #626262;
- line-height: 26px;
- }
- .introduction-left p:not(:nth-of-type(1)){
- text-indent: 2em;
- }
- .introduction-right{
- width: 70%;
- }
- .introduction-right ul{
- font-size: 0;
- }
- .introduction-right li{
- display: inline-block;
- position: relative;
- width: 33.333%;
-
- }
- .introduction-right li:nth-of-type(1){
- background-color: #4dabdc;
- }
- .introduction-right li:nth-of-type(2){
-
- background-color: #2acfdf;
- }
- .introduction-right li:nth-of-type(3){
- background-color: #86af5d;
- }
- .introduction-right li span{
- display: inline-block;
- height: 52px;
- line-height: 52px;
- color: #fff;
- font-size: 24px;
- padding-left: 16px;
- }
- .introduction-right .statistics-icon{
- width: 26px;
- height: 30px;
- right: 10px;
- top: 10px;
- background: url(../img/statistics-icon.png) left top no-repeat;
- background-position: 0 -74px;
- }
- .introduction-right li img{
- display: block;
- width: 100%;
- height: 324px;
- }
- .Content+hr{
- margin-top: 0;
- }
- /*footerbar*/
- .footerbar{
- margin-bottom: 8px;
- padding-right: 0;
- padding-left: 0;
- }
- .footerbar ul{
- width: 97%;
- margin: 18px auto;
- }
- .footerbar dt{
- font-weight: normal;
- }
- .footerbar dt,
- .footerbar dd{
- padding-top: 8px;
- padding-bottom: 8px;
- }
- .footerbar ul li dl a{
- color: #4d4d4d;
- }
- .footerbar ul li dl a:hover{
- color: #7ec5d7;
- }
- .footerbar ul li dl dt a{
- font-size: 16px;
- }
- .footerbar ul li dl dd a{
- font-size: 14px;
- }
- .footerbar li{
- float: left;
- margin-left: 80px;
- margin-right: 80px;
- }
- .layui-layer-title{
- background-color: #00a1cb !important;
- }
- .layui-layer-btn .layui-layer-btn0{
- border-color: #00a1cb !important;
- background-color: #00a1cb !important;
- }
- .bannerContainer {
- width: 1246px;
- margin: 0 auto;
- overflow: hidden;
- }
- .bannerContainer img{
- width: 100%;
- height: 100%;
- display: block;
- font-size: 0;
- text-align: center;
- }
- @media only screen and (max-width: 1920px) {
- /*.Content {
- min-height: 549px;/*1920屏幕下*/
- }*/
- .bannerContainer {
- height: 136px;
- }
- }
- @media only screen and (max-width: 1366px) {
- .Content {
- min-height: 220px;/*1366屏幕下*/
- }
- /*.bannerContainer {
- height: 136px;
- }*/
- }
- /*侧栏*/
- .elevator {
- position: fixed;
- width: 80px;
- bottom: 0;
- margin-top: -140px;
- right: 0px;
- z-index: 999;
- background-color: #fff;
- box-shadow: 0 4px 12px 0 rgba(7,17,27,.1);
- background-size: cover;
- _position: absolute;
- _bottom: "auto";
- right/*\**/: 20px\9;
- }
- .elevator .elevator-title{
- width: 100%;
- display: block;
- background-color: #e60111;
- color: #fff;
- text-align: center;
- margin-bottom: 10px;
- font-size: 13px;
- height: 20px;
- line-height: 20px;
- }
- .elevator a {
- display: block;
- box-sizing: border-box;
- text-align: center;
- padding: 10px 0;
- border: 1px solid #fff;
- font-size: 22px;
- color: #fff;
- background-color: #848484;
- }
- .elevator a i {
- line-height: 38px;
- width: 38px;
- height: 38px;
- display: block;
- margin: 0 auto;
- margin-bottom: -10px;
- background: url(../img/sidebar-icons.jpg) no-repeat;
- }
- .elevator a i.icon-lineChat {
- background: url(../img/lineChat.png) no-repeat;
- }
- .elevator .icon-wxgzh{
- background-position: 0 -22px;
- }
- .elevator .icon-xlwb{
- background-position: 0 -61px;
- }
- .elevator .icon-appdownload{
- background-position: 0 -97px;
- }
- .elevator .icon-up2{
- background-position: 0 -136px;
- }
- .elevator a span {
- font-size: 12px;
- color: #fff;
- line-height: 12px;
- }
- .elevator a:hover{
- background-color: #83d1f4;
- }
- .elevator .no-goto,
- .elevator .elevator-app{
- border-bottom: none;
- width: 80px;
- }
- .elevator-weixin:hover .elevator-weixin-box{
- opacity: 1;
- filter: alpha(opacity=100);
- -webkit-transform: scale(1);
- transform: scale(1);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- top: 30px;
- }
- .elevator-weixin:hover .elevator-xlwb-box{
- opacity: 1;
- filter: alpha(opacity=100);
- -webkit-transform: scale(1);
- transform: scale(1);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- top: 110px;
- }
- .elevator-app:hover .elevator-app-box{
- opacity: 1;
- filter: alpha(opacity=100);
- -webkit-transform: scale(1);
- transform: scale(1);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- top: 110px;
- }
- .elevator .elevator-weixin-box,
- .elevator .elevator-xlwb-box,
- .elevator .elevator-app-box,
- .topbarWx .topbarWx-box,
- .topbarClient .topbarClient-box{
- position: absolute;
- width: 150px;
- box-sizing: border-box;
- border: 1px solid #EBEBEB;
- background-color: #fff;
- right: 80px;
- padding: 18px 0 13px 0;
- -webkit-transition: all .3s ease-in-out;
- -moz-transition: all .3s ease-in-out;;
- transition: all .3s ease-in-out;
- opacity: 0;
- filter: alpha(opacity=0);
- -webkit-transform: scale(.01);
- transform: scale(.01);
- -webkit-transform-origin: 100% 95%;
- transform-origin: 100% 95%;
- }
- .elevator a .elevator-weixin-code,
- .elevator a .elevator-xlwb-code,
- .topbarWx-box .topbarWx-code
- {
- width: 108px;
- height: 108px;
- line-height: 108px;
- display: block;
- margin: 0 auto;
- background: url(../img/qrc2.jpg) no-repeat;
- background-size: 108px 108px;
- }
- .elevator a #elevator-app-qrcode,
- .topbarClient-box #elevator-app-qrcode0{
- width: 108px;
- height: 108px;
- line-height: 108px;
- display: block;
- margin: 0 auto;
- }
- /* .elevator a .elevator-weixin-code,
- .topbarWx-box .topbarWx-code{
- background-position: -2px -179px;
- } */
- .elevator a .elevator-xlwb-code{
- background-position: -2px -292px;;
- }
- .elevator .elevator-weixin-box span,
- .elevator .elevator-xlwb-box span,
- .elevator .elevator-app-box span,
- .topbarWx-box span,
- .topbarClient span{
- color: #6c6c6c;
- font-size: 14px;
- }
- /*顶部微信公众号添加二维码*/
- .topbarWx:hover .topbarWx-box{
- opacity: 1;
- filter: alpha(opacity= 100);
- -webkit-transform: scale(1);
- transform: scale(1);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- top: 30px;
- }
- .topbarClient:hover .topbarClient-box{
- opacity: 1;
- filter: alpha(opacity= 100);
- -webkit-transform: scale(1);
- transform: scale(1);
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- top: 30px;
- }
- .topbarWx .topbarWx-box{
- text-align: center;
- right: 23%;
- top: -178px;
- z-index: 99999;
- }
- .topbarWx-box span,
- .topbarClient-box span{
- display: inline-block;
- padding-top: 7px;
- }
- .topbarClient .topbarClient-box{
- text-align: center;
- right:16%;
- top: -178px;
- z-index: 99999;
- }
- /*新增样式*/
- #jobTypeBar{
- display: none;
- }
- /*底部样式*/
- #_ideConac a{
- display: block;
- }
- #_ideConac a img{
- display: block;
- margin: 0 auto;
- }
- .footerBot{
- width: 100%;
- background: #a22100;
- }
|