.solutions-content {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px auto;
    max-width: 1600px;
}

.about-1 {
    padding: 60px 40px;
}

.about-1-top {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-1-left {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.about-1-left h2 {
    color: #09962c;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.about-1-left h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: 6px;
    background: #09962c;
    border-radius: 3px;
}

.about-1-left h3 {
    font-size: 36px;
    color: #222;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.about-1-left p {
    color: #555;
    font-size: 18px;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
}


.about-1-right {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    max-height: 500px;
}

.about-1-right:hover {
    transform: translateY(-8px);
}

.about-1-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-1-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 12px;
}

.item {
    flex: 0 0 calc(16.666% - 20px);
    min-width: 150px;
    text-align: center;
    padding: 20px 10px;
    margin: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: white;
}

.item span {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #e90a54;
    margin-bottom: 8px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item em {
    font-style: normal;
    font-size: 18px;
    color: #333;
    display: block;
}

/* 荣誉区域整体样式 */
.honor-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 背景遮罩层 */
.honor-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

/* 荣誉内容容器 */
.honor-content > * {
    position: relative;
    z-index: 2;
}

/* 顶部标题区域 */
.honor-content-top {
    text-align: center;
    max-width: 1600px;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 60px;
}

.honor-content-top h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.honor-content-top h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #07be26;
    border-radius: 2px;
}

.honor-content-top p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 3;
}

/* 荣誉展示区域 */
.honor-swiper {
    max-width: 1600px;
    width: 100%;
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

/* 荣誉项目容器 */
.honor-swiper .swiper-wrapper {
    display: flex;
    flex-direction: row;
}

/* 单个荣誉项目 */
.honor-swiper .swiper-slide {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    flex-shrink: 1;
    width: calc((100%-60)/4);
    height: 460px;
}

.honor-swiper .swiper-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.honor-swiper .swiper-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-bottom: 3px solid #2c5cc5;
}

.honor-swiper .swiper-slide h3 {
    padding: 0 15px;
    text-align: center;
    font-size: 20px;
    color: #373737;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 导航按钮 */
.honor-swiper .nav-buttons-honor {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 999;
}

.honor-swiper .swiper-button-prev,
.honor-swiper .swiper-button-next {
    width: 60px;
    height: 60px;
    background: #03860a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.honor-swiper .swiper-button-prev:hover,
.honor-swiper .swiper-button-next:hover {
    background: #1a3a8f;
    transform: scale(1.1);
}

.honor-swiper .swiper-button-prev i,
.honor-swiper .swiper-button-next i {
    font-size: 30px;
    color: white;
    font-weight: bold;
}


/* 响应式设计 */
@media (max-width: 1200px) {
    .item {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .about-1-top {
        flex-direction: column;
    }
    
    .about-1-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .solutions-content{
        margin: 0 0;
    }
    .item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .header-content {
        flex-direction: column;
    }   

    /* 荣誉展示区域 */
    .honor-swiper {
        width: 100%;
        position: relative;
        padding: 0 20px;
        overflow: hidden;
    }
    /* 单个荣誉项目 */
    .honor-swiper .swiper-slide {
        width: 100%!important;
        height: 360px;
    }    
    .honor-swiper .swiper-slide img {
        height: 320px;
    }    
    
}

@media (max-width: 576px) {    
    
    .about-1 {
        padding: 40px 20px;
    }
    
    .about-1-left h3 {
        font-size: 28px;
    }
}