body {
    overflow-x: hidden;
}

@font-face {
    font-family: "Sourc";
    src: url("../fonts/SourceHanSerifCN-SemiBold.otf");
    font-display: swap;
}


/*滚动条的宽度*/

::-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;
    /* overflow-x: hidden; */
}

@keyframes li_hover_show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes move {
    from {
        transform: translateX(5%);
    }
    to {
        transform: translateX(0%);
    }
}


/* 主页头部 */

.container .top-container {
    position: absolute;
    width: 100%;
    height: 80px;
    z-index: 999;
}

.container .top-container .top {
    width: 1200px;
}

.container .top-container .top .nav li {
    width: 82px;
    height: 78px;
    line-height: 78px;
    text-align: center;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all .3s;
    position: relative;
}

.container .top-container .top .nav li:not(:first-child) {
    margin-left: 36px;
}

.container .top-container .top .nav .active-nav {
    border-bottom: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
}

.container .top-container .top .nav li:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.container .top-container .top .nav li::after {
    content: "";
    position: absolute;
    top: 78px;
    left: 0;
    width: 82px;
    height: 2px;
    background: #005F3F;
    opacity: 0;
    transform: scaleX(0.01);
    transition: all .3s;
}

.container .top-container .top .nav li:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.container .top-container .top .nav li:hover .li-hover {
    display: flex;
    animation: li_hover_show .5s ease-out both;
}

.container .top-container .top .nav li .li-hover {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    /* background: #ffffff; */
    display: none;
}

.container .top-container .top .nav li .li-hover .circle {
    width: 0px;
    height: 0px;
    /* background: #ffffff; */
    border-color: transparent transparent #ffffff transparent;
    border-style: solid;
    border-width: 10px;
}

