* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 30px;
}

a,
a:hover {
    text-decoration: unset;
    color: #555;
}

ul,
ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

.green {
    color: #009688;
}

.bold {
    font-weight: bold;
}

.width20 {
    width: 20%
}

.width30 {
    width: 30%
}

.width65 {
    width: 65%
}

.width45 {
    width: 45%;
}

.width50 {
    width: 50%
}

.width52 {
    width: 52%
}

.width55 {
    width: 55%
}

.width80 {
    width: 80%;
}

.marginAuto {
    margin: 0 auto;
}

.font60 {
    font-size: 60px;
}

.font48 {
    font-size: 48px;
}

.font42 {
    font-size: 42px;
}

.textCenter {
    text-align: center;
}



.wrap {
    max-width: 1600px;
    min-width: 1200px;
    width: 83%;
    margin: 0 auto;
}


.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner .bannerBox {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.banner .swiper-slide {
    height: 100vh;
}

.banner .bannerBox img {
    height: 100vh;
    object-fit: cover;
    width:100%
}

.banner .bannerText {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-30%, -30%);
    text-align: center;
    text-transform: capitalize;
}
.banner .bannerText h1 {
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.banner .swiper-pagination-progressbar {
    width: 30%;
    top: auto;
    left: 8%;
    bottom: 40px;
}

.banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #009688;
}

.banner .swiper-button-prev,
.banner .swiper-rtl .swiper-button-next,
.banner .swiper-button-next,
.banner .swiper-rtl .swiper-button-prev {
    color: #fff;
}


.banner .swiper-slide-active .bannerBox img {
    animation: scale-bg 3s linear forwards;
    -webkit-animation: scale-bg 3s linear forwards;
    -moz-animation: scale-bg 3s linear forwards;
    -o-animation: scale-bg 3s linear forwards;
}

.banner .swiper-slide-active .bannerText h1{
    animation: upMove 1s linear forwards;
    -webkit-animation: upMove 1s linear forwards;
    -moz-animation: upMove 1s linear forwards;
    -o-animation: upMove 1s linear forwards;
}

.banner-banner{
overflow: hidden;    
}

.banner-c {
    background-repeat: no-repeat;
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: top center;
    position: relative;
    animation: scale-bg 2s linear forwards;
}

