/* 页面标题样式 */
.page-header.honors-header {
    margin-top: 70px;
    height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 10% 50px;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.4) 100%
    );
    z-index: 1;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: brightness(0.9);
}

.page-header h1 {
    color: white;
    font-size: 3.2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    position: relative;
    z-index: 2;
    font-weight: 600;
    margin: 0;
}

/* 企业荣誉内容样式 */
.about-section {
    padding: 6rem 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-content {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-content:hover img {
    transform: scale(1.05);
}

.text-content {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.text-content p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-content p:last-child {
    margin-bottom: 0;
}

/* 图片墙样式 */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    background: white;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.8rem;
    background: rgba(0,0,0,0.8);
    color: white;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* 响应式适配 */
@media screen and (max-width: 992px) {
    .about-section {
        padding: 5rem 4%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .text-content {
        padding: 1.8rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0.8rem;
    }

    .gallery-item {
        aspect-ratio: 4/5;
    }

    .gallery-item img {
        padding: 0.8rem;
    }
}

@media screen and (max-width: 768px) {
    .page-header {
        height: 450px;
    }

    .page-header h1 {
        font-size: 2.4rem;
    }

    .about-section {
        padding: 4rem 3%;
    }

    .about-content {
        gap: 2.5rem;
    }

    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0.5rem;
    }

    .gallery-item {
        aspect-ratio: 1/1;
    }

    .gallery-item img {
        padding: 0.5rem;
    }

    .gallery-caption {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .page-header {
        height: 350px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-section {
        padding: 3rem 2%;
    }

    .text-content {
        padding: 1.5rem;
    }

    .text-content p {
        font-size: 0.95rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }
} 