* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit
}

:root {
    --primary-color: #58b530
}

*:focus {
    outline: none
}

img {
    max-width: 100%
}

ul li {
    list-style: none
}

html, body {
    color: #333;
    font-size: 16px;
    font-family: Arial,Helvetica,sans-serif
}

body {
    min-width: 1200px
}

.footer-left .logo img{width: 50%}
.w1440{ width:1400px; margin: 0 auto;}
.clearfix{zoom:1; clear: none}
.clearfix:before,.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}
.container{width:1400px; margin: 0 auto}

.header {
    height: 90px;
    padding: 0 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: "Microsoft YaHei";
position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}
.header .navs .active {opacity: 1;font-weight: bold;color: #58b530}
    .header .logo {
        height: 80px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
			width: 150px;
    }

    .header .navs {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .header .navs > ul > li {
            display: inline-block;
            margin-left: 30px;
            padding-left: 30px;
            position: relative
        }



       
            .header .navs > ul > li::before {
                content: "";
                width: 1px;
                height: 10px;
                background: #073745;
                position: absolute;
                left: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%)
            }

            .header .navs > ul > li:first-child {
                margin-left: 0
            }

                .header .navs > ul > li:first-child::before {
                    display: none
                }

            .header .navs > ul > li:hover > a {
                color: var(--primary-color);
                padding: 10px 0;
				
            }

            .header .navs > ul > li:hover ul {
                display: block;
					
            }

            .header .navs > ul > li ul {
                position: absolute;
                display: none;
                background: #fff;
                z-index: 2;
                top: 30px;
                left: 50%;
                margin-left: 15px;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
                -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
                box-shadow: 0 0 10px rgba(0,0,0,.2);
                padding: 20px;
                border-radius: 5px;
                background-clip: padding-box;
z-index:9;
            }

                .header .navs > ul > li ul li {
                    padding: 10px 0;
                    white-space: nowrap
                }

                    .header .navs > ul > li ul li:hover a {
                        color: var(--primary-color)
                    }

        .header .navs .language {
            padding: 0 15px;
            height: 40px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            border-radius: 40px;
            background: var(--primary-color);
            color: #fff;
            cursor: pointer;
            margin-left: 45px;
            position: relative
        }

            .header .navs .language p {
                margin: 0 10px
            }

            .header .navs .language .arrow {
                -webkit-transition: -webkit-transform .3s;
                transition: -webkit-transform .3s;
                transition: transform .3s;
                transition: transform .3s, -webkit-transform .3s
            }

            .header .navs .language:hover .arrow {
                -webkit-transform: rotate(180deg);
                transform: rotate(180deg)
            }

            .header .navs .language:hover .language-list {
                top: 40px;
                opacity: 1;
                visibility: visible
            }

            .header .navs .language .language-list {
                position: absolute;
                width: 100%;
                top: 60px;
                left: 0;
                visibility: hidden;
                opacity: 0;
                -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
                box-shadow: 0 0 10px rgba(0,0,0,.2);
                -webkit-transition: all .3s;
                transition: all .3s;
                background: #fff;
                z-index: 2;
                box-shadow: 0 0 10px rgba(0,0,0,.2);
                padding: 20px;
                border-radius: 5px
            }

                .header .navs .language .language-list .item {
                    color: #333;
                    display: block;
                    padding: 5px 0
                }

                    .header .navs .language .language-list .item:hover {
                        color: var(--primary-color)
                    }

.page-title {
    text-align: center;
    padding: 70px 40px;
    max-width: 1100px;
    margin: 0 auto
}

    .page-title .color-black {
        color: #000
    }

    .page-title p {
        color: var(--primary-color);
        font-size: 48px;
        line-height: 60px;
        font-weight: bold
    }

    .page-title span {
        display: block;
        font-size: 16px;
        margin-top: 15px;
        line-height: 30px
    }

.footer {
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(45%, #1a1b1f), color-stop(45%, #58b530), to(#58b530));
    background: linear-gradient(to right, #1a1b1f 45%, #58b530 45%, #58b530 100%)
}

    .footer .footer-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: 1440px;
        margin: 0 auto
    }

    .footer .footer-left {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 42%;
        flex: 0 0 42%;
        padding: 45px 60px 150px 0
    }

        .footer .footer-left .desc {
            font-size: 24px;
            font-weight: bold;
            margin: 25px 0
        }

        .footer .footer-left li {
            padding-left: 40px;
            margin-bottom: 30px;
            line-height: 24px;
            background: url("../images/img-23.png") no-repeat left 5px
        }

            .footer .footer-left li:nth-child(2) {
                background-image: url("../images/img-24.png")
            }

            .footer .footer-left li:nth-child(3) {
                background-image: url("../images/img-25.png")
            }

        .footer .footer-left .contact-list .img {
            margin-right: 30px;
            cursor: pointer
        }

        .footer .footer-left .contact-list .img {
            width: 30px;
            height: 30px;
            position: relative;
            display: inline-block;
            background: url(../images/img-26.png) no-repeat center
        }

            .footer .footer-left .contact-list .img:hover .hover-img {
                display: block
            }

            .footer .footer-left .contact-list .img .hover-img {
                position: absolute;
                width: 100px;
                height: 100px;
                display: none;
                left: 50%;
                top: 50px;
                -webkit-transform: translateX(-50%);
                transform: translateX(-50%)
            }

                .footer .footer-left .contact-list .img .hover-img img {
                    width: 100%;
                    height: 100%;
                    -o-object-fit: cover;
                    object-fit: cover
                }

        .footer .footer-left .contact-list .in:hover {
            background-image: url(../images/img-30.png)
        }

        .footer .footer-left .contact-list .wechat {
            background-image: url(../images/img-27.png)
        }

            .footer .footer-left .contact-list .wechat:hover {
                background-image: url(../images/img-31.png)
            }

        .footer .footer-left .contact-list .phone {
            background-image: url(../images/img-28.png)
        }

            .footer .footer-left .contact-list .phone:hover {
                background-image: url(../images/img-32.png)
            }

    .footer .footer-right {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: grid;
        grid-template-columns: repeat(3, auto);
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 105px 0 0 85px
    }

        .footer .footer-right p {
            font-size: 18px;
            margin-bottom: 6px
        }

        .footer .footer-right li {
            font-size: 14px
        }

            .footer .footer-right li a {
                color: #fff;
                line-height: 30px
            }

    .footer .footer-desc {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom: 35px;
        max-width: 1440px;
        margin: 0 auto;
        font-size: 14px
    }

        .footer .footer-desc .text p {
            margin-right: 20px;
            line-height: 24px
        }

        .footer .footer-desc a {
            color: #fff;
            padding: 0 5px;
            line-height: 24px
        }

    .footer .support, .footer .support a, .footer .text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .footer .support a {
            margin-left: 30px
        }

@media(max-width: 1440px) {
    .header .navs > ul > li {
        margin-left: 20px;
        padding-left: 20px
    }
}

@media(max-width: 1280px) {
    .header .navs > ul > li {
        margin-left: 15px;
        padding-left: 15px
    }
}


/*-----------------------------*/
@-webkit-keyframes mouse {
    0% {
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0)
    }

    50% {
        -webkit-transform: translateX(-50%) translateY(10px);
        transform: translateX(-50%) translateY(10px)
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0)
    }
}

