@charset "utf-8";
:root {
    --one-color: #005aa6;
}
.w1500 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
body {
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    background: #fff;
    color: var(--three-color);
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    body {
        font-size: 14px;
    }
}

* {
    margin: 0px;
    padding: 0px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dd {
    list-style: none;
    margin: 0px 0px 0px 0px;
}

a {
    text-decoration: none;
    color: #595757;
}

a:hover {
    text-decoration: none;
    color: var(--one-color);
}

a:focus {
    text-decoration: none !important;
}

img {
    width: auto;
    max-width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    width: 30px;
}
.swiper-button-next {
    right: 0px;
}
.swiper-button-prev {
    left: 0px;
}

.header-on {
    border-bottom: 1px solid #eeeeee;
    background: #fff;
}

.header-on a,
.header-on span {
    color: #000 !important;
}

.navon a {
    color: var(--one-color);
    font-weight: 600;
}

.header,.ny-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}
.header .w1500,.ny-header .w1500 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    color: #fff;
}

.logo a div {
    margin-left: 15px;
}

.logo a p {
    font-size: 30px;
    font-weight: 600;
    line-height: 1em;
    margin-top: 10px;
    letter-spacing: 3px;
}

.logo a span {
    text-transform: uppercase;
}

.logos {
    display: none;
}

.nav a {
    color: #fff;
    font-size: 18px;
}

.nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav ul li {
    padding: 0 22px;
}
@media (max-width: 1360px){
    .nav ul li {
        padding: 0 12px;
    }
}
.nav-line {
    width: 1px;
    height: 18px;
    background: #fff;
    padding: 0 !important;
}

.head-ico {
    display: flex;
    justify-content: end;
}

.head-ico li {
    margin-right: 15px;
    font-size: 20px;
}

.head-ico li span {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.head-ico li a {
    color: #fff;
}

.head-wx {
    position: relative;
}

.head-wx p {
    position: absolute;
    top: 100%;
    left: -160%;
    display: none;
    padding: 5px;
    background: #fff;
}

.head-wx p img {
    max-width: 100px;
    max-height: 100px;
}

.head-wx:hover p {
    display: block;
}

.head-ico li.head-search span {
    font-weight: 600;
}

.m-btn {
    display: none;
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 30px;
}

.m-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #3b3b3b;
    position: relative;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -o-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}

.m-btn span::before,
.m-btn span::after {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    background: #000;
    position: absolute;
    left: 0;
    -webkit-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    -o-transition: all 200ms cubic-bezier(.4, 0, 0, 1);
    transition: all 200ms cubic-bezier(.4, 0, 0, 1);
}

.m-btn span:before {
    top: -8px;
}

.m-btn.active span {
    background: transparent;
    margin-left: 10px;
}

.m-btn.active span:before {
    transform: rotate(-48deg) translate(-6px, 5px);
    -webkit-transform: rotate(-48deg) translate(-6px, 5px);
    -o-transform: rotate(-48deg) translate(-6px, 5px);
    width: 24px;
}

.m-btn.active span:after {
    transform: rotate(48deg) translate(-6px, -5px);
    -webkit-transform: rotate(48deg) translate(-6px, -5px);
    -o-transform: rotate(48deg) translate(-6px, -5px);
    width: 24px;
}

.m-btn span:after {
    bottom: -8px;
}
@media (max-width: 992px) {
    .logo img{
        height: 45px;
    }
    .logo a p{
        font-size: 22px;
    }
    .m-btn{
        display: block;
    }
    .nav{
        position: absolute;
        left:-100vw;
        top:64px;
        width:70%;
        height:calc(100vh - 60px);
        background:#fff;
        box-shadow: 0 0 10px #eee;
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding-top:20px;
    }
    .nav.show{
        left:0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    .nav ul{
        display: block;
    }
    .nav ul li{               
        width: 100%;        
    }
    .nav ul li a{
        display: block !important;  
        color:#424242;
        text-align: left;
        border-bottom: 1px solid #c1c1c1;
        font-size: 14px;
        padding:10px 20px;
    }
    .nav ul li:first-child a:before,
    .nav ul li a:after{
        width: 0px;
    } 
}
/* footer */
footer {
    background: #00284a;
    padding: 40px 0 20px;
    color: #fff;
    font-weight: 300;
}
.index-ft footer{
    height: 22vh;
}
.ft-top {
    padding-bottom: 20px;
    border-bottom: 1px solid #1a3e5c;
}

.ft-logo a {
    display: flex;
    align-items: center;
    color: #fff;
}

.ft-logo a div {
    margin-left: 10px;
}

.ft-logo a p {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}

.ft-logo a span {
    font-size: 12.2px;
    text-transform: uppercase;
}

.ft-contact-400 {
    margin: 10px 0 5px;
    font-size: 34px;
    font-weight: 600;
    color: #4eb6e9;
}

.ft-ewm {
    font-size: 12px;
    color: #000;
    line-height: 2rem;
    background: #fff;
    padding: 5px;
    text-align: center;
}
.ft-ewm img {
    max-width: 95px;
    max-height: 95px;
}
.ft-ico p {
    line-height: 2.8rem;
}
.ft-ico .iconfont {
    margin-right: 5px;
}
.ft-nav {
    display: flex;
    justify-content: space-between;
}

.ft-nav-li li {
    display: block;
    margin-top: 5px;
}

.ft-nav-li li:first-child {
    margin-top: 0;
}

.ft-nav-item a{
    color: #fff;
}

.ft-nav-item a:hover {
    color: var(--one-color);
}

.ft-nav-tit {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.foot-text {
    font-size: 14px;
    padding: 20px 0 0;
    color: #fff;
    line-height: 2.5rem;
}

.foot-text a {
    color: #fff;
}

.foot-text a:hover {
    color: var(--one-color);
}

.float-box {
    position: fixed;
    bottom: 20%;
    right: -80px;
    z-index: 999;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.float-box ul li {
    text-align: center;
    position: relative;
}

.float-box ul li a {
    color: #fff;
    display: block;
    padding: 2px 15px;
    border-radius: 3px;
    background: var(--one-color);
}

.float-box ul li a:hover {
    background: #000;
    color: #fff;
}

.float-box ul li a span {
    font-size: 20px;
    font-weight: bold;
}

.float-box.active {
    right: 10px;
}

@media (max-width: 768px) {
    footer {
        background-repeat: inherit;
    }
    footer .ft-tit {
        margin-top: 30px;
    }
    .ft-logo a p {
        font-size: 20px;
    }
    .ft-contact-400{
        font-size: 22px;
    }
    .ft-ico p {
        line-height: 2.2rem;
    }
}

/* 分页 */
.page-box {
    text-align: center;
}

.page-box a {
    margin: 0 3px;
    font-size: 14px;
}

.page-box a:hover {
    color: #004e92;
}

.page-box .page-item {
    padding: 8px 15px;
    background: #eeeeee;
}

.page-box .page-num {
    padding: 8px 15px;
    background: #eeeeee;
}

.page-box .page-num-current {
    padding: 8px 15px;
    background: var(--one-color);
    color: #fff;
}