﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A365D;
    --accent: #D4A574;
    --gold: #C9A962;
    --light: #F7F9FC;
    --text: #2D3748;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.8;
}

/* ====== HERO SECTION ====== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/01.jpg?ver=2') no-repeat center top;
    background-size: cover;
}

    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(26,54,93,0.92) 0%, rgba(26,54,93,0.75) 60%, rgba(212,165,116,0.4) 100%);
    }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 35px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
}

/* ====== ECONOMY OVERVIEW ====== */
.economy-section {
    padding: 100px 60px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.15rem;
    color: #666;
    max-width: 750px;
    margin: 0 auto;
}

/* Economy Stats Grid */
.economy-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 80px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(26,54,93,0.08);
}

.eco-stat {
    padding: 50px 30px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
}

    .eco-stat:last-child {
        border-right: none;
    }

.eco-stat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
    border-radius: 18px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.eco-stat-num {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.eco-stat-unit {
    font-size: 1rem;
    color: var(--accent);
}

.eco-stat-label {
    font-size: 0.9rem;
    color: #888;
    margin-top: 12px;
}

/* Industry Strategy Cards */
.strategy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-card {
    background: linear-gradient(145deg, white, var(--light));
    border-radius: 24px;
    padding: 45px 35px;
    border: 1px solid rgba(26,54,93,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .strategy-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(26,54,93,0.12);
    }

.strategy-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.strategy-card:nth-child(1) .strategy-icon {
    background: linear-gradient(135deg, #FED7AA, #FDBA74);
}

.strategy-card:nth-child(2) .strategy-icon {
    background: linear-gradient(135deg, #BFDBFE, #93C5FD);
}

.strategy-card:nth-child(3) .strategy-icon {
    background: linear-gradient(135deg, #BBF7D0, #86EFAC);
}

.strategy-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.strategy-text {
    font-size: 0.98rem;
    color: #666;
}

/* ====== INDUSTRIES SECTION ====== */
.industries-section {
    padding: 100px 0 0;
}

/* ---- Industry 1: 纺织服装 ---- */
.industry-1 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 850px;
    background: white;
}

.industry-visual {
    background: url('images/02.jpg') no-repeat center top;
    position: relative;
}

    .industry-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.3) 100%);
    }

.industry-info {
    padding: 90px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #D4A574;
    margin-bottom: 20px;
}

    .industry-tag::before {
        content: '';
        width: 36px;
        height: 2px;
        background: #D4A574;
    }

.industry-name {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.8rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 25px;
}

    .industry-name span {
        display: block;
        font-size: 1.1rem;
        font-weight: 400;
        color: #888;
        font-family: 'Noto Sans SC', sans-serif;
        margin-top: 8px;
    }

.industry-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 2;
    margin-bottom: 32px;
}

.industry-stats-row {
    display: flex;
    gap: 35px;
    margin-bottom: 35px;
}

.ind-stat {
    flex: 1;
    background: var(--light);
    padding: 22px;
    border-radius: 16px;
    text-align: center;
}

.ind-stat-val {
    font-family: 'Noto Serif SC', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.ind-stat-lbl {
    font-size: 0.82rem;
    color: #999;
    margin-top: 6px;
}

.industry-brands {
    margin-top: 10px;
}

.brands-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.brands-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
}

.brand-tag {
    background: white;
    border: 1px solid #E8DFD6;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.88rem;
    color: #555;
    transition: all 0.2s ease;
}

    .brand-tag:hover {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

/* 招聘按钮 */
.hire-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 28px;
    border: none;
    letter-spacing: 0.5px;
}

    .hire-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    }

.hire-btn-icon {
    font-size: 1.2rem;
}

/* 各产业按钮配色 */
.industry-info .hire-btn {
    background: linear-gradient(135deg, var(--primary), #2A4A7D);
    color: white;
    box-shadow: 0 6px 24px rgba(26,54,93,0.25);
}

.i2-info .hire-btn {
    background: linear-gradient(135deg, #EA580C, #C2410C);
    color: white;
    box-shadow: 0 6px 24px rgba(234,88,12,0.3);
}

.i3-info .hire-btn {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1.5px solid rgba(134,239,172,0.5);
}

    .i3-info .hire-btn:hover {
        background: rgba(134,239,172,0.2);
        box-shadow: 0 8px 30px rgba(134,239,172,0.15);
    }

.i4-header-text .hire-btn {
    background: linear-gradient(135deg, #2D5A27, #3D7A37);
    color: white;
    box-shadow: 0 6px 24px rgba(45,90,39,0.25);
}

.i5-content .hire-btn {
    background: linear-gradient(135deg, #F4A460, #E88B3C);
    color: white;
    box-shadow: 0 6px 24px rgba(244,164,96,0.35);
}

/* ---- Industry 2: 玩具创意 ---- */
.industry-2 {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 50%, #FEF3C7 100%);
    padding: 90px 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.i2-info {
    order: 1;
}

.i2-img {
    order: 2;
}

.i2-image {
    width: 100%;
    height: 520px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 25px 80px rgba(180,83,9,0.15);
}

.i2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #EA580C;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 22px;
    box-shadow: 0 4px 15px rgba(234,88,12,0.1);
}

.i2-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.8rem;
    color: #7C2D12;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .i2-title span {
        display: block;
        font-size: 1rem;
        color: #9A3412;
        margin-top: 8px;
    }

.i2-desc {
    font-size: 1.05rem;
    color: #78350F;
    line-height: 2;
    margin-bottom: 30px;
}

.i2-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.i2-stat {
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(234,88,12,0.06);
}

.i2-stat-v {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #EA580C;
}

.i2-stat-l {
    font-size: 0.8rem;
    color: #9A3412;
    margin-top: 5px;
}

.i2-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
}

.i2-brand {
    background: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #7C2D12;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

/* ---- Industry 3: 化工塑料 ---- */
.industry-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 800px;
}

.i3-visual {
    background: url('images/03.jpg') no-repeat center top;
    position: relative;
}

    .i3-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(16,185,129,0.2) 0%, transparent 100%);
    }