@keyframes mouse {
    0% {
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0)
    }

    50% {
        -webkit-transform: translateX(-50%) translateY(10px);
        transform: translateX(-50%) translateY(10px)
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0)
    }
}

.banner {
    width: 100%;
    font-size: 0;
    position: relative;
    overflow: hidden
}

    .banner .animate img {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }

    .banner img {
        -webkit-transition: all 3s;
        transition: all 3s;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .banner .mouse {
        position: absolute;
        bottom: 90px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-animation: mouse 2s infinite;
        animation: mouse 2s infinite;
        z-index: 99
    }

        .banner .mouse::before {
            content: "";
            position: absolute;
            top: 0
        }

.home-scheme .page-title p {
    font-weight: normal
}

.home-scheme .top {
    background: #fcfcfc;
    max-width: 100%
}

.home-scheme .scheme-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin: 0 20px
}

.home-scheme .list-item {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer
}

    .home-scheme .list-item:hover .hide-page {
        bottom: auto;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        opacity: 1
    }

    .home-scheme .list-item:hover .bg {
        opacity: 1
    }

    .home-scheme .list-item:hover .title {
        visibility: hidden
    }

    .home-scheme .list-item img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

    .home-scheme .list-item .title {
        width: 100%;
        padding: 0 20px;
        position: absolute;
        bottom: 0;
        line-height: 40px;
        text-align: center;
        background: rgba(255,255,255,.5);
        color: #000;
        font-size: 18px;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden
    }

    .home-scheme .list-item:nth-child(4n+1) .bg {
        background: rgba(39,156,0,.91)
    }

    .home-scheme .list-item:nth-child(4n+2) .bg {
        background: rgba(255,150,0,.91)
    }

    .home-scheme .list-item:nth-child(4n+3) .bg {
        background: rgba(0,153,68,.91)
    }

    .home-scheme .list-item:nth-child(4n+4) .bg {
        background: rgba(23,94,157,.91)
    }

    .home-scheme .list-item .bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        -webkit-transition: all .4s;
        transition: all .4s
    }

    .home-scheme .list-item .hide-page {
        z-index: 2;
        position: absolute;
        left: 0;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        -webkit-transition: all .4s;
        transition: all .4s;
        bottom: 0%;
        opacity: 0
    }

        .home-scheme .list-item .hide-page .center {
            padding: 0 50px
        }

        .home-scheme .list-item .hide-page p {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px
        }

        .home-scheme .list-item .hide-page span {
            display: block;
            line-height: 30px
        }

        .home-scheme .list-item .hide-page .more {
            cursor: pointer;
            width: 136px;
            height: 45px;
            border: 2px solid #fff;
            border-radius: 45px;
            display: block;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            line-height: 41px;
            color: #fff;
            text-align: center;
            margin: 0 auto;
            margin-top: 30px
        }

.home-expertise {
    margin-top: 50px
}

    .home-expertise .expertise-list {
        padding: 0;
        position: relative;
        text-align: center
    }

    .home-expertise .box {
        position: relative;
        z-index: 10;
        display: inline-block;
        vertical-align: bottom;
        white-space: nowrap;
        overflow: visible;
        width: 7.3vw;
        height: 20vw;
        margin: 0 .8vw;
        -webkit-transition: all .4s;
        transition: all .4s
    }

        .home-expertise .box:nth-child(4n+1) .list-item {
            background: rgba(39,156,0,.91)
        }

        .home-expertise .box:nth-child(4n+2) .list-item {
            background: rgba(255,150,0,.91)
        }

        .home-expertise .box:nth-child(4n+3) .list-item {
            background: rgba(0,153,68,.91)
        }

        .home-expertise .box:nth-child(4n+4) .list-item {
            background: rgba(23,94,157,.91)
        }

        .home-expertise .box.active {
            width: 20vw;
            height: 20vw
        }

            .home-expertise .box.active .list-item {
                bottom: 0;
                height: 20vw;
                background: rgba(0,0,0,0)
            }

            .home-expertise .box.active .title {
                display: none
            }

            .home-expertise .box.active img {
                display: block
            }

        .home-expertise .box img {
            display: none
        }

    .home-expertise .list-item {
        width: 100%;
        height: 7.3vw;
        border-radius: 500px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-weight: bold;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        -webkit-transition: width .4s,height .4s,bottom .4s;
        transition: width .4s,height .4s,bottom .4s;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 20%
    }

    .home-expertise .text {
        text-align: center;
        max-width: 1440px;
        margin: 50px 10% 0;
        display: none
    }

        .home-expertise .text.active {
            display: block
        }

        .home-expertise .text p {
            font-size: 30px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 5px
        }

        .home-expertise .text .desc {
           
            font-size: 18px;
            line-height: 36px;
			text-align: left;
        }

        .home-expertise .text .more {
            width: 135px;
            height: 44px;
            border: 2px solid var(--primary-color);
            line-height: 40px;
            text-align: center;
            cursor: pointer;
            color: var(--primary-color);
            display: block;
            border-radius: 100px;
            margin: 35px auto 0
        }