.container .top-container .top .nav li .li-hover p {
    width: 153px;
    height: 48px;
    background: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #f0efef;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #333333;
    transition: all .3s;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.container .top-container .top .nav li .li-hover p:hover {
    color: #005F3F;
}

.container .top-container .top .nav li .li-hover p:last-child {
    border-bottom: none;
}

.container .top-container .top .nav li .li-hover .active-p {
    color: #005F3F;
}

.container .top-container .top .nav li:hover .li-hover-too {
    display: flex;
    animation: li_hover_show .5s ease-out both;
}

.container .top-container .top .nav li .li-hover-too {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    /* background: #ffffff; */
    display: none;
}

.container .top-container .top .nav li .li-hover-too .circle {
    width: 0px;
    height: 0px;
    /* background: #ffffff; */
    border-color: transparent transparent #ffffff transparent;
    border-style: solid;
    border-width: 10px;
}

.container .top-container .top .nav li .li-hover-too p {
    width: 153px;
    height: 48px;
    background: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #f0efef;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #333333;
    transition: all .3s;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.container .top-container .top .nav li .li-hover-too p:hover {
    color: #005F3F;
}

.container .top-container .top .nav li .li-hover-too p:last-child {
    border-bottom: none;
}

.container .top-container .top .nav li .li-hover-too .active-p {
    color: #005F3F;
}

.container .top-container .top .nav li:hover .li-hover-three {
    display: flex;
    animation: li_hover_show .5s ease-out both;
}

.container .top-container .top .nav li .li-hover-three {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    /* background: #ffffff; */
    display: none;
}

.container .top-container .top .nav li .li-hover-three .circle {
    width: 0px;
    height: 0px;
    /* background: #ffffff; */
    border-color: transparent transparent #ffffff transparent;
    border-style: solid;
    border-width: 10px;
}

.container .top-container .top .nav li .li-hover-three a {
    display: block;
    width: 153px;
    height: 48px;
    background: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #f0efef;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #333333;
    transition: all .3s;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.container .top-container .top .nav li .li-hover-three a:hover {
    color: #005F3F;
}

.container .top-container .top .nav li .li-hover-three a:last-child {
    border-bottom: none;
}


/* 主页头部固定 */

.container .top-container-too {
    position: fixed;
    width: 100%;
    height: 80px;
    background: #FFFFFF;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    z-index: 999;
    display: none;
}

.container .top-container-too .top {
    width: 1200px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.container .top-container-too .top .nav li {
    width: 82px;
    height: 78px;
    line-height: 78px;
    text-align: center;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #333333;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    position: relative;
}

.container .top-container-too .top .nav li:not(:first-child) {
    margin-left: 36px;
}

.container .top-container-too .top .nav .active-nav {
    border-bottom: 2px solid #005F3F;
}

.container .top-container-too .top .nav li::after {
    content: "";
    position: absolute;
    top: 78px;
    left: 0;
    width: 82px;
    height: 2px;
    background: #005F3F;
    opacity: 0;
    transform: scaleX(0.01);
    transition: all .3s;
}

.container .top-container-too .top .nav li:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.container .top-container-too .top .nav li:hover .li-hover {
    display: flex;
    animation: li_hover_show .5s ease-out both;
}

.container .top-container-too .top .nav li .li-hover {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.container .top-container-too .top .nav li .li-hover .circle {
    width: 0px;
    height: 0px;
    /* background: #ffffff; */
    border-color: transparent transparent #ffffff transparent;
    border-style: solid;
    border-width: 10px;
}

.container .top-container-too .top .nav li .li-hover p {
    width: 153px;
    height: 48px;
    border-left: 1px solid #f0efef;
    border-right: 1px solid #f0efef;
    background: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #f0efef;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #333333;
    transition: all .3s;
}

.container .top-container-too .top .nav li .li-hover p:hover {
    color: #005F3F;
}

.container .top-container-too .top .nav li .li-hover .active-p {
    color: #005F3F;
}

.container .top-container-too .top .nav li:hover .li-hover-too {
    display: flex;
    animation: li_hover_show .5s ease-out both;
}

.container .top-container-too .top .nav li .li-hover-too {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    /* background: #ffffff; */
    display: none;
}

.container .top-container-too .top .nav li .li-hover-too .circle {
    width: 0px;
    height: 0px;
    /* background: #ffffff; */
    border-color: transparent transparent #ffffff transparent;
    border-style: solid;
    border-width: 10px;
}

.container .top-container-too .top .nav li .li-hover-too p {
    width: 153px;
    height: 48px;
    background: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #f0efef;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #333333;
    transition: all .3s;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.container .top-container-too .top .nav li .li-hover-too p:hover {
    color: #005F3F;
}

.container .top-container-too .top .nav li .li-hover-too p:last-child {
    border-bottom: none;
}

.container .top-container-too .top .nav li .li-hover-too .active-p {
    color: #005F3F;
}

.container .top-container-too .top .nav li:hover .li-hover-three {
    display: flex;
    animation: li_hover_show .5s ease-out both;
}

.container .top-container-too .top .nav li .li-hover-three {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    /* background: #ffffff; */
    display: none;
}

.container .top-container-too .top .nav li .li-hover-three .circle {
    width: 0px;
    height: 0px;
    /* background: #ffffff; */
    border-color: transparent transparent #ffffff transparent;
    border-style: solid;
    border-width: 10px;
}

.container .top-container-too .top .nav li .li-hover-three a {
    display: block;
    width: 153px;
    height: 48px;
    background: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #f0efef;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #333333;
    transition: all .3s;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.container .top-container-too .top .nav li .li-hover-three a:hover {
    color: #005F3F;
}

.container .top-container-too .top .nav li .li-hover-three a:last-child {
    border-bottom: none;
}


/* 轮播图 */

.container .swiper-container {
    width: 100%;
    /* height: 720px; */
    position: relative;
}

.container .swiper-container img {
    width: 100%;
    /* height: 100%; */
}

.container .swiper-container .swiper-pagination-custom {
    bottom: 32px;
    left: 0;
    width: 100%;
    height: 20px;
    /* background-color: red; */
    text-align: center;
}


/*自定义分页器的样式，这个你自己想要什么样子自己写*/

.container .swiper-container .swiper-pagination-customs {
    width: 48px;
    height: 3px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    /* box-shadow: 0 0 2px #000; */
    margin: 0 12px;
    outline: 0;
}


/*自定义分页器激活时的样式表现*/

.container .swiper-container .swiper-pagination-customs-active {
    background-color: rgba(255, 255, 255, 1);
}

.container .swiper-container .swiper-button-next {
    width: 71px;
    height: 71px;
    background-image: url("../images/index_banner_arrow_right.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.container .swiper-container .swiper-button-next:hover {
    background-image: url("../images/index_banner_arrow_right_active.png");
}

.container .swiper-container .swiper-button-prev {
    width: 71px;
    height: 71px;
    background-image: url("../images/index_banner_arrow_left.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.container .swiper-container .swiper-button-prev:hover {
    background-image: url("../images/index_banner_arrow_left_active.png");
}


/* 主页产品中心 */

.container .product-container {
    width: 100%;
}

.container .product-container .product {
    width: 1200px;
}

.container .product-container .product .title-chinese {
    width: 100%;
    margin-top: 96px;
    font-size: 40px;
    font-family: "Sourc", "Microsoft YaHei";
    font-weight: bold;
    color: #005F3F;
    letter-spacing: 10px;
}

.container .product-container .product .title-english {
    width: 100%;
    margin-top: 12px;
    font-size: 16px;
    font-family: "Arial";
    font-weight: 400;
    color: #666666;
    letter-spacing: 5px;
}

.container .product-container .product .product-item {
    width: 100%;
    margin-top: 36px;
}

.container .product-container .product .product-item .item {
    width: 50%;
    height: 430px;
    box-sizing: border-box;
    cursor: pointer;
}

.container .product-container .product .product-item .item .dust {
    width: 100%;
    height: 100%;
    /*background-image: url("../../img/temp/index_product_dust.png");*/
    background-image: url("https://snyto.oss-cn-beijing.aliyuncs.com/website/index_product_dust.png");
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.container .product-container .product .product-item .item:first-child {
    background: #AFCE41;
}

.container .product-container .product .product-item .item:nth-child(2) {
    background: #00C1B4;
}

.container .product-container .product .product-item .item:nth-child(3) {
    background: #C1A100;
}

.container .product-container .product .product-item .item:nth-child(4) {
    /*background-image: url("../../img/temp/index_product_bac.png");*/
    background-image: url("https://snyto.oss-cn-beijing.aliyuncs.com/website/index_product_bac.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.container .product-container .product .product-item .item .num {
    position: absolute;
    top: 42px;
    left: 10px;
    font-size: 74px;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    color: #FFFFFF;
    opacity: 0.5;
}

.container .product-container .product .product-item .item .line {
    position: absolute;
    top: 154px;
    left: 44px;
    width: 0px;
    height: 150px;
    border: 1px solid #FFFFFF;
    opacity: 0.5;
}

.container .product-container .product .product-item .item h5 {
    position: absolute;
    top: 310px;
    left: 33px;
    font-size: 20px;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    color: #FFFFFF;
}

.container .product-container .product .product-item .item h3 {
    position: absolute;
    top: 352px;
    left: 33px;
    font-size: 20px;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    color: #FFFFFF;
}

.container .product-container .product .product-item .item h4 {
    position: absolute;
    top: 386px;
    left: 33px;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    line-height: 19px;
    color: #FFFFFF;
}


/* 主页关于我们 */

.container .about-container {
    width: 100%;
}

.container .about-container .about {
    width: 1200px;
}

.container .about-container .about .title-chinese {
    width: 100%;
    margin-top: 96px;
    font-size: 40px;
    font-family: "Sourc", "Microsoft YaHei";
    font-weight: bold;
    color: #005F3F;
    letter-spacing: 10px;
}

.container .about-container .about .title-english {
    width: 100%;
    margin-top: 12px;
    font-size: 16px;
    font-family: "Arial";
    font-weight: 400;
    color: #666666;
    letter-spacing: 5px;
}

.container .about-container .about .about-item {
    width: 100%;
    margin-top: 36px;
    height: 675px;
}

.container .about-container .about .about-item .video-dust {
    width: 1200px;
    height: 675px;
    background-image: url("../../img/temp/index_about_introduction_bac.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.container .about-container .about .about-item .video-dust .logo {
    position: absolute;
    left: 50%;
    top: 232px;
    width: 284px;
    transform: translateX(-50%);
}

.container .about-container .about .about-item .video-dust p {
    font-size: 32px;
    font-family: "Source Han Sans CN";
    font-weight: 400;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 332px;
    transform: translateX(-50%);
}

.container .about-container .about .about-item .video-dust .open {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
    width: 100px;
}

.container .about-container .about .detail {
    width: 100%;
    margin-top: 72px;
    position: relative;
}

.container .about-container .about .detail .building {
    width: 522px;
    height: 612px;
}

.container .about-container .about .detail h6 {
    width: 636px;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    line-height: 32px;
    color: #666666;
    margin-top: 10px;
    text-indent: 32px;
}

.container .about-container .about .detail h6:first-child {
    margin-top: 5px;
}

.container .about-container .about .detail .more {
    font-size: 20px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #005F3F;
    margin-top: 40px;
    cursor: pointer;
    position: absolute;
    right: 0;
}

.container .about-container .about .detail .more img {
    width: 20px;
    height: 20px;
    margin-left: 4px;
}


/* 主页公司方案 */

.container .plan-container {
    width: 100%;
}

.container .plan-container .plan {
    width: 1200px;
}

.container .plan-container .plan .title-chinese {
    width: 100%;
    margin-top: 96px;
    font-size: 40px;
    font-family: "Sourc", "Microsoft YaHei";
    font-weight: bold;
    color: #005F3F;
    letter-spacing: 10px;
}

.container .plan-container .plan .title-english {
    width: 100%;
    margin-top: 12px;
    font-size: 16px;
    font-family: "Arial";
    font-weight: 400;
    color: #666666;
    letter-spacing: 5px;
}

.container .plan-container .plan .swiper-container-plan {
    width: 100%;
    height: 280px;
    margin-top: 36px;
    overflow: hidden;
    position: relative;
}

.container .plan-container .plan .swiper-container-plan .swiper-button-prev-plan {
    width: 32px;
    height: 32px;
    background-image: url('../images/index_plan_arrow_left.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 99;
}

.container .plan-container .plan .swiper-container-plan .swiper-button-prev-plan:hover {
    background-image: url('../images/index_plan_arrow_left._active.png');
}

.container .plan-container .plan .swiper-container-plan .swiper-button-next-plan {
    width: 32px;
    height: 32px;
    background-image: url('../images/index_plan_arrow_right.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 99;
}

.container .plan-container .plan .swiper-container-plan .swiper-button-next-plan:hover {
    background-image: url('../images/index_plan_arrow_right_active.png');
}

.container .plan-container .plan .swiper-container-plan .swiper-wrapper .swiper-slide {
    width: 285px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.container .plan-container .plan .swiper-container-plan .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
}

.container .plan-container .plan .swiper-container-plan .swiper-wrapper .swiper-slide .dust {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../../img/temp/index_plan_dust.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.container .plan-container .plan .swiper-container-plan .swiper-wrapper .swiper-slide .dust h3 {
    font-size: 20px;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    color: #FFFFFF;
    position: absolute;
    top: 24px;
    left: 16px;
}

.container .plan-container .plan .swiper-container-plan .swiper-wrapper .swiper-slide .dust h4 {
    font-size: 14px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.7;
    position: absolute;
    top: 62px;
    left: 16px;
}

.container .plan-container .plan .swiper-container-plan .swiper-wrapper .swiper-slide .dust p {
    width: 19px;
    height: 18px;
    background: url("../images/index_plan_right_angle.png") no-repeat 0px 0px/100% 100%;
    position: absolute;
    top: 250px;
    left: 250px;
}


/* 首页新闻动态 */

.container .news-container {
    width: 100%;
    box-sizing: border-box;
}

.container .news-container .news {
    width: 1200px;
}

.container .news-container .news .title-chinese {
    width: 100%;
    margin-top: 96px;
    font-size: 40px;
    font-family: "Sourc", "Microsoft YaHei";
    font-weight: bold;
    color: #005F3F;
    letter-spacing: 10px;
}

.container .news-container .news .title-english {
    width: 100%;
    margin-top: 12px;
    font-size: 16px;
    font-family: "Arial";
    font-weight: 400;
    color: #666666;
    letter-spacing: 5px;
}

.container .news-container .news .detail {
    width: 100%;
    margin-top: 36px;
}

.container .news-container .news .detail .item {
    width: 598px;
    height: 246px;
    padding: 24px;
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: all 1s;
}

.container .news-container .news .detail .item:hover {
    background: rgba(0, 95, 63, 0.1);
    border: 1px solid #005F3F;
    box-shadow: 0px 0px 18px rgba(46, 46, 46, 0.2);
}

.container .news-container .news .detail .item .title {
    width: 100%;
}

.container .news-container .news .detail .item .title .text {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    font-family: "Microsoft YaHei";
    font-weight: bold;
    color: #333333;
}

.container .news-container .news .detail .item .time {
    margin-top: 12px;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #999999;
}

.container .news-container .news .detail .item .content {
    margin-top: 24px;
    width: 100%;
    height: 60px;
    font-size: 15px;
    font-family: "Microsoft YaHei";
    color: #666666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.container .news-container .news .detail .item .read {
    margin-top: 24px;
    font-size: 20px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #005F3F;
    cursor: pointer;
}

.container .news-container .news .detail .item .read img {
    margin-left: 4px;
    width: 20px;
    height: 20px;
}

.container .news-container .news .more {
    margin-top: 60px;
    width: 100%;
}

.container .news-container .news .more .btn {
    width: 273px;
    height: 50px;
    border: 1px solid #005F3F;
    border-radius: 2px;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #005F3F;
    letter-spacing: 10px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    transition: all .5s;
}

.container .news-container .news .more .btn:hover {
    background: #005F3F;
    color: #ffffff;
}


/* 首页合作伙伴 */

.container .partner-container {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 96px;
}

.container .partner-container .partner {
    width: 1200px;
}

.container .partner-container .partner .title-chinese {
    width: 100%;
    margin-top: 96px;
    font-size: 40px;
    font-family: "Sourc", "Microsoft YaHei";
    font-weight: bold;
    color: #005F3F;
    letter-spacing: 10px;
}

.container .partner-container .partner .title-english {
    width: 100%;
    margin-top: 12px;
    font-size: 16px;
    font-family: "Arial";
    font-weight: 400;
    color: #666666;
    letter-spacing: 5px;
}

.container .partner-container .partner .swiper-container-partner {
    width: 100%;
    height: 105px;
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.container .partner-container .partner .swiper-container-partner .swiper-button-prev-partner {
    width: 32px;
    height: 32px;
    background-image: url('../images/index_plan_arrow_left.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 99;
}

.container .partner-container .partner .swiper-container-partner .swiper-button-prev-partner:hover {
    background-image: url('../images/index_plan_arrow_left._active.png');
}

.container .partner-container .partner .swiper-container-partner .swiper-button-next-partner {
    width: 32px;
    height: 32px;
    background-image: url('../images/index_plan_arrow_right.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 99;
}

.container .partner-container .partner .swiper-container-partner .swiper-button-next-partner:hover {
    background-image: url('../images/index_plan_arrow_right_active.png');
}

.container .partner-container .partner .swiper-container-partner .swiper-wrapper .swiper-slide {
    width: 266px;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #DCDCDC;
    box-sizing: border-box;
}

.container .partner-container .partner .swiper-container-partner .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
}


/* 首页底部 */

.container .footer-container {
    width: 100%;
    height: 435px;
    /* background-color: #0b162b; */
    background-image: url(../../img/temp/index_footer_bac.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.container .footer-container .footer {
    width: 1200px;
}

.container .footer-container .footer .main {
    width: 100%;
    height: 339px;
    border-bottom: 1px solid rgba(216, 216, 216, 0.2);
}

.container .footer-container .footer .main .left {
    padding-top: 62px;
    box-sizing: border-box;
}

.container .footer-container .footer .main .left .logo {
    margin-bottom: 16px;
}

.container .footer-container .footer .main .left p {
    margin-top: 16px;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #ffffff;
    margin-left: 6px;
}

.container .footer-container .footer .main ul {
    padding-top: 66px;
    width: 750px;
    box-sizing: border-box;
}

.container .footer-container .footer .main ul li .title {
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 40px;
}

.container .footer-container .footer .main ul li a {
    font-size: 16px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.5;
    margin-top: 20px;
    cursor: pointer;
    display: block;
}

.container .footer-container .footer .main ul li a:hover {
    opacity: 1;
}

.container .footer-container .footer .main ul li .concern {
    position: relative;
}

.container .footer-container .footer .main ul li .concern .wx {
    width: 30px;
    height: 30px;
    background: #93B99D;
    border-radius: 50%;
    cursor: pointer;
    transition: all 1s;
}

.container .footer-container .footer .main ul li .concern .wx img {
    width: 17px;
    height: 14px;
}

.container .footer-container .footer .main ul li .concern .wx-hover {
    position: absolute;
    top: 40px;
    left: -62px;
    opacity: 0;
    transition: all 1s;
}

.container .footer-container .footer .main ul li .concern .wx-hover img {
    width: 153px;
    height: 154px;
}

.container .footer-container .footer .main ul li .concern .wx:hover+.wx-hover {
    opacity: 1;
}

.container .footer-container .footer .main ul li .concern .wx:hover {
    background: #1AB409;
}

.container .footer-container .footer .main ul li .concern .douyin {
    width: 30px;
    height: 30px;
    background: #93B99D;
    border-radius: 50%;
    margin-left: 20px;
    cursor: pointer;
    transition: all 1s;
}

.container .footer-container .footer .main ul li .concern .douyin img {
    width: 14px;
    height: 16px;
}

.container .footer-container .footer .main ul li .concern .douyin-hover {
    position: absolute;
    top: 40px;
    right: -62px;
    opacity: 0;
    transition: all 1s;
}

.container .footer-container .footer .main ul li .concern .douyin-hover img {
    width: 153px;
    height: 154px;
}

.container .footer-container .footer .main ul li .concern .douyin:hover+.douyin-hover {
    /* display: block; */
    opacity: 1;
}

.container .footer-container .footer .main ul li .concern .douyin:hover {
    background: #EC932D;
}

.container .footer-container .footer .icp {
    width: 100%;
    height: 96px;
    font-size: 16px;
    font-family: "Source Han Sans CN";
    font-weight: 400;
    line-height: 27px;
    color: #FFFFFF;
    opacity: 0.5;
}

.container .footer-container .footer .icp a {
    color: #FFFFFF;
}


/* 侧边固定 */

.container .fixed-pc {
    position: fixed;
    width: 48px;
    right: 4px;
    top: 500px;
    z-index: 999;
    display: none;
}

.container .fixed-pc .wx {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background-image: url("../images/index_fixed_wx.png");
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    transition: all 1s;
}

.container .fixed-pc .wx-hover {
    position: absolute;
    right: 60px;
    top: -48px;
    display: none;
}

.container .fixed-pc .wx:hover {
    background: #005F3F;
    background-image: url("../images/index_fixed_wx_hover.png");
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.container .fixed-pc .wx:hover+.wx-hover {
    display: block;
    animation: move 1s ease-out both;
}

.container .fixed-pc .tel {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background-image: url("../images/index_fixed_tel.png");
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    margin-top: 12px;
    transition: all 1s;
}

.container .fixed-pc .tel-hover {
    position: absolute;
    right: 60px;
    top: 48px;
    display: none;
}

.container .fixed-pc .tel:hover {
    background: #005F3F;
    background-image: url("../images/index_fixed_tel_hover.png");
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.container .fixed-pc .tel:hover+.tel-hover {
    display: block;
    animation: move 1s ease-out both;
}

.container .fixed-pc .up {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background-image: url("../images/index_fixed_up.png");
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
    margin-top: 12px;
    transition: all 1s;
}

.container .fixed-pc .up:hover {
    background: #005F3F;
    background-image: url("../images/index_fixed_up_hover.png");
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}