.i3-info {
    background: #064E3B;
    color: white;
    padding: 90px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.i3-tag {
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #86EFAC;
    margin-bottom: 20px;
}

.i3-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .i3-title span {
        display: block;
        font-size: 1rem;
        opacity: 0.7;
        margin-top: 8px;
    }

.i3-desc {
    font-size: 1.02rem;
    opacity: 0.9;
    line-height: 2;
    margin-bottom: 30px;
}

.i3-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.i3-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.i3-stat-v {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #86EFAC;
}

.i3-stat-l {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 5px;
}

.i3-companies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.i3-co {
    background: rgba(134,239,172,0.12);
    border: 1px solid rgba(134,239,172,0.2);
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
}

/* ---- Industry 4: 大健康 ---- */
.industry-4 {
    background: linear-gradient(180deg, #F5F9F5 0%, #FFFFFF 100%);
    padding: 90px 60px;
}

.i4-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.i4-header-text {
}

.i4-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 3px;
    color: #4A7C42;
    margin-bottom: 20px;
}

    .i4-tag::before {
        content: '';
        width: 36px;
        height: 2px;
        background: #4A7C42;
    }

.i4-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.8rem;
    color: #2D5A27;
    line-height: 1.2;
    margin-bottom: 20px;
}

.i4-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 2;
}

.i4-img {
    height: 380px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(45,90,39,0.12);
}

.i4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.i4-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(45,90,39,0.07);
    transition: transform 0.3s ease;
}

    .i4-card:hover {
        transform: translateY(-6px);
    }

.i4-card-top {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.i4-card:nth-child(1) .i4-card-top {
    background: linear-gradient(135deg, #DDD6FE, #C4B5FD);
}

.i4-card:nth-child(2) .i4-card-top {
    background: linear-gradient(135deg, #FECACA, #FCA5A5);
}

.i4-card:nth-child(3) .i4-card-top {
    background: linear-gradient(135deg, #BFDBFE, #93C5FD);
}

.i4-card:nth-child(4) .i4-card-top {
    background: linear-gradient(135deg, #BBF7D0, #86EFAC);
}

.i4-card-body {
    padding: 20px;
    text-align: center;
}

.i4-card-name {
    font-weight: 600;
    color: #2D5A27;
    margin-bottom: 5px;
}

.i4-card-type {
    font-size: 0.82rem;
    color: #888;
}

/* ---- Industry 5: 食品饮料 ---- */
.industry-5 {
    position: relative;
    min-height: 850px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.i5-bg {
    position: absolute;
    inset: 0;
    background: url('images/04.jpg') no-repeat center top;
}

.i5-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(44,24,16,0.97) 0%, rgba(44,24,16,0.85) 60%, transparent 100%);
}

.i5-content {
    position: relative;
    z-index: 10;
    grid-column: 1 / 2;
    padding: 90px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.i5-tag {
    font-size: 0.82rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #F4A460;
    margin-bottom: 20px;
}

.i5-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

    .i5-title span {
        display: block;
        font-size: 1.1rem;
        opacity: 0.75;
        margin-top: 8px;
        font-family: 'Noto Sans SC', sans-serif;
    }

.i5-desc {
    font-size: 1.03rem;
    opacity: 0.9;
    line-height: 2;
    margin-bottom: 30px;
}

.i5-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.i5-stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
}

.i5-stat-v {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.i5-stat-l {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 5px;
}

.i5-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.i5-prod {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 18px;
    border-radius: 14px;
    text-align: center;
}

.i5-prod-emoji {
    font-size: 2rem;
    margin-bottom: 8px;
}

.i5-prod-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ====== SUMMARY ====== */
.summary {
    padding: 100px 60px;
    background: var(--primary);
    color: white;
    text-align: center;
}

    .summary h2 {
        font-family: 'Noto Serif SC', serif;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .summary p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 800px;
        margin: 0 auto 40px;
    }

.summary-numbers {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.sum-item {
    text-align: center;
}

.sum-num {
    font-family: 'Noto Serif SC', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
}

.sum-lbl {
    font-size: 1rem;
    opacity: 0.75;
    margin-top: 8px;
}

/* ====== FOOTER ====== */
.footer {
    padding: 50px 60px;
    background: #111827;
    color: white;
    text-align: center;
}

.footer-logo {
    font-family: 'Noto Serif SC', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .economy-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .eco-stat:nth-child(n+4) {
        display: none;
    }

    .strategy-cards {
        grid-template-columns: 1fr;
    }

    .industry-1, .industry-3 {
        grid-template-columns: 1fr;
    }

    .industry-2 {
        grid-template-columns: 1fr;
        padding: 60px 30px;
    }

    .industry-4 .i4-header {
        grid-template-columns: 1fr;
    }

    .i4-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .i5-content {
        padding: 60px 40px;
    }

    .hire-btn {
        padding: 12px 26px;
        font-size: 0.88rem;
        margin-top: 22px;
    }
}
a {
    color: unset;
}
.footer{
    display:none;
}
.footer2 {
    padding: 50px 60px;
    background: #111827;
    color: white;
    text-align: center;
}