


.section-title {
    position: relative;
    margin: 2rem auto;
}
.section-title .title {
    text-align: center;
}
.section-title .title .cn {
    font-weight: bold;
    font-size: 3rem;
}
.section-title .title .cn em{
    color: var(--comcolor);
}
.section-title .title .en{
    font-size: 5rem;
    color: rgba(0, 88, 167, 0.1);
    text-transform: uppercase;
    white-space: nowrap;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2rem;
    width: 100%;
    font-weight: 600;
}
.section-title .intro {
    font-size: 1rem;
    line-height: 2rem;
}
.section-title .view_more {
    position: absolute;
    right:0;
    bottom:0;
}
.view-more {
    width: 10rem;
    height:3rem;
    line-height: 3rem;
    text-align: center;
    font-size: 1rem;
    position: relative;
    border: 1px solid var(--comcolor);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    border-radius: 1rem 0 1rem 0;
    transition: 0.5s;
}
.view-more a{
    width: 100%;
    color: var(--comcolor);
    display: flex;
    justify-content: space-between;
}
.view-more:hover {
    border-radius: 1.5rem;
}

@media  screen and (max-width: 1000px){
    .section-title .title .cn {
        font-size: 2rem;
    }
    .section-title .title .en {
        font-size: 2.5rem;
        top:-0.5rem;
    }
    .section-title .intro {
        font-size: 1rem;
    }
    .section-title .view_more{
        display: none;
    }
}







.banner-section { position: relative;width:100%;}
.banner-section .swiper-slide img {
    width:100%;
    height:100vh;
    display: block;
}
.banner-section .swiper-pagination-bullet {
    width:1rem;
    height:1rem;
}
.banner-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width:3rem;
    border-radius: 0.5rem;
}

