/* 页面横幅样式 */
.page-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 品牌介绍样式 */
.brand-intro {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.intro-text {
    color: #666;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 1rem;
}

.intro-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 核心价值观样式 */
.core-values {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-item h3 {
    color: #4a6741;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
}

/* 团队介绍样式 */
.team-intro {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.position {
    display: block;
    color: #4a6741;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-info p {
    color: #666;
    line-height: 1.6;
}

/* 联系我们样式 */
.contact-us {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: #4a6741;
    margin-bottom: 1rem;
}

.info-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

/* 留言反馈样式 */
.feedback {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.feedback-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #4a6741;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #3a5233;
}

/* 响应式设计 */
@media (min-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
} 