@charset "UTF-8";

html,body{ color:#666;background:#fff;}
body,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;max-height: 999999999px;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display:block; }
audio,canvas,video { display: inline-block;*display: inline;*zoom: 1; }
body,button,input,select,textarea{ font: 16px/1.5 Arial,'思源黑体',PingFang SC,Microsoft Yahei,Arial,sans-serif; }
input,select,textarea{ font-size:100%; }
th{ text-align:inherit; }
fieldset,img{ border:0; }
iframe{ display:block; }
abbr,acronym{ border:0;font-variant:normal; }
del { text-decoration:line-through; }
address,caption,cite,code,dfn,em,th,var { font-style:normal; font-weight:500; }
ol,ul { list-style:none; }
caption,th { text-align:left; }
h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:500; }
q:before,q:after { content:''; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup {top: -0.5em;}
sub {bottom: -0.25em;}
a:hover { text-decoration:underline; }
ins,a { text-decoration:none; }
* {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;margin: 0;padding: 0;}
* :before, * :after {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
a{display: inline-block;}
img{display: block;max-width: 100%;height: auto;outline: none;}
.clearfix:after { visibility:hidden; display:block; font-size:0; content:" "; clear:both; height:0; }
.clearfix { zoom:1; }
body .hide { display:none; }
.left,.right { display:inline; }
.left { float:left; }
.right { float:right; }
.mb50{margin-bottom:50px}
.mb20{margin-bottom:20px}
.mb10{margin-bottom:10px}
.mb5{margin-bottom:5px}
.w1500{width: 1500px;margin: 0 auto;}
.mflex_center{display: flex;justify-content: center;align-items: center;}
.m-content a{display: inline-block;}
.m-content p{font-size: 16px;line-height: 30px;text-align: justify;text-indent: 2em;color: #555;}
.m-content img{display: block;margin: 1em auto;max-width: 100%;height: auto;}
.phoneshow{display: none;}
.anchorBL{display: none!important;}
.main{line-height: 30px; padding: 4% 0;}

.font70{font-size: 60px;}
.font45{font-size: 45px;}
.font35{font-size: 35px;}
.font30{font-size: 30px;}
.font28{font-size: 28px;}
.font26{font-size: 26px;}
.font24{font-size: 24px;}
.font22{font-size: 22px;}
.font20{font-size: 20px;}
.font18{font-size: 18px;}
.font16{font-size: 16px;}

@media (max-width: 440px){
    .mb50{margin-bottom:30px}
}

html::-webkit-scrollbar{display: none;}
a{transition: all .5s;}

/*解决手机版点击背景问题*/
a:hover, a:visited, a:link, a:active , a:focus {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
    outline: none;

}

/*锚点定位*/
.md{position: relative;top: -120px;}

/*过渡*/
.trans{transition: all .5s;}

/*阴影*/
.bx:hover{ box-shadow: 0px 0px 10px 0px rgba(0,0,0,.2)}

/*按钮效果*/
.more.mxg1 {
    -webkit-transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    z-index: 2;
    color: #fff;
}
.more.mxg1::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background:#013d6d;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.more.mxg1:hover {
    color: #fff;
    background: transparent;
}
.more.mxg1:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

/*放大图片*/
.bigimg{overflow: hidden;}
.bigimg img{display: block;transition: all .8s;}
.bigimg:hover img{transform:translateZ(0) scale(1.05);}

/*卡片翻转*/
@-webkit-keyframes flipOutYtest {
    from {
        -webkit-transform: perspective(1400px);
        transform: perspective(1400px);
    }

    40% {
        -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 60deg);
        transform: perspective(1400px) rotate3d(0, 1, 0, 60deg);
        opacity: 1;
    }

    50% {
        -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }

    to {
        -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 180deg);
        transform: perspective(1400px) rotate3d(0, 1, 0, 180deg);
        opacity: 0;
    }
}