.banner-section .ban_txt {
    position: absolute;
    z-index: 99;
    color: #2d2d2d;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.banner-section .ban_txt .txt {width: 50%;}
.banner-section .ban_txt .txt p {
    text-shadow: 2px 2px 4px #898989;
}

.banner-section .ban_txt .txt p:nth-child(1){
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.banner-section .ban_txt .txt p:nth-child(2){
    font-size: 1.8rem;
    font-weight: 600;
}
.banner-section .swiper-button-prev {
    left:5%
}
.banner-section .swiper-button-next {
    right:5%
}


@media  screen and (max-width: 1000px){
    .banner-section .swiper-slide img {
        width: 100%;height:100%;
        object-fit: cover;
        object-position: right center;
    }
    .banner-section .swiper-pagination-bullet {
        width:0.6rem;
        height:0.6rem;
    }
    .banner-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width:2rem;
    }

    .banner-section .ban_txt {display: none;}

    .banner-section .swiper-button-next:after,
    .banner-section .swiper-button-prev:after {
        font-size: 2rem;
    }
}







.products-section {width:100%;padding: 2rem 0;background: #fff;position:relative;z-index: 9;overflow: hidden;}

.products-section .products-features-grid {
    display: flex;
    gap:1rem;
    margin-top: 3rem;
}
.products-section .features-category {
    flex: 0 0 20%;
}
.products-section .features-category ul li {margin-bottom: 0.5rem;position: relative;}
.products-section .features-category ul li a{
    height: 3.5rem;
    padding: 0 1.5rem;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    color: #262626;
}
.products-section .features-category ul li:after{
    content:"";
    position:absolute;
    width:0;
    top:0;
    left:0;
    height:100%;
    background:linear-gradient(to right,var(--subcolor), #e5e5e5);
    transition:all .5s;
}
.products-section .features-category ul li:hover:after,
.products-section .features-category ul li.act:after {
    width:100%;
}
.products-section .features-category ul li:hover a,
.products-section .features-category ul li.act a {
    color:#fff;
}



.products-section .features-products {
    flex: 0 0 80%;
}
.products-section .features-products .features-products-list {
    display: none;
}
.products-section .features-products .features-products-list.act {
    display: flex;
    flex-wrap:wrap;
    gap:1rem;
}
.products-section .features-products .item {
    flex: 0 0 calc(33.33% - 1.333rem);
    position: relative;
}
.products-section .features-products .item .box{
    position: relative;
    display: block;
    text-align: center;
    background: #fff;
    overflow: hidden;
    border: 1px solid #dee2e6;
}
.products-section .features-products .item .img img{
    width: 100%;aspect-ratio: 6 / 4.5;object-fit: cover;
}

.products-section .features-products .item .box .title a {
    position: relative;
    width:100%;
    height:5rem;
    color: #575757;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.products-section .features-products .item .overlay {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0480deab;
    align-items: center;
    z-index: 5;
}


@media  screen and (min-width: 1000px){

    .products-section .features-products .item .overlay .line {
        position: absolute;
        top: 5%;
        left: 5%;
        right: 5%;
        bottom: 5%;
    }
    .products-section .features-products .item .overlay .line:before {
        content: '';
        position: absolute;
        transition: all 0.75s;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        width: 0;
        height: 100%;
        left: 50%;
        top: 0;
    }
    .products-section .features-products .item .overlay .line:after {
        content: '';
        position: absolute;
        transition: all 0.75s;
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
        width: 100%;
        height: 0;
        top: 50%;
        left: 0;
    }
    .products-section .features-products .item:hover .overlay {
        opacity: 1;
        visibility: visible;
    }
    .products-section .features-products .item:hover .overlay .line:after,
    .products-section .features-products .item:hover .overlay .line:before
    {width:100%;height:100%;top:0;left:0;}
    .products-section .features-products .item:hover .box .title {
        opacity: 0;
    }
    .products-section .features-products .item:hover .overlay .go{
        color:#fff;
        width: 95%;
        text-align: center;
        position: absolute;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    .products-section .features-products .item .overlay .go .tit{
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .products-section .features-products .item .overlay .go i{
        font-size: 2rem;
        color:#fff;
    }

}
@media  screen and (max-width: 1000px){
    .products-section {padding:0 0 2rem;}
    .products-section .products-features-grid {
        margin-top: 1rem;
        flex-direction: column;
    }
    .products-section .features-category,
    .products-section .features-products {
        width: 100%;
    }
    .products-section .features-category ul {
        margin-bottom: 1rem;
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .products-section .features-category ul li {flex: 0 0 calc(50% - 0.25rem);}
    .products-section .features-category ul li a{
        height: 3rem;
        text-align: center;
        font-size: 1rem;
        border-bottom:1px solid #e3e3e3;
        display: flex;
        align-items: center;
        justify-content:center;
    }
    .products-section .features-products .item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}







.index_case {
    width:100%;
    height:85vh;
    position: relative;
    overflow: hidden;
    z-index: 9;
}
.index_case .title {
    position: absolute;
    top: 15%;
    left:50%;
    transform: translateX(-50%);
    z-index: 9;
}
.index_case .title h3{
    position: relative;
    font-size: 3rem;
    color:#fff;
    z-index: 2;
}

.index_case .introduce {
    position: absolute;
    top: 35%;
    left:50%;
    transform: translateX(-50%);
    z-index: 2;
}
.index_case .introduce li{
    width: 70%;
    display: none;
}
.index_case .introduce li.act{
    display: block;
}
.index_case .introduce li .tit{
    position: relative;
    font-size: 2rem;
    color:#fff;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #fff;
}

.index_case .introduce li .tit:before{
    position: absolute;
    left:0;
    bottom:-1.5px;
    content: '';
    width:5rem;
    height:3px;
    background: #fff;
    z-index: 1;
}
.index_case .introduce .desc{
    width:70%;
    font-size: 1rem;
    line-height: 2rem;
    color:#fff;
    margin-top: 1.5rem;
}

.index_case .case_swiper {
    height:100%;
}
.index_case .case_swiper img{
    display: block;
    width:100%;
    height:100%;
    object-fit: cover;
}

.index_case .line {overflow: hidden;width:100vw;height:3.32vw;position:absolute;left: 0;bottom: 10%;}
.index_case .line .ripple{
    position: absolute;left: 0;background-repeat: repeat no-repeat;transform-origin: center bottom;width: 200%;height: 100%;
    background-image: url(../images/ca/w.png);background-position: 0 bottom;background-size: 50% auto;z-index:5;
    animation: 5s linear infinite move_wave;
}
@keyframes move_wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.index_case .industry {
    position: absolute;
    width:100%;
    height:3.32vw;
    bottom:10%;
    z-index: 20;
}

.index_case .industry li{
    position: absolute;
    bottom: 0;
    animation: 2.5s ease-in-out infinite txt_wave;
    cursor:pointer;
}
.index_case .industry li.on {
    opacity: 1;
    font-weight: 700;
    font-size: 1.2rem;
}

.index_case .industry li:nth-child(1){
    left: 15%;
    animation-delay: -0.8s;
}
.index_case .industry li:nth-child(2){
    left: 38%;
    animation-delay: -1.95s;
}
.index_case .industry li:nth-child(3){
    left: 61%;
    animation-delay: -3.1s;
}
.index_case .industry li:nth-child(4){
    left: 85%;
    animation-delay: -4.3s;
}

.index_case .industry li .cirlce {
    position: relative;
    width: 1.2vw;
    height: 1.2vw;
    border: 1px solid #fff;
    border-radius: 50%;
}
.index_case .industry li .cirlce::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: .8vw;
    height: .8vw;
    border-radius: 50%;
    background-color: #fff;
    content: ""
}
@keyframes txt_wave {
    0%,100% {
        transform: translateY(0.6vw);
    }

    50% {
        transform: translateY(-2.72vw);
    }
}
.index_case .industry li .txt {
    color:#fff;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.5rem;
    white-space: nowrap;
}
.index_case .industry li .icon {
    display: flex;
    width:5rem;
    height:5rem;
    color:#fff;
    position: absolute;
    top: -6.5rem;
    left: 50%;
    transform: translateX(-50%) scale(0) rotate(0deg);
    justify-content: center;
    align-items: center;
    background: var(--comcolor);
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s;
}
.index_case .industry li .icon img{
    width:70%;
}
.index_case .industry li .icon:after {
    position: absolute;
    content: '';
    width:5.8rem;
    height:5.8rem;
    border-radius: 50%;
    border:1px dashed #fff;
}
.index_case .industry li.act .icon {
    transform: translateX(-50%) scale(1) rotate(360deg);
    opacity: 1;
    transition: 0.5s;
}

@media  screen and (max-width: 1000px){
    .index_case .introduce .desc {
        width:100%;
    }
    .index_case .industry li .icon {
        width: 4rem;
        height: 4rem;
        top: -5.5rem;
    }
    .index_case .industry li .icon:after {
        width:4.8rem;
        height:4.8rem;
    }
}

@media  screen and (max-width: 500px){
    .index_case {
        height:70vh;
    }
    .index_case .title {
        top:10%;
    }
    .index_case .title h3 {
        font-size: 2rem;
    }
    .index_case .title .cn {
        font-size: 2rem;
    }
    .index_case .title .en {
        font-size: 3.5rem;
        top: -2rem;
    }
    .index_case .introduce {
        top:25%;
    }
    .index_case .introduce li .tit{
        font-size: 1.5rem;
    }
    .index_case .industry li .icon {
        width: 3rem;
        height: 3rem;
        top: -4.5rem;
    }
    .index_case .industry li .icon:after {
        width:3.8rem;
        height:3.8rem;
    }
    .index_case .industry li .txt {
        font-size: 1rem;
    }
}









.why-choose-section {
    padding: 3rem 0;
    background: url('../images/abbg.webp') no-repeat center center / cover;
    color: #252525;
    position: relative;
    z-index: 9;
}
.why-choose-section .section-header {
    margin-bottom: 3rem;
}
.why-choose-section .sub-title {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.why-choose-section .title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.why-choose-section .desc {

}

.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
    color:#ffffff;
}
.why-choose-section .feature-card {
    background-color: #0000007a;
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 0.3rem solid var(--subcolor);
    transition: all 0.3s ease;
}
.why-choose-section .feature-card:hover {
    background-color: #00000063;
    transform: translateY(-0.3rem);
}
.why-choose-section .feature-icon img{
    width: 2.5rem;
    margin-bottom: 0.5rem;
}
.why-choose-section .feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}
.why-choose-section .feature-desc {
    line-height: 1.5;
    opacity: 0.9;
}
.why-choose-section .contact-us-block {
    background-color: #0000008f;
}
@media (max-width: 768px) {
    .why-choose-section .section-header {margin-bottom: 1rem;}
    .why-choose-section .feature-card {
        padding: 1rem;
    }
    .why-choose-section .features-grid { margin:1rem 0;}
}






.workshop-section {width: 100%;padding: 3rem 0;position: relative;z-index: 9;background: #ffffff;}
.workshop-banner {
    width: 100%;
    aspect-ratio: 1920/960;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s,visibility .4s;
    position: relative;
    z-index: 0
}
.workshop-banner.isReady {
    opacity: 1;
    visibility: visible
}
.workshop-banner-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0
}
.workshop-banner-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
    box-shadow: 0 6px 12px 0 rgba(0,0,0,.2)
}
.workshop-banner .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}
.workshop-banner.typea.anmi .workshop-banner-slide {
    transition: opacity .6s ease-out,visibility .6s ease-out
}
.workshop-banner.typea .workshop-banner-slide {
    opacity: 0;
    visibility: hidden
}
.workshop-banner.typea .workshop-banner-slide.active {
    opacity: 1;
    visibility: visible
}
.workshop-banner.typeb.anmi .workshop-banner-slide.prev {
    opacity: 1
}
.workshop-banner.typeb.anmi .workshop-banner-slide.next {
    -webkit-animation: banner-next-anim .6s ease-out forwards;
    animation: banner-next-anim .6s ease-out forwards
}
.workshop-banner.typeb .workshop-banner-slide.active {
    z-index: 1
}
.workshop-banner.typeb .workshop-banner-slide.prev {
    z-index: 3;
    right: auto;
    left: 0;
    width: 100%;
    transform: skew(-17deg);
    transform-origin: left top;
    -webkit-animation: banner-active-anim .6s ease-out forwards;
    animation: banner-active-anim .6s ease-out forwards;
    opacity: 0
}
.workshop-banner.typeb .workshop-banner-slide.prev .img {
    transform: skew(17deg);
    transform-origin: left top
}
.workshop-banner.typeb .workshop-banner-slide.next {
    z-index: 2;
    width: 15%;
    transform: skew(-17deg);
    transform-origin: left bottom
}
.workshop-banner.typeb .workshop-banner-slide.next .img {
    left: auto;
    right: 0;
    transform: skew(17deg);
    transform-origin: right bottom
}
.workshop-banner-btn {
    width: 5rem;
    height: 5rem;
    position: absolute;
    right: 6%;
    top: 50%;
    z-index: 2;
    margin-top: -2.5rem;
    cursor: pointer
}
.workshop-banner-btn:hover .btn-img:after {
    opacity: 1
}
.workshop-banner-btn .btn {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg,#104383,#3578a7);
    border-radius: 50%;
    padding: 4px
}
.workshop-banner-btn:after,.workshop-banner-btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -4.3rem 0 0 -4.3rem;
    width: 8.6rem;
    height: 8.6rem;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: scale(.2);
    z-index: 0;
    -webkit-animation: banner-btn-anim 3s ease-out infinite;
    animation: banner-btn-anim 3s ease-out infinite
}
.workshop-banner-btn:before {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}
.workshop-banner-btn:after {
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}
.workshop-banner-btn .btn-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: no-repeat 50%/cover;
    position: relative;
    z-index: 1
}
.workshop-banner-btn .btn-img:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0,0,0,.4) url(../images/xiangyoujiantou.png) no-repeat 50%/30px;
    opacity: 0;
    transition: opacity .3s
}
@-webkit-keyframes banner-active-anim {
    0% {
        width: 100%
    }

    80% {
        width: 0
    }

    to {
        width: 0
    }
}

