/**
 * ================================================
 * 文件：style.css
 * 作用：全站通用样式（除footer外）
 * 说明：包含首页和内页所有样式
 * ================================================
 */

/* ========== 全局重置 ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ========== 响应式容器 ========== */
.container { 
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px; 
}

/* ========== 颜色变量 ========== */
:root {
    --color-primary: #1752a6;
    --color-primary-dark: #0e3b7a;
    --color-accent: #007dcd;
    --color-accent-dark: #e09a0a;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg-light: #f5f7fa;
}

/* ========== Header ========== */
.site-header { width: 100%; background: #fff; position: relative; z-index: 1001; }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    min-height: 110px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 45px; width: auto; }
.brand-text h1 { font-size: 23px; color: #333; font-weight: bold; line-height: 1.2; }
.brand-text span { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; display: block; }

.header-right .phone-info { display: flex; align-items: center; gap: 8px; }
.header-right .fa-phone-alt { color: var(--color-accent); font-size: 20px; }
.header-right .phone-text span { display: block; font-size: 12px; color: #666; }
.header-right .phone-text strong { font-size: 18px; color: var(--color-accent); font-weight: bold; }

/* ========== Header ========== */
.site-header { width: 100%; background: #fff; position: relative; z-index: 1001; }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    min-height: 110px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 45px; width: auto;  margin-top:8px;}
.brand-text h1 { font-size: 23px; color: #333; font-weight: bold; line-height: 1.2; margin-top:5px;}
.brand-text span { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; display: block; }

.header-right .phone-info { display: flex; align-items: center; gap: 8px; }
.header-right .fa-phone-alt { color: var(--color-accent); font-size: 20px; }
.header-right .phone-text span { display: block; font-size: 16px; color: #666; }
.header-right .phone-text strong { font-size: 20px; color: var(--color-accent); font-weight: bold; }

/* 汉堡菜单按钮（移动端） */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s;
}
.navbar-toggle.active .icon-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active .icon-bar:nth-child(2) { opacity: 0; }
.navbar-toggle.active .icon-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== 导航菜单 ========== */
.main-nav { background-color: var(--color-primary); position: sticky; top: 0; z-index: 1000; }
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.nav-list { 
	display: flex; 
}

.nav-list li a {
    display: block;
    padding: 0 48px;
    line-height: 52px;
    color: #fff;
    font-size: 16px;
    position: relative;
    white-space: nowrap;
}
.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #007dcd;
    transition: all 0.3s;
    transform: translateX(-50%);
}
.nav-list li.active a::after,
.nav-list li a:hover::after { width: 60%; }
.nav-list li.active a,
.nav-list li a:hover { background-color: #2f91d1; }

/* 搜索框 */
.search-box { 
    display: flex; 
    height: 32px; 
    margin: 10px 0 10px 10px; 
    background: rgba(255,255,255,0.15); 
    border-radius: 4px; 
    border: 1px solid rgba(255,255,255,0.2); 
}
.search-box input { 
    border: none; 
    background: transparent; 
    color: #fff; 
    padding: 0 10px; 
    width: 120px; 
    outline: none; 
    font-size: 13px; 
}
.search-box input::placeholder { color: rgba(255,255,255,0.6); }
.search-box button { 
    border: none; 
    background: transparent; 
    color: #fff; 
    padding: 0 12px; 
    cursor: pointer; 
    font-size: 14px; 
}
.search-box button:hover { color: var(--color-accent); }

/* ========== Banner ========== */
.hero-banner {
    position: relative;
    height: 660px;
    overflow: hidden;
}
.banner-slider { width: 100%; height: 100%; position: relative; }
.banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slide.active { opacity: 1; transform: scale(1); }
.banner-slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.banner-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}
.banner-slide.active .banner-content h2 {
    opacity: 1;
    transform: translateY(0);
}
.banner-content h2 .highlight { color: var(--color-accent); }
.banner-content p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.banner-slide.active .banner-content p {
    opacity: 0.9;
    transform: translateY(0);
}
.banner-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.7s;
}
.banner-slide.active .banner-btns { opacity: 1; transform: translateY(0); }
.btn {
    padding: 10px 28px;
    border-radius: 25px;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.btn-orange { background-color: var(--color-accent); }
.btn-orange:hover { background-color: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(244,171,16,0.4); }
.btn-blue { background-color: var(--color-primary); border-color: #fff; backdrop-filter: blur(5px); }
.btn-blue:hover { background-color: #fff; color: var(--color-primary); transform: translateY(-2px); }

.banner-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.banner-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.banner-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
    border-color: #fff;
}
.banner-dot:hover { background: rgba(255,255,255,0.8); }

.banner-arrows {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 20;
    pointer-events: none;
}
.banner-arrow {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}
.banner-arrow:hover {
    background: rgba(244,171,16,0.8);
    border-color: var(--color-accent);
    transform: scale(1.1);
}


/* ========== 内页Banner（诚聘英才等） ========== */
.inner-banner {
        width: 100%;          /* 关键：不写死 1900px */
    max-width: 1900px;    /* 最大宽度保持你要的 1900px */
    margin: 0 auto;
    aspect-ratio: 1900 / 495; /* 关键：固定图片比例（你的图比例） */
    position: relative;
    overflow: hidden;
}
.inner-banner .banner-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner .banner-slide.active { opacity: 1; }
.inner-banner .banner-slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.inner-banner .banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
}
.inner-banner .banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
}
.inner-banner .banner-content h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}
.inner-banner .banner-slide.active .banner-content h2 {
    opacity: 1;
    transform: translateY(0);
}
.inner-banner .banner-content h2 .highlight { color: var(--color-accent); }
.inner-banner .banner-content p {
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.inner-banner .banner-slide.active .banner-content p {
    opacity: 0.95;
    transform: translateY(0);
}
.inner-banner .banner-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.inner-banner .banner-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.inner-banner .banner-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
    border-color: #fff;
}
.inner-banner .banner-dot:hover { background: rgba(255,255,255,0.8); }
.inner-banner .banner-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    pointer-events: none;
}
.inner-banner .banner-arrow {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}
.inner-banner .banner-arrow:hover {
    background: rgba(244,171,16,0.8);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

/* ========== Intro Entries ========== */
.intro-entries {
    width: 100%;
    max-width: 1200px;
    margin: -40px auto 0;
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 50;
    padding: 0 15px;
    margin-top: 10px;
}
.entry-card {
    flex: 1;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
}
.entry-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.entry-card:hover img { transform: scale(1.1); }
.entry-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(45, 45, 45, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    color: #fff;
    padding: 15px;
    text-align: center;
}
.entry-card:hover .entry-overlay { opacity: 1; }
.entry-overlay h3 {
    font-size: 18px;
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}
.entry-card:hover .entry-overlay h3 { transform: translateY(0); }
.entry-overlay p {
    font-size: 12px;
    opacity: 0.8;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}
.entry-card:hover .entry-overlay p { transform: translateY(0); }
.entry-overlay .entry-line {
    width: 35px; height: 3px;
    background: var(--color-accent);
    margin: 10px 0;
    transform: scaleX(0);
    transition: transform 0.4s ease 0.15s;
}
.entry-card:hover .entry-overlay .entry-line { transform: scaleX(1); }

/* ========== Section Title ========== */
.section-title {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}
.section-title h2 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}
.section-title span {
    display: block;
    color: #a0c4e8;
    font-size: 13px;
    letter-spacing: 2px;
    margin-top: 5px;
    text-transform: uppercase;
}
.section-title::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: #007dcd;
    margin: 12px auto 0;
}
section { padding: 0 0 0px 0; }