.test{
    -webkit-animation: flipOutYtest 0.75s linear;
    animation: flipOutYtest 0.75s linear;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@-webkit-keyframes flipInYtest {
    from {
        -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -180deg);
        transform: perspective(1400px) rotate3d(0, 1, 0, -180deg);
        opacity: 0;
    }

    50% {
        -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -90deg);
        transform: perspective(1400px) rotate3d(0, 1, 0, -90deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -60deg);
        transform: perspective(1400px) rotate3d(0, 1, 0, -60deg);
        opacity: 1;
    }

    to {
        -webkit-transform: perspective(1400px);
        transform: perspective(1400px);
        opacity: 1;
    }
}

.test2{
    -webkit-animation: flipInYtest 0.75s linear;
    animation: flipInYtest 0.75s linear;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes roate {
    from {transform: rotate(0);}
    to {transform: rotate(360deg);}
}

/*input框*/

.input-box{outline: none; -webkit-appearance: none; /*去除系统默认的样式*/-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 点击高亮的颜色*/background-color: transparent;}
.input-box::-webkit-input-placeholder{color: #ccc;}
.input-box::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}
.input-box:-ms-input-placeholder {
    color: #ccc;
}
.input-box::-webkit-input-placeholder {
    color: #ccc;
}
.input-box:placeholder-shown {
    text-overflow: ellipsis;
}

/*滚动条样式*/
.gdt{overflow: auto;}
.gdt::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    padding-right: 10px
}

.gdt::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #eee
}

.gdt::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0054aa;
}


body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    padding-right: 10px
}

body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #eee
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0054aa;
}