@keyframes banner-active-anim {
    0% {
        width: 100%
    }

    80% {
        width: 0
    }

    to {
        width: 0
    }
}

@-webkit-keyframes banner-next-anim {
    0% {
        width: 0
    }

    80% {
        width: 0
    }

    to {
        width: 15%
    }
}

@keyframes banner-next-anim {
    0% {
        width: 0
    }

    80% {
        width: 0
    }

    to {
        width: 15%
    }
}

@-webkit-keyframes banner-btn-anim {
    0% {
        opacity: 0;
        transform: scale(.2)
    }

    5% {
        opacity: 1
    }

    50% {
        opacity: .8
    }

    to {
        opacity: 0;
        transform: scale(1)
    }
}

@keyframes banner-btn-anim {
    0% {
        opacity: 0;
        transform: scale(.2)
    }

    5% {
        opacity: 1
    }

    50% {
        opacity: .8
    }

    to {
        opacity: 0;
        transform: scale(1)
    }
}

@-webkit-keyframes mouse-anim {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        transform: translateY(20px);
        opacity: .5
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes mouse-anim {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        transform: translateY(20px);
        opacity: .5
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@-webkit-keyframes amap-icon-anim {
    0% {
        opacity: 0;
        transform: scale(.1)
    }

    5% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: scale(1)
    }
}

@keyframes amap-icon-anim {
    0% {
        opacity: 0;
        transform: scale(.1)
    }

    5% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: scale(1)
    }
}