/* ========== Product Center ========== */
.section-product-center { 
    background: #fff; 
    margin-top: 50px;
}
.pc-layout {
    display: flex;
    gap: 0;
    min-height: 500px;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* 左侧分类导航 */
.pc-sidebar {
    width: 200px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.pc-sidebar::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    animation: sidebarScan 4s linear infinite;
    pointer-events: none;
}
@keyframes sidebarScan {
    0% { top: -100%; }
    100% { top: 200%; }
}
.pc-sidebar-title {
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pc-category-list {
    max-height: 450px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.pc-category-list::-webkit-scrollbar { width: 4px; }
.pc-category-list::-webkit-scrollbar-track { background: transparent; }
.pc-category-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.pc-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}
.pc-cat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(244,171,16,0.15), transparent);
    transition: width 0.35s ease;
    pointer-events: none;
}
.pc-cat-item:hover::before { width: 100%; }
.pc-cat-item:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-left-color: rgba(244,171,16,0.5);
}
.pc-cat-item.active {
    color: #fff;
    background: rgba(0,0,0,0.2);
    border-left-color: var(--color-accent);
    font-weight: bold;
}
.pc-cat-item.active::before { width: 100%; background: linear-gradient(90deg, rgba(244,171,16,0.2), transparent); }
.pc-cat-item .cat-name { flex: 1; line-height: 1.4; }
.pc-cat-item .cat-arrow {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: var(--color-accent);
}
.pc-cat-item:hover .cat-arrow,
.pc-cat-item.active .cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* 右侧产品区域 */
.pc-product-area {
    flex: 1;
    padding: 20px;
    background: #fafbfc;
}
.pc-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.pc-product-grid.fade-out {
    opacity: 0;
    transform: translateY(12px);
}
.pc-prod-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
}
.pc-prod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    opacity: 0;
    transition: opacity 0.35s ease;
}
.pc-prod-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 30px rgba(139, 92, 246, 0), 0 0 20px rgba(139, 92, 246, 0);
    transition: all 0.4s ease;
    pointer-events: none;
}
.pc-prod-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(23, 82, 166, 0.12);
}
.pc-prod-card:hover::before { opacity: 1; }
.pc-prod-card:hover::after {
    box-shadow: inset 0 0 30px rgba(139, 92, 246, 0.06), 0 0 25px rgba(139, 92, 246, 0.12);
}
.pc-prod-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden;
    position: relative;
}
.pc-prod-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244,171,16,0.8), transparent);
    transform: translateY(-100%);
    transition: none;
    pointer-events: none;
    z-index: 5;
}
.pc-prod-card:hover .pc-prod-img::before {
    animation: prodScan 1.5s ease-in-out;
}
@keyframes prodScan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(150px); }
}
.pc-prod-img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.5s ease;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}
.pc-prod-card:hover .pc-prod-img img {
    transform: scale(1.12);
}
.pc-prod-name {
    padding: 12px 8px;
    text-align: center;
    font-size: 12px;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
.pc-prod-card:hover .pc-prod-name { color: var(--color-primary); }
.pc-prod-card .prod-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
    z-index: 10;
}
.pc-prod-card .prod-badge svg { width: 10px; height: 10px; }
.pc-prod-card:hover .prod-badge {
    opacity: 1;
    transform: scale(1);
}

