﻿
body {
}



/* 子页面标题区域 */
.subpage-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 102, 204, 0.8)), url('../../Image/pic04.jpg');
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

    .subpage-hero h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

    .breadcrumb li {
        margin: 0 5px;
    }

        .breadcrumb li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }

            .breadcrumb li a:hover {
                color: white;
                text-decoration: underline;
            }

        .breadcrumb li:not(:last-child)::after {
            content: ">";
            margin-left: 10px;
            color: rgba(255,255,255,0.6);
        }

/* 模块内容样式 */
.module-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--secondary);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }

    .section-title p {
        color: var(--gray);
        max-width: 700px;
        margin: 15px auto 0;
        font-size: 1.1rem;
    }

/* 企业概况模块样式 */
.company-intro {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 40px;
    margin-bottom: 40px;
}

    .company-intro h3 {
        color: var(--secondary);
        font-size: 1.8rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--light);
    }

    .company-intro .qygk {
        font-size: 18px;
        text-indent: 2em;
    }


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    text-align: center;
    padding: 25px 20px;
    background: #f0f5ff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }

.stat-value {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 10px;
}


/* 核心价值 */
.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent);
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.value-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    background: rgba(0, 153, 255, 0.1);
}

.value-content {
    padding: 25px;
    text-align: center;
}

    .value-content h4 {
        color: var(--secondary);
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
/* 组织架构 */
.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-level {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.org-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    min-width: 200px;
    margin: 0 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

    .org-item h4 {
        color: var(--primary);
        margin-bottom: 10px;
    }

.org-item-min {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 2px;
    text-align: center;
    min-width: 80px;
    margin: 0 5px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.05);
}

    .org-item-min h4 {
        color: var(--primary);
        margin-bottom: 10px;
        font-size: 14px;
    }

.org-connector {
    height: 40px;
    width: 2px;
    background-color: var(--accent);
    margin: 0 auto;
}

.honors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.honor-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .honor-card:hover {
        transform: translateY(-5px);
    }

.honor-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .honor-img img {
        height: 200px;
    }

.honor-content {
    padding: 20px;
}

    .honor-content h4 {
        color: var(--secondary);
        margin-bottom: 10px;
    }

    .honor-content p {
        color: var(--gray);
    }

/* 业绩时间线 */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--accent);
        left: 50%;
        margin-left: -2px;
    }

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    box-sizing: border-box;
}

    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 60px;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 60px;
    }

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

    .timeline-content::before {
        content: '';
        position: absolute;
        top: 30px;
        width: 20px;
        height: 20px;
        background: var(--accent);
        border-radius: 50%;
    }

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -50px;
}

.timeline-year {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}


.company-env img {
    padding: 10px;
    width: 100%;
}


/* 产品中心样式 */
.product-category {
    margin-bottom: 60px;
}

    .product-category h3 {
        font-size: 1.8rem;
        color: var(--secondary);
        margin-bottom: 30px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--light);
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.product-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e9f0f8;
}

.product-content {
    padding: 20px;
}

    .product-content h4 {
        color: var(--dark);
        margin-bottom: 10px;
        font-size: 1.3rem;
    }

    .product-content p {
        color: var(--gray);
        margin-bottom: 15px;
        min-height: 80px;
    }

/* 人力资源样式 */
.talent-module {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .talent-module h3 {
        color: var(--secondary);
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--light);
    }

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.step-card {
    width: 23%;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

    .step-card:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-5px);
    }

        .step-card:hover .step-icon {
            background: white;
            color: var(--primary);
        }

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.step-card h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .org-level {
        flex-direction: column;
        align-items: center;
    }

    .org-item {
        margin: 10px 0;
        width: 80%;
    }

    .step-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        left: 0 !important;
    }

        .timeline-item:nth-child(even) .timeline-content::before,
        .timeline-item:nth-child(odd) .timeline-content::before {
            left: -40px;
        }

    .step-card {
        width: 100%;
    }
}

/* 子模块导航 */
.submodule-nav {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 40px;
}

    .submodule-nav h3 {
        color: var(--secondary);
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

.submodule-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

    .submodule-links a {
        display: block;
        padding: 12px 15px;
        background: #f8f9fa;
        border-radius: 4px;
        color: var(--dark);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .submodule-links a:hover {
            background: var(--primary);
            color: white;
        }

        .submodule-links a.active {
            background: var(--primary);
            color: white;
        }
