/* 关于页面样式 */

/* 公司环境展示图片样式 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    text-align: center;
}

.gallery-item h3 {
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.gallery-item .gallery-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}


.about-preview {
    padding: 80px 0;
    background: #000;
}
.about-preview .container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-content {
    flex: 1;
    padding: 20px;
}
.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
}
.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #fff;
}
.about-image {
    flex: 1;
}
.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}