@charset "utf-8";

html{
    color:#000;
    background:#FFF;
    width:100%;
    font-size: 16px;
}


html, body {
    overflow-x: hidden;
}


body {
    margin: 0 auto;
    position: relative;
    padding: 0;
    width: 100%;
    color: #4e4e4e;
    background: #fff;
}

@media screen and (max-width: 1600px) {
    html {
        font-size: 15px;
    }
}

@media screen and (max-width: 1200px) {
    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;
}

img {
    max-width:100%;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: none;
}
::-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}

:root {
    --comcolor: #0c3583;
}

@font-face{ font-family: EUROSTILE-BOLDEXTENDEDTWO; src: url(../fonts/EUROSTILE-BOLDEXTENDEDTWO.OTF);}


.w_1400{max-width: 1400px;width: 95%;margin: 0 auto;}
.breadcrumb {
    height:3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ebebeb;
}
.breadcrumb ul {
    display: flex;
}
.breadcrumb ul a{
    display: inline-block;
    line-height: 3.5rem;
    margin:0 1.5rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}
.breadcrumb ul a.act {
    border-bottom: 2px solid #09a2ea;
    color: #09a2ea;
}
.breadcrumb ul a:hover {
    color: #e71216;
}


@media screen and (max-width: 1000px) {
    .breadcrumb ul a{
        margin:0 0.5rem;
    }
}



.header {
    z-index: 7999;
    position: fixed;
    left: 0;
    width: 100%;
    transition: all 0.36s;
    background: rgb(255 255 255 / 50%);
    box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(24px);
}

.navMenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:80px;
}

.navMenu .logo img{
    height: 70px;
}

.navMenu .navUl {
    display: flex;
}
.navMenu .navLi {
    padding: 0 1rem;
    display: inline-block;
    font-size: 1rem;
    position: relative;
}
.navMenu .navLi::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 5px;
    background-color: #003894;
    opacity: 0;
    transition: 0.5s;
}
.navMenu .navLi.act::before {
    width: 100%;
    opacity: 1;
}
.navMenu .navName {
    position: relative;
    display: block;
    line-height: 80px;
    font-size: 1rem;
    color: #333;
}
.navMenu .navLi:hover .navName{
    color: #003894;
}


.two-menu {
    position: absolute;
    left: 0;
    top: 80px;
    width: 180px;
    background: #fff;
    display: none;
}
.navUl .navLi:hover .two-menu {display: block}
.two-menu > li {
    border-bottom: 1px solid #e9ecec;
    background: #003894;
    line-height: 40px;
}
.two-menu > li:last-child {
    border-bottom: 0;
}
.two-menu > li:hover > a {
    color: #cdcccc;
}
.two-menu > li > a {
    display: block;
    position: relative;
    padding-left: 20px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
}
.two-menu > li > a > i {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -7px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    font-size: 14px;
}

@media  screen and (max-width: 1400px){
    .header .navMenu .logo img {
        height: 60px;
    }
}

@media  screen and (max-width: 1200px){
    .header .navMenu .logo img {
        height: 50px;
    }
}






.footer{
    width: 100%;
    background: #2d2d2d;
    z-index: 999;
    position: relative;
}
.foot{
    padding-top:60px;
}

.foot01{
    width: 100%;
    margin:0 auto;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding:30px 0;
}
.foot01 dl{
    width:20%;
    border-left:1px solid rgba(255,255,255,0.05);
    text-align:center;
}
.foot01 dl:last-child{
    width:40%;

}
.foot01 dl dt{
    font-size:24px;
    margin-bottom:40px;
    color:#fff;
}
.foot01 dl dd{
    width:80%;
    margin: 0 auto;
    height:40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    border:1px solid #737373;
    margin-bottom:20px;
    font-size:14px;
    color:#BDBDBD;
}
.foot01 dl dd a{
    color:#BDBDBD;
}
.foot01 dd:hover {
    background: var(--comcolor);
    border:1px solid var(--comcolor);
}
.foot01 dd:hover a{
    color:#fff;
}


.foot01 ul {
    width:95%;
    margin-left: 5%;
}
.foot01 ul li {
    text-align: left;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 20px;
    color:#fff;
}
.foot_ewm {
    display: flex;
    margin-top: 30px;
}

.foot_ewm .ewm {
    margin-right: 1.75rem;
}

.foot_ewm .ewm .pic {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #525252;
    padding: 7px;
}

.foot_ewm .ewm p {
    font-size: 14px;
    text-align: center;
    padding-top: 10px;
    color:#fff;
    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%, var(--comcolor) 211%);
    border-bottom: 1px solid var(--comcolor);
    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);
    }
}


.foot02{
    width: 100%;
    margin:0 auto;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color:#BDBDBD;
    border-top:1px solid rgba(255,255,255,0.10);
    padding:30px 0;
}
.foot02 a{
    color: #BDBDBD;
}











