/* 品牌故事页面特定样式 */
.brand-story-header {
    background-color: #333;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/封面.png');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 120px;
}

.brand-story-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brand-story-header p {
    font-size: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.brand-story-content {
    padding: 100px 0;
}

.story-section {
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.story-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.story-section.with-image {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-section.with-image.reverse {
    grid-template-columns: 1fr 1.5fr;
}

.story-section.with-image.reverse .text-content {
    order: 2;
}

.story-section.with-image.reverse .image-content {
    order: 1;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.story-section.conclusion {
    text-align: center;
    background: var(--light-bg);
    padding: 60px;
    border-radius: 15px;
    margin-top: 100px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .brand-story-header {
        margin-top: 100px;
        height: 300px;
    }

    .brand-story-header h1 {
        font-size: 2rem;
    }

    .story-section.with-image,
    .story-section.with-image.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-section.with-image .text-content,
    .story-section.with-image .image-content {
        order: unset;
    }

    .story-section h2 {
        font-size: 1.8rem;
    }

    .story-section p {
        font-size: 1rem;
    }

    .story-section.conclusion {
        padding: 30px;
    }
} 