.c-news {
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FAF9 100%);
}

.news-container {
    display: flex;
    flex-direction: column;
}

.news-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news-title {
    font-weight: 500;
    font-size: 48px;
    color: #313332;
}

.news-title-en {
    font-weight: 400;
    font-size: 16px;
    color: #B4BBB9;
    text-transform:uppercase;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #FFFFFF;
    padding-bottom: 0.32rem;
}

.news-item-img,
.news-item-img img {
    width: 100%;
    height: 3.56rem;
    object-fit: cover;
}

.news-item-title {
    margin-top: 0.13rem;
    font-weight: 500;
    font-size: 0.2rem;
    color: #313332;
    display: -webkit-box; /* 将元素设置为弹性伸缩盒子模型 */
    -webkit-box-orient: vertical; /* 设置伸缩盒对象的子元素垂直排列 */
    -webkit-line-clamp: 1; /* 限制文本显示的行数 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 文本溢出时显示省略号 */
}

.news-item-title:hover {
    color: #09BD81;
}

.news-item-txt {
    padding: 0 0.24rem;
}

.news-item-desc {
    margin-top: 0.12rem;
    font-weight: 400;
    font-size: 0.16rem;
    color: #727776;
    line-height: 0.28rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-bottom {
    display: flex;
    margin-top: 0.4rem;
    justify-content: space-between;
}

.news-main {
    display: flex;
    margin: 0.3rem 0 0.4rem 0;
    .a-box{
        display: block;
        width: 50%;
    }
}
.main-left{
    width: 100%;
}
.main-left img {
    width: 100%;
    height: 3.56rem;
    object-fit: cover;
}

.main-right {
    width: 50%;
    height: 3.56rem;
    background: #F2F7F6;
    display: flex !important;
    align-items: center;
    box-sizing: border-box;
}
.main-right:hover {
    .main-title{
        color: #09BD81;
    }   
}
.right-info {
    display: flex;
    justify-content: space-between;
}

.info-line {
    width: 1px;
    height: 100%;
    background: #E8E8E8;
}

.info-date {
    width: 1.68rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.date-up {
    font-weight: 400;
    font-size: 0.48rem;
    color: #727776;
    line-height: 0.48rem;
}

.date-down {
    font-weight: 400;
    font-size: 0.24rem;
    color: #727776;
    line-height: 0.24rem;
    margin-top: 0.2rem;
}

.main-body {
    flex: 1;
    border-left: 1px solid #E8E8E8;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.main-title {
    font-weight: 500;
    font-size: 0.2rem;
    line-height: 0.2rem;
    display: -webkit-box; /* 将元素设置为弹性伸缩盒子模型 */
    -webkit-box-orient: vertical; /* 设置伸缩盒对象的子元素垂直排列 */
    -webkit-line-clamp: 1; /* 限制文本显示的行数 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 文本溢出时显示省略号 */
}

/* .main-title:hover {
    color: #09BD81;
} */

.main-desc {
    font-weight: 400;
    font-size: 0.16rem;
    color: #727776;
    line-height: 0.28rem;
    margin-top: 0.18rem;
    display: -webkit-box; /* 将元素设置为弹性伸缩盒子模型 */
    -webkit-box-orient: vertical; /* 设置伸缩盒对象的子元素垂直排列 */
    -webkit-line-clamp: 2; /* 限制文本显示的行数 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 文本溢出时显示省略号 */
}

.news-item-time {
    font-weight: 400;
    font-size: 0.16rem;
    color: #727776;
}

.news-item-next {
    width: 0.3rem;
    height: 0.06rem;
}

.news-laypage-all {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
/* 轮播图 */
.banner-box{
    position: relative;
    .banner-img-box{
        height: 7rem;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }
    .banner-query{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        .query-box{
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            h1{
                font-size: 0.68rem;
                line-height: 0.68rem; 
                span{
                     color: #09BD81;                                         
                }
            }
            p{
                font-weight: 400;
                font-size: 0.26rem;
                color: #313332;
                line-height: 0.48rem;
                margin-top: 0.34rem;
            }
            .layui-input-group{
                margin-top: 0.6rem;
                width: 49.30%;
                border: 1px solid #09BD81;
                border-radius: 0.32rem;
                overflow: hidden;
                .layui-input{
                    width: 100%;
                    height: 0.64rem;
                    background-color: #FFFFFF;
                    border-radius: 0;
                    border: 1px solid #fff;
                    padding-left: 0.32rem;
                    font-weight: 400;
                    font-size: 0.2rem;
                    color: #333;                  
                }
                .layui-input:focus, .layui-textarea:focus {
                    border-color: #ffffff !important;
                    box-shadow: 0 0 0 3px rgba(22, 183, 119, .08);
                }
                .layui-input:hover, .layui-textarea:hover {
                    border-color: #fff !important;
                }
                .layui-input-split{
                    border-left: none;                                    
                }
                .layui-input-suffix{
                    width: 1.58rem;
                    padding-right: 0.04rem;
                    background-color: #fff;
                    
                    span{
                        display: block;
                        width: 100%;
                        height: 0.56rem;
                        line-height: 0.56rem;
                        background-color: #09BD81;
                        border-radius: 0.28rem;
                        margin-right: -0.02rem;
                        color: #fff;
                        font-size: 0.26rem;
                        font-weight: 400;
                        cursor: pointer;
                    }
                }
            }
        }
    }
}
@media (max-width: 800px) {
    .banner-box .banner-query .query-box .layui-input-wrap {
        width: 80%;
     }
    .news-main{
        flex-direction: column;        
    }
    .news-main a{
        width: 100%;
    }
    .news-main .a-box{
        width: 100% !important; 
    }
    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.2rem;
    }
}
/* 轮播图 */
/* 新闻列表 */
.newsContainer-box .nwes-top-left-img{
    height: 3.56rem;        
}
.newsContainer-box .nwes-top-left-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* 新闻列表 */