.floatFns {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
.floatFns .kefu {
    margin-bottom: 10px;
    cursor:pointer;
}
.floatFns .kefu .box {
    width:3rem;
    height:3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.floatFns .kefu.tel .box,.floatFns .kefu.tel .info {
    background: var(--comcolor);
}
.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: 1.5rem;
    color:#fff;
}
.floatFns .kefu .info {
    position: absolute;
    right: 3.2rem;
    top:50%;
    padding:0.8rem;
    color:#fff;
    border-radius: 0.3rem;
    transform: translateY(-50%) scale(0);
    transition: 0.5s;
    font-size: 1.2rem;
    white-space: nowrap;
    min-width:1.5rem;
}
.floatFns .kefu .info img{
    max-width: none;
    width:10rem;
    height:10rem;
}
.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: 1rem 0;
}
.pagination li {
    display: inline-block;
    margin: 0 0.1rem;
}
.pagination li a, .pagination li span{
    position: relative;
    display: inline-block;
    font-size: 0.9rem;
    height: 2.5rem;
    padding: 0 1rem;
    line-height: 2.5rem;
    background: #e6e6e8;
    text-align: center;
    color: #5b5858;
    z-index: 1;
    width:100%;
}
.pagination .active a{
    background: var(--comcolor);
    color: #FFF;
}





.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 99999;
}
.mobile-header .logo {
    text-align: center;
    background: #fff;
    z-index: 1;
    position: relative;
    line-height: 4.2rem;
    height: 4.2rem;
    box-shadow: 0 2px 2px #00000021;
}
.mobile-header .logo img {
    max-height: 3.6rem;
    display: inline-block;
    vertical-align: middle;
    /*max-width: 200px;*/
}
.mobile-header .btn {
    position: absolute;
    bottom: 1.35rem;
    right: 1rem;
    width: 2.2rem;
    z-index: 2;
    height: 1.5rem;
}
.mobile-header .btn i {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background: var(--comcolor);
    display: block;
    top: 50%;
    transform: translateY(-50%);
    transition: .5s
}
.mobile-header .btn i.ie1 {
    margin-top: -0.8rem
}
.mobile-header .btn i.ie3 {
    margin-top: 0.8rem
}
.mobile-header.active .btn i {
    margin: 0 !important;
}
.mobile-header.active .btn i.ie1{
    transform: rotate(45deg);
}
.mobile-header.active .btn i.ie2 {
    opacity: 0;
}
.mobile-header.active .btn i.ie3 {
    transform: rotate(-45deg);
}
.mobile-header .cont {
    position: fixed;
    background: #fff;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;

    transform: translateX(-100%);
    z-index: 0;
    height: 100%;
    overflow: auto;
    top: 0;
    padding: 5rem 0 1.5rem;
}
.mobile-header.active .cont {
    transform: translateX(0);
}
.mobile-header .cont .search {
    padding: 0.5rem 2.5%;
    background: var(--comcolor);
    z-index: 2;
    position: relative;
}
.mobile-header .cont .search form {
    width: 100%;
    padding-right: 3rem;
    position: relative;
}
.mobile-header .cont .search form .search_input {
    width: 100%;
    line-height: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: none;
    padding: 0 1rem;
    font-size: 1rem;
}
.mobile-header .cont .search form .search_submit {
    width: 3rem;
    line-height: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
}
.mobile-header .cont .search form .search_submit .iconfont{
    font-size: 1.8rem;
    color:#fff;
}


.mobile-header .cont .navbar {
    padding: 1rem 0;
}
.mobile-header .navbar .menu {
    border-bottom: 1px solid #cdcdcd;
    line-height: 2.8rem;
}
.mobile-header .navbar .menu .item {
    color: #494949;
    font-size: 1rem;
    display: block;
    position: relative;
}
.mobile-header .navbar .menu .item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-header .navbar .s_menu {
    width: 100%;
    box-sizing: border-box;
    display: none;
}
.mobile-header .navbar .s_menu .s_item {
    font-size: 1rem;
    font-weight: normal;
    color: #494949;
    display: block;
    line-height: 2.8rem;
    border-top: 1px solid #cdcdcd;
    position: relative;
    padding-left: 1.5rem;
}
.mobile-header .navbar .s_menu .s_item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-header .navbar .s_menu .s_item li {position:relative;padding-left: 5%;}
.mobile-header .navbar .s_menu .s_item:after{
    content: '-';
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mobile_top_fill {height:4.2rem;display: none;}


.mobile-footer {
    display: none;
    padding: 1rem 0;
    background: var(--comcolor);
    color:#fff;
}
.mobile-footer .navbar {
    padding: 1rem 0;
}
.mobile-footer .navbar .menu {
    border-bottom: 1px solid #cdcdcd;
    line-height: 2.8rem;
}
.mobile-footer .navbar .menu .item {
    color: #fff;
    font-size: 1rem;
    display: block;
    position: relative;
}
.mobile-footer .navbar .menu .item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-footer .navbar .s_menu {
    width: 100%;
    box-sizing: border-box;
    display: none;
}
.mobile-footer .navbar .s_menu .s_item {
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
    display: block;
    line-height: 2.8rem;
    border-top: 1px solid #cdcdcd;
    position: relative;
    padding-left: 1.5rem;
}
.mobile-footer .navbar .s_menu .s_item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-footer .navbar .s_menu .s_item li {position:relative;padding-left: 5%;}
.mobile-footer .navbar .s_menu .s_item:after{
    content: '-';
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}






.mobile-footer  .cont2 p{height: 3rem;font-size: 1rem;color: #fff;display: flex;align-items: center;}
.mobile-footer  .cont2 p .iconfont{vertical-align:middle;margin-right: 0.3rem;}



@media  screen and (max-width: 1000px){
    .mobile-header,.mobile_top_fill,.mobile-footer {display: block;}

    header,.top_search,.footer,.floatFns {display: none;}
}



.pro-bg-color { background: #ffffff;position: relative;display: inline-block;}
.pro-bg-color::after {
    content: '';
    background: url('../images/watermark.png');
    position: absolute;
    top:0;
    left:0;
    width: 100%;height:100%;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 99;
}
