.honor {
    background: #F5F7F6;
    /* padding: 80px 0 50px 0; */
}

.honor-banner {
    position: absolute;
    top: 42%;
    left: 12.67%;
    display: flex;
    justify-content: center;
}

.honor-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.honor-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.honor-title {
    font-weight: 500;
    font-size: 48px;
    color: #313332;
}

.honor-title-en {
    font-weight: 400;
    font-size: 16px;
    color: #B4BBB9;
}

.honor-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    background: url("../images/about/dian.png");
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.honor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; /* 改为100%自适应 */
    /* 限制最大宽度max-width: 342px;  */
    /* height: 5.04rem; */
    /* background: url("../images/about/honor-bg.png");
    background-size: cover; */
    background-position: center;
    z-index: 0;
    justify-self: center; /* 网格项居中 */
    position: relative;
    margin-top: 0.6rem;
}
.honor-container-text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.honor-item-top {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    background: url("../images/about/honor.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 26px;
    color: #323333;
}
.honor-img-box{
    width: 100%;
    img{
        width: 100%;
        object-fit: cover;
    }
}
.honor-item-info {
    /* width: 294px;
    height: 228px; */
    width: 80%;
    margin: 0 auto;
    margin-top: 20%;
}

.honor-item-info img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honor-area {
    max-width: 1440px;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.honor-area-title {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 700;
    font-size: 64px;
    z-index: 2;
    color: #313332;
    text-align: left;
}

.honor-area-title i {
    font-style: normal;
    color: #09BD81;
}

.honor-area-desc {
    margin-top: 15px;
    font-weight: 400;
    font-size: 26px;
    color: #313332;
    line-height: 48px;
    text-align: left;
}
/* 轮播图 */
.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.6rem;
                line-height: 0.6rem; 
                span{
                     color: #09BD81;                                         
                }
            }
            p{
                font-weight: 400;
                font-size: 0.26rem;
                color: #313332;
                line-height: 0.26rem;
                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%;
                }
            }
        }
    }
}
/* 轮播图 */