.home-zymogreen {
    height: 760px;
    position: relative;
    margin-top: 70px;
    background: #fafafa url(../images/img-15.jpg) no-repeat center bottom/auto 100%
}

    .home-zymogreen .address-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        padding: 0 70px;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 90px
    }

        .home-zymogreen .address-list .list-item {
            padding: 20px 0 20px 30px;
            border-radius: 10px;
            font-size: 16px;
            color: #fff;
            -webkit-transition: all .3s;
            transition: all .3s
        }

            .home-zymogreen .address-list .list-item:hover {
                -webkit-transform: translateY(-15px);
                transform: translateY(-15px)
            }

            .home-zymogreen .address-list .list-item:nth-child(1) {
                background: rgba(88,181,48,.9)
            }

            .home-zymogreen .address-list .list-item:nth-child(2) {
                background: rgba(255,150,0,.9)
            }

            .home-zymogreen .address-list .list-item:nth-child(3) {
                background: rgba(23,94,157,.9)
            }

            .home-zymogreen .address-list .list-item:nth-child(4) {
                background: rgba(238,43,33,.9)
            }

            .home-zymogreen .address-list .list-item:nth-child(5) {
                background: rgba(88,181,48,.9)
            }
            .home-zymogreen .address-list .list-item .company {
                font-weight: bold;
                margin-bottom: 15px;
                padding-left: 35px;
                background: url(../images/img-13.png) no-repeat left 0
            }

            .home-zymogreen .address-list .list-item .address {
                padding-left: 35px;
                background: url(../images/img-14.png) no-repeat left 0
            }

.home-class .class-list {
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px
}

.home-class .list-item {
    position: relative;
    height: 480px;
    padding: 100px 0 0 90px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-size: cover !important;
}

    .home-class .list-item:nth-child(3) {
        background: -webkit-gradient(linear, left top, right top, from(rgba(0, 151, 71, 0.6)), color-stop(80%, rgba(0, 0, 0, 0))),url(../images/img-16.jpg) no-repeat center;
        background: linear-gradient(to right, rgba(0, 151, 71, 0.6) 0%, rgba(0, 0, 0, 0) 80%),url(../images/img-16.jpg) no-repeat center
    }

    .home-class .list-item:nth-child(1) {
        background: -webkit-gradient(linear, left top, right top, from(rgba(247, 116, 13, 0.6)), color-stop(80%, rgba(0, 0, 0, 0))),url(../images/img-17.jpg) no-repeat center;
        background: linear-gradient(to right, rgba(247, 116, 13, 0.6) 0%, rgba(0, 0, 0, 0) 80%),url(../images/img-17.jpg) no-repeat center
    }

        .home-class .list-item:nth-child(1):hover .more {
            background-color: rgba(247,116,13,.4);
            border-color: rgba(247,116,13,.4)
        }

    .home-class .list-item:nth-child(2) {
        background: -webkit-gradient(linear, left top, right top, from(rgba(0, 104, 205, 0.6)), color-stop(60%, rgba(0, 0, 0, 0))),url(../images/img-18.jpg) no-repeat center;
        background: linear-gradient(to right, rgba(0, 104, 205, 0.6) 0%, rgba(0, 0, 0, 0) 60%),url(../images/img-18.jpg) no-repeat center
    }

        .home-class .list-item:nth-child(2):hover .more {
            background-color: rgba(0,104,205,.4);
            border-color: rgba(0,104,205,.4)
        }

    .home-class .list-item:nth-child(4) {
        background: -webkit-gradient(linear, left top, right top, from(rgba(180, 22, 24, 0.6)), color-stop(80%, rgba(0, 0, 0, 0))),url(../images/img-19.jpg) no-repeat center;
        background: linear-gradient(to right, rgba(180, 22, 24, 0.6) 0%, rgba(0, 0, 0, 0) 80%),url(../images/img-19.jpg) no-repeat center
    }

        .home-class .list-item:nth-child(4):hover .more {
            background-color: rgba(180,22,24,.4);
            border-color: rgba(180,22,24,.4)
        }

    .home-class .list-item:hover {
        background-size: 115% !important
    }

        .home-class .list-item:hover .more {
            background-color: rgba(0,151,71,.4);
            border-color: rgba(0,151,71,.4)
        }

    .home-class .list-item .text {
        color: #fff;
        position: relative;
        z-index: 1
    }

    .home-class .list-item .title {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 25px
    }

    .home-class .list-item li {
        font-size: 18px;
        line-height: 36px
    }

        .home-class .list-item li::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 10px;
            background: #58b530;
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 1px
        }

    .home-class .list-item .more {
        width: 165px;
        height: 45px;
        border: 1px solid #fff;
        padding: 0 20px;
        color: #fff;
        display: block;
        line-height: 43px;
        border-radius: 100px;
        margin-top: 20px;
        background: url(../images/img-29.png) no-repeat center right 20px
    }

.home-news {
    margin-top: 75px
}

    .home-news .page-title {
        max-width: 850px
    }

    .home-news .news-list {
        max-width: 1440px;
        margin: 0 auto
    }

        .home-news .news-list .list-item {
            background: #f8f8f8
        }

        .home-news .news-list .img {
            display: block;
            overflow: hidden;
            margin-bottom: 25px
        }

            .home-news .news-list .img img {
                -o-object-fit: cover;
                object-fit: cover;
                -webkit-transition: all .3s;
                transition: all .3s
            }

            .home-news .news-list .img:hover img {
                -webkit-transition: all .3s;
                transition: all .3s;
                -webkit-transform: scale(1.2);
                transform: scale(1.2)
            }

        .home-news .news-list .title {
            line-height: 30px;
            font-size: 18px;
            margin: 0 25px;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden
        }

            .home-news .news-list .title:hover {
                color: var(--primary-color)
            }

        .home-news .news-list .desc {
            color: #666;
            line-height: 24px;
            margin: 10px 25px 0;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden
        }

        .home-news .news-list .tools {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            height: 80px;
            padding: 0 20px;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 14px;
            margin-top: 20px;
            border-top: 1px solid #fff;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between
        }

        .home-news .news-list .time {
            padding-left: 20px;
            background: url(../images/img-35.png) no-repeat center left
        }

        .home-news .news-list .more {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center
        }

            .home-news .news-list .more:hover {
                color: var(--primary-color)
            }

            .home-news .news-list .more p::after {
                content: "";
                width: 1px;
                height: 12px;
                display: inline-block;
                background: #535353;
                margin: 0 18px 0 30px
            }

    .home-news .more {
        text-align: center
    }

    .home-news .list-more {
        display: inline-block;
        padding: 0 30px;
        height: 45px;
        line-height: 41px;
        border: 2px solid var(--primary-color);
        text-align: center;
        color: var(--primary-color);
        margin: 0 auto;
        border-radius: 100px;
        margin: 85px 0
    }

