/* 关于我们页面样式 */
.page-aboutus {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
}

/* Banner区域 */
.aboutus-banner {
    width: 100%;
    height: 20vh;
    overflow: hidden;
}

.aboutus-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 内容区域 */
.aboutus-content {
    padding: 40px 0 60px;
}

/* 标题 */
.aboutus-title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: var(--el-text-color-primary);
    margin-bottom: 32px;
}

/* 双横线分割线 */
.aboutus-divider {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.divider-line {
    width: 100%;
    height: 1px;
    background-color: #e8e8e8;
}

/* 富文本内容 */
.aboutus-detail {
}

.rich-text-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--el-text-color-primary);
}

.rich-text-content p {
    margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .aboutus-banner {
        height: 120px;
    }

    .aboutus-content {
        padding: 20px 0 40px;
    }

    .aboutus-title {
        font-size: 24px;
    }

    .rich-text-content {
        font-size: 14px;
    }
}

/* ========== 夜间模式样式 ========== */

/* 页面背景 */
.dark-mode .page-aboutus {
    background-color: var(--el-bg-color-page);
}

/* 分割线 */
.dark-mode .divider-line {
    background-color: var(--el-border-color-light);
}