/* ========== Invest Banner ========== */
.invest-banner {
    position: relative;
    height: 205px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.invest-slider { width: 100%; height: 100%; position: relative; }
.invest-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.invest-slide.active { opacity: 1; }
.invest-slide img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.invest-slide .invest-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.invest-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.invest-content h2 { font-size: 26px; color: var(--color-accent); margin-bottom: 8px; }
.invest-content p { font-size: 14px; opacity: 0.9; }
.invest-content .invest-phone { color: var(--color-accent); margin-top: 8px; font-size: 18px; font-weight: bold; }
.invest-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}
.invest-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.invest-dot.active { background: var(--color-accent); transform: scale(1.3); }

/* ========== Workshop Showcase ========== */
.section-workshop { 
    background: var(--color-bg-light); 
    padding-top: 40px;
    padding-bottom: 50px;
}
.workshop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
}
.workshop-item:nth-child(1),
.workshop-item:nth-child(2),
.workshop-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 1;
}
.workshop-item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
}
.workshop-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
}
.workshop-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.workshop-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(0);
}
.workshop-item:hover img {
    filter: grayscale(100%);
    transform: scale(1.05);
}
.workshop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 82, 166, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}
.workshop-item:hover .workshop-overlay {
    opacity: 1;
}
.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}
.workshop-item:hover .overlay-content {
    transform: translateY(0);
}
.overlay-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-accent);
}
.overlay-content p {
    font-size: 14px;
    opacity: 0.9;
}
.workshop-item.workshop-more {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.workshop-item.workshop-more:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(23, 82, 166, 0.3);
}
.more-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.more-content i {
    transition: transform 0.3s ease;
}
.workshop-item.workshop-more:hover .more-content i {
    transform: translateX(8px);
}

