@charset "utf-8";
html{
    color:#000;
    background:#FFF;
    font-size: 16px;
}

html, body {
    width:100%;
    user-select: none;
}


@font-face{ font-family: EUROSTILE-BOLDEXTENDEDTWO; src: url(../fonts/EUROSTILE-BOLDEXTENDEDTWO.OTF);}
/*@font-face{ font-family: SourceHanSansCN-Normal; src: url(../fonts/SourceHanSansCN-Normal.ttf);}*/

body {
    margin: 0 auto;
    position: relative;
    padding: 0;
    width: 100%;
    color: #1f1f1f;
    line-height: 1;
    background: #fff;
    /*font-family: SourceHanSansCN-Normal;*/
}

@media screen and (max-width: 1600px) {
    html {
        font-size: 14px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* :before, * :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


a { text-decoration:none;cursor:pointer; color: inherit;}
a:focus{outline:0;}
li{list-style:none;}
.clear{ clear:both; height:0; line-height:0; font-size:0;}
.clearfix:after{ content:""; clear:both; height:0; visibility:hidden; display:block;}
.clearfix{*zoom:1}
p{ word-spacing:-1.5px;}
.tr { text-align:right;}
.tl { text-align:left;}
.center { text-align:center;}
.fl { float:left;}
.fr { float:right;}
input {
    border: none;
    outline: none;
}
em,i{font-style: normal;}
img {
    max-width:100%
}
::-webkit-scrollbar{width:5px;height:5px;}
::-webkit-scrollbar-button:vertical{display:none}
::-webkit-scrollbar-track:vertical{background-color:black}
::-webkit-scrollbar-track-piece{background:#E3E3E3}
::-webkit-scrollbar-thumb:vertical{background-color:#555;border-radius:30px}
::-webkit-scrollbar-thumb:vertical:hover{background-color:#3B3B3B}
::-webkit-scrollbar-corner:vertical{background-color:#535353}






.w_1400{max-width: 1400px;width: 95%;margin: 0 auto;}
.hide { display:none; }
.breadcrumb {
    height:60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ebebeb;
}



header{height:80px;position: fixed;left: 0;top: 0;width: 100%;z-index: 999;background: #b1b1b18a;box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(24px);}
.header{position: relative;height:100%;display: flex;justify-content: space-between;}
.header .logo{height:100%;display: flex;align-items: center}
.header .logo img{max-height: 70px;width: auto;}
.header .nav {height:100%;display: flex;}
.header .nav .column{position: relative;padding: 0 1rem;cursor:pointer;display: flex;align-items: center;}
.header .nav .column:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #004898;
    transition: all .5s;}
.header .nav .column:not(:nth-last-child(-n+3)):after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 8px;
    transform: translateY(-50%);
    background: #dddddd;
}
.header .nav .column:nth-last-child(-n+3) {
    padding: 0 0.5rem;
}
.header .nav .column:nth-last-child(3) {
    padding: 0 0.5rem 0 5rem;
}
.header .nav .column:nth-last-child(3)>a{
    font-size: 1rem;
}
.header .nav .column.cur:before{width:100%;}
.header .nav .column .item{display:flex;color: #fff;font-size: 1.1rem;height:100%;align-items: center;}
.header .nav .column:hover .item{color: #0058a7;}

.header .dropDown{height:100%;display: flex;align-items: center}
.header .dropDown .head_menu_bth{width: 2.5rem;height:2.5rem;border-color: #d9d9d9;display: flex;justify-content: center;align-items: center;flex-flow: column;
    border-radius: 50%;
    background-color: #0058a7;
    transition: 1s;
    animation: circle-shadow 2s infinite both;
}
@keyframes circle-shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 #0058a7;
        box-shadow: 0 0 0 0 #0058a7;
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(0, 88, 167, 0);
        box-shadow: 0 0 0 20px rgba(0, 88, 167, 0);
    }
}
.header .line01 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #e7161a;
    z-index: -1;
    animation: longer 4s 0.5s linear forwards;
}
@keyframes longer {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.head_menu_bth .line{display: block;width: 20px;height: 2px;margin: 2px 0;background: #fff;transition: opacity .2s,margin-top .2s,background-color .2s,-webkit-transform .2s .1s;}
.head_menu_close .line:nth-child(1){-webkit-transform: translateY(6px)rotate(45deg);transform: translateY(6px)rotate(45deg);}
.head_menu_close .line:nth-child(2){opacity: 0;}
.head_menu_close .line:nth-child(3){-webkit-transform: translateY(-6px)rotate(-45deg);transform: translateY(-6px)rotate(-45deg);}


.header #searchBtn {color:#fff;height:100%;display: flex;align-items: center}
.header #searchBtn .yuan{background: #004898;width:2.5rem;height:2.5rem;border-radius: 50%;display: flex;align-items: center;justify-content: center}
.header #searchBtn .iconfont{font-size: 18px;transition: 0.5s}
.header #searchBtn:hover .iconfont{transform: scale(1.2)}


header.fixed{background: #81818191;box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.02);backdrop-filter: blur(24px);}
header:hover {background: #fff;box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.02);}
header:hover .nav .column .item{color: #333;}

.header .nav .column .sub {
    position: absolute;
    left: 0;
    top: 100%;
    width: 300px;
    background: #fff;
    display: none;
    border: 1px solid #E7E7E7;
}
.header .nav .column .sub.even {
    width: 600px;
}
.header .nav .column:hover .sub {display: flex;flex-wrap:wrap;}
.header .nav .column:hover>a .iconfont {transform: rotate(180deg)}
.header .nav .column .sub .two_li {
    position: relative;
    background: #fff;
    width:100%;
}
.header .nav .column .sub.even .two_li {
    position: relative;
    background: #fff;
    width:50%;
}
.header .nav .column .sub .two_li:nth-child(odd) {
    border-right: 1px solid #E7E7E7;
}

.header .nav .column .sub .two_li>a {
    margin: 0 50px 0 30px;
    border-bottom: 1px dashed #878787;
    line-height: 2.8rem;
    text-align: left;
    color: #878787;
    font-size: 1rem;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
}
.header .nav .column .sub .two_li:last-child a {
    border-bottom: 0;
}

.header .nav .column .sub .two_li>a:hover {
    color: #004898;
    font-weight: 600;
}

.header .nav .column .sub .two_li .three_li{
    position: absolute;
    left: 100%;
    top: 0;
    width: 300px;
    min-height: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    pointer-events: none;
    transition: 0.4s;
    border-left: 1px solid #dcdcdc;
    text-align: left;
}
.header .nav .column .sub .two_li:hover .three_li {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    pointer-events: visible;
}
.header .nav .column .sub .two_li .three_li a {
    margin: 0;
    padding-left: 30px;
    border-bottom: 1px dotted #d9d9d9;
    line-height: 2.8rem;
    position: relative;
    color: #878787;
    font-size: 1rem;
    transition: 0.3s;
    display: flex;
    justify-content: space-between;
}
.header .nav .column .sub .two_li .three_li a:not(:first-child):last-child {
    border-bottom: 0;
}
.header .nav .column .sub .two_li .three_li a:hover {
    color: #004898;
    font-weight: 600;
}



.headerDown{position: fixed;top: 0;left: 0;transform: translateY(-100%);width: 100%;height: 100vh;background: #0f5cae;z-index: 998;transition: transform 1s cubic-bezier(.3,.1,.3,1);}
.headerDown.show{transform:none;}
.headerDown .main{ height: 100%;display: flex;flex-wrap: wrap;align-items: center}
.headerDown .main .column{position: relative;box-sizing: border-box;}
.headerDown .main .column a{color: #fff;}
.headerDown .main .column.mn3{width: calc(100% - 600px);}
.headerDown .main .column.mn3 p{line-height: 30px;color: #fff;}
.headerDown .main .column.mn3 .p2{padding: 30px 0;}
.headerDown .main .column{padding-left: 35px;}
.headerDown .main .column:before{position: absolute;top: 0;left: 0; width: 1px;height: 100%;background: #3473ad;content: ""; }
.headerDown .main .column a{position: relative;margin-bottom: 32px;display: inline-block; line-height: 38px;}
.headerDown .main .column a:after{position: absolute;top: 7px;left: -35px;width: 1px;height: 24px;background: #fff;content: "";transition: transform .35s cubic-bezier(.3,.1,.3,1);transform: scaleY(0);transform-origin: bottom center;}
.headerDown .main .column a:hover:after{transform: scaleY(1);transform-origin: top center;}
.headerDown .main .column a.on:after{transform: scaleY(1);transform-origin: top center;}
.headerDown .main .column.mn1{width: 200px;}
.headerDown .main .column.mn2{width: 400px;}
.headerDown .main .column.mn2{display: flex;flex-flow: column;align-items: flex-start;}
.headerDown .main .column.mn2 a:before{left: 0;bottom: 6px;top: auto;width: calc(100% + 20px);height:1px;transform: scaleX(0);transform-origin: right center;}
.headerDown .main .column.mn2 a:hover:before{transform-origin: left center;transform: scaleX(1);}
.headerDown .entit{
    bottom: 0;white-space: nowrap; font-size: 240px;text-transform: uppercase; color: #386cd4;opacity: .3;position: absolute;left: 50%;transform: translateX(-50%);
    z-index: -1;
}
.headerDown .xg{transition: transform .35s cubic-bezier(.3,.1,.3,1),opacity .35s cubic-bezier(.3,.1,.3,1);transform: translateY(150px);opacity: 0;}
.headerDown .xg.show{transition: transform .75s cubic-bezier(.165,.84,.44,1),opacity 1s cubic-bezier(.165,.84,.44,1);transform: none;opacity: 1;}
.headerDown .xg0{transition-delay: .1s!important}
.headerDown .xg1{transition-delay: .2s!important}
.headerDown .xg2{transition-delay: .3s!important}
.headerDown .xg3{transition-delay: .4s!important}
.headerDown .xg4{transition-delay: .5s!important}
.headerDown .xg5{transition-delay: .6s!important}
.headerDown .xg6{transition-delay: .7s!important}
.headerDown .xg7{transition-delay: .8s!important}
.headerDown .xg8{transition-delay: .9s!important}

#search_box{position: fixed; width: 100%; height: 100%;  top: 0; left: 0; z-index:999999; pointer-events: none; visibility:hidden; opacity:0;  transition:.5s;}
#search_box.act{  display: block;pointer-events: auto; visibility:visible; opacity:1;}
.search_main{
    box-sizing:border-box; z-index:999;
    display: block;
    position:relative;
}
.search_close{ width: 67px !important; height: 67px !important; line-height: 65px !important; display:block; border-radius: 50%; text-align: center; position:relative;}
.search_close:before{ content:""; display:block; width:100%; height:100%; position:absolute; left:0; top:0; border: 2px solid rgba(100%,100%,100%,.5); border-radius: 50%;}
.search_close .closeCircle{position:absolute;top:0;left:0;overflow: inherit;display: block;pointer-events: none;}
.search_close .closeCircle circle {
    fill: none; box-sizing:border-box;
    stroke-width: 2;
    stroke: none;
    stroke-dasharray: 0 , 188.49;
    stroke-dashoffset:188.49;
    transition: all .3s linear 0s;
}
.search_close:hover .closeCircle circle {
    stroke:#fff;
    stroke-dasharray:188.49 , 0;
    stroke-dashoffset:188.49;
    -webkit-transition: all .7s cubic-bezier(0.11, 0.57, 0.58, 1);
    transition: all .7s cubic-bezier(0.11, 0.57, 0.58, 1);
}
.search_close{ position: absolute; cursor:pointer; color:#fff; font-size:30px; right: 30px; top: 30px;display: flex;
    align-items: center;
    justify-content: center;
}
.search_bg { height: 100%; background: rgba(0,0,0,.85); position: absolute; top: 0; left: 0; width: 100%; z-index: 0; filter:alpha(opacity=0); -moz-opacity:0; -khtml-opacity: 0; opacity: 0; transition:.5s; }
#search_box.act .search_bg{ filter:alpha(opacity=100); -moz-opacity:1; -khtml-opacity: 1; opacity: 1; transition:.5s; }
#search_box .search_main{ width:100%; padding:3rem; background:#016aaf; position:relative; transform:translateY(-100%); transition:.5s .5s ease-out;  z-index:1;overflow:  hidden;}
#search_box.act .search_main{ transform:translateY(0);  transition:.5s ease-in;}
#search_box form{ height:5rem; position:relative; width:900px; max-width:90%; margin:0 auto;}
#search_box form:after{ content:""; width:0; height:1px; background:#fff; transition:.5s; display:block; position:absolute; bottom:0; left:0;}
#search_box.act form:after{ width:100%; transition: ease-in-out .5s .5s;}
#search_box #keyword{width: 90%;height:5rem; font-size:2rem; color:#fff;box-shadow:none;-webkit-appearance: none;float:left;border-right: 0; background:none;}
#search_box .btn{ position:absolute; top:0; right:0; width: 40px;height:5rem; border:0; line-height:4.25rem;color:#fff;cursor:pointer;text-transform:uppercase;background:#016aaf;}
#search_box .btn .iconfont {font-size: 24px;}
#search_box input::-webkit-input-placeholder{ color:#fff; color: rgba(255,255,255,.7); }
#search_box input::-moz-placeholder{ color:#fff; color: rgba(255,255,255,.7); }
#search_box input:-moz-placeholder{ color:#fff; color: rgba(255,255,255,.7); }
#search_box input:-ms-input-placeholder{ color:#fff; color: rgba(255,255,255,.7); }
#search_box input:focus::-webkit-input-placeholder {color: transparent;}
#search_box input:focus:-moz-placeholder {color: transparent;}
#search_box input:focus::-moz-placeholder {color: transparent;}
#search_box input:focus:-ms-input-placeholder {color: transparent;}
#search_box .search_close:before{ border:1px solid rgba(255,255,255,.3);}
#search_box .search_close:hover svg.closeCircle circle { stroke:#fff;}



@media  screen and (max-width: 1400px){
    .header .nav .column .item {
        font-size: 1rem;
    }
    .header .nav .column {
        padding:0 0.5rem;
    }
    .header .nav .column:nth-last-child(3) {
        padding: 0 0.5rem 0 2rem;
    }
}




.footer{padding:30px 0;background-color:#f1f1f1;position: relative}
.footer_box{}
.footer_box .footer_a{display:flex;justify-content: space-between;align-items:center;padding-bottom:20px;position: relative}
.footer_box .footer_a:after{content:'';position:absolute;bottom:0;left:0;width:100%;height:1px;background-color:rgba(150,150,150,.1);}
.footer_box .footer_logo img{height:62px;}
.footer_box .footer_nav{display: flex;}
.footer_box .footer_nav li{padding-left:3.4vw;}
.footer_box .footer_nav li:first-child{padding-left:0;}
.footer_box .footer_nav li a{font-size:16px;color:#636363;}

.footer_box .footer_b{height:220px;display: flex;justify-content: space-between;align-items: flex-end;margin-bottom: 20px;}
.footer_box .footer_b_title{color:#636363;margin-bottom:1.5vw;}
.footer_box .footer_b_title h5{font-size:24px;margin-bottom:20px;}
.footer_box .footer_b_title p{font-size:16px;line-height: 30px;}
.footer_box .footer_b_line p{font-size:16px;line-height: 30px;color:#636363;word-break:break-all;}
.footer_box .footer_b_line span {color:#636363;}
.footer_box .footer_b_ul li{font-size:16px;color:#636363;margin-top: 30px;}

.footer_qrcode {
    background-color:rgba(150,150,150,.1);padding:10px;
}
.footer_qrcode .pic {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #d3d3d3;
    padding: 7px;
}
.footer_qrcode p {
    font-size: 14px;
    text-align: center;
    padding-top: 10px;
    color:#636363;
    line-height: 1;
}
.qr-scanner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}
.qr-scanner .scanner_box {
    height: 100%;
    width: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.qr-scanner .line {
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 255, 51, 0) 43%, #004898 211%);
    border-bottom: 1px solid #004898;
    transform: translateY(-100%);
    animation: radar-beam 2s infinite;
    animation-timing-function: cubic-bezier(0.53, 0, 0.43, 0.99);
    animation-delay: 1.4s;
}
@keyframes radar-beam {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}








.floatFns {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
.floatFns .kefu {
    margin-bottom: 10px;
    cursor:pointer;
}
.floatFns .kefu .box {
    width:45px;
    height:45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.floatFns .kefu.tel .box,.floatFns .kefu.tel .info {
    background: #004898;
}
.floatFns .kefu.email .box,.floatFns .kefu.email .info {
    background: #f36d23;
}
.floatFns .kefu.weixin .box,.floatFns .kefu.weixin .info {
    background: #04BE02;
}
.floatFns .kefu.top .box {
    background: #a7a7a7;
}
.floatFns .kefu.top {
    display: none;
}
.floatFns .kefu .box i{
    font-size: 24px;
    color:#fff;
}
.floatFns .kefu .info {
    position: absolute;
    right: 50px;
    top:50%;
    padding:10px;
    color:#fff;
    border-radius: 5px;
    transform: translateY(-50%) scale(0);
    transition: 0.5s;
    font-size: 18px;
    white-space: nowrap;
    min-width:100px;
}
.floatFns .kefu .info img{
    max-width: none;
    width:150px;
    height:150px;
}
.floatFns .kefu:hover .info {
    transform: translateY(-50%) scale(1);
}

.floatFns .kefu.tel i {
    animation: yyhh 1.5s linear infinite;
}
@keyframes yyhh {
    0%,90%,100% {
        transform: rotate(0) scale(1);
    }
    20%,40% {
        transform: rotate(-15deg) scale(1.1);
    }
    30%,50% {
        transform: rotate(15deg) scale(1.1);
    }
}








.pagination {
    text-align: center;
    padding: 30px 0;
}
.pagination li {
    display: inline-block;
    margin: 0 5px;
}
.pagination li a, .pagination li span{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    background: #e6e6e8;
    text-align: center;
    color: #5b5858;
    z-index: 1;
    width:100%;
    border-radius: 40px;
}
.pagination .active a{
    background: #004898;
    color: #FFF;
}