﻿/* 关于我们页面样式 - 基于母版页设计系统 */
:root {
    --banner-height: 300px;
    --banner-text-color: #fff;
    --breadcrumb-bg: #f8f9fa;
    --breadcrumb-color: #6c757d;
    --breadcrumb-active-color: #2c3e50;
    --content-bg: #fff;
    --primary-text-color: #2c3e50;
    --secondary-text-color: #555;
    --highlight-color: #2db7f5;
    --border-color: #eee;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* 横幅区域 - 统一风格 */
.HttpBannerBox {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    height: var(--banner-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--banner-text-color);
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

    .HttpBannerBox::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

.HttpBannerText {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

    .HttpBannerText h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 15px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

/* 面包屑导航与切换按钮 */
.wherebg {
    background-color: var(--breadcrumb-bg);
    padding: 15px 0;
    margin-bottom: 30px;
}

.whereBox {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.where_btn {
    color: var(--breadcrumb-color);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

    .where_btn:hover {
        color: var(--primary-color);
        background-color: rgba(52, 152, 219, 0.1);
    }

.where_btnX {
    margin-right: auto;
}

.where_line {
    color: var(--border-color);
}

.whereBox a[itemprop="item"] {
    color: var(--breadcrumb-color);
}

    .whereBox a[itemprop="item"]:hover {
        color: var(--primary-color);
    }

.whereBox span[itemprop="name"] {
    color: var(--breadcrumb-active-color);
}

/* 主要内容区域 */
.NewsBox {
    background-color: var(--content-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 40px;
}

.ContentText {
    color: var(--secondary-text-color);
    line-height: 1.8;
}

    .ContentText h2 {
        color: var(--highlight-color);
        font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 微软雅黑, Arial, sans-serif;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .ContentText h3 {
        color: var(--highlight-color);
        font-size: 1.4rem;
        margin: 1.5rem 0 1rem;
        font-weight: 500;
    }

    .ContentText p {
        margin-bottom: 1.2rem;
    }

    .ContentText ul {
        list-style: disc inside;
        color: var(--primary-text-color);
        margin: 1rem 0;
        padding-left: 1rem;
    }

    .ContentText li {
        margin-bottom: 0.5rem;
    }

    .ContentText strong {
        color: var(--primary-text-color);
        font-weight: 600;
    }

/* 结构化数据 - 隐藏但可被搜索引擎读取 */
[vocab="https://schema.org/"] {
    display: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    :root {
        --banner-height: 200px;
    }

    .HttpBannerText h1 {
        font-size: 1.8rem;
    }

    .whereBox {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .where_btnX {
        margin-right: 0;
    }

    .NewsBox {
        padding: 20px;
    }

    .ContentText h2 {
        font-size: 1.5rem;
    }

    .ContentText h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .HttpBannerText h1 {
        font-size: 1.5rem;
    }

    .ContentText h2 {
        font-size: 1.3rem;
    }

    .ContentText {
        font-size: 0.95rem;
    }
}