/* ========== Cases Section ========== */
.section-cases { 
    background: var(--color-bg-light); 
    padding-top: 40px;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.case-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 200px;
}
.case-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.case-item:hover img { transform: scale(1.1); }
.case-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(23,82,166,0.8) 0%, rgba(23,82,166,0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}
.case-item:hover .case-overlay { opacity: 1; }
.case-overlay span {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.case-item:hover .case-overlay span { transform: translateY(0); }
.case-item.case-more {
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: background 0.3s;
}
.case-item.case-more:hover { background: var(--color-primary-dark); }
.case-item.case-more i { margin-left: 6px; transition: transform 0.3s; }
.case-item.case-more:hover i { transform: translateX(5px); }

/* ========== News Section ========== */
.section-news { 
    background: #fff; 
    margin-top: 40px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.news-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #eee;
}
.news-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.news-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.news-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.news-item:hover .news-img img { transform: scale(1.1); }
.news-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}
.news-item:hover .news-img::after { opacity: 1; }
.news-body { padding: 15px; }
.news-body h4 {
    font-size: 13px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}
.news-item:hover .news-body h4 { color: var(--color-accent); }
.news-body .date { font-size: 11px; color: #999; margin-bottom: 8px; }
.news-body .desc {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== Partners Section ========== */
.section-partners { 
    background: #f9fafb; 
    overflow: hidden; 
    height: 280px;
    padding-top: 40px;
}
.partners-track {
    display: flex;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}
.partners-track:hover { animation-play-state: paused; }
.partner-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.partner-item:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transform: scale(1.05);
}
.partner-item img {
    max-width: 120px;
    max-height: 45px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}
.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}
@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== 内页主容器 ========== */
.main-container {
    background: #f5f7fa;
    padding: 40px 0;
    min-height: 600px;
}
.content-wrapper {
    display: flex;
    gap: 30px;
}

/* ========== 左侧边栏（通用） ========== */
.page-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}
.sidebar-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: 30px 25px;
    text-align: center;
}
.sidebar-header h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}
.sidebar-header span {
    font-size: 12px;
    opacity: 0.9;
    letter-spacing: 2px;
}
.sidebar-menu {
    padding: 20px 0;
}
.sidebar-menu li {
    margin-bottom: 5px;
}
.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--color-text);
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.sidebar-menu li a i {
    width: 24px;
    margin-right: 12px;
    color: #007dcd;
    font-size: 16px;
}
.sidebar-menu li.active a,
.sidebar-menu li a:hover {
    background: var(--color-bg-light);
    border-left-color: var(--color-accent);
    color: var(--color-primary);
}
.sidebar-menu li.active a i,
.sidebar-menu li a:hover i {
    color: var(--color-accent);
}
.sidebar-footer {
    padding: 25px;
    background: var(--color-bg-light);
    border-top: 1px solid #e8edf2;
}
.sidebar-contact {
    text-align: center;
    margin-bottom: 20px;
}
.sidebar-contact h4 {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}
.sidebar-contact .phone {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
}
.sidebar-qr {
    text-align: center;
}
.sidebar-qr img {
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
    display: block;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.sidebar-qr p {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ========== 右侧内容区 ========== */
.page-content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    min-height: 500px;
}
.content-section {
    display: none;
}
.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.content-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-bg-light);
}
.content-header h2 {
    font-size: 28px;
    color: var(--color-text);
    margin-bottom: 15px;
}
.content-header .divider {
    width: 60px;
    height: 3px;
    background: #007dcd;
}
.content-body {
    line-height: 1.8;
    color: var(--color-text-light);
	margin-top:10px;
}


