/* ====================
   关于我们页面专属样式
   ==================== */

/* 页面标题横幅 */
.about-banner {
    background: linear-gradient(135deg, #5b7ba5 0%, #4a698f 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.about-banner h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* 主内容区域 */
.about-main {
    padding: 40px 0;
    background: #fbfaff;
}

.about-container {
    max-width: 1084px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 内容卡片 */
.about-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

/* 章节标题 */
.about-section {
    margin-bottom: 40px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

/* 段落样式 */
.about-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
    text-indent: 2em;
}

.about-text:first-of-type {
    margin-top: 15px;
}

/* 联系我们列表 */
.contact-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.contact-item {
    display: flex;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-label {
    flex-shrink: 0;
    width: 80px;
    font-weight: 600;
    color: var(--text-main);
}

.contact-value {
    flex: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-banner h1 {
        font-size: 1.5rem;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-content {
        padding: 25px;
    }

    .about-section-title {
        font-size: 1.25rem;
    }

    .about-text {
        font-size: 0.875rem;
        text-indent: 0;
    }

    .contact-item {
        flex-direction: column;
        gap: 5px;
    }

    .contact-label {
        width: auto;
    }
}
