123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856 |
- @import "../base/utils";
- /************************ 通用class样式 author: TX date:2020-07-30 **********************/
- /* 页面样式 */
- body, html, #app {
- padding: 0;
- margin: 0;
- @include setFontStyle(0);
- }
- /* 内外边距通常让各个浏览器样式的表现位置不同 */
- div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
- margin: 0;
- padding: 0;
- }
- /* HTML5 媒体文件跟 img 保持一致 */
- audio, canvas, video {
- display: inline-block;
- *display: inline;
- *zoom: 1;
- }
- /* 默认不显示下划线,保持页面简洁 */
- ins, a {
- text-decoration: none;
- cursor: pointer;
- }
- /* 去掉列表前的标识, li 会继承 */
- ol, ul, dl, dt, dd {
- list-style: none;
- margin: 0;
- padding: 0;
- letter-spacing: 0;
- word-spacing: 0;
- font-size: 0;
- }
- /* 让标题都自定义, 适应多个系统应用 */
- h1, h2, h3, h4, h5, h6, p {
- font-weight: normal;
- margin: 0;
- }
- /* 外边距 */
- .m5 {
- margin: 5px;
- }
- .m10 {
- margin: 10px;
- }
- .m15 {
- margin: 15px;
- }
- .m20 {
- margin: 20px;
- }
- .m25 {
- margin: 25px;
- }
- .m30 {
- margin: 30px;
- }
- .m35 {
- margin: 35px;
- }
- .m40 {
- margin: 40px;
- }
- /* 外边距 上下边距 左右居中 */
- .ma0 {
- margin: 0 auto;
- }
- .ma5 {
- margin: 5px auto;
- }
- .ma10 {
- margin: 10px auto;
- }
- .ma15 {
- margin: 15px auto;
- }
- .ma20 {
- margin: 20px auto;
- }
- .ma25 {
- margin: 25px auto;
- }
- .ma30 {
- margin: 30px auto;
- }
- .ma35 {
- margin: 35px auto;
- }
- .ma40 {
- margin: 40px auto;
- }
- /* 上外边距 */
- .mt5 {
- margin-top: 5px;
- }
- .mt10 {
- margin-top: 10px;
- }
- .mt15 {
- margin-top: 15px;
- }
- .mt20 {
- margin-top: 20px;
- }
- .mt25 {
- margin-top: 25px;
- }
- .mt30 {
- margin-top: 30px;
- }
- .mt35 {
- margin-top: 35px;
- }
- .mt40 {
- margin-top: 40px;
- }
- .mt48 {
- margin-top: 48px;
- }
- /* 下外边距 */
- .mb5 {
- margin-bottom: 5px;
- }
- .mb10 {
- margin-bottom: 10px;
- }
- .mb15 {
- margin-bottom: 15px;
- }
- .mb20 {
- margin-bottom: 20px;
- }
- .mb25 {
- margin-bottom: 25px;
- }
- .mb30 {
- margin-bottom: 30px;
- }
- .mb35 {
- margin-bottom: 35px;
- }
- .mb40 {
- margin-bottom: 40px;
- }
- /* 左外边距 */
- .ml5 {
- margin-left: 5px;
- }
- .ml10 {
- margin-left: 10px;
- }
- .ml15 {
- margin-left: 15px;
- }
- .ml20 {
- margin-left: 20px;
- }
- .ml25 {
- margin-left: 25px;
- }
- .ml30 {
- margin-left: 30px;
- }
- .ml35 {
- margin-left: 35px;
- }
- .ml40 {
- margin-left: 40px;
- }
- /* 右外边距 */
- .mr5 {
- margin-right: 5px;
- }
- .mr10 {
- margin-right: 10px;
- }
- .mr15 {
- margin-right: 15px;
- }
- .mr20 {
- margin-right: 20px;
- }
- .mr25 {
- margin-right: 25px;
- }
- .mr30 {
- margin-right: 30px;
- }
- .mr35 {
- margin-right: 35px;
- }
- .mr40 {
- margin-right: 40px;
- }
- /*文字对齐方式*/
- .tl {
- text-align: left;
- }
- .tr {
- text-align: right;
- }
- .tc {
- text-align: center;
- }
- /*字体大小*/
- .fs_12 {
- font-size: 12px;
- }
- .fs_14 {
- font-size: 14px;
- }
- .fs_16 {
- font-size: 16px;
- }
- .fs_18 {
- font-size: 18px;
- }
- .fs_20 {
- font-size: 20px;
- }
- .fs_22 {
- font-size: 22px;
- }
- .fs_24 {
- font-size: 24px;
- }
- .fs_26 {
- font-size: 26px;
- }
- .fs_28 {
- font-size: 28px;
- }
- .fs_30 {
- font-size: 30px;
- }
- /* 清除浮动-父级使用 */
- .fn-clear:after {
- content: " ";
- height: 0;
- display: block;
- font-size: 0;
- visibility: hidden;
- clear: both;
- }
- /* 清除元素间隙 */
- .fn-clear-gap {
- font-size: 0;
- list-style: none;
- margin: 0;
- padding: 0;
- letter-spacing: 0;
- word-spacing: 0;
- }
- /* 隐藏, 通常用来与 JS 配合 */
- .fn-hide {
- display: none;
- }
- /* 隐藏多余内容*/
- .fn-hidden {
- overflow: hidden
- }
- /* 文本超出省略号显示 (一行) ------ 使用方式:@include single-line-ellipsis; */
- @mixin single-line-ellipsis {
- text-overflow: ellipsis;
- overflow: hidden;
- word-wrap: break-word;
- white-space: nowrap;
- word-break: break-all;
- }
- /* 文本超出省略号显示 (多行),括号里传行数 ------ 使用方式:@include multi-line-ellipsis(3); */
- @mixin multi-line-ellipsis($rows) {
- -webkit-line-clamp: $rows;
- text-overflow: ellipsis;
- -o-text-overflow: ellipsis;
- overflow: hidden;
- word-wrap: break-word;
- display: -webkit-box;
- white-space: normal !important;
- -webkit-box-orient: vertical;
- }
- /************************ 网站公共class样式 author: TX date:2020-07-30 **********************/
- /**************** 网站框架 ****************/
- .website-frame {
- font-family: "PingFang SC", "微软雅黑", Arial, sans-serif;
- color: #2C3E50;
- min-width: 1240px;
- // head移动端响应式
- @media (max-width: 768px) {
- min-width: unset;
- }
- }
- /* 饿了么右侧生成的间距 */
- .el-popup-parent--hidden {
- padding-right: 0 !important
- }
- /* 网站主体部分 */
- .client-container {
- width: 1260px;
- margin: 0 auto;
- @media (max-width: 768px) {
- width: auto;
- padding: 0 15px;
- max-width: 100%;
- box-sizing: border-box;
- }
- }
- .client-container-middle {
- width: 960px;
- margin: 0 auto;
- }
- /**************** 网站头部 ****************/
- /* 网站头部导航栏 */
- .client-head {
- width: 100%;
- height: 72px;
- z-index: 999;
- background: #fff;
- position: fixed;
- top: 0;
- //box-shadow: -5px 0px 12px 4px #6bbf71;
- //头部布局
- .head-layout {
- height: 72px;
- display: flex;
- justify-content: space-between;
- @include setFontStyle(-4);
- }
- //头部导航
- .header-nav {
- > span, > a {
- margin: 0 30px;
- color: #333333;
- }
- > a:last-child {
- margin-right: 0;
- }
- > a:visited {
- color: #333333;
- }
- > a.active {
- color: #00B96B;
- position: relative;
- }
- .active:before {
- content: '';
- width: 88%;
- height: 2px;
- background-color: #00B96B;
- display: block;
- position: absolute;
- bottom: -6px;
- left: 6%;
- }
- // 导航按钮
- .head-nav-btn.active {
- position: relative;
- }
- .head-nav-btn.active:before {
- width: 70%;
- bottom: -10px;
- left: 4%;
- }
- }
- //头部左侧区域
- .head-container-box {
- display: flex;
- width: 100%;
- justify-content: space-between;
- align-items: center;
- //头部图标
- .client-head-img {
- width: 112px;
- height: 51px;
- display: inline-block;
- background-image: url("~static/images/client/component/nav-logo.png");
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- margin-right: 40px;
- }
- }
- //头部右侧区域
- .head-right {
- display: flex;
- align-items: center;
- position: relative;
- border: 1px solid #00B96B;
- border-radius: 18px;
- > a, .right-tel-btn {
- width: 85px;
- padding: 8px 0;
- @include setFontStyle(-7);
- display: inline-block;
- color: #00B96B;
- text-align: center;
- cursor: pointer;
- }
- .right-tel-btn {
- color: #fff;
- background: #00B96B;
- position: relative;
- border-radius: 0 18px 18px 0;
- cursor: default;
- }
- > a:hover {
- cursor: pointer;
- }
- }
- // head移动端响应式
- @media (max-width: 768px) {
- // head
- height: 60px;
- box-shadow: unset;
- border-bottom: 1px solid #e7e7e7;
- //头部布局
- .head-layout {
- height: 60px;
- }
- //头部左侧区域 logo
- .head-container-box {
- justify-content: space-between;
- height: 60px;
- align-items: center;
- padding: 0;
- .client-head-img {
- width: 92px;
- height: 46px;
- background-size: contain;
- margin: 0;
- }
- }
- // 手机菜单关闭
- .head-nav-up {
- height: 0;
- display: none;
- opacity: 0;
- }
- // 手机菜单开启
- .head-nav-down {
- height: 100vh;
- display: block;
- opacity: 1;
- }
- // 咨询电话
- .phone-tel-box {
- color: rgb(0, 84, 145);
- font-size: 14px;
- font-weight: bold;
- line-height: 60px;
- }
- // 按钮
- .phone-nav-btn {
- width: 30px;
- height: 30px;
- background-image: url("~static/images/client/component/head-btn-icon.svg");
- }
- // 布局
- .head-layout {
- display: block
- }
- }
- }
- /* 导航二级菜单 */
- .head-popper-box {
- width: 940px;
- display: flex;
- align-items: center;
- // 箭头
- .popper__arrow::after {
- content: ' ';
- width: 0;
- height: 0;
- overflow: hidden;
- position: absolute;
- border-width: 6px;
- border-style: dashed dashed solid;
- border-color: transparent transparent #00B96B !important;
- top: -12px;
- }
- // 列表
- .head-popper-item {
- width: 23%;
- display: flex;
- margin: 16px 1%;
- align-items: center;
- i {
- width: 34px;
- height: 34px;
- background-size: contain;
- display: inline-block;
- margin-right: 16px;
- background-repeat: no-repeat;
- background-position: center;
- }
- .head-popper-title {
- @include setFontStyle(-6);
- color: #333;
- margin-bottom: 4px;
- display: inline-block;
- }
- .head-popper-des {
- display: block;
- @include setFontStyle(-8);
- color: #9c9c9c;
- }
- }
- }
- .head-popper-box:before {
- content: ' ';
- width: 100%;
- height: 2px;
- position: absolute;
- left: 0;
- top: 0;
- background-color: #00b96b;
- border-radius: 4px 4px 0 0;
- }
- /* 产品 二级菜单 */
- .cp-popper-box {
- margin-top: 24px !important;
- // 列表
- .head-popper-item:nth-child(1) {
- i {
- background-image: url("~static/images/client/component/head-cp-icon1.png");
- }
- }
- .head-popper-item:nth-child(2) {
- i {
- background-image: url("~static/images/client/component/head-cp-icon2.png");
- }
- }
- .head-popper-item:nth-child(3) {
- i {
- background-image: url("~static/images/client/component/head-cp-icon3.png");
- }
- }
- .head-popper-item:nth-child(4) {
- i {
- background-image: url("~static/images/client/component/head-cp-icon4.png");
- }
- }
- }
- /* 解决方案 二级菜单 */
- .jj-popper-box {
- padding: 24px 42px;
- box-sizing: border-box;
- margin-top: 24px !important;
- // head-popper-content
- .head-popper-content {
- width: 100%;
- }
- // 横线
- em {
- width: 800px;
- height: 1px;
- display: block;
- margin: 10px auto 24px;
- background: #f2f2f2;
- }
- // 标题
- h3 {
- font-size: 16px;
- font-weight: 700;
- text-align: left;
- color: #333333;
- margin-left: 12px;
- }
- // 列表行
- .head-popper-cj-row, .head-popper-hy-row {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- }
- // 场景解决方案 - icon
- .head-popper-cj-row {
- .head-popper-item:nth-child(1) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon1.png");
- }
- }
- .head-popper-item:nth-child(2) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon2.png");
- }
- }
- .head-popper-item:nth-child(3) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon3.png");
- }
- }
- .head-popper-item:nth-child(4) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon4.png");
- }
- }
- }
- // 行业解决方案 - icon
- .head-popper-hy-row {
- .head-popper-item:nth-child(1) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon5.png");
- }
- }
- .head-popper-item:nth-child(2) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon6.png");
- }
- }
- .head-popper-item:nth-child(3) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon7.png");
- }
- }
- .head-popper-item:nth-child(4) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon8.png");
- }
- }
- .head-popper-item:nth-child(5) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon9.png");
- }
- }
- .head-popper-item:nth-child(6) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon10.png");
- }
- }
- .head-popper-item:nth-child(7) {
- i {
- background-image: url("~static/images/client/component/head-jj-icon11.png");
- }
- }
- }
- }
- /* 免费注册 二级菜单 */
- .system-popper-box {
- width: 450px;
- margin-top: 12px !important;
- .head-popper-item {
- width: 50%;
- margin: 16px auto;
- }
- .head-popper-item:nth-child(1) {
- i {
- background-image: url("~static/images/client/component/head-exam-icon.png");
- }
- }
- .head-popper-item:nth-child(2) {
- i {
- background-image: url("~static/images/client/component/head-train-icon.png");
- }
- }
- }
- /* 网站头部导栏 - 面包屑 */
- .client-breadcrumb-box {
- width: 1260px;
- font-size: 16px;
- margin: 24px auto;
- .st-breadcrumb {
- margin-left: 24px;
- a:last-child {
- .breadcrumb-div::after {
- display: none;
- }
- }
- }
- .st-breadcrumb-item {
- display: inline-block;
- vertical-align: middle;
- color: #4a73fd;
- text-decoration: none;
- }
- .st-breadcrumb-item:hover {
- cursor: pointer;
- }
- .st-breadcrumb-item:after {
- width: 11px;
- height: 16px;
- content: '';
- display: inline-block;
- padding: 0 16px;
- vertical-align: middle;
- zoom: 0.8;
- -moz-transform: scale(0.8, 0.8);
- background-image: url("~static/images/client/component/breadcrumb-icon.svg");
- background-repeat: no-repeat;
- background-position: center;
- }
- .breadcrumb-div {
- display: inline-block;
- vertical-align: middle;
- }
- .st-breadcrumb-item-last {
- display: inline-block;
- text-decoration: none;
- color: #333;
- vertical-align: middle;
- }
- .st-breadcrumb-item-last:hover {
- cursor: default;
- }
- // IE11兼容写法
- @media all and (-ms-high-contrast: none) {
- *::-ms-backdrop, .st-breadcrumb-item-last {
- margin-left: -10px;
- }
- }
- // IE10兼容写法
- @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
- .st-breadcrumb-item-last {
- margin-left: -10px;
- }
- }
- }
- /**************** 网站内容 ****************/
- /* 网站标题 */
- .client-title {
- @include setFontStyle(10);
- color: #333;
- letter-spacing: 0;
- padding-top: 80px;
- text-align: center;
- font-weight: 800;
- // head移动端响应式
- @media (max-width: 768px) {
- @include setFontStyle(-2);
- padding-top: 20px;
- font-weight: 700;
- color: rgb(16, 16, 16);
- }
- }
- /* 网站副标题 */
- .client-subtitle-title {
- width: 650px;
- @include setFontStyle(-4);
- color: rgba(0, 0, 0, 0.65);
- line-height: 30px;
- margin: 0 auto;
- margin-top: 16px;
- text-align: center;
- @media (max-width: 768px) {
- width: 100%;
- text-align: justify;
- @include setFontStyle(-6);
- line-height: 24px;
- }
- }
- // 一行副标题
- .client-subtitle-one-row {
- @include setFontStyle(-2);
- color: #565656;
- margin: 40px 0;
- text-align: center;
- }
- .client-subtitle-title-big {
- width: 1000px;
- padding: 0 100px;
- @include setFontStyle(-4);
- color: rgba(0, 0, 0, 0.65);
- line-height: 30px;
- margin: 0 auto;
- margin-top: 48px;
- text-align: center;
- @media (max-width: 768px) {
- width: 100%;
- text-align: justify;
- margin-top: 24px;
- padding: 0;
- @include setFontStyle(-6);
- line-height: 24px;
- }
- }
- /* 网站通用按钮 */
- .client-default-Btn {
- display: block;
- @include setFontStyle(-4);
- background: #2B5CFD;
- color: rgba(255, 255, 255, 0.85);
- border-radius: 4px;
- transition: .3s all linear;
- text-align: center;
- }
- .client-default-Btn:hover {
- background: #2249C9;
- cursor: pointer;
- }
- // 白色
- .client-default-white-Btn {
- display: block;
- @include setFontStyle(-4);
- background: #fff;
- color: #2B5CFD;
- border-radius: 4px;
- transition: .3s all linear;
- text-align: center;
- }
- .client-default-white-Btn:hover {
- background: #fff;
- cursor: pointer;
- }
- // 免费试用按钮
- .free-trial-default-btn {
- width: 238px;
- height: 40px;
- line-height: 40px;
- margin: 40px auto 0;
- display: block;
- @include setFontStyle(-4);
- background: #3e7ee7;
- color: rgba(255, 255, 255, 0.85);
- border-radius: 4px;
- transition: .3s all linear;
- text-align: center;
- @media (max-width: 768px) {
- width: 122px;
- height: 35px;
- line-height: 35px;
- margin: 16px auto 28px;
- }
- }
- .free-trial-default-btn:hover {
- cursor: pointer;
- }
- /* 网站底部footer */
- .client-footer {
- background: #1E2534;
- padding-bottom: 50px;
- //footer内容区域
- .contact-box {
- padding-top: 40px;
- .contact-left-box {
- display: inline-block;
- dl {
- display: inline-block;
- margin-right: 48px;
- margin-bottom: 40px;
- vertical-align: top;
- }
- dt {
- @include setFontStyle(-4);
- color: #FFFFFF;
- margin-bottom: 24px;
- }
- dd, dd a {
- @include setFontStyle(-6);
- color: rgba(255, 255, 255, 0.64);
- margin-bottom: 8px;
- }
- dd:hover, dd a:hover {
- color: rgba(255, 255, 255, 0.85);
- cursor: pointer
- }
- // 二维码
- .two-code-box {
- position: relative;
- }
- .two-dimensional-code {
- width: 110px;
- height: 110px;
- background-color: #fff;
- background-image: url("~static/images/client/component/two-dimensional-code.jpg");
- display: none;
- position: absolute;
- left: 85px;
- top: -40px;
- background-size: cover;
- border-radius: 4px;
- transition: .5s;
- }
- .two-dimensional-code:before {
- width: 0;
- height: 0;
- content: "";
- display: none;
- margin-left: -20px;
- margin-top: 40px;
- border-width: 10px;
- border-style: solid;
- border-color: transparent #fff transparent transparent;
- transition: .5s;
- }
- .two-code-box:hover {
- cursor: default;
- .two-dimensional-code {
- display: block;
- }
- .two-dimensional-code:before {
- display: block;
- }
- }
- .logo {
- width: 80px;
- height: 120px;
- display: inline-block;
- background-image: url("~static/gangweiIcon/z146.png");
- background-position: center;
- background-repeat: no-repeat;
- background-size: contain;
- }
- }
- .contact-right-box {
- //width: 170px;
- float: right;
- .right-sw-box {
- margin-right: 24px;
- h4 {
- @include setFontStyle(-4);
- color: #FFFFFF;
- margin-bottom: 16px;
- text-align: center
- }
- img {
- width: 100px
- }
- }
- div {
- display: inline-block
- }
- h3 {
- @include setFontStyle(4);
- color: #FFF;
- margin-bottom: 16px;
- }
- p {
- @include setFontStyle(-6);
- color: rgba(255, 255, 255, 0.64);
- margin-bottom: 8px;
- }
- a {
- @include setFontStyle(-6);
- color: #2B5CFD;
- }
- a:hover {
- cursor: pointer;
- }
- }
- }
- //友情链接区域
- .link-box {
- border-top: 1px solid #333B4C;
- border-right: 0;
- border-left: 0;
- padding: 32px 0;
- h4 {
- @include setFontStyle(-4);
- color: #FFF;
- float: left;
- margin-right: 48px;
- line-height: 22px;
- }
- .link-a-box {
- margin-left: 114px;
- line-height: 22px;
- a {
- @include setFontStyle(-6);
- color: rgba(255, 255, 255, 0.54);
- display: inline-block;
- margin-right: 32px;
- white-space: nowrap;
- }
- a:hover {
- color: rgba(255, 255, 255, 0.85);
- cursor: pointer;
- }
- }
- }
- //底部版权
- h5 {
- @include setFontStyle(-8);
- color: #B8B8B8;
- text-align: center;
- padding: 16px 0 24px;
- border-top: 1px solid #333B4C;
- }
- @media (max-width: 768px) {
- .phone-footer-box {
- margin-bottom: 70px;
- text-align: center;
- padding: 20px 0;
- a, p {
- @include setFontStyle(-10);
- color: #fff;
- padding: 6px 0
- }
- a {
- display: block
- }
- }
- }
- }
- /* 网站分页 */
- .client-el-pagination {
- text-align: center;
- margin-top: 36px
- }
- /* 网站通用详情页布局 */
- .client-details-page {
- background: #f9faff;
- width: 100%;
- padding: 24px 0;
- // 时间人数
- .details-visits-box {
- margin-bottom: 16px;
- i {
- width: 20px;
- height: 20px;
- display: inline-block;
- margin-right: 14px;
- vertical-align: middle;
- background-image: url("~static/images/client/newsInfor/newsInfor-details-time.svg");
- }
- i[type="visits"] {
- background-image: url("~static/images/client/newsInfor/newsInfor-details-visits.svg");
- }
- span {
- @include setFontStyle(-6);
- display: inline-block;
- color: #666;
- margin-right: 60px;
- vertical-align: middle;
- }
- }
- //行业资讯详情外层box
- .client-details-box {
- width: 1260px;
- margin: 0 auto;
- padding: 24px;
- box-sizing: border-box;
- background: #FFFFFF;
- border-radius: 8px;
- }
- // 行业资讯详情
- .client-details-wrap {
- width: 820px;
- display: inline-block;
- padding-right: 24px;
- border-right: 1px solid #DCE0E8;
- box-sizing: border-box;
- vertical-align: top;
- > h1 {
- @include setFontStyle(-2);
- color: rgba(0, 0, 0, 0.85);
- margin-bottom: 16px;
- }
- //内容区域
- .client-content-box {
- min-height: calc(100vh - 587px);
- line-height: 24px;
- color: rgba(0, 0, 0, 0.64);
- @include setFontStyle(-6);
- margin-bottom: 70px;
- p {
- line-height: 24px;
- }
- img {
- max-width: 100%;
- }
- h1, h2, h3, h4, h5, h6, p {
- margin-bottom: 10px;
- }
- }
- // 上一篇下一篇
- .client-details-pagination {
- a {
- max-width: 45%;
- float: left;
- @include setFontStyle(-4);
- color: rgba(43, 92, 253, 0.85);
- display: inline-block;
- @include single-line-ellipsis;
- }
- a:last-child {
- margin-left: 10%;
- float: right;
- }
- a:hover {
- color: #1648EE;
- cursor: pointer
- }
- }
- }
- // 最新新闻
- .latest-news-box {
- width: 300px;
- padding-left: 24px;
- display: inline-block;
- vertical-align: top;
- h4 {
- @include setFontStyle(-4);
- color: rgba(0, 0, 0, 0.85);
- margin-bottom: 16px;
- }
- .latest-news-list {
- li {
- margin-bottom: 23px
- }
- a {
- width: 100%;
- @include setFontStyle(-4);
- display: inline-block;
- color: #333;
- @include single-line-ellipsis;
- }
- a:hover {
- color: #00b96b;
- cursor: pointer
- }
- }
- // 时间人数
- .details-visits-box span {
- margin-right: 24px;
- }
- }
- @media (max-width: 768px) {
- padding: 0;
- // 时间人数
- .details-visits-box {
- margin-bottom: 36px;
- text-align: center;
- i {
- width: 16px;
- height: 16px;
- margin-right: 6px;
- background-size: cover;
- }
- span {
- @include setFontStyle(-8);
- margin-right: 24px;
- line-height: 12px;
- }
- }
- //行业资讯详情外层box
- .client-details-box {
- width: 100%;
- }
- // 行业资讯详情
- .client-details-wrap {
- width: 100%;
- border: 0;
- padding-right: 0;
- > h1 {
- @include setFontStyle(-4);
- margin: 16px 0;
- text-align: center;
- font-weight: bolder;
- }
- //内容区域
- .client-content-box {
- min-height: unset;
- }
- // 上一篇下一篇按钮
- .client-details-pagination a {
- border: 1px solid rgba(43, 92, 253, 0.85);
- padding: 4px 12px;
- border-radius: 4px;
- }
- }
- }
- }
- /* 网站通用轮播 */
- /*.client-industry-information{
- background-image: url("~static/images/client/index/index-industry-bg.png");
- background-position: center;
- padding-bottom: 80px;
- // 标题
- .client-title{
- color: #fff;
- }
- // 轮播
- .information-carousel-box{
- width: 100%;
- overflow: hidden;
- }
- // 轮播组件
- .el-carousel--horizontal{
- overflow: visible;
- }
- .el-carousel{
- width: 1000px;
- margin: 0 auto;
- margin-top: 48px;
- .el-carousel__container{width: 640px;height: 320px;margin: 0 auto;position: relative;}
- }
- .el-carousel__item{
- width: 640px;
- background: #FFFFFF;
- border-radius: 8px;
- .industry-img-box{width: 50%;height: 320px;float: left;background-repeat: no-repeat;background-size: cover;}
- .industry-content-box{
- height: inherit;margin-left: 50%;padding:32px;box-sizing: border-box;position: relative;
- h5{@include setFontStyle(2);color: rgba(0,0,0,0.85);margin-bottom: 16px;@include multi-line-ellipsis(2);line-height: 30px;max-height: 60px;}
- p{@include setFontStyle(-4);color: rgba(0,0,0,0.64);line-height: 24px;@include multi-line-ellipsis(6);margin-bottom: 24px;max-height: 144px;}
- a{width: 132px;height: 32px;line-height:32px;position: absolute;bottom: 32px;}
- }
- }
- !*.el-carousel__item.is-active{
- .industry-img-box{width: 50%;}
- .industry-content-box{margin-left: 50%;}
- }*!
- // 左右按钮
- .el-carousel__arrow{width: 50px;height: 50px;background-color: rgba(43, 92, 253, 0.22);@include setFontStyle(16);color: rgba(255,255,255,0.8);}
- // 左箭头
- .el-carousel__arrow--left{left:-200px;}
- // 右箭头
- .el-carousel__arrow--right{right:-200px;}
- // 指示器
- .el-carousel__indicators{display: none}
- }*/
- /* 网站通用弹窗-申请方案 */
- .application-scheme-dialog {
- .el-dialog {
- width: 610px;
- border-radius: 8px;
- }
- .el-dialog__body {
- padding: 30px 120px 60px;
- > i {
- width: 213px;
- height: 92px;
- display: block;
- background-image: url("~static/images/client/component/nav-logo.png");
- margin: 0 auto;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center
- }
- p {
- @include setFontStyle(-2);
- color: rgba(0, 0, 0, 0.85);
- text-align: center;
- margin: 24px 0 36px;
- }
- span {
- @include setFontStyle(-6);
- color: #fff
- }
- a {
- @include setFontStyle(-6);
- color: #2B5CFD;
- float: right;
- }
- // 申请注册按钮
- .application-scheme-btn {
- height: 40px;
- line-height: 40px;
- @include setFontStyle(-4);
- background: #1890FF;
- border-radius: 4px;
- color: #FFFFFF;
- text-align: center;
- margin-bottom: 16px;
- cursor: pointer;
- }
- }
- // 输入框上下间距
- .el-form-item {
- margin-bottom: 24px
- }
- // 输入框左右间距
- .el-input .el-input__inner {
- padding: 0 15px 0 35px;
- }
- //输入框图标
- .dialog-input-tel:after, .dialog-input-code:after {
- width: 16px;
- height: 16px;
- content: "";
- display: inline-block;
- position: absolute;
- top: 12px;
- left: 12px;
- }
- .dialog-input-tel:after {
- background-image: url("~static/images/client/course/course-dialog-icon1.svg");
- }
- .dialog-input-code:after {
- background-image: url("~static/images/client/course/course-dialog-icon2.svg");
- }
- // 输入框-验证码
- .dialog-input-code {
- width: calc(100% - 132px);
- }
- .dialog-code-btn.el-button {
- width: 120px;
- box-sizing: border-box;
- padding: 12px 15px;
- margin-left: 8px;
- }
- // 滑块px
- .nc-container {
- .nc_wrapper {
- width: 100% !important;
- margin-bottom: 24px;
- border-radius: 4px;
- overflow: hidden;
- }
- .nc_scale {
- .btn_slide {
- color: #fff;
- }
- span {
- width: 50px;
- background: #00b96b;
- border-radius: 0 4px 4px 0;
- border: 1px solid transparent;
- }
- }
- }
- }
- .application-scheme-result-dialog {
- .el-dialog {
- width: 512px;
- }
- .el-dialog__body {
- position: relative;
- height: 360px;
- width: 460px;
- text-align: center;
- margin: 0 auto;
- }
- .success_icon {
- position: absolute;
- top: 0px;
- left: 50%;
- transform: translateX(-50%) translateY(-70%);
- width: 142px;
- height: 142px;
- }
- h3 {
- font-size: 36px;
- font-weight: 800;
- color: #333333;
- margin-top: 28px;
- }
- p {
- font-size: 18px;
- font-weight: 500;
- color: #565656;
- margin-top: 28px;
- }
- .my-btn {
- height: 57px;
- width: 257px;
- text-align: center;
- line-height: 57px;
- border-radius: 6px;
- background-color: #00b96b;
- color: #fff;
- font-size: 16px;
- font-weight: 400;
- margin: 80px auto 0;
- }
- }
- /* 网站通用弹窗-视频播放 */
- .course-video-dialog {
- .el-dialog {
- width: 940px;
- border-radius: 8px;
- }
- .el-dialog__body {
- padding: 14px 40px 80px;
- }
- // 标题
- .el-dialog__title {
- @include setFontStyle(-2);
- color: rgba(0, 0, 0, 0.85);
- }
- // 视频
- .course-video-box {
- width: 100%;
- height: 480px;
- }
- p {
- @include setFontStyle(-4);
- color: rgba(0, 0, 0, 0.65);
- margin-top: 16px;
- line-height: 22px
- }
- @media (max-width: 768px) {
- .el-dialog {
- width: 90%;
- border-radius: 8px;
- margin: 0 5%;
- }
- .el-dialog__body {
- padding: 18px 16px;
- }
- // 视频
- .course-video-box {
- height: 180px;
- }
- p {
- @include setFontStyle(-6);
- padding: 10px 0 16px;
- margin: 0
- }
- }
- }
- /* 首页行业学习详情页-通用部分 */
- // banner
- .industrydetails-banner {
- width: 100%;
- height: 400px;
- background-color: #042D85;
- position: relative;
- .industrydetails-banner-box {
- width: inherit;
- height: inherit;
- background-position-x: center;
- background-repeat: no-repeat;
- }
- .free-trial-default-btn {
- position: absolute;
- top: 280px;
- left: 50%;
- margin-left: -119px;
- }
- @media (max-width: 768px) {
- height: 150px;
- .industrydetails-banner-box {
- background-size: cover;
- }
- .free-trial-default-btn {
- top: 95px;
- margin-left: -61px;
- }
- }
- }
- // 发展现状
- .industrydetails-develop-box {
- .client-container {
- padding: 48px 0 80px;
- text-align: center;
- }
- p {
- width: 480px;
- display: inline-block;
- @include setFontStyle(-5);
- color: rgba(0, 0, 0, 0.65);
- line-height: 30px;
- vertical-align: middle;
- margin-right: 120px;
- text-align: justify;
- }
- img {
- display: inline-block;
- vertical-align: middle;
- }
- @media (max-width: 768px) {
- .client-container {
- padding: 16px 30px 48px;
- display: flex;
- flex-direction: column-reverse;
- }
- p {
- width: 100%;
- display: block;
- @include setFontStyle(-6);
- color: rgba(85, 85, 85, 1);
- line-height: 24px;
- margin-right: 0;
- }
- img {
- max-width: 100%;
- display: block;
- vertical-align: unset;
- margin-bottom: 16px;
- }
- }
- }
- // 产品和服务
- .products-services-box {
- width: 100%;
- display: inline-block;
- // 头部图片
- img {
- width: 640px;
- height: 485px;
- float: right;
- }
- // 内容区域
- .products-services-content {
- width: 520px;
- float: right;
- padding: 110px 12px 0;
- box-sizing: border-box;
- margin: 0 20px;
- @include setFontStyle(-6);
- h5 {
- @include setFontStyle(4);
- color: rgba(0, 0, 0, 0.85);
- }
- i {
- width: 50px;
- height: 5px;
- display: block;
- background: #3e7ce7;
- margin: 24px 0;
- }
- p {
- line-height: 24px;
- color: rgba(0, 0, 0, 0.65);
- margin-bottom: 56px;
- text-align: justify;
- }
- .p-before-circle {
- margin-bottom: 6px;
- }
- .p-before-circle:before {
- content: '';
- width: 6px;
- height: 6px;
- display: inline-block;
- border-radius: 3px;
- margin-right: 8px;
- background: #3e7ce7;
- vertical-align: middle;
- }
- .client-btn-box {
- margin: 40px 0
- }
- .client-default-Btn, .client-default-white-Btn {
- width: 150px;
- height: 40px;
- line-height: 40px;
- display: inline-block;
- background: #3e7ce7;
- border: 1px solid #3e7ce7;
- box-sizing: border-box;
- }
- .client-default-white-Btn {
- background: #fff;
- color: #3e7ce7;
- }
- a, div.client-default-Btn {
- margin-right: 24px
- }
- span.client-default-Btn {
- background: #fff;
- color: #3e7ce7;
- margin-right: 0;
- }
- }
- @media (max-width: 768px) {
- // 头部图片
- img {
- width: 100%;
- height: auto;
- float: none;
- }
- // 内容区域
- .products-services-content {
- width: 100%;
- float: none;
- padding: 0 10px;
- margin: 0;
- @include setFontStyle(-6);
- h5 {
- @include setFontStyle(-6);
- font-weight: 700;
- color: rgba(0, 0, 0, 1);
- }
- i {
- width: 34px;
- height: 3px;
- margin: 10px 0;
- }
- p {
- margin-bottom: 30px;
- color: rgba(85, 85, 85, 1);
- }
- .client-btn-box {
- text-align: center;
- margin: 40px 0;
- }
- .client-default-Btn, .client-default-white-Btn {
- width: 120px;
- height: 35px;
- line-height: 35px;
- }
- a, div.client-default-Btn {
- margin-right: 16px
- }
- }
- }
- }
- .products-contrary-box {
- // 头部图片
- img {
- float: left;
- }
- // 内容区域
- .products-services-content {
- float: right;
- }
- }
- // 考试平台和培训平台样式--多下边线
- .platform-products-services {
- li:not(:last-child) {
- border-bottom: 1px solid #eee;
- }
- }
- // 详情页内容
- .industrydetails-content {
- li {
- margin-bottom: 16px;
- }
- i {
- width: 14px;
- height: 14px;
- float: left;
- box-sizing: border-box;
- opacity: 0.8;
- display: block;
- border: 1px solid #13192D;
- transform: rotate(45deg);
- margin-right: 16px;
- margin-top: 4px;
- }
- h5 {
- @include setFontStyle(-2);
- color: rgba(0, 0, 0, 0.85);
- margin-bottom: 24px;
- text-align: center;
- }
- p {
- @include setFontStyle(-5);
- color: rgba(0, 0, 0, 0.65);
- line-height: 22px;
- text-align: left;
- }
- @media (max-width: 768px) {
- li {
- margin-bottom: 10px;
- }
- i {
- width: 10px;
- height: 10px;
- margin-right: 8px;
- margin-top: 8px;
- }
- h5 {
- @include setFontStyle(-4);
- color: rgba(255, 255, 255, 1);
- margin-bottom: 16px;
- text-align: center;
- font-weight: 700;
- }
- p {
- @include setFontStyle(-6);
- color: rgba(255, 255, 255, 1);
- line-height: 24px;
- text-align: justify;
- }
- }
- }
- // 通用平台-新闻资讯样式
- .platform-news-information {
- padding-bottom: 80px;
- background: #f8f8f8;
- ul {
- margin-top: 48px;
- }
- li {
- width: 50%;
- display: inline-block;
- vertical-align: top;
- div {
- margin: 10px;
- padding: 10px 10px 10px 0;
- border-bottom: 1px dashed #666;
- }
- img {
- width: 190px;
- height: 118px;
- float: left;
- margin-right: 24px;
- }
- h4 {
- @include setFontStyle(-2);
- color: rgba(0, 0, 0, 0.85);
- @include single-line-ellipsis;
- margin-bottom: 8px;
- }
- h4:hover {
- color: #3e7ce7;
- cursor: pointer;
- }
- span {
- display: block;
- @include setFontStyle(-6);
- color: rgba(0, 0, 0, 0.65);
- margin-bottom: 8px;
- }
- p {
- @include setFontStyle(-6);
- height: 66px;
- line-height: 22px;
- color: rgba(0, 0, 0, 0.65);
- @include multi-line-ellipsis(4);
- }
- }
- }
- // 页面内部导航菜单(课程开发和客户案例)
- .platform-menu-ul {
- display: block;
- margin: 0 auto;
- text-align: center;
- background: #F7F9FB;
- li {
- display: inline-block;
- @include setFontStyle(-2);
- padding: 24px 32px;
- color: rgba(0, 0, 0, 0.64);
- background: #F7F9FB;
- transition: all .3s;
- box-shadow: 0 2px 4px 0 rgba(43, 92, 253, 0.16);
- border-bottom: 1px solid rgba(52, 99, 253, 0.08);
- @include single-line-ellipsis;
- cursor: pointer
- }
- li.active {
- color: #2B5CFD;
- background-image: linear-gradient(270deg, #FFFFFF 0%, #F4F6FF 100%);
- }
- li:hover {
- transform: scale(1.1);
- }
- @media (max-width: 768px) {
- background: #fff;
- margin: 20px 0 0;
- li {
- width: 100px;
- height: 30px;
- line-height: 30px;
- margin: 0 10px;
- padding: 0;
- border-radius: 5px;
- border: 1px solid #00b96b;
- @include setFontStyle(-4);
- color: #00b96b;
- background: #fff;
- box-shadow: 0 2px 4px 0 rgba(43, 92, 253, 0.16);
- box-sizing: border-box
- }
- li.active {
- color: #fff;
- background: #00b96b;
- }
- li:hover {
- transform: none;
- }
- }
- }
- /* 页面课程列表 */
- .course-learn-box {
- // video列表
- .learn-box-list {
- margin: 54px -16px 0;
- li {
- width: 33.33%;
- display: inline-block;
- text-align: center;
- a {
- display: none;
- }
- div {
- background: #fff;
- border-radius: 8px;
- margin: 0 16px 40px;
- }
- span {
- width: 342px;
- height: 192px;
- display: inline-block;
- margin-top: 16px;
- border-radius: 4px;
- overflow: hidden;
- position: relative
- }
- i {
- width: 48px;
- height: 48px;
- cursor: pointer;
- background-image: url("~static/images/client/course/course-video-icon.svg");
- display: inline-block;
- position: absolute;
- left: 50%;
- margin-left: -24px;
- z-index: 5;
- top: 50%;
- margin-top: -24px;
- background-size: cover;
- background-position: bottom;
- transition: all 0.5s;
- }
- img {
- transition: all 0.5s;
- }
- p {
- @include setFontStyle(-4);
- color: rgba(0, 0, 0, 0.65);
- padding: 24px 0 24px;
- }
- }
- li span:hover {
- img {
- transform: scale(1.1);
- }
- }
- li i:hover {
- background-image: url("~static/images/client/course/course-video-icon-a.svg");
- background-size: cover;
- background-position: bottom;
- }
- }
- @media (max-width: 768px) {
- margin: 0 6%;
- // video列表
- .learn-box-list {
- margin: 12px 0;
- li {
- width: 100%;
- margin-bottom: 20px;
- div {
- margin: 0;
- padding: 0;
- box-shadow: rgba(0, 0, 0, 0.4) 0px 0px 6px -1px;
- border-radius: 0;
- }
- span {
- width: 100%;
- height: 180px;
- margin-top: 0;
- border-radius: 0;
- }
- img {
- width: 100%;
- }
- p {
- padding: 20px 0 20px;
- @include setFontStyle(-6);
- color: #101010;
- }
- }
- }
- }
- }
- /* 底部跳转 */
- .bottom-btn-box {
- height: 65px;
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- font-size: 0;
- background: #fff;
- z-index: 99999;
- border-top: 1px solid #ccc;
- li {
- width: 50%;
- margin: 0;
- padding: 0;
- }
- .el-menu {
- box-sizing: border-box;
- padding: 10px;
- height: 65px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .el-menu-item {
- a {
- width: 100%;
- height: 40px;
- display: inline-flex;
- align-items: center;
- justify-content: center;
- text-align: center;
- font-size: 13px;
- color: #333;
- border: 1px solid #00b96b;
- border-radius: 8px;
- box-sizing: border-box;
- }
- }
- li:nth-child(1) {
- margin-right: 20px;
- span {
- color: #00b96b;
- font-size: 14px;
- }
- }
- li:nth-child(2) a {
- color: #fff;
- background: #00b96b;
- span {
- color: #fff;
- }
- }
- i {
- width: 22px;
- height: 22px;
- background-size: cover;
- display: inline-block;
- margin-right: 8px;
- }
- li:nth-child(1) i {
- background-image: url("~static/gangweiIcon/z140.png");
- }
- li:nth-child(2) i {
- background-image: url("~static/gangweiIcon/z141.png");
- }
- li.is-active span {
- color: #2881db;
- }
- li.is-active:nth-child(1) i {
- background-image: url("~static/gangweiIcon/z140.png");
- }
- li.is-active:nth-child(2) i {
- background-image: url("~static/gangweiIcon/z141.png");
- }
- }
- /********************************* 麦塔栅格**********************************/
- /*
- 栅格说明:
- 1.网站内容区域1200px;
- 2.手机端<=768
- 3.pad-------------------(769---992---1200)
- pad768*1024(手机样式)
- pad1024*1366(pad样式)
- 4.pc---1200以上
- */
- // 大于768的隐藏
- @media screen and (min-width: 769px) {
- .mta-hidden-sm {
- display: none !important;
- }
- }
- // 小于769的隐藏
- @media screen and (max-width: 769px) {
- .mta-hidden-xs {
- display: none !important;
- }
- // 提示框
- .phone-message-box {
- width: 88%;
- min-width: unset;
- top: 10% !important;
- align-items: center;
- text-align: center;
- padding: 10px 0;
- display: flex;
- justify-content: center;
- .el-message__icon {
- margin-bottom: 0px;
- }
- .el-message__icon:before {
- font-size: 16px;
- }
- }
- }
- /********************************* 麦塔移动端组件**********************************/
- @media (max-width: 768px) {
- // 移动端点击a标签背景变色bug修复
- a {
- -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
- -webkit-user-select: none;
- -moz-user-focus: none;
- -moz-user-select: none;
- }
- }
- /*************************** banner img *******************************/
- // 首页
- client-banner-box.client-banner-index {
- height: 810px;
- }
- // 其他
- .client-banner-box {
- height: 730px;
- width: 100%;
- .client-container {
- position: relative;
- }
- div.client-platform-banner {
- height: 730px;
- background-repeat: no-repeat;
- background-position: center;
- background-size: cover;
- background-color: #fff;
- .banner-btn-groups {
- position: absolute;
- width: auto;
- height: auto;
- left: 50%;
- top: 460px;
- transform: translate(-50%);
- }
- }
- @media (max-width: 768px) {
- width: 100%;
- height: auto;
- > div.client-platform-banner {
- width: 100%;
- height: 200px;
- background-size: cover;
- background-position: center;
- background-repeat: no-repeat;
- }
- .el-carousel__indicators {
- margin-bottom: 10px !important;
- }
- }
- }
- .client-new-platform-banner {
- width: 100%;
- height: 736px;
- background-color: #fff;
- background-position: center;
- background-repeat: no-repeat;
- @media (max-width: 768px) {
- height: 160px;
- background-size: cover;
- }
- }
- /***************************** 解决方案 子页面 三个 video *************/
- .client-anli-box {
- height: 600px;
- h4 {
- font-size: 30px;
- color: #333;
- margin-top: 80px;
- margin-bottom: 40px;
- font-weight: 800;
- text-align: center;
- }
- p {
- font-size: 18px;
- font-weight: 500;
- text-align: center;
- line-height: 36px;
- width: 1000px;
- margin: 0 auto 78px;
- }
- ul {
- display: flex;
- justify-content: space-between;
- li {
- width: 370px;
- > div {
- margin-right: 80px;
- }
- &:last-child {
- > div {
- margin-right: 0;
- }
- }
- }
- }
- }
- @media (max-width: 768px) {
- .client-anli-box {
- height: 50%;
- margin-bottom: 10%;
- h4 {
- font-size: 18px;
- color: #333;
- margin-top: 8%;
- margin-bottom: 4%;
- font-weight: 800;
- text-align: center;
- }
- p {
- font-size: 14px;
- font-weight: 500;
- text-align: center;
- line-height: 1.5;
- width: 100%;
- margin: 0 auto 5%;
- }
- ul {
- display: flex;
- flex-direction: column;
- li {
- width: 100%;
- > div {
- margin-right: 0;
- margin-bottom: 5%;
- }
- &:last-child {
- > div {
- margin-bottom: 0;
- }
- }
- }
- }
- }
- }
- /**************************** 解决方案 现状 *************************/
- .client-xianzhuang-box {
- background-image: url("~static/gangweiIcon/z90.png");
- width: 100%;
- height: 560px;
- margin-top: 150px;
- background-position: center;
- background-repeat: no-repeat;
- background-size: contain;
- h4 {
- font-size: 30px;
- color: #333;
- margin-top: 120px;
- margin-bottom: 40px;
- font-weight: 800;
- text-align: center;
- }
- p {
- font-size: 18px;
- font-weight: 500;
- text-align: center;
- line-height: 36px;
- width: 1000px;
- margin: 0 auto;
- }
- }
- @media (max-width: 768px) {
- .client-xianzhuang-box {
- margin-top: 50px;
- background-image: none;
- width: 100%;
- height: 30%;
- background-position: center;
- background-repeat: no-repeat;
- background-size: contain;
- h4 {
- font-size: 18px;
- color: #333;
- margin-top: 10%;
- margin-bottom: 40px;
- font-weight: 800;
- text-align: center;
- }
- p {
- font-size: 14px;
- font-weight: 500;
- text-align: center;
- line-height: 1.5;
- width: 100%;
- margin: 0 auto;
- }
- }
- }
- /**************************** 解决方案 痛点 ************************/
- .client-tongdian-box {
- h4 {
- font-size: 30px;
- color: #333;
- margin-top: 80px;
- margin-bottom: 40px;
- font-weight: 800;
- text-align: center;
- }
- ul {
- display: flex;
- justify-content: center;
- li {
- div {
- margin: 0 51px 0 0;
- width: 380px;
- height: 280px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- text-align: center;
- i {
- width: 110px;
- height: 88px;
- margin-top: 50px;
- display: inline-block;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- }
- p {
- text-align: center;
- color: #fffefe;
- font-size: 18px;
- font-weight: 800;
- line-height: 30px;
- width: 220px;
- margin: 20px auto 0;
- }
- }
- }
- }
- }
- @media (max-width: 768px) {
- .client-tongdian-box {
- h4 {
- font-size: 18px;
- color: #333;
- margin-top: 10%;
- margin-bottom: 40px;
- font-weight: 800;
- text-align: center;
- }
- ul {
- display: flex;
- flex-direction: column;
- li {
- padding: 10px;
- border: 1px solid #ccc;
- border-radius: 8px;
- margin-bottom: 10px;
- box-shadow: 0 2px 3px #ccc;
- div {
- margin: 0 20px 0 0;
- width: 100%;
- height: auto;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- text-align: center;
- display: flex;
- justify-content: flex-start;
- i {
- width: 90px;
- height: 90px;
- margin-top: 3%;
- background-color: #ccc;
- display: inline-block;
- background-size: 70%;
- background-repeat: no-repeat;
- background-position: center;
- }
- p {
- text-align: left;
- color: #333;
- font-size: 14px;
- font-weight: 500;
- line-height: 1.5;
- width: 80%;
- margin: 20px 0 0 20px;
- }
- }
- }
- }
- }
- }
- /**************************** 按钮组 申请方案+在线咨询、免费使用+在线咨询 **************************/
- .btn-groups.center {
- margin-top: 60px;
- text-align: center;
- margin-bottom: 120px;
- .btn-item {
- margin-right: 20px;
- }
- }
- @media (max-width: 768px) {
- .btn-groups.center {
- margin-top: 10%;
- margin-bottom: 10%;
- }
- }
- // H5 按钮居中
- @media (max-width: 768px) {
- .btn-groups {
- margin-top: 10%;
- margin-bottom: 10%;
- text-align: center;
- }
- }
- /******************************* 万人高并发 客户案例 **************************************/
- .client-kehuanli-box.experience-swiper-box {
- margin-top: 60px;
- margin-bottom: 140px;
- .experience-content-box {
- height: 295px;
- box-shadow: none;
- padding: 16px;
- box-sizing: border-box;
- margin: 0 4% 40px;
- .anli-content {
- h3 {
- text-align: center;
- font-weight: 800;
- font-size: 18px;
- margin-top: 10px;
- }
- p {
- font-weight: 400;
- color: #333;
- font-size: 14px;
- -webkit-line-clamp: 3;
- text-overflow: ellipsis;
- -o-text-overflow: ellipsis;
- overflow: hidden;
- word-wrap: break-word;
- display: -webkit-box;
- white-space: normal !important;
- -webkit-box-orient: vertical;
- }
- img {
- width: 100%;
- height: 200px;
- }
- }
- }
- // 分页
- .swiper-pagination-style {
- width: 76px;
- margin-left: -30px;
- bottom: 25px;
- }
- // 左右滑动
- .experience-swiper-tip {
- margin: 0 auto;
- font-size: 14px;
- font-weight: 400;
- text-align: center
- }
- @media (max-width: 768px) {
- margin-top: 20px;
- margin-bottom: 20px;
- h4 {
- text-align: center;
- font-weight: 800;
- font-size: 18px;
- color: #333;
- line-height: 1.5;
- }
- .experience-content-box {
- padding: 0;
- margin: 20px 0 20px;
- }
- }
- }
- .client-kehuanli-box {
- position: relative;
- .anli-box-wrap {
- width: 1100px;
- height: 320px;
- margin: 0 auto;
- background: #fff;
- padding: 20px;
- border-radius: 8px;
- }
- .anli-box {
- width: 1100px;
- height: 320px;
- margin: 0 auto;
- background: #fff;
- padding: 20px;
- border-radius: 8px;
- z-index: 1;
- }
- h4 {
- text-align: center;
- font-weight: 800;
- font-size: 30px;
- color: #333;
- line-height: 50px;
- }
- .left-bg {
- width: 353px;
- height: 293px;
- background: #46C37B;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 0;
- opacity: 0.33;
- }
- .right-bg {
- width: 270px;
- height: 150px;
- background: #A9D49C;
- position: absolute;
- right: 0;
- bottom: -80px;
- z-index: 0;
- opacity: 0.33;
- }
- .center-bg {
- width: 160px;
- height: 150px;
- background: #A9D49C;
- position: absolute;
- left: 600px;
- bottom: -80px;
- z-index: 0;
- opacity: 0.33;
- }
- .el-carousel__container {
- height: 100% !important;
- }
- .el-carousel__item {
- background: #fff;
- border-radius: 8px;
- }
- }
- /****************************** 青谷解决方案 ******************************************/
- .client-fangan-box {
- h4 {
- font-size: 30px;
- color: #333;
- margin-top: 80px;
- margin-bottom: 40px;
- font-weight: 800;
- text-align: center;
- }
- .btn-groups {
- margin-top: 50px;
- }
- @media (max-width: 768px) {
- h4 {
- font-size: 18px;
- color: #333;
- margin-top: 30px;
- margin-bottom: 40px;
- font-weight: 800;
- text-align: center;
- }
- .btn-groups {
- margin-top: 30px;
- }
- }
- }
- /******************************* 新闻关键词 *******************************************/
- a.keyword {
- color: #00b96b !important;
- }
- /**************** 分页 ****************/
- .el-pagination.is-background .el-pager li:not(.disabled).active {
- background-color: #00B96B;
- }
- .el-pagination.is-background .el-pager li:not(.disabled):hover {
- color: #00B96B;
- }
- .el-pagination.is-background .el-pager li:not(.disabled).active:hover {
- color: #fff;
- }
|