.bimg {
	text-align: center;
	width: 770px;
    
}

.text-block {
    margin-bottom: 35px;
}
.text-block h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: bold;
}
.text-block h4.text-primary {
    color: #2e7d32;
}
.text-block ol,
.text-block ul {
    padding-left: 25px;
}
.text-block li {
    margin-bottom: 10px;
    line-height: 1.8;
}
.job-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.job-item {
    background: var(--color-bg-light);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s ease;
}
.job-item:hover {
    box-shadow: 0 4px 15px rgba(23, 82, 166, 0.15);
    transform: translateX(5px);
}
.job-item h4 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 15px;
}
.job-item p {
    margin-bottom: 8px;
    font-size: 14px;
}
.job-item strong {
    color: var(--color-text);
}
.contact-info {
    padding: 30px;
    background: var(--color-bg-light);
    border-radius: 8px;
}
.contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-info i {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* ========== Animations ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 3px 15px rgba(23,82,166,0.3);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--color-accent); transform: translateY(-3px); }

/* 标题动画 */
.anim-title-cn, .anim-title-en { position: relative; display: inline-block; }
.anim-title-cn { opacity: 0; transform: translateX(-40px); transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.anim-title-en { opacity: 0; transform: translateX(40px); transition: all 0.7s cubic-bezier(0.25,0.46,0.45,0.94); transition-delay: 0.15s; color: #a0c4e8; }
.anim-title-cn.is-visible, .anim-title-en.is-visible { opacity: 1; transform: translateX(0); }
@media (max-width: 768px) {
    .anim-title-cn::before, .anim-title-cn::after, .anim-title-en::before, .anim-title-en::after { display: none !important; }
}

/* ========== 响应式媒体查询 ========== */

/* 平板及以下 (≤1024px) */
@media (max-width: 1024px) {
    html { font-size: 15px; }
    .header-inner { padding: 12px; min-height: 70px; }
    .brand-text h1 { font-size: 16px; }
    .header-right .phone-text strong { font-size: 14px; }
    
    .hero-banner { height: 420px; }
    .banner-content h2 { font-size: 28px; }
    .banner-content p { font-size: 14px; }
    
    .inner-banner { height: 280px; }
    .inner-banner .banner-content h2 { font-size: 32px; }
    .inner-banner .banner-content p { font-size: 14px; }
    
    .intro-entries { margin-top: -30px; }
    .entry-card { height: 170px; }
    
    .pc-sidebar { width: 160px; }
    .pc-product-grid { grid-template-columns: repeat(2, 1fr); }
    
    .workshop-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .workshop-item:nth-child(1),
    .workshop-item:nth-child(2),
    .workshop-item:nth-child(3),
    .workshop-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
    .workshop-item:nth-child(5) {
        grid-column: span 2;
        height: 180px;
    }
    
    .case-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    
    .content-wrapper { flex-direction: column; }
    .page-sidebar { width: 100%; }
    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
    }
    .sidebar-menu li { flex: 1; min-width: 150px; margin-bottom: 0; }
    .sidebar-footer { display: none; }
    
    .footer-cols { flex-wrap: wrap; }
    .col-about, .col-contact { flex: 1 1 100%; }
}

/* 手机 (≤768px) */
@media (max-width: 768px) {
    html { font-size: 14px; }
    
    /* Header */
    .header-inner { padding: 10px; min-height: 60px; }
    .logo img { height: 38px; }
    .brand-text h1 { font-size: 14px; }
    .brand-text span { display: none; }
    .header-right .phone-text span { display: none; }
    .header-right .phone-text strong { font-size: 13px; }
    
    /* 汉堡菜单显示 */
    .navbar-toggle { display: flex; }
    
    /* 导航菜单隐藏 + 移动端展开 */
    .nav-list {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--color-primary); /* 或 #1752a6 */
		flex-direction: column;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0s 0.4s;
		z-index: 999;
		box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	}

	/* 展开状态 - 同时设置高度和可见性 */
	.nav-list.in {
		max-height: 500px;
		opacity: 1;
		visibility: visible;
		transition: max-height 0.4s ease, opacity 0.3s ease, visibility 0s 0s;
	}

	.nav-list li a {
		padding: 12px 20px;
		line-height: 1.4;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		text-align: left; /* 确保文字左对齐 */
	}
	.nav-list li a::after { display: none; } /* 隐藏桌面端下划线 */
    
    /* Banner */
    .hero-banner { height: 320px; }
    .banner-content h2 { font-size: 22px; margin-bottom: 10px; }
    .banner-content p { font-size: 13px; margin-bottom: 18px; }
    .banner-btns { gap: 10px; flex-wrap: wrap; }
    .btn { padding: 8px 22px; font-size: 12px; }
    .banner-nav { bottom: 50px; }
    .banner-arrow { width: 38px; height: 38px; font-size: 16px; }
    
    /* Intro Entries */
    .intro-entries { flex-direction: column; margin-top: 20px; }
    .entry-card { height: 160px; }
    
    /* Product Center */
    .pc-layout { flex-direction: column; }
    .pc-sidebar { 
        width: 100%; 
        max-height: 200px;
        overflow-y: auto;
    }
    .pc-category-list {
        display: flex;
        flex-wrap: wrap;
        max-height: none;
        padding: 8px;
        gap: 4px;
    }
    .pc-cat-item {
        flex: 1 1 auto;
        min-width: 100px;
        padding: 7px 10px;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 5px;
        justify-content: center;
    }
    .pc-cat-item.active { border-bottom-color: var(--color-accent); }
    .pc-cat-item .cat-arrow { display: none; }
    .pc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pc-prod-img { height: 120px; }
    
    /* Invest Banner */
    .invest-banner { height: 140px; }
    .invest-content h2 { font-size: 20px; }
    .invest-content .invest-phone { font-size: 16px; }
    
    /* Cases */
    .case-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .case-item { height: 140px; }
    
    /* News */
    .news-grid { grid-template-columns: 1fr; gap: 15px; }
    .news-img { height: 150px; }
    
    /* Partners */
    .section-partners { height: auto; padding: 30px 0; }
    .partner-item { width: 120px; height: 60px; margin: 0 15px; }
    
    /* Footer */
    .footer-cols { flex-direction: column; padding: 30px 0; }
    .col-qr { justify-content: center; }
    .copyright { font-size: 11px; }
}

/* 小手机 (≤480px) */
@media (max-width: 480px) {
    html { font-size: 13px; }
    
    .header-inner { padding: 8px; }
    .logo img { height: 32px; }
    .brand-text h1 { font-size: 13px; }
    
    .hero-banner { height: 260px; }
    .banner-content h2 { font-size: 18px; }
    .banner-content p { font-size: 12px; }
    .btn { padding: 7px 18px; font-size: 11px; }
    
    .intro-entries { padding: 0 10px; }
    .entry-card { height: 140px; border-radius: 6px; }
    .entry-overlay h3 { font-size: 16px; }
    
    .section-title h2 { font-size: 19px; }
    
    .pc-sidebar-title { font-size: 14px; padding: 12px; }
    .pc-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pc-prod-img { height: 100px; }
    .pc-prod-name { font-size: 11px; padding: 10px 6px; }
    
    .case-grid { grid-template-columns: 1fr; }
    .case-item { height: 160px; }
    
    .invest-banner { height: 120px; }
    .invest-content h2 { font-size: 18px; }
    
    .footer-cols h3 { font-size: 14px; }
    .qr-item img { width: 75px; height: 75px; }
}

/* 隐藏滚动条但保留功能 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.4); }