.banner-c .banner-c-box {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-c-text {
    color: #fff;
}

.banner-c-text h1 {
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-c-text hr {
    width: 60px;
    height: 4px;
    background: #009688;
    margin: 0 auto;
    border-top: 1px solid #f28d00;
}



.content-navwrap {
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #009688;
}

.content-navwrap-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    color: #999;
}

.content-navwrap-box a {
    color: #999;
}

/* 面包屑导航 */
.sub_nav {
    overflow: hidden;
}

.sub_nav ul {
    font-size: 0;
    margin: 0 auto;
}

.sub_nav li {
    display: inline-block;
}

.sub_nav li a {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #777;
    position: relative;
    padding: 0px 30px;
}

.sub_nav li.cur a {
    color: #fff;
    background: #009688;
}

.sub_nav li.cur a:after {
    left: 0;
    width: 100%;
}

.sub_nav li:hover a {
    color: #fff;
    background: #009688;
}

.sub_nav li:hover a:after {
    left: 0;
    width: 100%;
}





/* 内容 */
.indexAbout {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.indexAbout-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.indexAbout-left-pic1,
.indexAbout-left-pic2 {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
}

.indexAbout-left-pic1 img,
.indexAbout-left-pic2 img {
    width: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.indexAbout-left-pic2 {
    transform: translateY(120px);
    -webkit-transform: translateY(120px);
    -moz-transform: translateY(120px);
    -o-transform: translateY(120px);
}

.indexAbout-right {
    padding-top: 80px;
    padding-left: 80px;
}

.index-text h1 {
    line-height: 60px;
    margin: 20px 0 60px;
    text-transform: uppercase;
}

.index-title-en {
    font-size: 20px;
    color: #009688;
    text-transform: uppercase;
}

.indexAbout-text-text {
    color: #555;
}

.index-btn {
    margin-top: 80px;
    line-height: 60px;
    border-top: 1px solid #009688;
    border-bottom: 1px solid #009688;
    width: 160px;
    text-align: center;
}

.index-btn a {
    display: block;
    color: #009688;
}

.indexAbout-left-pic1:hover img,
.indexAbout-left-pic2:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.category-about-box {
    margin: 80px auto;
}

.category-about-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
    margin-bottom: 60px
}

.category-about-content {
    line-height: 40px;
    color: #777;
}

.category-about-left {
    width: 70%;
    text-transform: uppercase;
}

.category-about-left h1 {
    line-height: 60px;
    font-size: 36px;
}

.category-about-left h1 span {
    color: #009688;
    display: block;
}

.category-about-right {
    width: 30%;
    text-align: right;
    position: relative;
}

.category-about-right span {
    display: block;
    font-size: 60px;
    font-weight: bold;
    color: #ddd;
    line-height: 80px;
}

.category-about-right:after {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 1px;
    background: #ddd;
    bottom: 10px;
    right: 30%;
}

.cc{
    background-color: #f8f8f8;
}
.aboutC{
    width: 100%;
    overflow: hidden;
    padding: 80px 0;
    color: #777;
}
.company{overflow: hidden;}
.company-pic{
    width:40%;
    border-radius: 20px;
    overflow: hidden;
    float: left;
    margin-right:60px;
    margin-bottom:40px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
}
.company-pic img{
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.company h2{
    line-height: 60px;
    margin-top:60px;
    margin-bottom:40px;
    color: #009688;
    
}
.company-pic:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}





/* 文化 */

.category-culture {
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.category-culture-left {
    background: url(../../image/culture-bg.png) no-repeat bottom;
    background-size: 100%;
    padding-left: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 80px
}

.category-culture-text-text {
    color: #777;
    line-height: 40px;
}

.category-culture-right {
    display: flex;
}

.category-culture-right img {
    object-fit: cover;
}

.category-culture-text-text {
    margin-top: 60px
}

.category-culture-text-text h4 {
    color: #333;
    margin-top: 30px
}

.category-video {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-image:
        linear-gradient(to bottom, transparent 0%, transparent 50%, #fff 50%),
        url('../../image/video.jpg');
    background-size: 100% 100%, 100% 50%;
    background-position: left top, left top;
    background-repeat: no-repeat;
    padding:100px 0 80px;
}
.category-video h1{
    margin-bottom:80px;
}
.category-video-video{
    width: 100%;
    height: 100%;
}
.category-pic{
    width: 100%;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
}


.category-pic img {
    width: 100%;
    object-fit: cover;
}

.category-video-cover {
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
}

.category-video-text {
    color: #fff;
    width: 50%;
    text-align: center;
    position: relative;
}

.category-video-text h1 {
    width: 90%;
    line-height: 100px;
    border-bottom: 1px solid #fff;
}

.category-video-text .category-video-icon {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 160px;
    height: 160px;
    border-radius: 50px;
    overflow: hidden;
    background: radial-gradient(circle,
            rgba(255, 255, 255, .8) 0%,
            rgba(255, 255, 255, 0) 70%);
    text-align: center;
    animation: pulse 3s infinite ease-in-out;
}

.category-video-text .category-video-icon i:before {
    font-size: 60px;
    line-height: 160px;
}
.aboutC ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
.aboutC ul li{
    width: 33.33%;
    padding: 60px;
    overflow: hidden;
    border-right: 1px solid #ccc;
    border-bottom:1px solid #ccc;
    line-height: 30px;
}
.aboutC ul li h4{
    color:#333;
    margin-bottom:20px;
}
.aboutC ul li:nth-child(3),.aboutC ul li:nth-child(6){
    border-right: unset;
}
.aboutC ul li:nth-child(4),.aboutC ul li:nth-child(5),.aboutC ul li:nth-child(6){
    border-bottom:unset;
}
.aboutC h1{
    color:#000;
    position: relative;
    text-align: center;
    line-height: 80px;
    margin-bottom:60px;
}
.aboutC h1:after{
    content:"";
    display: block;
    width: 40px;
    height: 4px;
    background-color: #009688;
    position: absolute;
    left: calc((100% - 40px) / 2);
    bottom:0px;
}

.cultureT h1{
    text-align: left;
}
.cultureT h1:after{
    left:0;
}

.cultureC{
    width: 100%;
    background:url(../../image/culture.jpg) no-repeat top;
    background-size:100% 80%;
    padding-top:120px;
}
.cultureC-box h2{
    color: #fff;
    margin-bottom:60px;
}

.cultureB{
    padding: 80px 0;
    overflow: hidden;
}
.cultureB-box h2{
    line-height: 60px;
    border-bottom:1px solid #009688;
    margin-bottom:40px;
}
.cultureB-box ul{
    overflow:hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 400px;
}
.cultureB-box ul li{
    width: 16%;
    height: 300px;
    background: url(../../image/culture-border.png) no-repeat center;
    background-size: 100% 100%;
    text-align: center;
    padding:80px 10px;
}
.cultureB-box ul li p{
    line-height: 24px;
}
.cultureB-box ul li h4{
    font-weight: bold;
    margin-bottom:20px;
}
.cultureB-box ul li:nth-child(2n){
    transform: translateY(80px);
}







.style{width: 100%;padding:80px 0;overflow: hidden;}
.style ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
.style ul li{
    width: calc((100% - 90px) / 4);
    width: -webkit-calc((100% - 90px) / 4);
    width: -moz-calc((100% - 90px) / 4);
    width: -o-calc((100% - 90px) / 4);
    margin-right:30px;
    margin-bottom:30px;
    padding-top:30px;
    padding-left:20px;
    padding-right:20px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.style ul li:nth-child(4n){
    margin-right:0;
}
.style ul li h4{
    text-align: center;
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    margin-bottom:30px;
}
.style-pic{
    width: 100%;
    height: 224px;
    overflow: hidden;
    display: flex;
}
.style-pic img{
    width: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.style ul li:hover .style-pic img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.style ul li:hover{
    box-shadow: 0px 2px 3px rgba(0, 0, 0, .3);
}




/* 荣誉 */
.honor{
    width: 100%;
    background: #f4f4f4;
    padding:80px 0;
    overflow: hidden;
}
.honor-box{
    width: 100%;
    overflow: hidden;
}
.honor-box h1{
    margin-bottom:40px
}
.honor-pic{
    width: 100%;
    height: 251px;
    overflow: hidden;
    display: flex;
}
.honor-pic img{
    width: 100%;
    max-height: 251px;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.honor-name{
    line-height: 60px;
    height: 60px;
    text-align: center;
    background: #fff;
}
.honor-box .honor-pic:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}



/* 产品 */
.indexProduct {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: 200px;
    margin-bottom: 80px;
    overflow: hidden;
    height: auto;
}

.indexProduct-left {
    position: relative;
    height: 1036px;
}

.indexProduct-pic {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}


.indexProduct-right .indexProduct-pic{height:281px}
.indexProduct-pic img {
    width: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.indexProduct-txt {
    position: absolute;
    left: 0;
    bottom: 60px;
    padding-left: 80px;
    padding-right: 80px;
}

.indexProduct-txt a {
    display: block;
    color: #fff;
}

.indexProduct-txt h1 {
    margin-bottom: 20px;
    text-transform: uppercase;
}

.indexProduct-right-text {
    padding-right: 20%;
    padding-left: 60px;
    text-align: right;
    padding-top: 0px;
    padding-bottom: 120px;
    height:474px;
}

.indexProduct-right-text h1 {
    margin: 0;
}

.indexProduct-right-text .line {
    width: 60px;
    height: 4px;
    background: #009688;
    float: right;
    margin-bottom: 30px;
}

.indexProduct-right-desc {
    color: #777;
}

.indexProduct-item-li {
    position: relative;
}

.indexProduct-item-li h3 {
    position: absolute;
    left: 0;
    bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
    color: #fff;
}

.indexProduct-right .indexProduct-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height:562px;
}

.indexProduct-pic:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.c {
    width: 100%;
    background: #f8f8f8;
    padding-bottom: 80px
}

.location {
    height: 80px;
    line-height: 80px;
    font-size: 14px;
    color: #777;
}

.location a {
    color: #777
}

.product {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product .location,.productLeft-top{
    padding-left:15%
}

.productLeft {
    width: 70%;
}
.productLeft-li-item{
    padding:80px 80px 80px 0;
    overflow: hidden;
}
.productLeft-li-item ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    width: 100%;
}

.productLeft-li-item ul li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.productLeft-li-item ul li:nth-child(2n) {
    margin-right: 0;
}

.productLeft-li-item ul li a {
    display: block;
}

.productLeft-item-li {
    border-bottom: 1px solid #ddd;
    position: relative;
}

.productLeft-item-li h3 {
    font-size: 18px;
    text-align: center;
    color: #000;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom:0;
    background:rgba(255, 255, 255, .7);
    padding:0 40px;
}

.productLeft-item-li .productLeft-pic {
    overflow: hidden;
    width: 100%;
    height: 425px;
    display: flex;
    flex-wrap: wrap;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;

}

.productLeft-item-li .productLeft-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}


.productLeft-item-li-btn{
    text-align: center;
    line-height: 80px;
    height: 80px;
    background-color: #fff;
    overflow: hidden;
}


.product-btn {
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.productLeft-item ul li:hover {
    background: #fff;
}

.productLeft-item ul li:hover .productLeft-item-li h3 {
    color: #009688;
}

.productLeft-item ul li:hover .productLeft-item-li .productLeft-pic img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.productLeft-item ul li:hover .productLeft-item-li {
    border-bottom: unset
}
.productLeft-li-item ul li:hover .productLeft-item-li h3{color:#009688}




.productRight {
    width: 30%;
    padding-left: 60px;
    padding-top:100px;
    padding-bottom:100px;
    /* border-left: 1px dotted #009688; */
    background: #fff;
}

.product-nav-title {
    font-size: 24px;
    color: #009688;
}



.product-nav .sub_nav {
    width: 100%;
    overflow: hidden;
    margin: 20px 0 30px;
}

.product-nav .sub_nav ul {
    font-size: 0;
}

.product-nav .sub_nav li {
    width: 100%;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    border-radius: 30px;
    display: block;
}

.product-nav .sub_nav li a {
    display: block;
    text-align: left;
    font-size: 16px;
    color: #333;
    position: relative;
    transition: all .3s;
}

.product-nav .sub_nav li.cur a {
    color: #009688;
    background: #fff;
}

.product-nav .sub_nav li.cur a:after {
    left: 0;
    width: 100%;
}

.product-nav .sub_nav li:hover a {
    color: #009688;
    background: #fff;
}

.product-nav .sub_nav li:hover a:after {
    left: 0;
    width: 100%;
}

.product-nav-subnav .sub_nav li {
    width: 100%;
    height: 48px;
    line-height: 48px;
    overflow: hidden;
    border-radius: unset;
}
.product-nav-subnav .sub_nav li:nth-child(1){
    display: none;
}

.product-nav-subnav .sub_nav li a {
    display: block;
    text-align: left;
    font-size: 16px;
    color: #333;
    position: relative;
    padding: 0;
    transition: all .3s;
}

.product-nav-subnav .sub_nav li.cur a {
    color: #009688;
    background: unset;
}

.product-nav-subnav .sub_nav li.cur a:after {
    left: 0;
    width: 100%;
}

.product-nav-subnav .sub_nav li:hover a {
    color: #009688;
    background: unset;
}

.product-nav-subnav .sub_nav li:hover a:after {
    left: 0;
    width: 100%;
}

.product-content-top {
    width: 100%;
    position: relative;
}

.product-content-top-top {
    height: 100vh;
    background: url(../../image/product.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.product-content-box{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.product-content-left{
    width:48%
}
.product-content-left h1{
    line-height: 100px;
    border-bottom:1px solid #009688;
    margin-bottom:30px;
    text-transform: capitalize;
}
.product-content-ys{
    color: #777;
    margin-top:20px;
}
.product-content-pic{
    width: 48%;
    height: 556px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.product-content-pic img{
    width: 100%;
    object-fit: cover;
    transition: all .4s;
}

.product-content-pic:hover img{
    transform: scale(1.1);
}


.product-content-item{
    width: 100%;
    padding:80px;
    overflow: hidden;
    background: #fff;
}
.product-content-item h2{
    text-align: center;
    margin-bottom:60px;
}
.yycj-box{
    position: relative;
}
.yycj-box .yycj-alt{
    position: absolute;
    left: 0;
    bottom:0;
    height: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    background: rgba(255, 255, 255, .7);
    padding:0 30px;
}
.yycj-box .yycj-pic{
    height: 337px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.yycj-box .yycj-pic img{
    object-fit: cover;
    width: 100%;
    transition: all .4s;
}
.yycj-box:hover .yycj-pic img{
    transform: scale(1.1);
}
.pC{
    padding-bottom:10px;
}


.product-content-pic img {
    width: 100%;
    object-fit: cover;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}
.product-content-pic-phone{display: none;}

.product-content-bottom {
    padding: 80px 0;
    overflow: hidden;
    background: #ddd;
}
.product-content-bottom-box{
    overflow: hidden;
}
.product-content-bottom-box table{width: 100%;}
.product-content-bottom-box table td{
    border: 1px solid #999;
    padding:10px;
}
.proC{
    padding-bottom:0;
    background: #f4f4f4;
}
.productLeft-box{
    width: 100%;
}
.productLeft-top{
    overflow: hidden;
    width: 100%;
    display: flex;
    /* flex-wrap: wrap;
    justify-content: space-between; */
    gap: 60px;
}
.productLeft-text{
    padding:80px 0;
    overflow: hidden;
    width:60%
}
.productLeft-text h1{color: #009688;}
.productLeftH1-desc{
    margin: 20px 0 40px;
    color:#555;
}
.productLeft-desc{
    color:#777;
    line-height: 30px;
}
.productLeft-btn{
    width:200px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 24px;
    border:1px solid #ccc;
    overflow: hidden;
    margin-top:60px;
    margin-bottom:60px;
    transition: all .4s;
}
.productLeft-btn a{
    display: block;
    color:#999;
    transition: all .4s;
}
.productLeft-btn:hover{
    box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
    border: 1px solid #009688;
}
.productLeft-btn:hover a{
    color:#009688
}
.productLeft-pic{
    overflow: hidden;
    width:40%;
    display: flex;
}
.productLeft-pic img{
    transition: all .4s;
    -webkit-transition: all .4s;
}

.productLeft-pic:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.productLeft-item{
    padding:60px 0 80px 60px;
    overflow:hidden;
    display: flex;
    gap: 30px;
}
.productLeft-item-li-pic{
    overflow: hidden;
    border-radius: 10px;
    height: 217px;
    display: flex;
    flex-wrap: wrap;
}
.productLeft-item-li-pic img{
    width: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.productLeft-item-li-name{
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.productLeft-item-li-name span{
    float:right;
    font-size: 14px;
    color:#999
}
.productLeft-item-li:hover .productLeft-item-li-pic img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.productLeft-item-li:hover .productLeft-item-li-name{
    color: #009688;
}
.productLeft-other{
    background: #eee;
    /* padding:80px 80px 80px 12%; */
    overflow: hidden;
}
.productLeft-other-box{
    width: 100%;
}
.productLeft-other-li{border-bottom:1px solid #ccc;padding:80px 0;}
.productLeft-other-li h1{margin-bottom:30px}
.productLeft-other-desc{color:#777}
.productLeft-other-li-item{
    margin-top:60px;
}
.productLeft-other-li-li-item{
    overflow: hidden;
}
.productLeft-other-li-li-item ul{
    width:100%;
    display: flex;
    flex-wrap: wrap;
}
.productLeft-other-li-li-item ul li{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: calc((100% - 60px) / 3);
    margin-right:30px
}
.productLeft-other-li-li-item ul li:nth-child(3n){margin-right:0;}
.productLeft-other-li-item-pic{
    height:310px;
    width: 100%;
    overflow: hidden;
    display: flex;
}
.productLeft-other-li-item-pic img{
    width: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}
.productLeft-other-li-item-name{
    position: absolute;
    left:0;
    bottom:0;
    line-height: 48px;
    padding:0 30px;
    height: 48px;
    overflow: hidden;
    background: rgba(255, 255, 255, .7);
    color: #000;
    width:100%;
}
.productLeft-other-li-item-name span{
    float: right;
    font-size: 14px;
}
.productLeft-other-li-li-item ul li:hover .productLeft-other-li-item-pic img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.product-gpg{
    padding:80px 0;
    overflow: hidden;
}
.product-gpg-top{
    display: flex;
    gap: 60px;
    justify-content: space-between;
    overflow: hidden;
}
.product-gpg-pic{
    height: 600px;
    overflow: hidden;
    display: flex;
}
.product-gpg-pic img{
    width: 100%;
    object-fit: cover;
}
.product-gpg-left h1{
    line-height: 100px;
    margin-bottom:40px;
    border-bottom:1px solid #009688
}

.product-gpg-desc{
    color:#777;
}
.product-gpg-desc h4{margin-bottom:20px;}

.proGpg{background: #fff;padding-bottom: 0px;}
.product-gpg-item{
    background: #f8f8f8;
    padding:80px 0;
    overflow: hidden;
    position: relative;
}
#jd1{
    position: absolute;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}
#jd2{
    position: absolute;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}
#jd3{
    position: absolute;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}
#jd4{
    position: absolute;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}














.banner-c-service-box{
    width: 100%;
    color: #fff;
    padding-top:15%
}
.banner-c-service-box h1{text-align: center;}
.after-sales{
    width: 40%;
    padding-left:12%;
    margin-top:120px;
}
.after-sales span{
    display: block;
    font-size: 30px;
    margin-top:30px;
}
.after-sales span b{
    font-weight: normal;
    font-size: 24px;
    display: block;
    margin-bottom:20px;
}
.service-box{
    background: #f8f8f8;}
.service-box-box{
    width: 100%;
    padding:80px 0;
    position: relative;
    min-height: 1100px;
}
.service-down{
    width: 30%;
}
.service-repair{
    width:60%;
    background: rgba(255, 255, 255, .7);
    border-radius: 20px;
    overflow:hidden;
    padding:60px;
    color: #555;
    line-height: 30px;
    position: absolute;
    top: -200px;
    right:0;
}
.service-repair h2{
    color:#009688;
    text-align: center;
    line-height: 80px;
    border-bottom: 1px solid #009688;
    margin-bottom:20px;
}
.service-down ul li{
    line-height: 100px;
    height: 100px;
    overflow: hidden;
    border-bottom:1px solid #ccc
}
.service-down ul li a{display: block;}
.service-down ul li i{font-size: 30px;margin-right:10px}
.service-down ul li i::before{color:#ff0000;}
.service-tech{
    max-width: 1920px;
    margin: 0 auto;
}
.tech-box{
    overflow: hidden;
    width: 100%;
}
.tech-box .tech-pic{
    width:100%;
    height: 228px;
    display: flex;
}
.tech-box .tech-pic img{
    width: 100%;
    object-fit: cover;
}
.tech-box .tech-name{
    text-align: center;
    line-height: 60px;
    height: 60px;
    background: #f4f4f4;
}

/* .down-icon{
    position: relative;
} */
.down-icon i{
    font-size: 60px;
    position: absolute;
    right:5px;
    bottom:0;
}
.down-icon i::before{
    color:#ff0000;
    opacity: .5;
}










/* 新闻 */
.indexNews-item {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.indexNews-item-left {
    overflow: hidden;
}

.indexNews-item-left ul li {
    overflow: hidden;
    background: #f4f4f4;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;

}

.indexNews-item-left ul li:last-child {
    margin-bottom: 0;
}

.indexNews-item-left ul li a {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.indexNews-item-left ul li .indexNews-item-pic {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px 0 5px 5px;
    height: 198px;
}

.indexNews-item-left ul li .indexNews-item-pic img {
    object-fit: cover;
    width: 100%;
    transition: all .4s;
    max-height: 198px;
}

.indexNews-item-left ul li .indexNews-item-text {
    padding: 20px 30px 20px 0;
    overflow: hidden;
}

.indexNews-item-left ul li:hover {
    box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .1);
}

.indexNews-item-left ul li:hover .indexNews-item-pic img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}


.indexNews-item-text h4 {
    line-height: 40px;
    overflow: hidden;
    height: 40px;
    border-bottom: 1px solid #ddd;
    color: #000;
}

.indexNews-item-desc {
    color: #555;
    height: 60px;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 0 0;
}

.indexNews-item-date {
    color: #555;
    margin-top: 20px;
}

.indexNews-item-right {
    padding-left: 30px;
}

.indexNews-item-right-pic {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 490px;
    display: flex;
}

.indexNews-item-right-pic img {
    width: 100%;
    overflow: hidden;
    transition: all .4s;
}

.indexNews-item-right .indexNews-item-text {
    background: #f4f4f4;
    padding: 20px;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
}

.indexNews-item-right:hover .indexNews-item-right-pic img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.news-top {
    background: #f4f4f4;
    background: url(../../image/news-pic.jpg) no-repeat bottom;
    background-size: cover;
    position: relative;
    margin-bottom: 80px;
    height: 40vh;
}

.news {
    line-height: 60px;
    color: #fff;
    text-transform: uppercase;
}

.news-top-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    padding-top: 200px;
    padding-bottom: 100px;
    color: #fff;
}

.category-news {
    padding-bottom: 60px;
    overflow: hidden;
}

.newsSwiper-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.newsSwiper-box-pic {
    display: flex;
    width: 48%;
    height: 507px;
    border-radius: 20px;
    overflow: hidden;
}

.newsSwiper-box-pic img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.newsSwiper-box-text {
    width: 48%;
    overflow: hidden;
}

.newsSwiper-box-text .newsSwiper-box-column {
    font-size: 20px;
}

.newsSwiper-box-text .newsSwiper-box-column a {
    color: #009688;
}

.newsSwiper-box-text h3 {
    line-height: 30px;
    height: 60px;
    overflow: hidden;
    margin: 20px 0 40px;
}

.newsSwiper-box-text h3 a {
    color: #000;
}

.newsSwiper-box-desc {
    color: #777
}

.newsSwiper-box-btn {
    margin-top: 40px;
}

.newsSwiper-box-btn a {
    color: #009688;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.newsSwiper-box:hover .newsSwiper-box-pic img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.newsSwiper-box-text:hover .newsSwiper-box-btn a {
    color: #000
}

.newsSwiper .swiper-button-next,
.newsSwiper .swiper-button-prev {
    top: auto;
    bottom: 30px;
    width: 40px;
    height: 40px;
}

.newsSwiper .swiper-button-next {
    background: #333;
}

.newsSwiper .swiper-button-prev {
    left: auto;
    right: 50px;
    background: #009688;
}

.newsSwiper .swiper-button-next:after,
.newsSwiper .swiper-button-prev:after {
    font-size: 24px;
    color: #fff;
}


.category-industry {
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid #ddd;
}

.category-industry-title {
    font-size: 32px;
    color: #000;
    margin-bottom: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.category-industry-title span {
    font-size: 16px;
}

.category-industry-title span a {
    color: #009688
}

.category-industry-item {
    overflow: hidden;
}

.category-industry-item ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.category-industry-item ul li {
    width: calc((100% - 60px) / 3);
    width: -webkit-calc((100% - 60px) / 3);
    width: -moz-calc((100% - 60px) / 3);
    width: -o-calc((100% - 60px) / 3);
    margin-right: 30px;
}

.category-industry-item ul li:nth-child(3) {
    margin-right: 0;
}

.category-industry-pic {
    width: 100%;
    overflow: hidden;
    height: 342px;
    display: flex;
}

.category-industry-pic img {
    width: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.category-industry-text {
    padding: 30px 0;
    overflow: hidden;
}

.category-industry-text h4 {
    color: #000;
    height: 60px;
    overflow: hidden;
    transition: all .4s;
}

.category-industry-item ul li:hover .category-industry-pic img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.category-industry-item ul li:hover .category-industry-text h4 {
    color: #009688;
}

.category-media {
    background: #f4f4f4;
    padding: 80px 0;
    overflow: hidden;
}

.category-media-item li {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all .4s;

}

.category-media-item li:last-child {
    margin-bottom: 0;
}

.category-media-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.category-media-text {
    padding: 30px;
    overflow: hidden;
}

.category-media-text h4 {
    color: #000;
    margin-bottom: 15px;
    height: 30px;
    overflow: hidden;
    transition: all .4s;
}

.category-media-right {
    text-align: center;
    color: #009688;
}

.category-media-item li:hover {
    box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
}

.category-media-item li:hover .category-media-text h4 {
    color: #009688;
}

.category-news-item {
    width: 100%;
}

.category-news-item ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.category-news-item ul li {
    width: calc((100% - 60px) / 3);
    width: -webkit-calc((100% - 60px) / 3);
    width: -moz-calc((100% - 60px) / 3);
    width: -o-calc((100% - 60px) / 3);
    margin-right: 30px;
    margin-bottom: 30px;
}

.category-news-item ul li:nth-child(3n) {
    margin-right: 0;
}

.category-news-item ul li:hover .category-industry-pic img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.category-news-item ul li:hover .category-industry-text h4 {
    color: #009688;
}

.media-list {
    width: 100%;
}

.media-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.media-list ul li {
    width: calc((100% - 90px) / 4);
    width: -webkit-calc((100% - 90px) / 4);
    width: -moz-calc((100% - 90px) / 4);
    width: -o-calc((100% - 90px) / 4);
    margin-right: 30px;
    margin-bottom: 30px;
    transition: all .4s;
}

.media-list ul li:nth-child(4n) {
    margin-right: 0;
}

.media-list-box {
    padding: 40px;
    overflow: hidden;
    border-radius: 20px;
    background: #f4f4f4;
    border-bottom: 1px solid #009688
}

.media-list-box a {
    display: block;
}
.media-list-box{
    position: relative;
}
.media-list-text h4 {
    color: #000;
    line-height: 30px;
    height: 90px;
    overflow: hidden;
    transition: all .4s;
}

.media-list ul li:hover .media-list-text h4 {
    color: #009688;
}


.news-top-cover h2 {
    width: 80%;
    text-transform: capitalize;
}

.news-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-content-left {
    padding-right: 80px;
}

.news-content-row {
    line-height: 60px;
    border-bottom: 1px solid #ddd;
    color: #777;
}

.news-content-row>span {
    margin-right: 60px;
}

.news-content-content {
    padding: 60px 0;
    overflow: hidden;
    
}
/* .news-content-content>div{
    padding:0 !important;
    overflow: hidden;
} */
.news-content-content img{
    width: auto !important;
    height: auto !important;
}

.fanye {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    color: #777;
}

.fanye a {
    color: #777
}

.news-content-right {
    background: #f4f4f4;
}

.news-content-right h2 {
    color: #000;
    line-height: 80px;
    height: 80px;
    background: #009688;
    padding: 0 30px;
    color: #fff;
}

.news-lastnews {
    padding: 30px 20px;
    overflow: hidden;
}

.news-lastnews li {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.news-lastnews li .news-lastnews-date {
    color: #777
}
.news-lastnews li .news-lastnews-date i{margin-right:10px;}

.news-lastnews li h4 {
    line-height: 30px;
    color: #000;
}











.indexSeries {
    margin: 80px 0;
    overflow: hidden;
}

.indexSeries-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.indexSeries-item .indexSeries-item-li {
    width: 24%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.indexSeries-item-li-pic {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.indexSeries-item-li-pic img {
    width: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.indexSeries-item-li-text {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #fff;
    padding: 40px 30px;
    overflow: hidden;
    text-transform: capitalize;
}

.indexSeries-item-li-text h3 {
    margin-bottom: 10px;
}

.indexSeries-item .indexSeries-item-li:hover .indexSeries-item-li-pic img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}


/* 联系 */
.indexContact {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top;
    background-attachment: fixed;
    position: relative;
}

.indexContact-text {
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    color: #fff;
    line-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.indexContact-text-box .font48{
    text-transform: capitalize;
}
.indexContact-btn {
    width: 250px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .6);
    border-radius: 30px;
    margin-top: 60px;
    transition: all .4s;
}

.indexContact-btn a {
    display: block;
    color: #000;
    transition: all .4s;
}

.indexContact-btn:hover {
    background: #009688;
}

.indexContact-btn:hover a {
    color: #fff;
}


.job-top {
    background: #f4f4f4;
    background: url(../../image/jobs-pic.jpg) no-repeat bottom;
    background-size: cover;
    position: relative;
    margin-bottom: 80px;
    height: 40vh;
}
.job-top-zhanlue{
    width: 100%;
    padding:80px 0 120px;
    overflow: hidden;
}
.job-top-zhanlue h2{
    text-align: center;
    margin-bottom:40px;
}
.job-top-desc{
    width: 80%;
    margin: 0 auto;
    color: #777;
    text-align: center;
}
.job-team{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width:1920px;
    margin: 0 auto;
}
.job-team-pic,.job-team-text{
    width: 50%;
    height: 500px;
}
.job-team-pic{
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
.job-team-pic img{
    width: 100%;
    object-fit: cover;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.job-team-text{
    padding:150px 12% 150px 100px;
    overflow: hidden;
    background: #ddd;
}
.job-team-text h2{
    margin-bottom:40px;
    line-height: 80px;
    position: relative;
}
.job-team-text h2::after{
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #009688;
    position: absolute;
    left: 0;
    bottom:0;
}
.job-team:hover .job-team-pic img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.job-item{
    margin-top:80px;
    overflow: hidden;
}
.job-item ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}
.job-item ul li{
    width: calc((100% - 60px) / 3);
    margin-right:30px;
    margin-bottom:30px;
    border-radius: 10px;
    overflow: hidden;
    padding:40px;
    border:1px solid #ddd;
    text-align: center;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
}

.job-item ul li:nth-child(3n){
    margin-right: 0;
}
.job-item ul li a{
    display: block;
}

.job-item ul li h4{
    margin-bottom:30px;
}
.job-item ul li i{color:#009688;font-size: 24px;margin-right:10px;}
.job-li-text{
    color: #777;
}
.job-item ul li:hover{
    box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 2px 3px 3px rgba(0, 0, 0, .1);
}
.job-top-title{
    padding:0 0 60px;
    overflow: hidden;
    text-align: center;
    border-bottom:1px solid #ddd;
}
.job-top-title h2{
    margin-bottom:30px;
}
.job-top-title .job-top-txt{
    color:#777
}
.job-top-title .job-top-txt span{
    margin-right:40px;
}
.job-c-c{
    padding:60px 0 0;
    overflow: hidden;
}
.job-c-c h4{
    margin-bottom:20px;
}


/* 联系 */
.aboutC table{width: 100%;overflow: hidden;}
.aboutC table td{
    border: 1px solid #aaa;
    line-height: 40px;
    padding:10px 20px;
    overflow: hidden;
    width: 50%;
}

.aboutC table td strong{
    display: block;
}

.aboutC table .contact-icon{
    width: 140px;float:left;text-align: center;
}
.aboutC table .contact-icon em{font-size: 60px;color: #009688;margin-top:10px;}
.aboutC table .contact-text{
    float:left
}

.contact-contact{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}
.contact-cover{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left:0;
    top:0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color:#fff;
    padding:40px 80px;
}
.contact-cover h1{
    width:40%;
    text-transform: capitalize;
}
.contact-contact-text{
    font-size: 40px;
}
.contact-contact-text span{
    display: block;
    font-size: 24px;
    margin-bottom:20px;
}
.contact-contact-text img{
    height: 100px;
}

.contact-message{
    margin-top:60px;
}
.contact-message h1{
    position: relative;
    line-height: 60px;
}
.contact-message h1::after{
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: #ddd;
    position:absolute;
    right:0;
    bottom:0;
}
.message{
    margin-top:40px;
}

.message .form-horizontal .form-group{margin-right:0;margin-left:0;margin-bottom:30px;}
.message .form-group:nth-child(1) input,.message .form-group:nth-child(2) input{
    width: calc((100% - 30px) / 2);
    width: -webkit-calc((100% - 30px) / 2);
    width: -moz-calc((100% - 30px) / 2);
    width: -o-calc((100% - 30px) / 2);
}
.message .form-group:nth-child(1) input,.message .form-group:nth-child(2) input{margin-right:20px;}
.message .form-group:nth-child(1) input:nth-child(2),.message .form-group:nth-child(2) input:nth-child(2){margin-right:0;}
.message .form-group input{
    width: 100%;
    line-height: 40px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    padding:10px 20px;
    background: #f4f4f4;
}
.message .form-group textarea{
    width: 100%;
    border:1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding:20px;
    background:#f4f4f4;
}
.message button{
    width:200px;
    border-radius: 10px;
    background: #009688;
    border: unset;
    line-height: 40px;
}














/* footer */
footer {
    width: 100%;
    overflow: hidden;
}

.footer-top {
    padding: 80px 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-top img {
    height: 60px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-nav ul li {
    line-height: 60px;
}

.footer-nav ul li a {
    padding: 0 30px;
    color: #000;
}

.footer-bottom {
    padding: 40px 0;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.footer-series {
    width: 40%;
}

.footer-series-top {
    width: 90%;
    background: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px 0;
}

.footer-series-top h3 {
    color: #009688;
    line-height: 60px;
    padding: 0 30px;
    border-bottom: 1px solid #009688;
}

.footer-series-item {
    padding: 30px;
    overflow: hidden;
}

.footer-series-item ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.footer-series-item ul li {
    width: 100%;
    line-height: 40px;
}

.footer-series-bottom {
    width: 80%;
    margin-top: 20px
}

.footer-series-bottom ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-series-bottom ul li {
    width: 50%;
    text-align: center;
}
.footer-series-bottom ul li:nth-child(5){
    width: 100%;
    text-align: left;
}



.footer-contact {
    width: 30%;
}

.footer-contact h3 {
    margin-bottom: 20px;
}

.footer-series-text {
    color: #555;
}

.footer-ewm {
    width: 20%;
}


.footer-line {
    width: 100%;
    height: 1px;
    background: #ddd;
}

.copyright {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.copyright-left span {
    margin-right: 60px;
    color: #777;
    line-height: 40px;
}

.copyright-left span a {
    color: #777;
}





/* 手风琴容器 */
.accordion-container {
    display: flex;
    width: 100%;
    /* max-width: 1000px; */
    height: 400px;
    /* gap: 10px; */
}

/* 手风琴项 */
.accordion-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s cubic-bezier(0.23, 0.93, 0.77, 1);
    background-color: var(--bg-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* 默认激活状态 */
.accordion-item.active {
    flex: 3;
}

/* 标题样式 */
.item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #009688;
    font-size: 30px;
    font-weight: bold;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 2;
    font-style: italic;
}

/* 内容区域 */
.item-content {
    /* display: grid; */
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s ease;
    color: #555;
    padding: 40px;
    height: 100%;
}
.item-content em::before{font-size: 52px; color:#009688}
.item-content em{margin-bottom:10px;}
.item-content h3{line-height: 40px;}
.item-content p{
    margin-top:40px;
    color:#999
}


.item-content > div {
    overflow: hidden;
}

/* 激活状态的内容 */
.accordion-item.active .item-content {
    grid-template-rows: 1fr;
}

/* 悬停效果 - 非激活项 */
.accordion-item:not(.active):hover {
    flex: 3;
}

/* 悬停时取消激活项的展开状态 */
.accordion-container:hover .accordion-item.active:not(:hover) {
    flex: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .accordion-container {
        flex-direction: column;
        height: auto;
    }
    
    .accordion-item {
        width: 100%;
        height: 60px;
    }
    
    .accordion-item.active {
        height: 300px;
    }
}





@keyframes pulse {
    0% {
        opacity: 0.8;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}


/*banner背景图片动画*/
@-webkit-keyframes scale-bg {
    from {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale-bg {
    from {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes upMove {
    from {
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
    }

    to {
        transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}

@media(min-width:1921px) {
    .indexProduct-right-text{
        padding-bottom: 158px;
    }
}

@media(max-width:1921px) and (min-width:1679px){
    .tech-box .tech-pic{height:235px}
    .after-sales{margin-top: 60px;}
}

@media(max-width:1679px) and (min-width:1359px){
    .font48{font-size: 30px;}
    .honor-pic{height:185px}
    .company h2{margin-top:0;}
    .style-pic{height: 175px;}
    .product-content-pic{height:450px}
    .tech-box .tech-pic{height:165px}
    .category-industry-pic{height:249px}
    .footer-series-bottom ul li:nth-child(5){text-align: center;}
    .category-pic{height: 58vh;}
    .after-sales{margin-top:40px;padding-left:8%}
    .item-content{padding:40px 20px;}
}




@media(max-width:1660px) and (min-width:1199px){
    .productLeft-item-li .productLeft-pic{
        display: flex;
        flex-wrap: wrap;
        height: 248px;
    }
    .productLeft-pic img{
        object-fit: cover;
    }
    .footer-series-bottom ul li{
        width:50%
    }
    .item-content h3{font-size: 20px;line-height: 30px;}
    .cultureB-box ul li{height: 260px;width: 30%;}
    .cultureB-box ul li:nth-child(2n){transform: translateY(0px);}
    .product .location, .productLeft-top{padding-left:5%}
    .productLeft-other-li-item-pic{height:265px}
    .cultureB-box ul li p{
        font-size: 14px;
    line-height: 20px;
    }
    .productLeft-item-li-pic{height: 121px;}
    .pro_nav_name{line-height: 30px;}
    .product-nav .sub_nav li a{
        padding:0;
    }
    .productLeft{width: 65%;}
    .productRight{
        padding-left:30px;
        width: 35%;
    }
    .service-box-box{min-height: 1200px;}
    .aboutC table .contact-text{width: 70%;}
    .aboutC table td strong{line-height: 24px;}
    .item-content p{
        line-height: 24px;
        font-size: 14px;
    }
    .cultureB-box ul{
        width: 80%;
        margin: 0 auto;
    }
    .job-team-text{
        padding:60px;

    }
    .font48{font-size: 30px;}

}

@media(max-width:1400px) and (min-width:1279px){
    .banner{height: 70vh;}
    .banner .swiper-slide,.banner .bannerBox img{height: 70vh;}
    .after-sales{padding-left:5%}
    .after-sales{
        padding-left: 60px;
    margin-top: 60px;
    }
    .service-repair{
        top: -300px;
    }
    .tech-box .tech-pic{height:143px}
    .honor-pic{height: 185px;}
    .item-content{padding:40px 20px;}
    .style-pic{height:178px}
    .indexProduct-right-text{padding-right: 60px;}
}

@media(max-width:1199px){
    .wrap{
        width: 100%;
        max-width: unset;
        min-width: unset;
        padding:0 10px;
    }
    .banner{
        height:auto;
    }
    .banner .swiper-slide{height:100%}
    .banner .bannerBox img{height: 100%;}
    .banner .bannerText{left: 35%}
    .font60{font-size: 30px;}
    .font48{
        font-size: 36px;
    }
    .indexProduct-right-text{
        padding-right: 60px;
        padding-left: 60px;
    }
    .indexProduct-txt{
        padding-left: 40px;
    }
    .indexProduct-item-li h3{
        font-size:20px;
    }
    .indexContact{
        height: 60vh;
    }

    .category-video,.category-pic{height: auto;}
    .honor-pic{height: 164px;}
    .cc{padding:0 10px;}
    .style-pic{height:149px}
    .productLeft-item-li h3{font-size:20px;line-height: 30px;overflow: hidden;height: 30px;}
    .productRight{padding-left: 30px;}
    .product-content-pic{height: 300px;}
    .category-industry-pic{height: 222px;}
    .service-repair{width: 70%;position: unset;}
    .service-down{width:25%}
    .tech-box .tech-pic{height: 120px;}
    .after-sales{padding-left:20px;margin-top: 0px;width:60%}
    .indexProduct-item-li h3{
        padding-left: 20px;
    padding-right: 40px;
    }
    .indexSeries-item-li-text{
        padding: 20px 10px;
    }
    .indexSeries-item-li-text h3{
        font-size: 18px;
    }
    .footer-series-bottom ul li{
        width: 50%;
    }
    .banner-c{height: 40vh;}
    .font42{font-size: 32px;}
    .category-about-left{width: 60%;}
    .category-culture-left{padding-left:40px;}
    .footer-series-top{width: 100%;}
    .footer-nav{width:65%}
    .footer-nav ul li a{padding:0 10px}
    .item-content{padding: 40px 20px;}
    .cultureB-box ul{height:680px;justify-content: start;width: 70%;margin:0 auto;}
    .cultureB-box ul li{width: 30%;}
    .productLeft-top{
        padding-left: 60px;
    }
    .productLeft-pic{
        display: flex;
    }
    .productLeft-item-li-pic{height: 94px;}
    .productLeft-other-li-item-pic{height: 215px;}
    .yycj-box .yycj-pic{height:146px}
    .service-box-box{display: flex;}
}

@media(max-width:992px){
    .style ul li{
        width: calc((100% - 30px) / 2);
        width: -webkit-calc((100% - 30px) / 2);
        width: -moz-calc((100% - 30px) / 2);
        width: -o-calc((100% - 30px) / 2);
    }
    .style ul li:nth-child(2n){
        margin-right: 0;
    }
    .style-pic{height: 206px;}
    .productLeft-item ul li{
        width: calc((100% - 30px) / 2);
        width: -webkit-calc((100% - 30px) / 2);
        width: -moz-calc((100% - 30px) / 2);
        width: -o-calc((100% - 30px) / 2);
    }
    .productLeft-item ul li:nth-child(2n){
        margin-right:0;
    }
    .productLeft{width: 100%;}
    .productRight{display: none;}
    .product-content-top-top{height: 60vh;}
    .category-industry-pic{height: 172px;}
    .news-content-left,.news-content-right{width: 100%;}
    .news-content-left{padding-right:0;}
    .news-content-right{margin-top:30px;}
    .media-list ul li{
        width: calc((100% - 30px) / 2);
        width: -webkit-calc((100% - 30px) / 2);
        width: -moz-calc((100% - 30px) / 2);
        width: -o-calc((100% - 30px) / 2);
    }
    .media-list ul li:nth-child(2n){
        margin-right: 0;
    }
    .job-team-text{
        padding: 80px 60px;
    }
    .sub_nav{display: none;}
    .footer-nav{display: none;}
    .footer-series-item ul li,.footer-series-bottom ul li{width:100%}
    .footer-series-bottom ul li{text-align: left;width: 25%;}
    .footer-bottom{position: relative;padding-bottom: 100px;}
    .footer-series-bottom{
        position: absolute;
        left: 0;
        bottom:0;
    }
    .copyright-left{font-size: 14px;}
    .cultureB-box ul{width: 100%;}
    .font48{font-size: 30px;}
    .indexProduct-right-text{
        padding-right: 40px;
        padding-left: 40px;
    }
    .indexProduct-right .indexProduct-item{
        height: 340px;
    }
    .indexProduct-right .indexProduct-pic{height: 170px;}
    .indexProduct-left{height: 814px;}
    .banner .bannerText h1{letter-spacing: 0;}
}

@media(max-width:767px){

    .banner-c{height: 30vh;}
    .banner-banner .banner-c{height:50vh}
	.sub_nav{display: none;}
	.aboutC table .contact-icon{width: 48px;float:unset}
	.aboutC table .contact-icon em{font-size: 32px;}
    .contact-cover{padding:40px 20px;}
    .contact-cover h1{display: none;}
    .conatct-contact-ewm{width: 100%;}
    .contact-contact-text{font-size: 32px;width: 100%;text-align: center;margin-bottom:20px;}
    .conatct-contact-ewm img{height:120px;margin: 0 auto;display: block;}
    h1{font-size: 30px;}
    h2{font-size: 24px;}
    .footer-top{display: none;}
    .footer-bottom{display: none;}
    .footer-series{
        width: 100%;
    }
    .footer-series-top{width: 100%;}
    .footer-series-top h3{padding:0 10px;line-height: 40px;}
    .footer-series-item{padding:10px;}
    .footer-series-bottom ul li{text-align: left;}
    .footer-contact,.footer-ewm{display: none;}
    .copyright{display: block;}
    .copyright-left{font-size: 14px; text-align: center;}
    .copyright-left span{display: block;line-height: 30px;margin-right: 0;}
    .copyright-yyzz{text-align: center;}

    .job-top{height: 30vh;margin-bottom:40px;}
    .news-top-cover{padding-top:140px;}
    .job-top-zhanlue{padding:40px;}
    .job-team-text {
        padding: 40px 20px;
    }
    .job-team-pic{width:30%}
    .job-team-text{width:70%}
    .job-team-pic, .job-team-text{height: 350px;}
    .job-team-text-text{font-size: 14px;line-height: 20px;}
    .job-team-text h2{line-height: 48px;}
    .job-item{margin-top: 40px;}
    .job-item ul li{width: 100%;margin-right:0;}
    .footer-line{display: none;}
    .job-top-title .job-top-txt{overflow: hidden;font-size: 14px;}
    .job-top-title .job-top-txt span{
        width: 50%;
        margin-right: 0;
        display: block;
        float:left;
    }
    .style ul li{
        padding-left:10px;
        padding-right:10px;
        padding-top:10px;
    }
    .style{padding:40px 0;}
    .style-pic{height: 97px;}
    .style ul li h4{font-size: 16px;}
    .media-list-box{
        padding:20px;
    }
    .media-list-box h4{
        font-size: 16px;
        line-height: 24px;
    }
    .news-top{height: 30vh;margin-bottom:40px;}
    .news-content-row{font-size: 14px;}
    .news-content-row>span{display: block;line-height: 40px;}
    .category-news-item ul li{width: 100%;margin-right:0;}
    .product{margin-top:40px;}
    .productLeft-item ul li{width:100%;margin-right:0;background: #fff;}
    .product-content-pic{
        width: 100%;
    }
    .product-content-pic-phone{display: block;}
    .product-content-top-top-left{width: 100%;}
    .product-content-pic-phone{
        width: 90%;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(255, 255, 255, .6);
        margin-top:40px;
        margin-bottom:40px;
    }
    .product-content-top-bottom{width: 100%;margin-top:0;margin-bottom: 40px;}
    .c{padding-bottom:40px;}
    .productRight{display: block;width: 100%;border-left: unset;padding:40px 10px;}
    .productRight .sub_nav{display: block;}
    .category-about-box{
        margin: 40px auto;
    }

    .category-about-top,.category-culture{display: block;}
    .category-culture{height: auto;margin-bottom:30px;}
    .category-about-left,.category-about-right{width:100%}
    .category-culture .width50{width: 100%;}
    .company-pic{width: 100%;}
    .aboutC{padding:40px 0;}
    .aboutC ul li{width:100%;padding:1px solid #ddd}
    .category-about-top{margin-bottom:30px;}
    .category-culture-left{padding-left:10px;padding-right:10px;}
    .category-culture-text-text{margin-top:40px;}
    .honor-pic{height: 251px;}
    .honor{padding:40px 0;}
    .banner .swiper-slide{height:40vh}
    .banner .bannerBox img{height: 40vh;}
    .indexAbout-left{display: none;}
    .indexAbout-right{
        width: 100%;
        padding-top: 40px;
        padding-left: 10px;}
    .font48{font-size: 24px;}
    .index-text h1{margin:20px 0 40px;line-height: 40px;}
    .index-btn{margin-top:40px;}
    .indexProduct{
        margin-top: 40px;
    margin-bottom: 40px;
    display: block;
    }
    .indexProduct .width50{width: 100%;}
    .indexAbout-text-text{height: 180px;overflow: hidden;}
    .indexProduct-txt{
        padding-left:20px;
        bottom:40px;
    }
    .indexProduct-right-text{
        padding:40px 10px;
        height: auto;
    }
    .indexProduct-item{padding:0 10px;}
    .indexProduct-item .indexProduct-item-li{margin-bottom:20px}
    .indexProduct-item .indexProduct-item-li:nth-child(4){margin-bottom:0;}
    .indexNews-item .width55{width: 100%;}
    .indexNews-item-right{width: 100%;padding-left:0;margin-top:20px;}
    .indexNews-item-right-pic{height: 266px;}
    .indexSeries-item{display: block;overflow: hidden;}
    .indexSeries-item .indexSeries-item-li{width:49%;float:left;margin-right:2%;margin-bottom:10px;}
    .indexSeries-item .indexSeries-item-li:nth-child(2n){margin-right:0;}
    .indexSeries{margin: 40px 0;}
    .indexContact-text-box .font48{line-height: 40px;}
    .indexContact {
        height: 40vh;
    }
    .indexProduct-left{
        height: 450px;
    }
    .indexProduct-right .indexProduct-item{height:auto;}
    .footer-series-item ul li, .footer-series-bottom ul li{width: 100%;font-size: 14px;}
    .footer-series-bottom{width: 100%;}
    .font42{font-size: 28px;}
    .category-video{padding-bottom:40px;}
    .cultureB-box ul li{width: 80%;padding:70px 10px;height: 240px;margin:0 auto;}
    .cultureB-box ul{height:auto;}
    .cultureB-box ul li:nth-child(2n){transform: translateY(0);}
    .cultureC{padding-top: 60px;}
    .productLeft-top{display: block;padding:0 10px;}
    .productLeft-text,.productLeft-pic{width: 100%;}
    .productLeft-text{padding:40px 0;}
    .productLeft-btn{margin-top:30px; margin-bottom:30px;}
    .productLeft-item{padding:40px 10px;flex-wrap: wrap;gap: unset;}
    .productLeft-other-li-li-item ul li{width: 100%;margin-right: 0;margin-bottom:20px;}
    .productLeft-other-li{padding:40px 0;}
    .product-gpg{padding:0 10px 40px 0;}
    .product-gpg-top{display: block;}
    .product-gpg-pic{margin-top:30px;height: auto;}
    .product-gpg-item{padding:0;}
    .product-content-left{width: 100%;}
    .product-content-item{padding:40px 10px;}
    .yycj-box .yycj-pic{height: 300px;}
    .newsSwiper .swiper-button-next, .newsSwiper .swiper-button-prev{bottom:0;}

    .newsSwiper-box-pic{height:266px;width: 100%;}
    .newsSwiper-box-text{width:100%;margin-top:30px;}
    .category-industry-item ul li{width:45%}
    .category-industry-item ul li:nth-child(2n){
        margin-right:0;
    }
    .location{font-size: 12px;line-height: 30px;}
    .category-industry-text h4{font-size: 16px;line-height: 30px;height: 90px;}
    .category-media{padding:40px 0;}
    .category-media-text h4{line-height: 30px;height:60px}
    .banner-c-service-box{padding-top:25%}
    .after-sales{width:100%;font-size: 14px;padding-left:10px;padding-right:10px;line-height: 24px;}
    .banner-c-text h1{margin-bottom: 0px;}
    .service-box-box{padding: 40px 0;flex-wrap: wrap;}
    .service-down,.service-repair{width: 100%;}
    .service-repair{padding:40px 10px;}
    .tech-box .tech-pic{height: 248px;}
    .aboutC table td{width: 100%;display: block;}
    .aboutC table td strong{
        line-height: 24px;
    }
    .banner .bannerText{width: 80%; left:30%}
    .indexSeries-item-li-desc{
        line-height: 20px;
        height: 60px;
        font-size: 14px;
    }
    .product-gpg-left h1{line-height: 40px;}
    .product-content-left h1{line-height: 40px;}
    .category-about-left h1{line-height: 30px;font-size: 30px;}
    .category-about-content{line-height: 30px;}
    .aboutC h1{line-height: 40px;}
    .cultureB-box ul li p{font-size: 14px;}
}