.inside-banner {
    position: relative;
    overflow: hidden;
    height: 50rem;
}
.inside-banner:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    background-color: #000;
    opacity: .25
}
.inside-banner img {
    width: 100%;
    height:100%;
    object-fit: cover;
    position: fixed;
    top:0;
}
.inside-banner .inside-features {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    color: #fff;
    text-align: center
}
.inside-banner .title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px
}
.inside-banner .content {
    margin-top: 30px;
    font-size: 1.2rem;
    line-height: 2.4rem
}

@media (max-width: 768px) {
    .inside-banner {
        height: 40rem;
    }
    .inside-banner .inside-features {
        width: 95%;
    }
    .inside-banner .title { font-size: 1.8rem;}
}




.news-section {position: relative;padding: 3rem 0;z-index: 9;background: #ffffff;}
.news-section .features-grid { display: flex;margin-top: 2rem; }
.news-section .feature-card {width:45%;box-shadow: 0 0 0.3rem #eee;}
.news-section .feature-card2 {width:55%;padding-left:1%;display: flex;flex-direction: column;justify-content:flex-start;}


.news-section .feature-card .item{width:100%;}
.news-section .feature-card .item .img{width: 100%;overflow: hidden;transition: all .3s;position:relative;padding:1rem;}
.news-section .feature-card .item .img img{width: 100%;transition: all .3s;aspect-ratio: 6 / 4;object-fit: cover;}
.news-section .feature-card .item .wz{position: relative;padding:1.25rem}
.news-section .feature-card .item .wz h3{font-size: 1.2rem;line-height:1.5;color: #000;margin-bottom: 1.25rem;transition: all .3s;overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;}
.news-section .feature-card .item .wz .time{font-size: 1rem;color: #595353;margin-bottom: 1rem;}
.news-section .feature-card .item .wz .desc{font-size: 0.9rem;line-height: 1.8rem;height:3.6rem; overflow: hidden;color: #595353;transition: all .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;}


.news-section .feature-card2 .item{width:100%;height: 33.33%;border-bottom:1px solid #e1e1e1;}
.news-section .feature-card2 .item a {height:100%;display: flex;align-items: center;justify-content: space-between;}
.news-section .feature-card2 .item .img{width: 35%;overflow: hidden;transition: all .3s;position:relative;padding:0.5rem;}
.news-section .feature-card2 .item .img img{width: 100%;transition: all .3s;aspect-ratio: 6 / 4;object-fit: cover;}
.news-section .feature-card2 .item .wz{width: 65%;position: relative;padding:0 1rem}
.news-section .feature-card2 .item .wz h3{font-size: 1.1rem;line-height:1.5;color: #000;margin-bottom: 1rem;transition: all .3s;overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;}
.news-section .feature-card2 .item .wz .time{font-size: 1rem;color: #595353;margin-bottom: 1rem;}
.news-section .feature-card2 .item .wz .desc{font-size: 0.9rem;line-height: 1.2;height: 3.25rem; overflow: hidden;color: #595353;transition: all .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;}

.news-section .item:hover .wz h3{color: var(--comcolor);}
.news-section .item:hover .wz .time,.news-section .item:hover .wz .desc{color:var(--comcolor);}

@media  screen and (max-width: 765px){
    .news-section { padding:1rem 0; }
    .news-section .features-grid { display: block;}
    .news-section .feature-card {width:100%;margin-bottom: 1rem;}
    .news-section .feature-card2 {width:100%;padding-left:0;}
    .news-section .feature-card2 .item {margin-bottom: 0.5rem;}
    .news-section .feature-card2 .item .img{width: 50%;}
    .news-section .feature-card2 .item .wz {width: 48%; padding: 0;}
    .news-section .feature-card2nr .item .wz h3{font-size: 1rem;margin-bottom:0.5rem;}
    .news-section .feature-card2 .item .wz .time { margin-bottom:0.5rem;}
    .news-section .feature-card2 .item .wz .desc { line-height: 1.5rem;height:3rem;}
}