/*悬浮下划线出现*/
.m-xhx{position: relative;}
.m-xhx:after{position: absolute;left: auto;right: 0;bottom: 0px;width: 0;height: 1px;background-color: #999;transition: 0.2s cubic-bezier(0.260, 0.005, 0.000, 1.035);content: "";z-index: 1;}
.m-xhx:hover:after{right: auto;left: 0;width: 100%;}


/*单行超出省略*/
.m-sl{text-overflow: ellipsis;overflow: hidden;white-space: nowrap;}
.m-twsl{display: -webkit-box!important;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.m-thsl{display: -webkit-box!important;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;}


/*通用*/
.ovhidden{overflow: hidden;}
.cz{position: relative; z-index: 22;}
.mflex{display: flex;flex-wrap: wrap;}


/*input placeholder 样式 */

::-webkit-input-placeholder {
    color: #999999;
}

:-moz-placeholder {
    color: #999999;
}

::-moz-placeholder {
    color: #999999;
}

:-ms-input-placeholder {
    color: #999999;
}

/*修改滚动条*/

::-webkit-scrollbar{
    width:6px;
    height:6px ;
}
::-webkit-scrollbar-track{
    box-shadow: inset 0 0 6px transparent;
    background: #f8f8f8;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb{
    border-radius: 6px;
    background: #3f85c1;
}

/* 更改layer样式 */
.layui-layer-btn{
    text-align: center !important;
    padding-bottom:28px !important;
}
.layui-layer-btn .layui-layer-btn0{
    display: block;
    margin:0 auto !important;
    border-radius: 0 !important;
    width:88px !important;
    text-align: center !important;
    height: 34px !important;
    line-height: 34px !important;
    border-color: #237ed2 !important;
    background-color: #237ed2 !important;
}
.layui-layer-btn .layui-layer-btn0:hover{
    background: #348eed !important;
    border-color: #348eed !important;
}

@font-face {
    font-family: 'iconfont';  /* Project id 2618187 */
    src: url('../fonts/font_2618187_br0iyrxedgv.woff2') format('woff2'),
        url('../fonts/font_2618187_br0iyrxedgv.woff') format('woff'),
        url('../fonts/font_2618187_br0iyrxedgv.ttf') format('truetype');
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*鼠标效果*/
.mhover {position: relative;overflow: hidden;-webkit-transition: all 0.3s;transition: all 0.3s;transform: translate(0,0);}
.mhover::before,.mhover::after {content: '';position: absolute;height: 100%;width: 100%;bottom: 100%;left: 0;z-index: 0;-webkit-transition: -webkit-transform 0.3s;transition: transform 0.3s;-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);}
.mhover::before {background: #7fa9d4;}
.mhover::after {background: #0054aa;}
.mhover:hover {color: #fff;}
.mhover:hover::before,.mhover:hover::after {-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0);}
.mhover:hover::after {-webkit-transition-delay: 0.175s;transition-delay: 0.175s;}
.mhover span,.mhover i,.mhover img {position: relative;z-index: 1;}

/*定位*/
.dwcenter{position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.dwzycenter{position: absolute;left: 50%;transform: translateX(-50%);}
.dwsxcenter{position: absolute;top: 50%;transform: translateY(-50%);}

/*头部*/
.header{position: fixed;left: 0;top: 0;width: 100%;border-bottom: 1px solid #e5e5e5;background: #fff; z-index: 9999;}
.header .head-mn{justify-content: space-between;align-items: center;padding: 0 40px;}
.header .head-nav li{position: relative; margin-right: 70px;}
.header .head-nav li:before{position: absolute;left: 0;bottom: -1px;width: 0px;height: 3px;background: #0054aa;transition: all .5s;content: "";}
.header .head-nav li:last-child{margin-right: 50px;}
.header .head-nav .nav{position: relative;line-height: 92px;color: #333;}
.header .head-nav li.active:before{width: 100%;}
.header .head-nav li.active .nav{color: #0054aa;}
.header .head-nav li:hover:before{width: 100%;}
.header .head-nav li:hover .nav{color: #0054aa;}
.header .head-nav li .nav-main{position: fixed;top: 97px;left: 0;justify-content: center;padding: 42px 0; width: 100%;background: #fff;opacity: 0;pointer-events: none;}
.header .head-nav li .nav-main .ernav{padding: 0 31px;text-align: center;line-height: 1em; color: #333;}
.header .head-nav li .nav-main .ernav .bigimg{border-radius: 10px;margin-bottom: 18px;}
.header .head-nav li .nav-main.show{top: 93px;opacity: 1;pointer-events: auto;}
.header .head-nav .head-mes{border-left: 1px solid #e5e5e5;align-items: center;}
.header .head-nav .head-mes .lang{position: relative;padding: 0 36px 0 46px;height: 100%; color: #333;}
.header .head-nav .head-mes .lang .top{height: 100%;align-items: center;cursor: pointer;}
.header .head-nav .head-mes .lang .bot{top: 75px;width: 80px;box-shadow: 0px 0px 10px rgba(0,0,0,.2); background: #fff;opacity: 0;pointer-events: none;}
.header .head-nav .head-mes .lang .bot a{display: block;line-height: 40px;text-align: center;color: #666;}
.header .head-nav .head-mes .lang .bot a:hover{background: #0054aa;color: #fff;}
.header .head-nav .head-mes .lang .sj{margin-left: 8px;border-top:6px solid #666;border-left: 4.5px solid transparent;border-right: 4.5px solid transparent;}
.header .head-nav .head-mes .lang:hover .bot{top: 70px;opacity: 1;pointer-events: auto;}
.header .head-nav .head-mes .search{cursor: pointer;}
.header-box{height: 92px;}
.header.index{border-color:rgba(255,255,255,.2);background: none;}
.header.index .head-nav .nav{color: #fff;}
.header.index .head-nav li:before{background: #fff;}
.header.index .head-nav li.active .nav{color: #fff;}
.header.index .head-nav li:hover .nav{color: #fff;}
.header.index .head-nav .head-mes{border-color:rgba(255,255,255,.2);}
.header.index .head-nav .head-mes .lang{color: #fff;}
.header.index .head-nav .head-mes .lang .sj{border-top:6px solid #fff;}
.header.index .head-nav .head-mes .search .iconfont{color: #fff;}
.header.indexoth.index{border-color:#e5e5e5;background: #fff;}
.header.indexoth.index .head-nav .nav{color: #333;}
.header.indexoth.index .head-nav li:before{background: #0054aa;}
.header.indexoth.index .head-nav li.active .nav{color: #0054aa;}
.header.indexoth.index .head-nav li:hover .nav{color: #0054aa;}
.header.indexoth.index .head-nav .head-mes{border-color:#e5e5e5;}
.header.indexoth.index .head-nav .head-mes .lang{color: #333;}
.header.indexoth.index .head-nav .head-mes .lang .sj{border-top:6px solid #666;}
.header.indexoth.index .head-nav .head-mes .search .iconfont{color: #666;}
.header.header-small .head-nav .nav{line-height: 80px;}
.header.header-small .head-nav .nav-main.show{top: 81px;}
.search-main .ant-input{width: calc(100% - 50px);}
.search-main .tj{width: 50px;height: 50px;border: none;cursor: pointer; background: #0054aa;}
.search-main .tj span{color: #fff;}
.header .head-menu{right: 0;display: none;}
.head-menu .line{display: block;width: 30px;height: 2px;margin: 6px 0;background: #0054aa;transition: opacity .2s,margin-top .2s,background-color .2s,-webkit-transform .2s .1s;transition: opacity .2s,margin-top .2s,transform .2s .1s,background-color .2s;transition: opacity .2s,margin-top .2s,transform .2s .1s,background-color .2s,-webkit-transform .2s .1s;}
.head-menu-close .line:nth-child(1){-webkit-transform: translateY(8px)rotate(45deg);transform: translateY(8px)rotate(45deg);}
.head-menu-close .line:nth-child(2){opacity: 0;}
.head-menu-close .line:nth-child(3){-webkit-transform: translateY(-8px)rotate(-45deg);transform: translateY(-8px)rotate(-45deg);}
.header .mhead-main{position: fixed;top: 60px;right: -100%;width: 100%;height: calc(100vh - 60px);padding-bottom: 30px;background: #0054aa;overflow-y: scroll;transition: all .5s;box-sizing: border-box;}
.head-open .mhead-main{right: 0;}
.mhead-main .phead-nav .item{border-bottom: 1px solid rgba(222,222,222,.2);}
.mhead-main .phead-nav .item .item-link{position: relative;display: block; padding: 0 3%;line-height: 60px;overflow: hidden;color: #fff;}
.mhead-main .phead-nav .item .item-link .jt{right: 3%;transform:translateY(-50%) rotate(-90deg); font-size: 20px;font-weight: bold;transition: all .5s;}
.mhead-main .phead-nav .item .item-link .jt svg{display: block;}
.mhead-main .phead-nav .subnav-box{display: none;padding: 0 6% 20px;}
.mhead-main .phead-nav .subnav-box .subnav .sublink{display: block;line-height: 40px;font-size: 14px;color: #fff; text-align: left;}
.mhead-main .phead-nav .item-link .jt.jt-rotate{transform:translateY(-50%) rotate(0deg);}
.mhead-main .head-tool{display: flex;justify-content: space-between;width: 100%;margin-top: 50px;padding: 20px 40% 20px 3%;background: #fff;box-sizing: border-box;}
.mhead-main .head-mes{padding: 30px 3%;align-items: center; font-size: 14px;line-height: 40px;color: #fff;}
.mhead-main .head-mes a{display: block;margin-right: 20px;padding-right: 20px;border-right: 1px solid rgba(222,222,222,.2);font-size: 18px;line-height: 1em;color: #fff;}
.mhead-main .head-mes .search{cursor: pointer;}
.header-box{height: 92px;}

.contact-jobform{position: fixed;top: 0;left: 0;width: 100%;height: 100%;display: none; z-index: 9999999;}
.contact-jobform .mengc{position: absolute;top: 0;left: 0;width: 100%;height: 100%; background: rgba(0,0,0,.45);}
.contact-jobform .jobform{width: 94%;max-width: 1000px;padding: 80px 100px;box-sizing: border-box;background: #fff;z-index: 2;}
.contact-jobform .jobform .close{position: absolute;right: 0;top: 0;cursor: pointer;z-index: 3;}
.ant-input {position: relative;display: inline-block; width: 100%;height: 50px;padding: 4px 11px;box-sizing: border-box;margin: 0; border: 1px solid #E5E5E5;
            font-variant: tabular-nums;list-style: none;font-feature-settings: 'tnum';font-size: 14px;line-height: 1.5;
            color: #595959;background-color: #FFFFFF;background-image: none;transition: all 0.3s;}
.ant-input:hover {border-color: #0054aa;border-right-width: 1px !important;}
.ant-input:focus {border-color: #0054aa;border-right-width: 1px !important;outline: 0;box-shadow: 0 0 0 2px rgba(158, 158, 158, 0.2);}
.ant-input::-moz-placeholder {color: #999;opacity: 1;}
.ant-input:-ms-input-placeholder {color: #999;}
.ant-input::-webkit-input-placeholder {color: #999;}
.ant-input:placeholder-shown {text-overflow: ellipsis;}

/*底部*/
.footer{background: #252c33;}
.footer .footer-top{padding: 33px 0 14px;}
.footer .footer-top .proqiu{width: 34px;height: 34px;margin-left: 20px;}
.footer .footer-top .proqiu span{display: block;line-height: 1em; font-size: 22px;color: #252c33;}
.footer .footer-top .proqiu:hover{background: none;}
.footer .footer-top .proqiu:hover span{color: #fff;}
.footer .footer-cen{position: relative;}
.footer .footer-cen .line1{width: 34px;height: 3px;margin: 0 auto;background: #fff;}
.footer .footer-cen .line2{position: absolute;top: 1px;left: 0;width: 100%;height: 1px;background: rgba(255,255,255,.1);}
.footer-nav{padding: 45px 0; justify-content: space-between;}
.footer-nav dt a{display: block;margin-bottom:26px; line-height: 1em;color: #fff;}
.footer-nav dd a{display:inline-block; line-height: 34px;color: #dbdbdb;}
.footer-bot a,.footer-bot p{line-height: 1em;color: #dbdbdb;}
.footer-bot a:hover{color: #fff;}
.footer-bot .footer-bott{text-align: right;}
.footer-bot .line{width: 100%;height: 1px;margin: 15px 0;background: rgba(255,255,255,.1);}
.footer-bot .footer-botb{justify-content: space-between;padding-bottom: 16px;}
.proqiu{border-radius: 100%;box-sizing: border-box;background: #fff;}
.proqiu img{max-width: 80%;max-height: 80%;}
.fix-top{position: fixed;right: 5%;bottom: min(calc(5vw + 16px),80px);display: none;opacity: .8;writing-mode: vertical-lr;letter-spacing: .05em;line-height: 1.25rem;text-transform: uppercase;font-size: .875rem;font-weight: 600; z-index: 99;}
.fix-top .line{width: 1px;height: 5rem;display: block;align-items: center;margin:0 auto 1.25rem;background-image: linear-gradient(to bottom,#999 50%,transparent 50%);
               background-size: 100% 200%; -webkit-animation: elastic-up 2.5s infinite cubic-bezier(0.85,0,0.15,1) both;animation: elastic-up 2.5s infinite cubic-bezier(0.85,0,0.15,1) both}
@-webkit-keyframes elastic-up {0% {background-position: center 0}to {background-position: center 200%}}
@keyframes elastic-up {0% {background-position: center 0}to {background-position: center 200%}}
.fix-top.on{display: flex;}
.fix-top:hover{opacity: 1;}

@media (max-width: 1720px){
    .font70{font-size: 50px;}
    .font45{font-size: 40px;}
    .font35{font-size: 30px;}
    .font30{font-size: 28px;}
    .font28{font-size: 26px;}
    .font26{font-size: 24px;}
    .w1500{width: 90%;}
    .header .head-mn{width: 94%;margin: 0 auto;padding: 0;}
    .header .head-nav li{margin-right: 50px;}
    .header .head-nav li:last-child{margin-right: 30px;}
    .header .head-nav .head-mes .lang{padding: 0 20px 0 30px;}
}

@media (max-width: 1550px){
    .header .head-nav li{margin-right: 30px;}
    .header .head-nav li:last-child{margin-right: 20px;}
    .header .head-nav .head-mes .lang{padding: 0 10px 0 20px;}
}

@media (max-width: 1440px){
    .font70{font-size: 50px;}
    .font45{font-size: 35px;}
    .font35{font-size: 26px;}
    .font30,.font28,.font26{font-size: 24px;}
    .font24{font-size: 20px;}
}

@media (max-width: 1240px){
    body,button,input,select,textarea{ font: 14px/1.5 Arial,'思源黑体',PingFang SC,Microsoft Yahei,Arial,sans-serif }
    .font70{font-size: 40px;}
    .font45{font-size: 30px;}
    .font35{font-size: 24px;}
    .font30,.font28,.font26{font-size: 24px;}
    .font24,.font22{font-size: 18px;}
    .font20,.font18{font-size: 16px;}
    .font16{font-size: 14px;}
    .w1500{width: 94%;}
    .m-content p{font-size: 14px;line-height:2em;}

    .header{border-bottom: 1px solid #dedede;box-shadow: 0 0 10px rgb(0 0 0 / 20%);box-sizing: border-box; background: #fff!important;}
    .header .head-mn{position: relative;height: 59px;width: 96%;}
    .header .head-mn .logo img{height: 40px;width: auto;}
    .header .head-nav{display: none;}
    .header .head-menu{display: block;}
    .header-box{height: 60px;}
    .footer .footer-top{padding: 10px 0;}
    .footer .footer-top img.left{height: 40px;width: auto;}
    .footer .footer-top .proqiu{width: 30px;height: 30px;margin-top: 5px;}
    .footer .footer-top .proqiu span{font-size: 16px;}
    .footer-bot .footer-bott{padding-top: 15px;text-align: center;}
    .footer-bot .footer-botb{justify-content: center;}
    .footer-bot p{margin: 0 10px;}
    .footer-bot a, .footer-bot p{line-height: 1.5em;text-align: center;}
}

@media (max-width: 940px){
    .footer-nav{padding: 30px 0 3px;}
    .footer-nav dt a{margin-bottom: 15px;}
    .footer-nav dl dd{display: none;}
    .footer-nav .ewm{width: 100%;}
    .footer-nav .ewm img{margin: 0 auto;width: 100px;height: auto;}
}

@media (max-width: 768px){
    .font70{font-size: 32px;}
    .font45{font-size: 26px;}
    .font35{font-size: 22px;}
    .font30,.font28,.font26{font-size: 20px;}
    .phoneshow{display: block;}
    .phonehide{display: none!important;}
    .fix-top{display:none!important;}
    .contact-jobform .jobform{padding:50px 10px 40px;height: 80%;display: flex;align-items: center;}
    .contact-jobform .jobform .sq-form{max-height: 100%;padding: 0 10px;}
    .contact-jobform .jobform .close img{width: 40px;height: auto;}
    .ant-input{height: 40px;display: block;}
    .search-main.contact-jobform .jobform{height: auto;}
    .search-main.contact-jobform .jobform form{width: 100%;}
    .search-main .ant-input{width:calc(100% - 40px);}
    .search-main .tj{width: 40px;height: 40px;}
}

@media (max-width: 440px){
    .font70{font-size: 28px;}
    .font45{font-size: 24px;}
    .font35{font-size: 20px;}
    .font30,.font28,.font26{font-size: 18px;}
    .font24, .font22{font-size: 16px;}
}

@media screen and (min-width:0\0){
    body,button,input,select,textarea{ font: 16px/1.5em "Arial,"Source Han Sans","\u82f9\u65b9\u000d\u000a" , "\5FAE\8F6F\96C5\9ED1""; }
    .header .head-nav li .nav-main{display: none;}
    .header .head-nav li .nav-main.show{display: flex;}
}
