body{
    background-color: #f1f1f1;
}
.noSelect{
    -webkit-touch-callout: none;
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none;  /*webkit浏览器*/
    -ms-user-select: none;   /*IE10*/
    -khtml-user-select: none; /*早期浏览器*/
    user-select: none;
}

.header-top{
    min-width: 1200px;
    width: 100%;
    height: 80px;
    background-color: #ffffff;
}
.header-top-content {
    width: 1200px;
    margin: 0 auto;
    height: 80px;
    position: relative;
}
.header-top-content .logo{
    display: inline-block;
    padding-top: 10px;
    z-index: 100;
    position: relative;

}
.header-top-content .logo img{
    height: 60px;
}
.header-navbar{
    height: 60px;
    line-height: 60px;
    width: 800px;
    float: right;
}
.header-navbar .navbar-item{
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    padding: 0 30px;
    cursor: pointer;
}
.header-navbar .navbar-item.active{
    color: #fbb12f;
    font-weight: bold;
    position: relative;
}
.header-navbar .navbar-item.active::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    width: 32px;
    height: 2px;
    background-color: #fbb12f;
}

.swiper-advert{
    width: 1200px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: 100px;
    animation: myfirst 1s;
    -webkit-animation: myfirst 1s; /* Safari 与 Chrome */
}
@keyframes myfirst
{
    from {left: 30%;}
    to {left: 50%;}
}

@-webkit-keyframes myfirst /* Safari 与 Chrome */
{
    from {left: 30%;}
    to {left: 50%;}
}

.swiper-advert .title{
    text-align: center;
    font-weight: bold;
    font-size: 48px;
    color: #0a4198;
}
.swiper-advert .tips{
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #0a4198;
}
.swiper-box{
    width: 100vw;
    min-width: 1200px;
    height: 1100px;
    /*overflow: hidden;*/
}

.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide {
    min-width: 1200px;
    height: 100%;
    text-align: center;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position: relative;

    background-image: url("/static/images/HP1.-S1.jpg");
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
}


.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.advert-main{
    min-width: 1200px;
    background-color: #ffffff;
}
.advert-main .advert{
    min-width: 1200px;
    height: 180px;
    margin: 0 auto;
    background-image: url("/static/images/bg-total-title.df5145d.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
 .advert-text{
     width: 1200px;
     height: 80px;
     text-align: center;
     line-height: 80px;
     position: absolute;
     left: 50%;
     top: 0;
     transform: translate(-50%, 0);
    font-size: 32px;
    color: #190f3f;
}
.container{}

.container .link-main{

}
.link-main .link-title{
    text-align: center;
    color: #190f3f;
    font-size: 28px;
    margin-bottom: 5px;
}
.link-main .link-tips{
    text-align: center;
    color: #190f3f;
    font-size: 14px;
    margin-bottom: 60px;
}

.link-list{
    margin-top: 50px;
}
.link-list .link-item{
    margin-left: 26px;
    width: 280px;
    height: 360px;
    background: #fff;
    box-shadow: 0 0 20px 0 rgb(30 77 179 / 10%);
    border-radius: 10px;
    padding-top: 70px;
    box-sizing: border-box;
    float: left;
    transition: all 0.6s ease;
    margin-bottom: 26px;
}
.link-list .link-item:hover{
    padding-top: 50px;
}
.link-list .link-item:first-child{
    margin-left: 0;
}

    .link-list .link-item:nth-child(5n+0){
        margin-left: 0;
    }
    

.link-item .link-icon{
    display: block;
    height: 60px;
    width: auto;
    margin: 0 auto 30px;
}
.link-item .link-url{
    text-align: center;
    color: #190f3f;
}
.button-box{
    text-align: center;
    margin-top: 50px;
}
.button-box .btn-item{
    width: 100px;
    height: 40px;
    border-radius: 5px;
    font-size: 14px;
    margin: 0 5px;
}

.button-box .btn-item.btn1{
    background-color: #190f3f;
    color: #ffffff;
}
.button-box .btn-item.btn2{
    background-color: #fbb12f;
    color: #333333;
}

.footer{
    height: 60px;
    width: 100%;
    background-color: #ffffff;
    line-height: 60px;
    text-align: center;
    font-size: 14px;
    color: #333333;
}

/* 智能手机 */
@media only screen and (max-width: 400px) {
    .header-top-content .logo{
        display: block;
        text-align: center;
        padding-top: 0;
    }
    .header-top-content .logo img{
        height: 50px;
    }
    .header-top-content{
        width: 100% !important;
    }
    .swiper-box,
    .swiper {
        height: 220px;
    }
    .header-top,
    .swiper-box,
    .swiper-slide{
        width: 100% !important;
        min-width: 100% !important;
    }
    .swiper-slide img{
        width: 100%;
        height: 220px;
    }
    .advert-main{
        width: 100% !important;
        min-width: 100% !important;
    }
    .advert-main .advert{
        width: 100% !important;
        min-width: 100% !important;
        height: 80px;

    }
    .advert-text{
        width: 100% !important;
        min-width: 100% !important;
        font-size: 16px;
        line-height: 60px;
        top: 30px;
    }
    .swiper-advert{
        top: 30px;
    }
    .swiper-advert .title{
        font-size: 22px;
    }
    .swiper-advert .tips{
        font-size: 12px;
    }
    .container{
        width: 100% !important;
        margin: 30px auto;
    }
    .link-main .link-title{
        font-size: 22px;
    }
    .link-main .link-tips{
        font-size: 12px;
        margin-bottom: 20px;
    }
    .link-list .link-item{
        float: none;
        margin: 0 auto 20px !important;
    }
    .footer{
        font-size: 12px;
    }
}

/* 平板 */
@media only screen and (min-width: 401px) and (max-width: 1200px) {

}