/*-------------------  ҳ-----------------*/


    /*        */
.index_about{width:100%; height:auto; overflow: hidden;background:url(../images/about_bjs.jpg) no-repeat center; background-size: cover; padding: 140px 0 100px; position: relative}
.index_about_top{width:100%; height: auto; overflow: hidden}
.index_about_top h4{color:#fff; font-size: 50px; font-weight: bold; text-align: center; }
.about_top_xx{width:74%; height: auto; overflow: hidden; display: block; color:#ffffff; font-size: 18px; opacity:0.55; line-height:38px; margin:46px auto 30px; 
	text-align: center}
.about_top_more{width:180px; height: 60px; background: #2063c6 url(../images/c_jts.png) no-repeat 90% center; padding: 0 1.5%; line-height: 60px; 
	font-size: 16px; display: block; border-radius: 5px; margin:65px auto 0; color:#fff}

.about_top_more:hover{padding: 0 2.5%;}

.index_about_num{width:100%; height: auto; overflow: hidden; margin-top: 180px;}
.index_about_num dl{width:25%; height: auto; float: left; text-align: center}
.index_about_num dl dt{color:#fff; font-size: 18px; margin-bottom: 5px;}
.index_about_num dl dt span{color:#fff; font-size:48px; font-weight: bold;}
.index_about_num dl dd{color:#fff; font-size: 18px;}
#holder{position:absolute; position: -webkit-sticky; top: 0; width: 100%; height: 100vh; z-index: 33; pointer-events: none; overflow: hidden; display: flex; justify-content: center; align-items: center;}



/*        */
.index_service{width:100%; height: auto; overflow: hidden; margin:82px 0 126px}
.index_case_tt{width:100%; color:#000; font-size: 50px; font-weight: bold; text-align: center; margin-bottom: 40px}
.index_service_left{width:38.6%; height: auto; float: left}
.in_sli{width:100%; position: relative; overflow: hidden}
.in_sli a{width:100%;display: block}
.in_ser_pic{width:100%; height: 100%;  display: block; object-fit: cover; object-position: center center; transform: scale(1);  transition: all 1s ease 0s; -webkit-transform: scale(1);  -webkit-transform: all 1s ease 0s;}
.service_left_hover{width:100%; height: auto; position: absolute; bottom:30px; left:0; padding: 0 20px}
.service_left_hover h4{color:#fff; font-size: 22px; margin-top: 8px;    text-transform: uppercase; font-weight: bold;}
.in_si1 .in_ser_pic,.in_si1{border-radius: 25px 0 0 0;}
.in_si2 .in_ser_pic,.in_si2{border-radius: 0 0 25px 0;}
.in_si1{ margin-bottom: 12px}
.index_service_center{width:29.2%; height: auto; float: left; position: relative; overflow: hidden; border-radius: 0 25px 0 25px}
.index_service_center a{width:100%; height:100%; display: block}
.index_service_right{width:31%; float: left}
.index_service_all{width:100%; height: auto; display: flex; display: -webkit-flex; -webkit-justify-content: space-between; justify-content: space-between;}
.in_sli:hover .in_ser_pic{transform: scale(1.07);transition: all 1s ease 0s;-webkit-transform: scale(1.07);-webkit-transform: all 1s ease 0s;}
.index_service_center:hover .in_ser_pic{transform: scale(1.07);transition: all 1s ease 0s;-webkit-transform: scale(1.07);-webkit-transform: all 1s ease 0s;}





/*    */
.index_case{width:100%; height: auto; overflow: hidden; background: url(../images/case_bjs.jpg) no-repeat center; padding: 66px 0}
.index_case_all{width:100%; position: relative}
.index_case_all .swiper-slide a{width:100%; height: auto; display: block}
.index_case_pic{width:100%; height: auto; overflow: hidden; border-radius: 25px;}
.index_case_pic img{width:100%; display: block; border-radius: 25px; transform: scale(1);  transition: all 1s ease 0s; -webkit-transform: scale(1);  -webkit-transform: all 1s ease 0s;}
.index_case_all .swiper-slide a h4{width:100%; height: 40px; line-height: 40px; color:#000000; font-size:20px;  text-overflow: ellipsis; overflow: hidden; white-space: nowrap; text-align: center; margin-top: 10px;}
.index_case_all .swiper-button-next,.index_case_all .swiper-button-prev{width:40px; height: 40px; margin-top:-20px; opacity:0.8}
.index_case_all .swiper-button-next{background: url(../images/c_right.png) no-repeat center; right:-20px;}
.index_case_all .swiper-button-prev{background: url(../images/c_left.png) no-repeat center; left:-20px}
.index_case_all .swiper-button-next:hover{ opacity:1}
.index_case_all .swiper-button-prev:hover{opacity:1}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{content: ""}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{content: ""}
.index_case_more{width:180px; height: 60px; background: #2063c6 url(../images/c_jts.png) no-repeat 90% center; padding: 0 1%; line-height: 60px; 
	font-size: 16px; display: block; border-radius: 5px; margin:65px auto 0; color:#fff}
.index_case_more:hover{padding: 0 2.5%;}
.index_case_all .swiper-slide a:hover img{transform: scale(1.07);transition: all 1s ease 0s;-webkit-transform: scale(1.07);-webkit-transform: all 1s ease 0s;}



/*   1*/
.index_jshl{width:100%; height: 300px; background: url(../images/jshl_bjs.jpg) no-repeat center; background-size: cover; background-attachment: fixed; padding: 80px 0 0;  text-align: center}
.index_jshl h4{color:#fff; font-size: 30px;  font-weight: bold;}
.index_jshl p{color:#fff; font-size:18px; opacity: 0.5; margin: 15px auto 30px; max-width:55%}


/*    */
.index_news{width:100%; height: auto; overflow: hidden; margin: 108px 0}
.index_news_title{width:100%; height: auto; overflow: hidden; margin-bottom: 45px;}
.index_news_title h4{color:#000; font-size:50px; font-weight: bold; float: left}
.index_news_title a{width:180px; height: 60px; background: #2063c6 url(../images/c_jts.png) no-repeat 90% center; padding: 0 1.5%; line-height: 60px; 
	font-size: 16px; border-radius: 5px; color:#fff; float: right}
.index_news_title a:hover{padding: 0 2.5%;}
.index_news_left{width:40%; height: auto; float: left}
.index_news_pic{width:100%; height: auto; overflow: hidden; border-radius: 25px;}
.index_news_pic img{width:100%; display: block; border-radius: 25px; transform: scale(1);  transition: all 1s ease 0s; -webkit-transform: scale(1);  -webkit-transform: all 1s ease 0s;}
.index_news_xx{width:100%; height: 50px; line-height: 50px; margin-top: 8px;}
.index_news_xx h4{width:80%; height: 100%; float: left; color:#000000; font-size: 16px; font-weight: bold; text-overflow: ellipsis; overflow: hidden; 
	white-space: nowrap}
.index_news_xx span{color:#999999; font-size: 16px; float: right}
.index_news_right{width:57%; height: auto; float: right}
.index_news_right ul{width:100%; height: auto; overflow:hidden; border-top: 1px solid #eeeeee;}
.index_news_right ul li{width:100%; height: 68px; border-bottom: 1px solid #eeeeee; line-height: 68px;}
.index_news_right ul li i{color:#2063c6; font-size: 16px; float: left; font-style: normal}
.index_news_right ul li p{width:85%; height: 100%;  float: left; color: #090915; font-size: 16px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap}
.index_news_right ul li span{color:#999999; font-size: 14px; float: right}
.index_news_right ul li:hover p{color:#2063c6}
.index_news_left:hover img{transform: scale(1.07);transition: all 1s ease 0s;-webkit-transform: scale(1.07);-webkit-transform: all 1s ease 0s;}
.index_news_left:hover h4{color:#2063c6}





/*  ϵ    */
.index_contact{width:100%; height: auto; overflow: hidden; background: url(../images/contact_bjs.jpg) no-repeat center; background-size: cover; padding: 55px 0}
.index_contact_left{width:60%; height: auto; float: left}
.index_contact_left h4{color:#fff; font-size: 30px; font-weight: bold; margin-bottom:15px;}
.index_contact_left p{color:#fff; font-size:18px; opacity: 0.5; font-weight: 100}
.f_lianxi{width:180px; height: 60px; line-height: 60px;  border: 1px solid rgba(255,255,255,0.3); border-radius:5px; float: right; font-size: 16px; color: #fff; background: url(../images/c_jts.png) no-repeat 90% center; padding-left:20px;}
.f_lianxi:hover{background:#2063c6 url(../images/c_jts.png) no-repeat 90% center;}


/*  ҳ*/
.ny_banner{width:100%; height:350px;  padding-top:226px; position: relative; }
.ny_banner h4{color:#ffffff; font-size: 40px; margin-bottom: 5px; font-weight: bold;}
.m-crm{font-size: 16px; color: #fff; line-height: 30px; margin-top: 8px; width: 100%; background: url(../images/hxs.png) no-repeat left center; 
	padding-left: 60px;}
.m-crm a,.m-crm span{font-size: 16px; color: #fff; opacity: 0.5;display:inline-block;}
.ny_banner .w1400{position:relative; z-index:3}
.about_ban{background: url(../images/about_ban.jpg) no-repeat center ;}
.news_ban{ background: url(../images/news_ban.jpg) no-repeat center;}
.contact_ban{background: url(../images/contact_ban.jpg) no-repeat center;}
.case_ban{background: url(../images/case_ban.jpg) no-repeat center ;}
.product_ban{background: url(../images/product_ban.jpg) no-repeat center;}
.yfcx_ban{background: url(../images/yf_ban.jpg) no-repeat center ;}
.honor_ban{background: url(../images/honor_ban.jpg) no-repeat center ;}
.cpyy_ban{background: url(../images/yy_ban.jpg) no-repeat center ;}
.ny_nav{width:100%; height:auto; overflow: hidden; background:#ffffff; padding:15px 0}
.ny_nav .w1440{position:relative; z-index:3}
.ny_nav a{color:#000000; font-size: 18px; line-height:45px; height:45px; float: left; padding: 0 20px; margin-right:5px;  margin-bottom:10px;}
.ny_nav a.active{border-bottom: 2px solid #58b530}
.ny_nav a:hover{border-bottom: 2px solid #58b530}


/*  Ʒ    */
.ny_product_all{width:100%; height: auto; overflow: hidden; margin-top:60px; margin-bottom: 60px}
.ny_product_all ul{width:100%; height: auto; overflow: hidden}
.ny_product_all ul li{width:100%; height:auto; border:1px solid #d2d2d2; margin:15px auto 25px; overflow:hidden; padding: 22px; }
 .ny_solution_img{width:350px; height:100%; float:left; overflow:hidden; border: 1px solid #ffffff}
.ny_solution_img img{width:100%; height:100%;    transform: scale(1);
    transition: all 1s ease 0s;
    -webkit-transform: scale(1);
    -webkit-transform: all 1s ease 0s; display: block}
.ny_solution_xx{width:750px; height:auto; float:left; margin-left: 40px; padding: 20px 0}
.ny_solution_xx p{font-size:16px; color:#555; line-height:31px;}
.ny_solution_xx p b{color:#353432}
.ny_solution .case_link{margin-top:30px;}
.ny_soli_p{width:100%; height: auto; overflow: hidden;margin-top: 20px; margin-bottom: 20px;}
.ny_pro_shengcan .slideBox .bd li:hover img{transform: scale(1.05);transition: all 1s ease 0s;-webkit-transform: scale(1.05);-webkit-transform: all 1s ease 0s;}
.ny_product_all ul li:hover img{transform: scale(1.05);transition: all 1s ease 0s;-webkit-transform: scale(1.05);-webkit-transform: all 1s ease 0s;}
.ny_product_all ul li:hover{border:1px solid #58b530;}


.ny_solution_xx .ny_yfzx_title{margin-top: 0}
.yfzx_more{width:120px;  height:40px;line-height:40px; color:#333; display:block;  text-align:center; font-size:14px; background:#eee}
.yfzx_more:hover{background: #58b530; color: #fff; border: 1px solid #58b530}
.n_pro_nav{width:100%; height:auto; overflow:hidden; margin-bottom:30px;}
.n_pro_nav a{font-size:16px; color:#666; border:1px solid #ffffff;   height: 50px; line-height:50px; width:auto; float:left; padding:0 20px; margin-right:10px; margin-bottom:10px;}
.n_pro_nav a:hover,.n_pro_nav a.m_active{background:#58b530; color:#fff}
.ny_solution_xx .ny_yfzx_title h5{width:100%; height:auto; color:#333; font-size:24px; font-weight:bold; overflow:hidden; white-space:nowrap}



/*  Ʒ    ҳ*/
.ny_pro_ft{width:100%; height: auto; margin-top: 60px;}
.ny_pro_ft h3{font-size: 30px;
    color: #1b1b1b;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;}
.ny_pro_ft p,.ny_pro_fts p{font-size: 16px;
    color: #707070;
    line-height: 30px;
    text-align: center;
    width: 100%;
    margin: 0px auto;}
.ny_product_show{width:100%; height: auto; overflow: hidden; margin:60px 0 100px;}
.ny_pro_top{width:100%; height: auto; overflow: hidden}
.ny_pro_tleft{width:570px; height:auto; float: left}
.ny_pro_tleft .slideBox{ width:100%; height:100%; overflow:hidden; position:relative; border:1px solid #ddd;  }
.ny_pro_tleft .slideBox .hd{ height:15px; overflow:hidden; position:absolute; right:10px; bottom:15px; z-index:1; }
.ny_pro_tleft .slideBox .hd ul{ overflow:hidden; zoom:1; float:left;  }
.ny_pro_tleft .slideBox .hd ul li{ float:left; margin-right:10px;  width:12px; height:12px; line-height:14px; text-align:center; background:#c9c9c9; cursor:pointer; border-radius: 50%;}
.ny_pro_tleft .slideBox .hd ul li.on{ background:#58b530; color:#fff; }
.ny_pro_tleft .slideBox .bd{ position:relative; height:100%; z-index:0;   }
.ny_pro_tleft .slideBox .bd ul{width:100%; height: 100%; overflow: hidden}
.ny_pro_tleft .slideBox .bd li{width:100%; height: 100%; }
.ny_pro_tleft .slideBox .bd img{ width:100%; height:100%; display:block;  }
.ny_pro_tright{width:780px; height: auto; float: right}
.ny_pro_tright h1{ font-size: 36px; color: #191919; height:auto; line-height:40px; font-weight:700;}
.ny_pro_p{width:100%; height:auto; border-bottom: 1px solid #e5e5e5; margin-top:15px; overflow:hidden; padding-bottom:30px;}
.ny_pro_p p{width:100%; height:100%;  color: #000000; line-height: 35px; font-size: 15px;   }
.ny_pro_24{width:100%; height: 30px; line-height: 30px; overflow: hidden; margin-top:30px;}
.ny_pro_24 p{font-size: 14px; color: #313131; background: url(../images/dh.png) no-repeat left center; float: left; padding-left: 20px; margin-right: 30px;}
.ny_pro_bottom{width:100%; height: auto; display: block; overflow: hidden; margin-top: 0px;}
.ny_pro_bleft{width:100%; height: auto; overflow: hidden; }
.ny_pro_bright{width:300px; height: auto; float: right}
.ny_probt{width:100%; height:65px;}
.ny_probt li{width:100%; height:65px; background:#eeeeee; color:#313131; font-size:18px; float:left; text-align:center; line-height:65px; margin-right:1px;}
.ny_probt li:last-child{margin-right:0px;}
.ny_probt li:hover{background:#333; color:#fff}
.ny_probt li:hover a{color:#fff}
.ny_probt li.on{background:#333;}
.ny_probt li.on a{ color:#fff}
.ny_probt li a{width:100%; height:100%; display:block; overflow:hidden; font-size:18px;font-weight: bold;}

.ny_proshow_info{width:100%; height:auto; overflow:hidden;  margin-top:36px; font-size:16px;color:#333; line-height:30px;}
.ny_proshow_info p{font-size:16px;color:#333; line-height:34px;}
.ny_proshow_info td{font-size:16px;color:#333; line-height:34px;}


/*        */
.honor{ overflow: hidden; padding-bottom: 120px;}
.honor_list{ overflow: hidden;  width:100%; margin-bottom:50px;}
.honor_list li{ width:24.0%; float: left; border: 1px solid #e5e5e5; margin-right:1%; margin-bottom: 20px;}
.honor_list li:nth-child(4n){ margin-right: 0;}
.honor_list li .img{overflow: hidden; }
.honor_list li .img img{ width: 100%; transition: all 0.3s; display:block;}
.honor_list li:hover .img img{transition: all 0.3s; transform: scale(1.05);}
.honor_list li .gallery-title{ line-height: 50px; background: #e5e5e5;text-align: center; font-size: 16px; transition: all 0.3s; text-overflow:ellipsis; overflow:hidden; white-space:nowrap}
.honor_list li .gallery-title1{ line-height: 50px; background: #f1faff;text-align: center; font-size: 16px; transition: all 0.3s; text-overflow:ellipsis; overflow:hidden; white-space:nowrap}
.honor_list li .gallery-title2{ line-height: 50px; background: #f1faff;text-align: center; font-size: 18px; font-weight: bold;color: #58b530;transition: all 0.3s; text-overflow:ellipsis; overflow:hidden; white-space:nowrap}
.honor_list li:hover{ border: 1px solid #58b530;}
.honor_list li:hover .gallery-title2{ background: #58b530; color: #fff;}
.honor_list li:hover .gallery-title{ background: #58b530; color: #fff;}


.honor_list2{ overflow: hidden;  width:100%; margin-bottom:50px;}
.honor_list2 li{ width:22.0%; float: left; border: 1px solid #e5e5e5; margin-right:4%; margin-bottom: 40px;}
.honor_list2 li:nth-child(4n){ margin-right: 0;}
.honor_list2 li .img{overflow: hidden; }
.honor_list2 li .img img{ width: 100%; transition: all 0.3s; display:block;}
.honor_list2 li:hover .img img{transition: all 0.3s; transform: scale(1.05);}
.honor_list2 li .gallery-title{ line-height: 50px; background: #e5e5e5;text-align: center; font-size: 16px; transition: all 0.3s; text-overflow:ellipsis; overflow:hidden; white-space:nowrap}
.honor_list2 li .gallery-title1{ line-height: 50px; background: #f1faff;text-align: center; font-size: 16px; transition: all 0.3s; text-overflow:ellipsis; overflow:hidden; white-space:nowrap}
.honor_list2 li .gallery-title2{ line-height: 50px; background: #f1faff;text-align: center; font-size: 18px; font-weight: bold;color: #58b530;transition: all 0.3s; text-overflow:ellipsis; overflow:hidden; white-space:nowrap}
.honor_list2 li:hover{ border: 1px solid #58b530;}
.honor_list2 li:hover .gallery-title2{ background: #58b530; color: #fff;}
.honor_list2 li:hover .gallery-title{ background: #58b530; color: #fff;}


.honor_list1{ overflow: hidden;  width:100%; margin-bottom:50px;}
.honor_list1 li{ width:24.0%; float: left; border: 1px solid #e5e5e5; margin-right:1%; margin-bottom: 20px;}
.honor_list1 li:nth-child(4n){ margin-right: 0;}
.honor_list1 li .img{overflow: hidden; height:230px; display:flex; align-items:center; justify-content:center}
.honor_list1 li .img img{ height: 100%; transition: all 0.3s; display:block;}
.honor_list1 li:hover .img img{transition: all 0.3s; transform: scale(1.05);}
.honor_list1 li .gallery-title{ line-height: 30px;    height: 66px; background: #e5e5e5;text-align: center; font-size: 16px; transition: all 0.3s; display: flex; justify-content: center; align-items: center; }
.honor_list1 li:hover{ border: 1px solid #58b530;}
.honor_list1 li:hover .gallery-title{ background: #58b530; color: #fff;}


.keyword_light{line-height:28px;}
.container2{width: 1200px;margin: 0px auto;}
.section-content{width:100%; height: auto; overflow: hidden; font-size:16px; color:#666; margin: 60px 0 100px;}
.ny_news_show{width:100%; height: auto; overflow: hidden; font-size:16px; color:#666; margin: 40px 0 100px;}
.ny_news_show p{font-size:16px; color:#333; line-height: 34px;}
.ny_news_show img{max-width:100%;display:block;}
/*.ny_news_show table tr,td a{display:contents;}*/
.ny_title_1{ overflow: hidden; margin-bottom: 20px;}
.ny_title_1 h2{font-weight: 300; font-size: 36px; line-height: 1.2; color: #000;   }
.ny_title_1 p{text-transform: uppercase; font-size: 26px; color: #58b530; position: relative; line-height: 2.8; font-weight: bold;    text-align: center;}
.ny_title_1 p::after{ content: ""; position: absolute; display: block; height: 1px; width: 140px; background: #58b530; right: 45%; bottom: 0;}
.ny_title_1 em{font-style: normal; font-size: 24px; line-height:1.4; color: #000; padding: 15px 0; display: block;}
.ny_title_2{ overflow: hidden; padding-top: 50px; margin-bottom: 20px;}
.ny_title_2 h2{font-weight: 300; font-size: 36px; line-height: 1.2; color: #fff;}
.ny_title_2 p{text-transform: uppercase; font-size: 26px; color: #fff; position: relative; line-height: 2.8; margin-top: -10px;}
.ny_title_2 p::after{ content: ""; position: absolute; display: block; height: 3px; width: 80px; background: #fff; left: 0; bottom: 0;}
.ny_title_2 em{font-style: normal; font-size: 24px; line-height:1.4; color: #fff; padding: 15px 0; display: block;}
.keyword_light tr td{font-size: 16px;    color: #333;    line-height: 34px;}



/*      Ѷ*/
.ny_news_all{width:100%; height: auto; overflow: hidden; margin: 60px 0 100px; }
.ny_news_all ul{width:100%; height: auto; overflow: hidden;margin-bottom: 40px;}
.ny_news_all ul li{width:100%; height: auto; overflow: hidden; padding: 15px; margin-bottom:20px ;background: #ffffff}
.ny_news_all ul li .ny_time{width:115px;height: auto; float: left;margin-top:56px;}
.ny_news_all ul li .ny_time span{display: block; font-size: 12px; color: #999; text-align: right}
.ny_news_all ul li .ny_time p{font-size: 41px; color: #c8c8c8}
.news_xx{width:60%; height: auto; float: left; margin-left:2%; margin-top: 50px;}
.news_xx h3{width:100%; height: 35px; line-height: 35px; font-size: 20px; color: #000; text-overflow: ellipsis; overflow: hidden; white-space: nowrap}
.news_xx p{width:100%; height:75px; line-height: 25px; font-size: 14px; color: #666;  margin: 10px 0; word-break:break-all;display:-webkit-box; -webkit-line-clamp:3;
  -webkit-box-orient:vertical; overflow:hidden; }
.news_xx span{font-size: 14px; color: #aaaaaa}
.news_pic{width:26%; height: auto; float: right}
.news_pic img{width:100%; height: auto}
.ny_news_all ul li:hover{border: 1px solid #58b530;}
.ny_news_all ul li:hover .ny_time p,.ny_news_all ul li:hover .ny_time span,.ny_news_all ul li:hover span{color:#58b530}
.ny_news_all ul li:hover h3{font-weight: bold; }


/*  ϵ    */
.lianxi{ overflow: hidden; padding-bottom: 0px;}
#map{ height:auto; width: 100%;}
#map img{width:100%; display:block}
.lianxi_fs{ overflow: hidden; margin-top: 30px; }
.lianxi_fs p{ width:100%;  line-height: 72px; border: 1px solid #e5e5e5; position: relative; text-indent:36px; background: #fff;color: #333; margin-bottom: 20px; font-size: 16px; float:left;}
.lianxi_fs p:hover{background: #f3f3f3;}
.lianxi_fs p::before{ content: ""; height: 12px; width: 2px; display: block; position: absolute; background: #58b530; left:0; top: 30px;}
.lianxi_fs p:nth-child(1n){float:right}
.lianxi_ewm{ display: table; margin: 30px auto;}
.lianxi_ewm li{overflow: hidden; float: left; margin: 0 20px;  text-align: center; width:120px}
.lianxi_ewm li img{border:1px solid #ddd; width:100%}
.lianxi_ewm li p{ line-height: 1.8; font-size: 16px; color: #333;}
.liuyan{overflow: hidden;  height: 580px; background: url(../images/ny_pc_6.jpg) no-repeat center top fixed; margin:130px 0 0; padding-top:70px;}
.ny_contact_form p{ line-height: 60px;  border: 1px solid #517ad2; width: 32%; margin-right:1.4%; position:relative; float:left;}
.ny_contact_form input[type="text"]{text-indent: 5%; font-size: 16px; color: rgba(255,255,255,0.9); font-weight: bold; background: none; width:100%; height:60px; border:0}
.ny_contact_form input[type="text"]::-webkit-input-placeholder,.liuyan textarea::-webkit-input-placeholder{color:rgba(255,255,255,0.8);}
.ny_contact_form p:nth-child(3){ margin-right: 0; float: right;}
.ny_contact_form textarea{line-height: 2; width: 100%; text-indent:20px; font-size: 16px; color: rgba(255,255,255,0.9); font-weight: bold; background: none; border: 1px solid #517ad2; margin-top: 20px; height: 72px; resize: none;}
.ny_contact_form input[type="submit"]{ width: 200px; background: #fff;border: none; font-size: 16px; color: #58b530; height: 60px; margin: 0 auto; margin-top: 30px; display: block; cursor: pointer;}
.jrwm{overflow: hidden; padding-bottom: 0px;}
.jrwm .jiaru_nr{ font-size: 16px;}
.jrwm .jiaru_nr p{ line-height: 2;  color: #454545; text-align: justify;font-size: 16px;}
.jrwm .jiaru_nr img{ width: 100%;}
.anli_jz p{ font-size: 16px;  color: #454545; line-height: 30px;}
.anli_jz p strong{ font-size: 18px;}
.policy_links{margin-top:10px; color:#fff}
.ny_all{width:100%; height:auto; overflow:hidden}

.footer .footer-navs{
	margin-bottom:20px;
}

@media (max-width: 1280px){
	.header .navs .language{
	margin-left: 20px;
	}
.footer .footer-desc{
	font-size:12px;
}
}
.home-class .class-list .list-item{
	background:none;
overflow:hidden;
}

.home-class .class-list .list-item .img{
transition: all .3s;
}
.home-class .class-list .list-item:hover .img{
	transform: scale(1.2);
}
.home-class .class-list .list-item .img img{
	width:100%;
height:100%;
object-fit: cover;
}
.home-class .list-item .img{
position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}


/*产品表格*/
.ny_product_top{width:100%;  height: auto; overflow: hidden; margin-top: 84px;}
.ny_product_top h4{color:#000000; font-size: 50px; font-weight: bold; background: url(../images/hh_yuan.png) no-repeat top right; padding-right: 26px; 
	padding-top: 20px; display: table; float: left}
.product_top_info{width:70%; height: auto; float: right; color:#555555; font-size: 16px; line-height: 32px; text-indent: 2rem}
.ny_product_link{width:100%; height: auto; overflow: hidden; margin-top: 40px;  display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end; }
.ny_product_link a{color:#58b530; font-size: 14px; border-bottom: 1px solid rgba(42,145,255,0.5); background: url(../images/lan_xx.png) no-repeat right center; padding-right:35px; margin-right: 75px; line-height: 40px; float: left; transition: all 0.4s ease-in-out;}
.ny_product_link a:last-child{margin-right: 0}
.ny_product_link a:hover{padding-right: 40px;}
.ny_product_bottom{width:100%; height: auto; overflow: hidden; margin-top: 60px; margin-bottom: 160px;}
.ny_product_left{width:16.2%;  height: auto; float: left}
.ny_product_left h5{width:100%; height: 60px; background: #469c21; text-align: center; line-height: 60px; color: #fff; font-size: 24px;}
.ny_product_xl{width:100%; height: auto; overflow: hidden; background: #58b530;}
.ny_product_xl ul{width:100%; height: auto; overflow: hidden}
.ny_product_xl ul li{width:100%; height: 60px; padding: 0 20px; position: relative}
.ny_product_xl ul li a{font-size: 16px; color: #fff; width: 100%; line-height: 60px; display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,0.2)}
.ny_product_xl ul li.active{background: rgba(255,255,255,0.15)}
.ny_product_xl ul li:after{content: ""; width: 0; height: 5px; background: #aae735; position: absolute; top:50%; margin-top: -2.5px; left:0; transition: all 0.4s ease-in-out;}
.ny_product_xl ul li.active:after{width:15px}
.ny_product_xl ul li:hover:after{width:15px}
.ny_product_xl ul li:hover{background: rgba(255,255,255,0.15)}
.ny_product_right{width:82.2%; height: auto; float: right}
.ny_product_li{width:100%; height: 60px; background: #58b530;margin-top: 10px;}
.ny_product_li p{color:#fff; font-size: 16px; font-weight: bold; line-height: 60px; border-right:1px solid #dcdcdc; float: left}
.pi1,.xqi1{width:10%; text-align: center;}
.pi2,.xqi2{width:52%; padding: 0 2%}
.pi3,.xqi3{width:10%; padding: 0 1%}
.pi4,.xqi4{width:18%; padding: 0 1%}
.pi5,.pi6,.xqi5{width:10%; text-align: center; }
.pi6{border-right:0!important}
.xqi6{display: flex; align-items: center; height: 60px; width: 10%; background:url(../images/xq_icon.png) no-repeat center}
.xqi6 img{align-items: center; margin: 0px auto;}
.ny_product_right ul.product_ul_li{width:100%; height: auto; overflow:hidden; border: 1px solid #dcdcdc; margin-bottom:40px;}
.ny_product_right ul.product_ul_li li{width:100%; height: 60px; line-height:60px; border-bottom: 1px solid #dcdcdc}
.ny_product_right ul.product_ul_li li:nth-child(even){background:#fafafa}
.ny_product_right ul.product_ul_li li p{color:#555555; font-size: 16px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; float: left; 
	border-right: 1px solid #dcdcdc}
.ny_product_right ul.product_ul_li li:last-child{border-bottom: 0}
.ny_product_right ul.product_ul_li li:hover{background:#58b530}
.ny_product_right ul.product_ul_li li:hover p{color:#fff}
.ny_product_right ul.product_ul_li li:hover .xqi6{background:url(../images/xqh_icon.png) no-repeat center}


.ny_product_xl ul li {
        height: auto;
      }
      .ny_product_xl ul li .item {
        display: flex;
        align-items: center;
        color: #fff;
      }
      .ny_product_xl ul li .item > a {
        padding-left: 0;
        height: auto;
      }
      .ny_product_xl ul li .item .add {
        cursor: pointer;
        padding: 10px;
        user-select: none;
      }
      .ny_product_xl ul li ul {
        padding-left: 10px;
        height: 0;
        overflow: hidden;
      }
      .ny_product_xl ul li:after {
        top: 28px;
      }
