123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235 |
- @charset 'UTF-8';
- html {
- overflow-x: auto;
- overflow-y: auto;
- }
- * {
- padding: 0;
- margin: 0;
- outline: none !important;
- }
- ul,
- ol,
- li {
- list-style-type: none;
- }
- body,
- button,
- input,
- select,
- textarea {
- font-family: 'Microsoft yahei';
- font-size: 12px;
- }
- code,
- kbd,
- pre,
- samp {
- font-family: 'Microsoft yahei';
- }
- a {
- text-decoration: none;
- color: #333;
- cursor: pointer;
- -webkit-transition: all 0.2s ease-out 0s;
- -moz-transition: all 0.2s ease-out 0s;
- -o-transition: all 0.2s ease-out 0s;
- transition: all 0.2s ease-out 0s;
- }
- img {
- border: 0;
- max-width: 100%;
- max-height: 100%;
- vertical-align: middle;
- }
- li {
- line-height: normal;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- margin: 0;
- font-weight: normal;
- font-family: 'Microsoft yahei';
- }
- input,
- table,
- tr,
- td {
- margin: 0;
- padding: 0;
- border: none;
- }
- button,
- table {
- border: none;
- background: none;
- margin: 0;
- padding: 0;
- }
- body {
- position: relative;
- float: left;
- width: 100%;
- overflow: hidden;
- }
- select {
- margin: 0;
- padding: 0;
- font-family: 'Microsoft yahei';
- border: none;
- }
- textarea {
- resize: none;
- outline: none;
- }
- label {
- margin-bottom: 0;
- font-weight: normal;
- }
- input,
- select,
- textarea {
- margin: 0;
- padding: 0;
- border: 0;
- outline: none;
- -moz-border-radius: 0px;
- -webkit-border-radius: 0;
- -khtml-border-radius: 0;
- border-radius: 0;
- }
- p {
- margin: 0 !important;
- }
- .textOver {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .pz_top {
- float: left;
- width: 100%;
- min-width: 1200px;
- z-index: 101;
- position: relative;
- }
- .pz_banner {
- float: left;
- width: 100%;
- min-width: 1200px;
- position: relative;
- overflow: hidden;
- }
- .pz_main {
- float: left;
- width: 100%;
- min-width: 1200px;
- position: relative;
- }
- .pz_down {
- float: left;
- width: 100%;
- min-width: 1200px;
- }
- .pz_menu {
- float: left;
- width: 100%;
- min-width: 1200px;
- }
- .w_0100 {
- float: left;
- width: 100%;
- }
- .w_1200 {
- margin: 0 auto;
- width: 1200px;
- }
- /* 直播大厅开始*/
- .livetop {
- width: 100%;
- height: 487px;
- overflow: hidden;
- background-image: url(../images/top_3.png);
- }
- .livetop .title {
- text-align: center;
- color: #fff;
- font-size: 45px;
- position: relative;
- top: 65px;
- }
- .livetop .zhuban {
- position: relative;
- top: 140px;
- color: #fff;
- text-align: center;
- width: 100%;
- font-size: 25px;
- }
- .livetop .zhuban span:first-child {
- font-weight: bold;
- }
- .livetop .num {
- position: relative;
- top: 190px;
- color: #fff;
- }
- .livetop .num p {
- float: left;
- width: 186px;
- background: #fff;
- margin: 0 14px 0 0 !important;
- color: #000;
- height: 50px;
- line-height: 50px;
- border-radius: 30px;
- }
- .livetop .num p:last-child {
- margin: 0;
- }
- .livetop .num p span:first-child {
- display: inline-block;
- width: 93px;
- text-align: center;
- height: 50px;
- line-height: 50px;
- font-size: 16px;
- background: red;
- border-radius: 30px;
- color: #fff;
- font-weight: bold;
- }
- .livetop .num p span:last-child {
- display: inline-block;
- width: 89px;
- text-align: center;
- font-size: 15px;
- font-weight: bold;
- }
- .livemain {
- position: relative;
- top: -55px;
- z-index: 999;
- }
- .livemain .livevideo {
- height: 470px;
- overflow: hidden;
- margin: 0 0 15px 0;
- }
- .livemain .livevideo .left {
- float: left;
- width: 50%;
- height: 460px;
- overflow: hidden;
- border: 5px solid #000000;
- background: #fff;
- border-radius: 5px;
- }
- .livemain .livevideo .left .title {
- padding: 0 10px;
- height: 40px;
- line-height: 40px;
- font-size: 20px;
- font-weight: bold;
- }
- .livemain .livevideo .left .video {
- height: 410px;
- margin: 0 10px 10px 10px;
- border: 2px solid #ccc;
- }
- .livemain .livevideo .right {
- height: 460px;
- overflow: hidden;
- background-color: #B22C2C;
- border-top-left-radius: 5px;
- border-bottom-left-radius: 5px;
- }
- .livemain .livevideo .right p {
- height: 40px;
- line-height: 40px;
- padding: 0 10px;
- }
- .livemain .livevideo .right p span {
- display: inline-block;
- padding: 0 10px;
- color: #fff;
- font-size: 18px;
- font-weight: bold;
- }
- .livemain .livevideo .right .videoTitle ul li {
- height: 40px;
- line-height: 40px;
- font-size: 14px;
- color: #fff;
- border-bottom: 1px solid yellow;
- padding: 0 0 0 10px;
- margin: 0 20px;
- }
- .livemain .livevideo .right .videoTitle ul li:nth-child(2n) {
- background-color: #8e2323;
- }
- .livemain .livevideo .right .videoTitle ul li span {
- margin: 0 20px 0 0;
- }
- .livemain .livevideo .right .videoTitle ul li span:first-child {
- color: #FFFF00;
- }
- .livemain .livevideo .right .videoTitle ul li span:last-child {
- margin: 0;
- }
- .livemain .liveMainImage {
- height: 140px;
- overflow: hidden;
- margin: 0 0 15px 0;
- }
- .livemain .gongqiu {
- width: 100%;
- min-height: 100px;
- overflow: hidden;
- margin: 0 0 10px 0;
- }
- .livemain .gongqiu .gongqiuTop {
- height: 125px;
- overflow: hidden;
- }
- .livemain .gongqiu .gongqiuInfo {
- height: 498px;
- overflow: hidden;
- }
- .livemain .gongqiu .gongqiuInfo:hover #tab .tabCon {
- box-shadow: 0px 0px 10px #ed6941;
- }
- .livemain .gongqiu .gongqiuInfo .tabList {
- float: left;
- height: 40px;
- line-height: 40px;
- border-bottom: 1px solid #ccc;
- width: 1169px;
- margin: 0 15px;
- }
- .livemain .gongqiu .gongqiuInfo #tab {
- position: relative;
- }
- .livemain .gongqiu .gongqiuInfo #tab .tabList ul li {
- float: left;
- width: 80px;
- height: 38px;
- text-align: center;
- font-size: 20px;
- color: #005293;
- margin: 0 20px 0 0;
- }
- .livemain .gongqiu .gongqiuInfo #tab .tabCon {
- position: absolute;
- top: 50px;
- width: 1170px;
- height: 435px;
- margin: 0 15px;
- box-shadow: 0px 0px 10px #aaa;
- overflow: hidden;
- }
- .livemain .gongqiu .gongqiuInfo #tab .tabCon div {
- position: absolute;
- opacity: 0;
- filter: alpha(opacity=0);
- }
- .livemain .gongqiu .gongqiuInfo #tab .tabList li.cur {
- border-bottom: 3px solid#005293;
- }
- .livemain .gongqiu .gongqiuInfo #tab .tabCon div.cur {
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .livemain .gongqiu #tab .tabCon div {
- position: absolute;
- opacity: 0;
- filter: alpha(opacity=0);
- }
- .livemain .gongqiu #tab .tabList li.cur {
- border-bottom: 3px solid#005293;
- }
- .livemain .gongqiu #tab .tabCon div.cur {
- opacity: 1;
- filter: alpha(opacity=100);
- }
- .tabConList {
- width: 100%;
- }
- .cur_1 {
- width: 100%;
- }
- .gongqiuInfo .oneLi {
- float: left;
- width: 1168px;
- border-bottom: 1px solid #ccc;
- }
- .gongqiuInfo .oneLi .oneLiLeft {
- float: left;
- width: 55%;
- padding: 10px;
- margin: 0 0 10px 0 !important;
- }
- .gongqiuInfo .oneLi .oneLiLeft .name {
- width: 100%;
- display: inline-block;
- font-size: 18px;
- padding: 8px 0 0 0;
- }
- .gongqiuInfo .oneLi .oneLiLeft .user {
- width: 49%;
- display: inline-block;
- font-size: 16px;
- padding: 10px 0;
- }
- .gongqiuInfo .oneLi .oneLiLeft .type {
- width: 24%;
- display: inline-block;
- font-size: 16px;
- padding: 10px 0;
- }
- .gongqiuInfo .oneLi .oneLiRight {
- float: left;
- width: 41%;
- padding: 5px;
- border: 1px solid red;
- margin: 11px 15px !important;
- }
- .gongqiuInfo .oneLi .oneLiRight span {
- background: #FFF8FD;
- display: inline-block;
- color: #1b1b1b;
- line-height: 30px;
- font-size: 14px;
- padding: 5px 15px;
- }
- .gongqiuInfo .twoLi {
- float: left;
- width: 585px;
- padding: 29px 20px;
- border-bottom: 1px solid #ccc;
- }
- .gongqiuInfo .twoLi:hover {
- background: #f5f5f5;
- }
- .gongqiuInfo .twoLi:hover p:first-child {
- color: red;
- }
- .gongqiuInfo .twoLi p:first-child {
- font-size: 18px;
- color: #005293;
- font-weight: bold;
- }
- .gongqiuInfo .twoLi p:nth-child(2n) {
- padding: 10px 0;
- color: #333;
- }
- .gongqiuInfo .twoLi p:nth-child(2n) span {
- display: inline-block;
- width: 60%;
- font-size: 16px;
- }
- .gongqiuInfo .twoLi p:nth-child(2n) span:last-child {
- width: 39%;
- }
- .gongqiuInfo .twoLi p:last-child {
- font-size: 16px;
- color: #333;
- }
- .gongqiuInfo .twoLi p:last-child span {
- display: inline-block;
- width: 60%;
- font-size: 16px;
- }
- .gongqiuInfo .twoLi p:last-child span:last-child {
- width: 39%;
- }
- .gongqiuInfo .threeLi {
- width: 350px;
- float: left;
- margin: 10px 0 0 30px;
- border: 1px solid #ccc;
- }
- .gongqiuInfo .threeLi:hover {
- box-shadow: 0 0 10px #ccc;
- }
- .gongqiuInfo .threeLi p:first-child {
- font-size: 18px;
- padding: 10px;
- }
- .gongqiuInfo .threeLi p:nth-child(2n) img {
- float: left;
- width: 100px;
- height: 100px;
- margin: 10px;
- }
- .gongqiuInfo .threeLi p:nth-child(2n) button {
- float: left;
- width: 28%;
- border: 1px solid #ddd;
- height: 25px;
- color: #39c;
- margin: 0 0 0 15px;
- }
- .gongqiuInfo .threeLi p:nth-child(2n) span {
- float: left;
- width: 65%;
- padding: 15px 0 15px 20px;
- }
- .gongqiuInfo .threeLi p:nth-child(2n) .type {
- padding: 0 0 0 20px;
- color: darkorange;
- font-weight: bold;
- font-size: 16px;
- }
- .gongqiuInfo .threeLi p:last-child {
- font-size: 16px;
- }
- .gongqiuInfo .threeLi a {
- font-size: 16px;
- float: left;
- width: 100%;
- padding: 9px 0;
- text-align: center;
- color: #fff;
- background: orangered;
- }
- .gongqiuInfo .fourLi {
- float: left;
- width: 565px;
- border: 1px solid #ccc;
- margin: 10px;
- padding: 11px 0;
- }
- .gongqiuInfo .fourLi:hover {
- border: 1px solid yellowgreen;
- box-shadow: 0 0 5px yellowgreen;
- }
- .gongqiuInfo .fourLi img {
- width: 100px;
- height: 100px;
- border-radius: 90px;
- float: left;
- }
- .gongqiuInfo .fourLi p {
- float: left;
- width: 82%;
- padding: 5px 0 7px 0;
- font-size: 16px;
- }
- .gongqiuInfo .fourLi p .name {
- font-weight: bold;
- display: inline-block;
- width: 65%;
- }
- .fangtan {
- height: 560px;
- overflow: hidden;
- }
- .fangtan .jiabin {
- float: left;
- width: 400px;
- border-radius: 5px;
- box-shadow: 0 0 5px #ccc;
- padding: 0 10px 0px 10px;
- margin: 4px 15px 0 3px;
- ;
- }
- .jiabin .jiabintop {
- height: 30px;
- line-height: 30px;
- }
- .jiabin .jiabintop span {
- display: inline-block;
- padding: 0 10px;
- height: 30px;
- color: #fff;
- background-color: red;
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
- }
- .jiabin .jiabintop a {
- float: right;
- }
- .jiabin .jiabinlist ul li {
- float: left;
- width: 100%;
- border-bottom: 1px dashed #ccc;
- padding: 9px 0;
- }
- .jiabin .jiabinlist ul li:hover p span:first-child {
- color: #0e90d2;
- }
- .jiabin .jiabinlist ul li img {
- float: left;
- width: 100px;
- height: 100px;
- }
- .jiabin .jiabinlist ul li p {
- float: left;
- width: 73%;
- padding: 0 0 0 10px;
- }
- .jiabin .jiabinlist ul li p span:first-child {
- float: left;
- width: 100%;
- font-size: 18px;
- }
- .jiabin .jiabinlist ul li p span:nth-child(2n) {
- float: left;
- width: 100%;
- font-size: 14px;
- padding: 5px 0;
- }
- .jiabin .jiabinlist ul li p span:last-child {
- float: left;
- width: 100%;
- font-size: 14px;
- color: #888;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 3;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- .fangtan .luyan {
- float: left;
- width: 400px;
- border-radius: 5px;
- box-shadow: 0 0 5px #ccc;
- padding: 0 10px 0px 10px;
- margin: 4px 15px 0 3px;
- }
- .luyanList {
- padding: 10px 0 0 0;
- }
- .luyanList ul li {
- float: left;
- border: 1px solid #ccc;
- border-radius: 10px;
- padding: 5px 10px;
- margin: 0 0 7px 0;
- }
- .luyanList ul li:hover {
- box-shadow: 0 0 5px red;
- }
- .luyanList ul li p:first-child span:first-child {
- font-size: 18px;
- float: left;
- width: 80%;
- }
- .luyanList ul li p:first-child span:last-child {
- float: left;
- width: 20%;
- color: #999;
- }
- .luyanList ul li p:last-child span {
- float: left;
- width: 100%;
- padding: 5px 0;
- font-size: 14px;
- color: #666;
- }
- .fangtan .chat {
- float: left;
- width: 358px;
- height: 545px;
- border-radius: 5px;
- box-shadow: 0 0 5px #ccc;
- padding: 0 10px 0px 10px;
- margin: 4px 0px 0 3px;
- }
- .chat .luyanTop {
- height: 30px;
- line-height: 30px;
- }
- .chat .luyanTop span:first-child {
- display: inline-block;
- padding: 0 10px;
- height: 30px;
- color: #fff;
- background-color: red;
- border-bottom-left-radius: 10px;
- border-bottom-right-radius: 10px;
- }
- .chat .luyanTop .icon {
- float: right;
- background: #f2f4f5;
- border-radius: 20px;
- color: #666;
- padding: 0 5px;
- margin: 0 0 0 5px;
- }
- .chat .luyanTop .icon {
- cursor: pointer;
- }
- .chat .chatList {
- height: 505px;
- background: #fff;
- }
- .chat .chatList ul {
- float: left;
- width: 100%;
- height: 454px;
- padding: 5px 0 0 0;
- overflow: auto;
- margin: 10px 0 0 0;
- }
- .chat .chatList ul li {
- padding: 0 10px;
- margin: 0 0 5px 0;
- }
- .chat .chatList ul li span:first-child {
- color: #666;
- padding: 0 5px 0 0;
- }
- .chat .chatList .input {
- height: 40px;
- line-height: 40px;
- float: left;
- width: 100%;
- }
- .chat .chatList .input input {
- border: 1px solid #ccc;
- float: left;
- width: 80%;
- }
- .chat .chatList .input button {
- float: left;
- background: forestgreen;
- color: #fff;
- height: 42px;
- width: 67px;
- }
- /* 直播大厅结束*/
- /* 科技超市开始 */
- .superbanner {
- position: relative;
- height: 250px;
- overflow: hidden;
- }
- .superbanner img {
- width: 100%;
- height: 250px;
- overflow: hidden;
- }
- .supertop {
- position: absolute;
- top: 0;
- height: 40px;
- width: 100%;
- color: #fff;
- background: #2152991f;
- }
- .supertop p:first-child {
- float: left;
- height: 40px;
- line-height: 40px;
- font-size: 16px;
- }
- .supertop p:last-child {
- float: right;
- height: 40px;
- line-height: 40px;
- font-size: 20px;
- color: #000;
- font-weight: bold;
- font-family: cursive;
- }
- .supertop p:last-child button {
- color: #fff;
- }
- .superlogo {
- position: absolute;
- top: 40px;
- width: 100%;
- padding: 50px 0 0 0;
- }
- .superlogo img {
- width: 76px;
- height: 64px;
- overflow: hidden;
- }
- .superlogo span {
- color: #2d64b3;
- font-size: 36px;
- font-family: cursive;
- text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
- font-weight: 600;
- position: relative;
- top: 10px;
- padding: 0 0 0 10px;
- }
- .supermenu {
- position: absolute;
- bottom: 0;
- width: 100%;
- height: 50px;
- }
- .supermenu .info {
- height: 50px;
- line-height: 50px;
- background: #0085d2;
- }
- .supermenu .info ul li {
- float: left;
- height: 50px;
- line-height: 50px;
- padding: 0 82px;
- font-size: 20px;
- border-right: 1px solid #76bdfe;
- }
- .supermenu .info ul .active {
- background-color: #fe950e;
- }
- .supermenu .info ul li a {
- color: #fff;
- }
- .supermenu .info ul li:last-child {
- border-right: 0;
- padding: 0 70px;
- }
- /* 科技超市主体开始 */
- .supermain {}
- .supermain .superOne {
- float: left;
- width: 570px;
- height: 500px;
- overflow: hidden;
- margin: 20px 30px 20px 0;
- box-shadow: 0 0 5px #0085D2;
- border-radius: 10px;
- background: #FFFFFF;
- }
- .supermain .superOne .superOneTop {
- font-size: 18px;
- line-height: 40px;
- color: #005293;
- margin: 0 10px;
- border-bottom: 1px dashed #ccc;
- }
- .supermain .superOne .superOneTop .more {
- float: right;
- margin: 0 10px;
- }
- .supermain .superOne .superoneInfo ul li {
- float: left;
- width: 97%;
- padding: 15px 10px 10px 10px;
- }
- .supermain .superOne .superoneInfo ul li:hover {
- cursor: pointer;
- }
- .supermain .superOne .superoneInfo ul li:hover p:first-child {
- color: #005293;
- font-weight: bold;
- }
- .supermain .superOne .superoneInfo ul li:hover p:first-child span:last-child {
- color: #005293;
- font-weight: bold;
- }
- .supermain .superOne .superoneInfo ul li p:first-child {
- font-size: 18px;
- }
- .supermain .superOne .superoneInfo ul li p:first-child span:first-child {
- display: inline-block;
- width: 79%;
- }
- .supermain .superOne .superoneInfo ul li p:first-child span:last-child {
- font-size: 16px;
- display: inline-block;
- width: 20%;
- text-align: center;
- color: #666;
- position: relative;
- top: -5px;
- }
- .supermain .superOne .superoneInfo ul li p:nth-child(2) {
- font-size: 16px;
- padding: 5px 0;
- color: #666;
- }
- .supermain .superOne .superoneInfo ul li p:last-child {
- font-size: 16px;
- color: #666;
- padding: 0 0 10px 0;
- }
- .supermain .superOne .superoneInfo ul li p:last-child span {
- color: #ff0000;
- font-weight: bold;
- }
- .supermain .superTwo {
- width: 600px;
- margin: 20px 0 20px 0;
- }
- .supermain .superTwo .superTwoInfo {}
- .supermain .superTwo .superTwoInfo ul li {
- float: left;
- width: 97%;
- padding: 6px 10px;
- }
- .supermain .superTwo .superTwoInfo ul li:hover {
- background: #CCCCCC3f;
- }
- .supermain .superTwo .superTwoInfo ul li img {
- float: left;
- width: 100px;
- height: 100px;
- border-radius: 90px;
- }
- .supermain .superTwo .superTwoInfo ul li div {
- float: left;
- width: 82%;
- }
- .supermain .superTwo .superTwoInfo ul li div p:first-child {
- float: left;
- width: 98%;
- padding: 0 10px;
- }
- .supermain .superTwo .superTwoInfo ul li div p:first-child span:first-child {
- float: left;
- width: 70%;
- font-size: 18px;
- font-weight: bold;
- }
- .supermain .superTwo .superTwoInfo ul li div p:first-child span:last-child {
- float: left;
- width: 30%;
- text-align: right;
- font-size: 16px;
- color: #666;
- }
- .supermain .superTwo .superTwoInfo ul li div p:nth-child(2) {
- float: left;
- width: 99%;
- font-size: 16px;
- color: #666;
- padding: 5px 10px;
- }
- .supermain .superTwo .superTwoInfo ul li div p:last-child {
- float: left;
- width: 99%;
- font-size: 16px;
- color: #666;
- padding: 5px 10px;
- }
- .supermain .superThree {
- height: 524px;
- margin: 0 30px 0 0;
- }
- .supermain .superThree .superThreeInfo {}
- .supermain .superThree .superThreeInfo ul li {
- float: left;
- width: 97%;
- border-bottom: 1px dashed #CCCCCC;
- margin: 0 10px;
- padding: 10px 0;
- }
- .supermain .superThree .superThreeInfo ul li img {
- float: left;
- width: 100px;
- height: 100px;
- margin: 0 15px 0 0;
- }
- .supermain .superThree .superThreeInfo ul li div {
- float: left;
- width: 79%;
- }
- .supermain .superThree .superThreeInfo ul li div p:first-child {
- float: left;
- width: 100%;
- font-size: 18px;
- }
- .supermain .superThree .superThreeInfo ul li div p:nth-child(2) {
- float: left;
- width: 100%;
- font-size: 16px;
- color: #666;
- padding: 10px 0;
- }
- .supermain .superThree .superThreeInfo ul li div p:last-child {
- float: left;
- width: 100%;
- }
- .supermain .superThree .superThreeInfo ul li div p:last-child button {
- float: left;
- padding: 5px 15px;
- background: forestgreen;
- color: #fff;
- margin: 8px 15px 0 0;
- }
- .superFour {
- margin: 0 !important;
- height: 524px !important;
- }
- .superFive {
- width: 100% !important;
- height: 520px !important;
- margin: 20px 0 !important;
- }
- .superFive .superFiveInfo {
- float: left;
- width: 100%;
- }
- .superFive .superFiveInfo ul li {
- float: left;
- width: 48%;
- margin: 10px;
- background: #f3f3f3;
- }
- .superFive .superFiveInfo ul li:hover {
- cursor: pointer;
- }
- .superFive .superFiveInfo ul li img {
- float: left;
- width: 100px;
- height: 100px;
- margin: 0 15px 0 0;
- }
- .superFive .superFiveInfo ul li div {
- float: left;
- width: 80%;
- }
- .superFive .superFiveInfo ul li div p:first-child {
- float: left;
- width: 100%;
- font-size: 16px;
- padding: 10px 0 0 0;
- color: #60636d;
- }
- .superFive .superFiveInfo ul li div p:nth-child(2) {
- float: left;
- width: 100%;
- font-size: 14px;
- color: #60636d;
- padding: 10px 0 0 0;
- }
- .superFive .superFiveInfo ul li div p:nth-child(2) span:first-child {
- float: left;
- width: 70%;
- }
- .superFive .superFiveInfo ul li div p:nth-child(2) span:last-child {
- float: left;
- width: 30%;
- text-align: center;
- }
- .superFive .superFiveInfo ul li div p:last-child {
- float: left;
- width: 100%;
- font-size: 14px;
- padding: 10px 0 0 0;
- color: #60636d;
- }
- .superFive .superFiveInfo ul li div p:last-child span:first-child {
- float: left;
- width: 65%;
- }
- .superFive .superFiveInfo ul li div p:last-child span:last-child {
- float: left;
- width: 35%;
- text-align: center;
- }
- /* 科技超市主体结束 */
- .superdown {
- padding: 15px 0 0 0;
- height: 135px;
- overflow: hidden;
- background-color: #3a3637;
- color: #fff;
- }
- .superdown p {
- font-size: 14px;
- color: #999999;
- font-family: 微软雅黑;
- padding: 10px 200px;
- }
- /* 科技超市结束 */
- /* 创新服务开始 */
- /* 创新服务top+down取于科技超市,无需改动 */
- /* 创新服务主体开始 */
- .servicemain {
- float: left;
- }
- .servicemain .serviceOne {
- float: left;
- width: 100%;
- height: 535px;
- margin: 10px 0 20px 0;
- }
- .servicemain .serviceOne .left {
- float: left;
- width: 558px;
- height: 535px;
- margin: 0 30px 0 0;
- box-shadow: 0 0 5px #0085d2;
- background: #fff;
- border-radius: 5px;
- }
- .servicemain .serviceOne .left .leftTop {
- border-bottom: 1px dashed #ccc;
- margin: 0 20px;
- }
- .servicemain .serviceOne .left .leftTop span {
- font-size: 18px;
- height: 50px;
- display: inline-block;
- line-height: 50px;
- padding: 0 10px;
- }
- .servicemain .serviceOne .left .leftTop a {
- float: right;
- height: 50px;
- line-height: 50px;
- padding: 0 15px;
- font-size: 16px;
- color: #337ab7;
- }
- .servicemain .serviceOne .left .list ul li {
- float: left;
- width: 96%;
- padding: 10px;
- border-bottom: 1px solid #ccc;
- }
- .servicemain .serviceOne .left .list ul li:hover {
- cursor: pointer;
- }
- .servicemain .serviceOne .left .list ul li:hover .info p:first-child {
- color: #00A4FF;
- }
- .servicemain .serviceOne .left .list ul li .image {
- float: left;
- width: 100px;
- height: 100px;
- }
- .servicemain .serviceOne .left .list ul li .image img {
- border-radius: 90px;
- }
- .servicemain .serviceOne .left .list ul li .info {
- float: left;
- width: 78%;
- padding: 0 0 0 15px;
- }
- .servicemain .serviceOne .left .list ul li .info p:first-child {
- font-size: 18px;
- font-weight: bold;
- }
- .servicemain .serviceOne .left .list ul li .info p:last-child {
- font-size: 14px;
- color: #666666;
- padding: 10px 0 0 0;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 3;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- .servicemain .serviceOne .right {
- float: left;
- width: 608px;
- height: 535px;
- box-shadow: 0 0 5px #0085d2;
- background: #fff;
- border-radius: 5px;
- margin: 0;
- overflow: hidden;
- }
- .servicemain .serviceOne .right .rightTop {
- border-bottom: 1px dashed #ccc;
- margin: 0 20px;
- }
- .servicemain .serviceOne .right .rightTop span {
- font-size: 18px;
- height: 50px;
- display: inline-block;
- line-height: 50px;
- padding: 0 10px;
- }
- .servicemain .serviceOne .right .rightTop a {
- float: right;
- height: 50px;
- line-height: 50px;
- padding: 0 15px;
- font-size: 16px;
- color: #337ab7;
- }
- .servicemain .serviceOne .right .list ul li {
- float: left;
- width: 280px;
- margin: 15px 10px 0px 10px;
- text-align: center;
- height: 220px;
- border: 1px solid #ccc;
- position: relative;
- }
- .servicemain .serviceOne .right .list ul li:hover {
- cursor: pointer;
- }
- .servicemain .serviceOne .right .list ul li:hover p {
- color: #005293;
- font-weight: bold;
- }
- .servicemain .serviceOne .right img {
- width: 280px;
- height: 220px;
- }
- .servicemain .serviceOne .right p {
- position: absolute;
- bottom: 0;
- height: 30px;
- line-height: 30px;
- padding: 0 5px;
- width: 97%;
- text-align: left;
- background: #76bdfe5f;
- font-size: 16px;
- }
- .servicemain .serviceTwo {
- float: left;
- width: 100%;
- height: 500px;
- margin: 0 0 20px 0;
- box-shadow: 0 0 5px #0085d2;
- background: #fff;
- }
- .servicemain .serviceTwo .serviceTop {
- border-bottom: 1px dashed #ccc;
- margin: 0 20px 20px 20px;
- }
- .servicemain .serviceTwo .serviceTop span {
- font-size: 18px;
- height: 50px;
- display: inline-block;
- line-height: 50px;
- padding: 0 10px;
- }
- .servicemain .serviceTwo .serviceTop a {
- float: right;
- height: 50px;
- line-height: 50px;
- padding: 0 15px;
- font-size: 16px;
- color: #337ab7;
- }
- .servicemain .serviceTwo .list {
- float: left;
- padding: 0 20px;
- }
- .servicemain .serviceTwo .list ul li {
- float: left;
- width: 570px;
- border: 1px dashed #ccc;
- margin: 0 15px 20px 0;
- padding: 15px 0px;
- }
- .servicemain .serviceTwo .list ul li:hover {
- cursor: pointer;
- border: 1px dashed transparent;
- box-shadow: 0 0 5px red;
- }
- .servicemain .serviceTwo .list ul li p:first-child {
- padding: 0 10px 5px 10px;
- }
- .servicemain .serviceTwo .list ul li p:first-child span:first-child {
- display: inline-block;
- width: 69%;
- font-size: 18px;
- }
- .servicemain .serviceTwo .list ul li p:first-child span:last-child {
- font-size: 14px;
- color: #666;
- display: inline-block;
- width: 30%;
- text-align: right;
- }
- .servicemain .serviceTwo .list ul li p:nth-child(2n) {
- padding: 5px 10px;
- font-size: 16px;
- }
- .servicemain .serviceTwo .list ul li p:last-child {
- padding: 0 10px;
- font-size: 16px;
- color: #666;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 4;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- line-height: 25px;
- }
- .servicemain .serviceTwo .list ul li:nth-child(2n) {
- margin: 0;
- }
- /* 创新服务主体结束 */
- /* 创新服务结束 */
- /* 动态监测开始 */
- /* 动态监测top+down取于科技超市,无需改动 */
- /* 动态监测主体开始 */
- .dynamicmain {
- height: 300px;
- }
- .dynamicinfo1 {
- box-shadow: 0 0 10px #2d64b3;
- border-radius: 10px;
- margin: 10px 20px 0 0;
- width: 565px;
- float: left;
- height: 448px;
- overflow: hidden;
- background: #fff;
- }
- .dynamicinfo2 {
- box-shadow: 0 0 10px #2d64b3;
- border-radius: 10px;
- margin: 10px 0 20px 0;
- width: 615px;
- float: left;
- height: 448px;
- overflow: hidden;
- background: #fff;
- }
- .dynamicmaintitle {
- font-size: 18px;
- color: #22529a;
- padding: 20px 20px 0 20px;
- }
- .dynamicmore {
- float: right;
- }
- .dynamictables {
- padding: 0 10px;
- float: left;
- height: 394px;
- overflow: hidden;
- }
- .dynamictable {
- margin: -10px 0 0 0;
- }
- .dynamictable td,
- th {
- border: 1px solid #cad9ea;
- color: #666;
- height: 34px;
- text-align: center;
- width: 134px;
- }
- .dynamictable tr:hover td {
- background-color: #005293;
- color: #ffffff;
- }
- .dynamictable2 tr:hover td {
- background-color: #005293;
- color: #ffffff;
- }
- .dynamictable3 tr:hover td {
- background-color: #005293;
- color: #ffffff;
- }
- .dynamictable thead th {
- background-color: #CCE8EB;
- width: 100px;
- }
- .dynamictable tr:nth-child(odd) {
- background: #fff;
- }
- .dynamictable tr:nth-child(even) {
- background: #F5FAFA;
- }
- .dynamictable2 {
- margin: -10px 0 0 0;
- }
- .dynamictable2 td,
- th {
- border: 1px solid #cad9ea;
- color: #666;
- height: 34px;
- text-align: center;
- width: 147px;
- }
- .dynamictable2 thead th {
- background-color: #CCE8EB;
- width: 100px;
- }
- .dynamictable2 tr:nth-child(odd) {
- background: #fff;
- }
- .dynamictable2 tr:nth-child(even) {
- background: #F5FAFA;
- }
- .dynamictables3 {
- padding: 0 10px;
- float: left;
- height: 405px;
- overflow: hidden;
- width: 1180px;
- }
- .dynamictable3 {
- margin: -10px 0 0 0;
- }
- .dynamictable3 td,
- th {
- border: 1px solid #cad9ea;
- color: #666;
- height: 34px;
- text-align: center;
- width: 293px;
- }
- .dynamictable3 thead th {
- background-color: #CCE8EB;
- width: 100px;
- }
- .dynamictable3 tr:nth-child(odd) {
- background: #fff;
- }
- .dynamictable3 tr:nth-child(even) {
- background: #F5FAFA;
- }
- .dynamicinfo3 {
- box-shadow: 0 0 10px #2d64b3;
- border-radius: 10px;
- margin: 10px 0 10px 0;
- height: 465px;
- float: left;
- overflow: hidden;
- width: 1200px;
- background: #fff;
- }
- /* 动态监测主体结束 */
- /* 动态监测结束 */
- /* 技术培训开始 */
- /* 技术培训top+down取于科技超市,无需改动 */
- /* 技术培训主体开始 */
- .technicalmain {
- background-color: #F5F5F54f;
- }
- .technicalmain .technical_left {
- float: left;
- width: 590px;
- height: 760px;
- margin: 10px 0 20px 0;
- background-color: #FFFFFF;
- box-shadow: 0 0 5px #005293;
- border-radius: 5px;
- overflow: hidden;
- }
- .technicalmain .technical_left_title {
- font-size: 18px;
- line-height: 40px;
- color: #005293;
- margin: 0 10px;
- border-bottom: 1px dashed #ccc;
- }
- .technicalmain .technical_left_title .more {
- float: right;
- margin: 0 10px;
- }
- .technicalmain .train li {
- border-bottom: 1px solid #929292;
- margin: 0 10px;
- padding: 15px 0;
- float: left;
- }
- .technicalmain .train li:hover {
- cursor: pointer;
- }
- .technicalmain .train li:hover p:nth-child(2) {
- font-weight: bold;
- color: #005293;
- }
- .technicalmain .train li:last-child {
- border-bottom: none;
- }
- .technicalmain .train li p:first-child {
- font-size: 18px;
- color: #FFFFFF;
- background-color: #005293;
- text-align: center;
- float: left;
- padding: 0 5px;
- }
- .technicalmain .train li p:nth-child(2) {
- font-size: 18px;
- margin: 10px;
- float: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- padding: 0 0 0 15px;
- width: 78%;
- }
- .technicalmain .train li p:last-child {
- font-size: 15px;
- color: #929292;
- padding: 5px 0 0 125px;
- margin: 5px;
- float: left;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 3;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- .technical_right {
- float: right;
- width: 590px;
- height: 760px;
- margin: 10px 0 20px 0;
- background-color: #FFFFFF;
- box-shadow: 0 0 5px #005293;
- border-radius: 5px;
- overflow: hidden;
- }
- .technicalmain .technical_right_title {
- font-size: 18px;
- line-height: 40px;
- color: #005293;
- margin: 0 10px;
- border-bottom: 1px dashed #ccc;
- }
- .technicalmain .technical_right_title .more {
- float: right;
- margin: 0 10px;
- }
- .technical_right .guide li {
- float: left;
- margin: 0 10px;
- width: 97%;
- padding: 5px 0;
- }
- .technical_right .guide li:hover {
- cursor: pointer;
- }
- .technical_right .guide li:hover span:first-child {
- color: #005293;
- font-weight: bold;
- }
- .technical_right .guide li:hover span:last-child {
- color: #005293;
- font-weight: bold;
- }
- .technical_right .guide li:nth-child(7) {
- border-bottom: 1px dashed #0085D2;
- padding: 0 0 15px 0;
- }
- .technical_right .guide li:nth-child(8) {
- padding: 15px 0 0 0;
- }
- .technical_right .guide li span:first-child {
- line-height: 40px;
- font-size: 18px;
- width: 400px;
- margin: 0 10px;
- float: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .technical_right .guide li span:last-child {
- line-height: 40px;
- font-size: 15px;
- width: 100px;
- float: right;
- color: #929292;
- }
- /* 技术培训主体结束 */
- /* 技术培训结束 */
- /* 无图片列表开始 */
- .newlistmain {
- height: 600px;
- margin: 10px 0 20px 0;
- box-shadow: 0 0 10px #2d64b3;
- border-radius: 10px;
- background: #fff;
- }
- .newlistmain .newlistTop {
- height: 40px;
- line-height: 40px;
- margin: 15px 40px 20px 40px;
- border-bottom: 1px solid #ccc;
- font-size: 18px;
- padding: 10px 0 0 0;
- }
- .newlistmain .newlistTopt {
- width: 10px;
- height: 10px;
- background-color: #005293;
- margin: 0 10px 0 0px;
- }
- .newlistmain .newlisttitle {
- color: #005293;
- }
- .newlistmain .newlistcontext {
- font-size: 16px;
- /* height: 680px; */
- padding: 0 40px 0 40px;
- }
- .newlistmain .newlistcontext ul li {
- float: left;
- width: 100%;
- padding: 12px 0;
- }
- .newlistmain .newlistcontext ul li:hover {
- color: #005293;
- font-weight: bold;
- }
- .newlistmain .newlistcontext ul li p {
- float: left;
- width: 995px;
- font-size: 16px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- padding: 0 30px 0 0;
- }
- .newlistmain .newlistcontext ul li span {
- font-size: 16px;
- width: 120px;
- }
- .newlistmain .newlistpage {
- float: left;
- width: 100%;
- text-align: center;
- height: 40px;
- line-height: 40px;
- margin: 15px 0;
- }
- /* 无图片列表top+down取于科技超市,无需改动 */
- /* 无图片列表结束 */
- /* 图片列表开始 */
- .newimagelistmain {
- height: 1440px;
- margin: 15px 0 20px 0;
- box-shadow: 0 0 10px #2d64b3;
- border-radius: 10px;
- }
- .newimagelistmain .newimagelistTop {
- height: 40px;
- line-height: 40px;
- margin: 0 40px 20px 40px;
- border-bottom: 1px solid #ccc;
- font-size: 18px;
- padding: 10px 0 0 0;
- }
- .newimagelistmain .newimagelistTopt {
- width: 10px;
- height: 10px;
- background-color: #005293;
- margin: 0 10px 0 0px;
- }
- .newimagelistmain .newimagelisttitle {
- color: #005293;
- }
- .newimagelistmain .newimagelistcontext {
- font-size: 16px;
- padding: 0 40px 0 40px;
- height: 1250px;
- }
- .nweimagelistleft {
- width: 150px;
- height: 95px;
- float: left;
- padding: 0 20px 0 0;
- }
- .nweimagelistunders {
- float: left;
- height: 95px;
- width: 950px;
- }
- .nweimagelistunder {
- width: 800px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- float: left;
- padding: 5px 0 0 0;
- }
- .nweimagelistright {
- width: 150px;
- float: left;
- text-align: right;
- padding: 5px 0 0 0;
- }
- .newimagelistspanimg {
- height: 95px;
- width: 150px;
- text-align: right;
- }
- .nweimagelistcontext {
- float: left;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- padding: 15px 0 3px 0;
- color: #666;
- /*显示行数*/
- }
- .newimagelistcontext ul li {
- height: 100px;
- height: 100px;
- padding: 12px 0;
- border-bottom: 1px dashed #ccc;
- }
- .newimagelistcontext ul li .nweimagelistunder:hover {
- color: #005293;
- font-weight: bold;
- }
- .newimagelistmain .newimagelistpage {
- width: 100%;
- text-align: center;
- height: 40px;
- line-height: 40px;
- padding: 40px 0;
- text-align: center;
- clear: both
- }
- /* 图片列表top+down取于科技超市,无需改动 */
- /* 图片列表开始 */
- /* 信息详情页开始 */
- .detailmain {
- margin: 15px 0 15px 0;
- box-shadow: 0 0 10px #2d64b3;
- border-radius: 10px;
- min-height: 800px;
- }
- .detailtop {
- padding: 20px 0px;
- font-size: 18px;
- line-height: 40px;
- font-weight: normal;
- text-align: left;
- margin: 0;
- text-align: center;
- color: #005293;
- }
- .detailtopleft {
- text-align: center;
- padding: 0 0 10px 0;
- border-bottom: 1px solid #ccc;
- font-size: 16px;
- color: #666666;
- }
- .detailimage {
- text-align: center;
- padding: 20px 0 0 0;
- }
- .detailimg {
- width: 500px;
- height: 300px;
- }
- .detailcontext {
- padding: 20px 40px 60px 40px;
- }
- /* 信息详情top+down取于科技超市,无需改动 */
- /* 信息详情页结束 */
- /* 直播大厅跳转前页面 */
- .liveIndex .info {
- /* background-image: url(../images/beijing.jpg); */
- float: left;
- width: 400px;
- height: 100vh;
- background: red;
- position: fixed;
- left: 38%;
- top: 0;
- box-shadow: 0 0 15px #4b0502;
- }
- .liveIndex .info .infoTwo {
- float: left;
- width: 500px;
- background: red;
- height: 500px;
- position: absolute;
- top: 180px;
- border-radius: 360px;
- left: -50px;
- box-shadow: 0 0 30px #4e0000;
- border: 6px solid #a30d0c5f;
- }
- .liveIndex .info .infoThree {
- float: left;
- width: 600px;
- top: 50px;
- position: relative;
- left: -50px;
- }
- .liveIndex .info .infoThree img {
- width: 70px;
- height: 65px;
- margin: 0 0 10px 0;
- }
- .liveIndex .info .infoThree p {
- font-size: 25px;
- color: #fffa93;
- padding: 0 0 10px 0;
- }
- .liveIndex .info .infoThree .title {
- font-size: 40px;
- color: #fffa93;
- font-weight: bold;
- font-family: monospace;
- padding: 0 0 20px 0;
- }
- .liveIndex .info .infoThree a {
- width: 209px;
- height: 50px;
- background: linear-gradient(to bottom, #ffbd00 0%, #fd5a00 100%);
- border-radius: 30px;
- font-size: 22px;
- color: #fff;
- font-family: 楷体;
- margin: 30px 0 0 0;
- font-weight: bold;
- float: left;
- line-height: 50px;
- position: relative;
- left: 195px;
- }
- .liveIndex .info .infoThree i {
- position: relative;
- left: 10px;
- top: -2px;
- }
- .home {
- float: left;
- width: 100%;
- position: relative;
- z-index: 999;
- }
- .home .homeTop .homeTopInfo {
- height: 40px;
- line-height: 40px;
- color: #fff;
- font-size: 18px;
- }
- .home .homeTop .homeTopInfo button {
- color: #fff;
- font-size: 18px;
- }
- .home .homeTop .homeTopLogo {
- padding: 80px 0;
- }
- .home .homeTop .homeTopLogo img {
- width: 80px;
- height: 70px;
- }
- .home .homeTop .homeTopLogo span {
- font-size: 45px;
- color: #fff;
- font-family: cursive;
- position: relative;
- top: 15px;
- left: 15px;
- }
- .home .homeMain {
- float: left;
- width: 100%;
- height: 500px;
- }
- .home .homeMain .live {
- left: 50%;
- top: -11%;
- }
- .home .homeMain .super {
- top: 41%;
- left: 22%;
- }
- .home .homeMain .service {
- top: 96%;
- left: 0%;
- }
- .home .homeMain .dynamic {
- top: 60%;
- left: 68%;
- }
- .home .homeMain .technocal {
- top: 104%;
- left: 97%;
- }
- .home .homeMain nav ul li i {
- font-size: 50px;
- color: #fff;
- margin: 35px 0 15px 0;
- float: left;
- width: 100%;
- }
- .home .homeMain nav ul li p {
- font-size: 20px;
- color: #fff;
- font-weight: bold;
- }
- .home .homeDown{
- float: left;
- width: 100%;
- font-size: 16px;
- color: #fff;
- padding: 20px 0 0 0;
- }
- .home .homeDown p{
- padding: 10px 0 0 120px;
- }
|