body {
    overflow-x: hidden;
}


/*滚动条的宽度*/

::-webkit-scrollbar {
    width: 4px;
}


/*滚动条里面小方块*/

::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.2);
}


/*滚动条里面轨道*/

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}

.container {
    width: 100vw;
    /* 使用了staticy */
    /* overflow-x: hidden; */
}

@media (min-width: 1200px) {
    .container .top-container-mobile {
        display: none;
    }
    .container .product-container-mobile {
        display: none;
    }
    .container .cooperate-container-mobile {
        display: none;
    }
    .container .introduce-container-mobile {
        display: none;
    }
    .container .contact-container-mobile {
        display: none;
    }
    .container .footer-container-mobile {
        display: none;
    }
    #product,
    #cooperate,
    #introduce,
    #contact {
        position: relative;
        top: -60px;
        height: 0;
        overflow: hidden;
    }
    /* 主页头部 */
    .container .top-container {
        width: 100%;
        height: 100px;
        background-color: #ffffff;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        z-index: 999;
        position: sticky;
        top: 0;
    }
    .container .top-container .top {
        width: 1200px;
    }
    .container .top-container .top .logo {
        height: 80px;
    }
    .container .top-container .top .nav a {
        display: block;
        width: 98px;
        height: 98px;
        line-height: 98px;
        text-align: center;
        font-size: 16px;
        font-family: "Microsoft YaHei";
        font-weight: 400;
        color: #333333;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: all .3s;
        position: relative;
    }
    .container .top-container .top .nav .active {
        color: #0166b6;
    }
    .container .top-container .top .nav a:not(:first-child) {
        margin-left: 36px;
    }
    .container .top-container .top .nav a::after {
        content: "";
        position: absolute;
        top: 98px;
        left: 0;
        width: 98px;
        height: 2px;
        background: #0166b6;
        opacity: 0;
        transform: scaleX(0.01);
        transition: all .3s;
    }
    .container .top-container .top .nav a:hover {
        background: rgba(167, 167, 167, 0.1);
    }
    .container .top-container .top .nav a:hover::after {
        opacity: 1;
        transform: scaleX(1);
    }
    /* banner图 */
    .container .banner-container {
        width: 100%;
        position: relative;
    }
    .container .banner-container img {
        width: 100%;
    }
    /*自定义分页器的样式，这个你自己想要什么样子自己写*/
    .container .banner-container .swiper-pagination-customs {
        width: 80px;
        height: 4px;
        display: inline-block;
        background-color: rgba(255, 255, 255, 0.4);
        border-radius: 4px;
        margin: 0 12px;
        outline: 0;
    }
    /*自定义分页器激活时的样式表现*/
    .container .banner-container .swiper-pagination-customs-active {
        background-color: rgba(255, 255, 255, 1);
    }
    /* 产品 */
    .container .product-container {
        width: 100%;
        margin-top: 60px;
    }
    .container .product-container .product {
        width: 1200px;
    }
    .container .product-container .product .title {
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        color: #0166b6;
    }
    .container .product-container .product .content {
        width: 100%;
    }
    .container .product-container .product .content .item {
        width: 380px;
        height: 350px;
        margin-top: 48px;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        cursor: pointer;
        transition: all .3s;
    }
    .container .product-container .product .content .item:hover {
        box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.16);
    }
    .container .product-container .product .content .item img {
        width: 100%;
        border-radius: 12px 12px 0 0;
    }
    .container .product-container .product .content .item p {
        text-align: center;
        margin-top: 18px;
        color: #0166b6;
        font-size: 20px;
    }
    .container .product-container .product .content .item .text {
        padding: 0 12px;
        box-sizing: border-box;
        text-align: center;
        color: #666666;
        margin-top: 16px;
        font-size: 16px;
    }
    /* 合作 */
    .container .cooperate-container {
        width: 100%;
        margin-top: 60px;
    }
    .container .cooperate-container .cooperate {
        width: 1200px;
        position: relative;
    }
    .container .cooperate-container .cooperate .title {
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        color: #0166b6;
    }
    .container .cooperate-container .cooperate .swiper-container {
        width: 100%;
        margin-top: 48px;
        position: unset;
    }
    .container .cooperate-container .cooperate .swiper-container img {
        width: 100%;
    }
    .container .cooperate-container .cooperate .swiper-container .swiper-button-prev {
        position: absolute;
        top: 50%;
        left: -70px;
        width: 64px;
        height: 64px;
        background-image: url("../icons/arrow_left.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    .container .cooperate-container .cooperate .swiper-container .swiper-button-next {
        position: absolute;
        top: 50%;
        right: -70px;
        width: 64px;
        height: 64px;
        background-image: url("../icons/arrow_right.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
    .container .cooperate-container .cooperate .swiper-container .swiper-pagination {
        position: absolute;
        bottom: -24px;
    }
    /*自定义分页器的样式，这个你自己想要什么样子自己写*/
    .container .cooperate-container .cooperate .swiper-container .swiper-pagination-customs {
        width: 10px;
        height: 10px;
        display: inline-block;
        background-color: rgba(1, 102, 182, 0.2);
        border-radius: 10px;
        margin: 0 12px;
        outline: 0;
    }
    /*自定义分页器激活时的样式表现*/
    .container .cooperate-container .cooperate .swiper-container .swiper-pagination-customs-active {
        background-color: rgba(1, 102, 182, 1);
    }
    /* 介绍 */
    .container .introduce-container {
        width: 100%;
        height: 620px;
        margin-top: 94px;
        background-image: url("../images/introduce_bac.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }
    .container .introduce-container .introduce {
        width: 1200px;
    }
    .container .introduce-container .introduce .title {
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        color: #0166b6;
    }
    .container .introduce-container .introduce .content {
        width: 100%;
        margin-top: 48px;
        line-height: 40px;
        color: #333333;
        font-size: 16px;
    }
    .container .introduce-container .introduce .zhengshu {
        width: 100%;
        margin-top: 24px;
    }
    .container .introduce-container .introduce .zhengshu .item p {
        width: 100%;
        height: 36px;
        text-align: center;
        line-height: 36px;
        color: #ffffff;
        font-size: 16px;
        background-color: rgba(1, 102, 182, 0.6);
        border-radius: 12px;
        margin-top: 8px;
    }
    /* 联系 */
    .container .contact-container {
        width: 100%;
        margin-top: 60px;
    }
    .container .contact-container .contact {
        width: 1200px;
    }
    .container .contact-container .contact .title {
        width: 100%;
        text-align: center;
        font-size: 36px;
        font-weight: 600;
        color: #0166b6;
    }
    .container .contact-container .contact .map-container {
        margin-top: 48px;
        width: 100%;
        position: relative;
    }
    .container .contact-container .contact .map {
        width: 100%;
        height: 400px;
        border-radius: 24px;
    }
    .container .contact-container .contact .map-container .name {
        position: absolute;
        top: 120px;
        left: 495px;
        width: 128px;
        height: 50px;
        line-height: 35px;
        text-align: center;
        font-size: 20px;
        color: #0166b6;
        background-image: url("../images/map_mark_bac.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    .container .contact-container .contact .map-container .mark {
        position: absolute;
        top: 215px;
        left: 595px;
        width: 420px;
        padding: 8px;
        background-color: rgb(171, 208, 238);
        color: #666666;
        line-height: 24px;
        font-size: 12px;
        border-radius: 4px;
    }
    .container .contact-container .contact .content {
        width: 100%;
    }
    .container .contact-container .contact .content .item {
        width: 280px;
        height: 132px;
        margin-top: 24px;
        background-color: rgba(1, 102, 182, 0.1);
        border-radius: 4px;
        padding: 16px;
        box-sizing: border-box;
    }
    .container .contact-container .contact .content .item .text {
        width: 100%;
        font-size: 16px;
        color: #333333;
    }
    .container .contact-container .contact .content .item .text .line {
        width: 3px;
        height: 23px;
        background-color: #0166b6;
        border-radius: 8px;
        margin-right: 6px;
    }
    .container .contact-container .contact .content .item .detail {
        font-size: 12px;
        color: #666666;
        margin-top: 12px;
        line-height: 24px;
    }
    .container .contact-container .contact .content .item .detail img {
        height: 72px;
    }
    /* 底部 */
    .container .footer-container {
        width: 100%;
        background-color: #0b162b;
        margin-top: 60px;
    }
    .container .footer-container .footer {
        width: 1200px;
        padding: 48px 0 24px;
        box-sizing: border-box;
    }
    .container .footer-container .footer .detail {
        width: 100%;
        color: #ffffff;
        font-size: 14px;
        font-family: SimHei;
        padding: 0 250px 0 100px;
        box-sizing: border-box;
    }
    .container .footer-container .footer .detail .left p {
        margin-top: 18px;
    }
    .container .footer-container .footer .detail .left p img {
        margin-right: 4px;
    }
    .container .footer-container .footer .detail .right .shang .hover-wx {
        margin-right: 6px;
        position: relative;
    }
    .container .footer-container .footer .detail .right .shang .hover-wx .wx-icon {
        cursor: pointer;
    }
    .container .footer-container .footer .detail .right .shang .hover-wx .wx-icon img {
        width: 64px;
    }
    .container .footer-container .footer .detail .right .shang .hover-wx .wx {
        width: 150px;
        height: 150px;
        background-color: #ffffff;
        border-radius: 12px;
        position: absolute;
        left: -300px;
        top: -50px;
        opacity: 0;
        transition: all 0.4s;
    }
    .container .footer-container .footer .detail .right .shang .hover-wx .wx img {
        width: 120px;
    }
    .container .footer-container .footer .detail .right .shang .hover-wx .wx .arrow {
        width: 0px;
        height: 0px;
        border-width: 20px;
        border-style: solid;
        border-color: transparent transparent transparent #ffffff;
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
    }
    .container .footer-container .footer .detail .right .shang .hover-wx .wx-icon:hover+.wx {
        left: -180px;
        opacity: 1;
    }
    .container .footer-container .footer .detail .right .xia .hover-wx {
        margin-left: 6px;
        position: relative;
    }
    .container .footer-container .footer .detail .right .xia .hover-wx .wx-icon {
        cursor: pointer;
    }
    .container .footer-container .footer .detail .right .xia .hover-wx .wx-icon img {
        width: 64px;
    }
    .container .footer-container .footer .detail .right .xia .hover-wx .wx {
        width: 150px;
        height: 150px;
        background-color: #ffffff;
        border-radius: 12px;
        position: absolute;
        right: -250px;
        top: -50px;
        opacity: 0;
        transition: all 0.4s;
    }
    .container .footer-container .footer .detail .right .xia .hover-wx .wx img {
        width: 120px;
    }
    .container .footer-container .footer .detail .right .xia .hover-wx .wx .arrow {
        width: 0px;
        height: 0px;
        border-width: 20px;
        border-style: solid;
        border-color: transparent #ffffff transparent transparent;
        position: absolute;
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
    }
    .container .footer-container .footer .detail .right .xia .hover-wx .wx-icon:hover+.wx {
        right: -180px;
        opacity: 1;
    }
    .container .footer-container .footer .line {
        width: 100%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.4);
        margin: 48px 0 24px;
    }
    .container .footer-container .footer .icp {
        width: 100%;
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
    }
    .container .footer-container .footer .icp a {
        color: rgba(255, 255, 255, 0.7);
    }
    .container .footer-container .footer .icp a:hover {
        color: #ffffff;
    }
}

@media (min-width: 375px) and (max-width: 1200px) {
    .container {
        width: 100%;
        background: #F1F3F5;
        position: relative;
    }
    .container .top-container {
        display: none;
    }
    .container .product-container {
        display: none;
    }
    .container .cooperate-container {
        display: none;
    }
    .container .introduce-container {
        display: none;
    }
    .container .contact-container {
        display: none;
    }
    .container .footer-container {
        display: none;
    }
    #product {
        position: relative;
        top: -80px;
        height: 0;
        overflow: hidden;
    }
    #cooperate,
    #contact {
        position: relative;
        top: -330px;
        height: 0;
        overflow: hidden;
    }
    #introduce {
        position: relative;
        top: -50px;
        height: 0;
        overflow: hidden;
    }
    /* 头部 */
    .container .top-container-mobile {
        width: 100%;
        background-color: #ffffff;
        position: sticky;
        top: 0;
        z-index: 999;
        transition: all 0.3s;
        overflow: hidden;
        height: 80px;
    }
    .container .top-container-mobile .top {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        height: 80px;
    }
    .container .top-container-mobile .top .logo {
        height: 60px;
    }
    .container .top-container-mobile .top .open {
        height: 24px;
    }
    .container .top-container-mobile .nav {
        width: 100%;
        background-color: #ffffff;
        padding: 0 30px;
        box-sizing: border-box;
    }
    .container .top-container-mobile .nav a {
        display: block;
        width: 100%;
        height: 30px;
        line-height: 30px;
        color: #333333;
        font-size: 16px;
        margin-bottom: 12px;
    }
    .container .top-container-mobile .nav .active {
        color: #0166b6;
    }
    /* banner图 */
    .container .banner-container {
        width: 100%;
    }
    .container .banner-container img {
        width: 100%;
    }
    /* 产品 */
    .container .product-container-mobile {
        width: 100%;
        margin-top: 16px;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .container .product-container-mobile .product {
        width: 100%;
    }
    .container .product-container-mobile .product .title {
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        color: #0166b6;
    }
    .container .product-container-mobile .product .content {
        width: 100%;
    }
    .container .product-container-mobile .product .content .item {
        width: 100%;
        margin-top: 16px;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        cursor: pointer;
    }
    .container .product-container-mobile .product .content .item img {
        width: 100%;
        border-radius: 12px 12px 0 0;
    }
    .container .product-container-mobile .product .content .item p {
        text-align: center;
        margin-top: 12px;
        color: #0166b6;
        font-size: 16px;
    }
    .container .product-container-mobile .product .content .item .text {
        padding: 0 12px 12px;
        box-sizing: border-box;
        text-align: center;
        color: #666666;
        margin-top: 12px;
        font-size: 14px;
    }
    /* 合作 */
    .container .cooperate-container-mobile {
        width: 100%;
        margin-top: 16px;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .container .cooperate-container-mobile .cooperate {
        width: 100%;
        position: relative;
    }
    .container .cooperate-container-mobile .cooperate .title {
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        color: #0166b6;
    }
    .container .cooperate-container-mobile .cooperate .swiper-container {
        width: 100%;
        margin-top: 16px;
        position: unset;
    }
    .container .cooperate-container-mobile .cooperate .swiper-container img {
        width: 100%;
    }
    .container .cooperate-container-mobile .cooperate .swiper-container .swiper-pagination {
        position: absolute;
        bottom: -24px;
    }
    /*自定义分页器的样式，这个你自己想要什么样子自己写*/
    .container .cooperate-container-mobile .cooperate .swiper-container .swiper-pagination-customs {
        width: 5px;
        height: 5px;
        display: inline-block;
        background-color: rgba(1, 102, 182, 0.2);
        border-radius: 10px;
        margin: 0 12px;
        outline: 0;
    }
    /*自定义分页器激活时的样式表现*/
    .container .cooperate-container-mobile .cooperate .swiper-container .swiper-pagination-customs-active {
        background-color: rgba(1, 102, 182, 1);
    }
    /* 介绍 */
    .container .introduce-container-mobile {
        width: 100%;
        margin-top: 42px;
        background-image: url("../images/introduce_bac.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        padding: 16px 15px;
        box-sizing: border-box;
    }
    .container .introduce-container-mobile .introduce {
        width: 100%;
    }
    .container .introduce-container-mobile .introduce .title {
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        color: #0166b6;
    }
    .container .introduce-container-mobile .introduce .content {
        width: 100%;
        margin-top: 16px;
        line-height: 24px;
        color: #333333;
        font-size: 12px;
    }
    .container .introduce-container-mobile .introduce .zhengshu {
        width: 100%;
    }
    .container .introduce-container-mobile .introduce .zhengshu .item {
        width: 100%;
        margin-top: 12px;
    }
    .container .introduce-container-mobile .introduce .zhengshu .item p {
        width: 280px;
        height: 30px;
        text-align: center;
        line-height: 30px;
        color: #ffffff;
        font-size: 12px;
        background-color: rgba(1, 102, 182, 0.6);
        border-radius: 12px;
        margin-top: 8px;
    }
    /* 联系 */
    .container .contact-container-mobile {
        width: 100%;
        margin-top: 16px;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .container .contact-container-mobile .contact {
        width: 100%;
    }
    .container .contact-container-mobile .contact .title {
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        color: #0166b6;
    }
    .container .contact-container-mobile .contact .map-container {
        margin-top: 16px;
        width: 100%;
        position: relative;
    }
    .container .contact-container-mobile .contact .map {
        width: 100%;
        border-radius: 12px;
    }
    .container .contact-container-mobile .contact .map-container .name {
        position: absolute;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        font-size: 12px;
        color: #0166b6;
        /* background-image: url("../images/map_mark_bac.png"); */
        /* background-size: 100% 100%; */
        /* background-repeat: no-repeat; */
        background-color: rgba(1, 102, 182, 0.1);
        border-radius: 6px;
    }
    .container .contact-container-mobile .contact .map-container .mark {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        padding: 4px;
        background-color: rgb(171, 208, 238);
        color: #666666;
        line-height: 12px;
        font-size: 8px;
        border-radius: 4px;
    }
    .container .contact-container-mobile .contact .content {
        width: 100%;
    }
    .container .contact-container-mobile .contact .content .item {
        width: 100%;
        height: 132px;
        margin-top: 16px;
        background-color: rgba(1, 102, 182, 0.1);
        border-radius: 4px;
        padding: 8px 12px;
        box-sizing: border-box;
    }
    .container .contact-container-mobile .contact .content .item .text {
        width: 100%;
        font-size: 16px;
        color: #333333;
    }
    .container .contact-container-mobile .contact .content .item .text .line {
        width: 3px;
        height: 23px;
        background-color: #0166b6;
        border-radius: 8px;
        margin-right: 6px;
    }
    .container .contact-container-mobile .contact .content .item .detail {
        font-size: 12px;
        color: #666666;
        margin-top: 12px;
        line-height: 24px;
    }
    .container .contact-container-mobile .contact .content .item .detail img {
        height: 72px;
    }
    /* 底部 */
    .container .footer-container-mobile {
        width: 100%;
        background-color: #0b162b;
        margin-top: 16px;
        padding: 12px 15px 24px;
        box-sizing: border-box;
    }
    .container .footer-container-mobile .footer {
        width: 100%;
    }
    .container .footer-container-mobile .footer .list p {
        margin-top: 12px;
        color: #ffffff;
        font-size: 12px;
    }
    .container .footer-container-mobile .footer .list p img {
        margin-right: 4px;
    }
    .container .footer-container-mobile .footer .wx-list {
        width: 100%;
        margin-top: 16px;
    }
    .container .footer-container-mobile .footer .wx-list .item:first-child {
        margin-right: 24px;
    }
    .container .footer-container-mobile .footer .wx-list .item img {
        width: 120px;
    }
    .container .footer-container-mobile .footer .wx-list .item p {
        margin-top: 6px;
        color: #ffffff;
        font-size: 12px;
    }
    .container .footer-container-mobile .footer .icp {
        width: 100%;
        margin-top: 10px;
        color: #ffffff;
        font-size: 12px;
        line-height: 24px;
    }
    .container .footer-container-mobile .footer .icp a {
        color: #ffffff;
    }
}