/* ================= Ruizearts VI Color System ================= */
:root {
  --primary: #0A6A9C;
  --primary-dark: #084C75;
  --secondary: #7CB342;
  --secondary-dark: #6A9E37;
  --accent: #4ECDC4;
  --surface: #F0F7FB;
  --border: #D4E8F0;
  --text-main: #0A3D52;
  --text-muted: #5A7D8C;
  --shadow-sm: 0 4px 6px -1px rgba(10,106,156,0.08), 0 2px 4px -1px rgba(10,106,156,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(10,106,156,0.1), 0 10px 10px -5px rgba(10,106,156,0.04);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background: #ffffff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1280px, 92%); margin: 0 auto; }

/* ================= Minimal Premium Navbar ================= */
header {position: sticky;top: 0;z-index: 1000;background: rgb(10 106 156);backdrop-filter: blur(12px);border-bottom: 19px solid rgb(124 179 66);}
.nav {height: 100px;display: flex;align-items: center;justify-content: space-between;}
.logo {display: flex;align-items: center;gap: 12px;font-weight: 900;color: #fff;font-size: 20px;letter-spacing: -0.5px;}
.logo-mark {width: 130px;border-radius: 8px;background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);display: grid;place-items: center;color: white;font-weight: 900;font-size: 20px;}
nav ul {display: flex;list-style: none;gap: 32px;font-size: 14px;font-weight: 600;color: #fff;}
nav a { transition: color 0.2s ease; }
nav a:hover {color: #7cb342;}
.nav-actions { display: flex; gap: 12px; }

/* 外层下拉父容器：相对定位 */
.inserg .menus.lungshrt {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

/* 顶部触发栏：svg图标、文字、箭头横向居中对齐 */
.inserg .luguans {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
}
/* svg图标大小控制 */
.inserg .luguans .icon {
    flex-shrink: 0; /* 图标不压缩 */
}
/* 下拉箭头 */
.inserg .luguans b {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #fff;
    transition: transform 0.2s ease;
}

/* 下拉面板默认隐藏 */
.inserg .header_header_lg_list_pc {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 120px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 9999;
}
.inserg .header_header_lg_list_pc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.inserg .header_header_lg_list_pc li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}
.inserg .header_header_lg_list_pc li a:hover {
    background-color: #f5f5f5;
}
.flag_icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* hover移入显示下拉 + 箭头旋转 */
.inserg .menus.lungshrt:hover .header_header_lg_list_pc {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.inserg .menus.lungshrt:hover .luguans b {
    transform: rotate(180deg);
}

.footer-policy-links {
    text-align: center;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
}
.footer-policy-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
}
.footer-policy-links span {
    color: #fff;
}
.footer-policy-links a:hover {
    text-decoration: underline;
}
/* ================= Button System ================= */
.btn {border: none;cursor: pointer;padding: 10px 10px;border-radius: 6px;font-weight: 700;transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);display: inline-flex;align-items: center;justify-content: center;gap: 8px;font-size: 14px;}
.btn-primary {background: #239bda;color: white;}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 10px 20px rgba(10,106,156,0.25); transform: translateY(-2px); }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary-dark); transform: translateY(-2px); }
.btn-light { background: white; color: var(--primary); border: 1px solid var(--border); }
.btn-light:hover { border-color: var(--primary); }
.mini-btn { border: 1px solid var(--border); background: white; border-radius: 6px; padding: 8px 14px; cursor: pointer; font-weight: 700; font-size: 13px; color: var(--text-main); transition: all 0.2s; }
.mini-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.mobile-toggle { display: none; background: transparent; border: none; font-size: 24px; cursor: pointer; color: var(--primary); }

/* ================= Hero: Ruizearts VI Style ================= */
.hero { position: relative; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #063952 100%); color: white; padding: 120px 0 140px; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 80% 20%, rgba(124,179,66,0.12), transparent 40%); pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: linear-gradient(180deg, rgba(78,205,196,0.08) 0%, transparent 60%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.eyebrow { display: inline-flex; padding: 6px 16px; border-radius: 4px; background: rgba(124,179,66,0.15); color: var(--secondary); font-weight: 800; font-size: 14px; margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase; border: 1px solid rgba(124,179,66,0.3); }
.hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; font-weight: 900; }
.hero p { font-size: 20px; color: rgba(255,255,255,0.7); max-width: 760px; margin-bottom: 40px; line-height: 1.6; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }

/* Eco badges floating at Hero bottom */
.eco-badges-wrapper {position: absolute;bottom: 0;left: 0;width: 100%;background: rgb(124 179 66);border-top: 1px solid rgba(255,255,255,0.05);backdrop-filter: blur(10px);}
.eco-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 24px 0; }
.eco-badge { display: flex; align-items: center; gap: 16px; color: white; }
.eco-badge-icon {width: 48px;height: 48px;border-radius: 8px;background: rgba(124,179,66,0.15);color: #fff;display: grid;place-items: center;font-size: 24px;border: 1px solid rgb(245 247 243);}
.eco-badge-text h4 { font-size: 15px; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 2px; }
.eco-badge-text p {font-size: 12px;color: #fff;margin: 0;font-weight: 500;}

/* ================= Challenge Section (from PPT) ================= */
.challenge-section { padding: 100px 0; background: var(--surface); }
.challenge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.challenge-data {background: white;padding: 10px;border-radius: var(--radius);box-shadow: var(--shadow-lg);border: 1px solid var(--border);}
.data-number { font-size: 80px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 10px; letter-spacing: -3px; }
.data-label { font-size: 18px; color: var(--text-muted); font-weight: 600; margin-bottom: 30px; }
.data-divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--secondary), var(--accent)); margin-bottom: 30px; }

/* ================= Universal Section Styles ================= */
section { padding: 100px 0; }
.section-head { max-width: 800px; margin-bottom: 50px; }
.section-head.center { text-align: center; margin: 0 auto 50px; }
.section-kicker { color: var(--secondary); font-weight: 900; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; margin-bottom: 16px; display: inline-block; padding: 4px 12px; background: rgba(124,179,66,0.1); border-radius: 4px; }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); color: var(--primary); line-height: 1.2; margin-bottom: 20px; font-weight: 900; letter-spacing: -1px; }
.section-head p { color: var(--text-muted); font-size: 18px; line-height: 1.7; }
.grid { display: grid; gap: 24px; }

/* ================= Material Explorer ================= */
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.metric-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; cursor: pointer; transition: all 0.2s; position: relative; }
.metric-card:hover { border-color: var(--text-muted); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.metric-card.active { border-color: var(--primary); border-width: 2px; box-shadow: var(--shadow-sm); }
.metric-icon { color: var(--text-muted); margin-bottom: 16px; display: inline-block; }
.metric-card.active .metric-icon { color: var(--primary); }
.metric-card h4 { color: var(--text-main); font-size: 16px; margin-bottom: 6px; font-weight: 800; }
.metric-card p { color: var(--text-muted); font-size: 13px; margin: 0; line-height: 1.4; }
.metric-check { position: absolute; top: 16px; right: 16px; color: var(--primary); display: none; }
.metric-card.active .metric-check { display: block; }

.explorer-results-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; border-bottom: 2px solid var(--primary); padding-bottom: 16px; }
.explorer-results-header h3 { font-size: 24px; color: var(--primary); margin: 0; font-weight: 900; }
.sort-controls { display: flex; gap: 8px; }
.sort-btn { border: 1px solid var(--border); background: white; padding: 8px 16px; border-radius: 4px; font-weight: 700; color: var(--text-muted); cursor: pointer; font-size: 13px; }
.sort-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

.result-card { display: grid; grid-template-columns: 1fr 1.5fr 0.8fr auto; gap: 30px; align-items: center; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; margin-bottom: 16px; transition: all 0.2s; }
.result-card:hover { box-shadow: var(--shadow-lg); border-color: #cbd5e1; }
.result-card.top-rank { border-left: 6px solid var(--secondary); background: linear-gradient(to right, rgba(124,179,66,0.03), transparent); }
.rank-badge { display: inline-block; background: var(--primary); color: white; font-size: 11px; font-weight: 900; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; letter-spacing: 1px; }
.result-score-bar { height: 8px; background: var(--surface); border-radius: 4px; overflow: hidden; margin: 12px 0 16px; }
.result-score-fill { height: 100%; background: var(--primary); transition: width 0.6s; }
.result-metric-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--text-muted); }
.result-metric-tag svg { color: var(--secondary); width: 14px; }
.cost-indicator { display: flex; gap: 4px; margin-top: 8px; }
.cost-dot { width: 24px; height: 6px; border-radius: 2px; background: var(--border); }
.cost-dot.filled { background: var(--primary); }

/* ================= Product Matrix ================= */
.matrix-controls { background: var(--surface); padding: 24px; border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 40px; }
.search-row { display: flex; gap: 16px; margin-bottom: 20px; }
.search-row input { flex: 1; padding: 16px 20px; border: 1px solid var(--border); border-radius: 6px; outline: none; font-size: 16px; font-family: inherit; }
.search-row input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,106,156,0.12); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { padding: 8px 16px; border-radius: 4px; border: 1px solid var(--border); background: white; cursor: pointer; color: var(--text-muted); font-weight: 700; font-size: 13px; transition: all 0.2s; }
.chip.active, .chip:hover { background: var(--primary); color: white; border-color: var(--primary); }

.product-grid { grid-template-columns: repeat(3, 1fr); }
.product-card, .app-card, .news-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all 0.3s; display: flex; flex-direction: column; }
.product-card:hover, .app-card:hover, .news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.product-code { font-size: 32px; font-weight: 900; color: var(--primary); margin-bottom: 16px; letter-spacing: -1px; }
.product-card h3 { color: var(--text-main); font-size: 20px; margin-bottom: 12px; }
.product-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; flex-grow: 1; line-height: 1.6; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag { background: var(--surface); color: var(--text-main); padding: 6px 10px; border-radius: 4px; font-size: 12px; font-weight: 700; border: 1px solid var(--border); }
.card-actions { display: flex; gap: 12px; margin-top: auto; }

/* ================= Applications ================= */
.app-grid { grid-template-columns: repeat(4, 1fr); }
.app-icon { font-size: 40px; margin-bottom: 20px; }
.app-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 20px; font-weight: 800; }

/* ================= Knowledge ================= */
.news-grid {grid-template-columns: repeat(4, 1fr);}
.news-card { padding: 0; overflow: hidden; }
.news-thumb { height: 180px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); display: flex; flex-direction: column; justify-content: center; padding: 30px; color: white; }
.news-thumb span { font-weight: 900; font-size: 24px; }
.news-thumb small { color: var(--secondary); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; display: block; }
.news-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.news-body h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.news-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; flex-grow: 1; }

/* ================= Contact ================= */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; }
.contact-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.contact-line {padding: 16px 0;border-bottom: 1px solid var(--border);color: var(--text-main);display: flex;justify-content: space-between;align-items: center;}
.contact-line strong { color: var(--text-muted); font-weight: 600; }
form { display: grid; gap: 16px; }
input, select, textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 6px; outline: none; font-family: inherit; font-size: 14px; background: var(--surface); }
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(10,106,156,0.12); }

/* ================= Modal System ================= */
.modal-backdrop { position: fixed; inset: 0; background: rgba(10,106,156,0.85); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(8px); }
.modal-backdrop.active { display: flex; }
.modal { width: min(960px, 96vw); max-height: 90vh; overflow: auto; background: white; border-radius: var(--radius); box-shadow: 0 40px 100px rgba(0,0,0,0.3); position: relative; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,0.2); }
.modal-head { padding: 32px 40px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; flex-shrink: 0; }
.modal-head h3 { font-size: 32px; margin-bottom: 8px; color: white; font-weight: 900; letter-spacing: -0.5px; }
.modal-head p { color: rgba(255,255,255,0.7); font-size: 15px; }
.modal-body { padding: 40px; overflow-y: auto; }
.close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 6px; border: none; background: rgba(255,255,255,0.1); color: white; font-size: 24px; cursor: pointer; transition: all 0.2s; display: grid; place-items: center; }
.close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.rich-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; margin-bottom: 30px; }
.rich-img-wrapper { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); }
.rich-img-wrapper img { width: 100%; height: auto; object-fit: cover; }
.rich-content h4 { color: var(--primary); font-size: 18px; border-bottom: 2px solid var(--primary); padding-bottom: 8px; margin: 32px 0 16px; font-weight: 800; display: inline-block; }
.rich-content ul { padding-left: 20px; color: var(--text-muted); margin-bottom: 20px; }
.rich-content li { margin-bottom: 10px; line-height: 1.6; }
.rich-content strong { color: var(--text-main); }

.tech-spec-box { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px; margin-bottom: 24px; }
.tech-spec-box h5 { color: var(--primary); margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.tech-spec-row { display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); padding: 8px 0; font-size: 14px; }
.tech-spec-row:last-child { border-bottom: none; padding-bottom: 0; }

.report-lock-section { background: white; border: 2px solid var(--border); border-radius: var(--radius); padding: 30px; margin-top: 40px; }
.report-lock-section h4 { display: flex; align-items: center; gap: 10px; color: var(--primary); margin-top: 0; margin-bottom: 20px; font-size: 20px; font-weight: 800; border: none; padding: 0; }
.report-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.report-item { display: flex; justify-content: space-between; align-items: center; background: var(--surface); padding: 16px 20px; border-radius: 6px; border: 1px solid var(--border); }
.report-item span { font-weight: 700; color: var(--text-main); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.btn-lock { background: var(--primary); color: white; border: none; padding: 8px 16px; border-radius: 4px; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
.btn-lock:hover { background: var(--accent); color: white; }
.modal.small-modal { width: min(540px, 96vw); }

/* ================= Footer ================= */
footer { background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 80px 0 40px; border-top: 4px solid var(--secondary); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
footer h4 { margin-bottom: 20px; font-size: 16px; letter-spacing: 1px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
footer a, footer p { display: block; color: rgba(255,255,255,0.9); margin-bottom: 12px; font-size: 15px; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--secondary); }
.footer-logo { font-size: 24px; font-weight: 900; margin-bottom: 16px; display: block; color: white !important; }

/* ================= Floating Contact ================= */
.floating-contact { position: fixed; right: 30px; bottom: 30px; z-index: 1500; display: flex; flex-direction: column; gap: 12px; }
.float-btn { border: none; padding: 16px 24px; border-radius: 8px; box-shadow: var(--shadow-lg); background: var(--secondary); color: white; font-weight: 800; cursor: pointer; font-size: 15px; transition: transform 0.2s; }
.float-btn:hover { transform: translateY(-4px); }
.float-btn.secondary { background: var(--primary); }
.float-btn.cert{ background:#239bda; color:#fff}
/* ================= Responsive ================= */
@media (max-width: 1024px) {
    .metrics-grid { grid-template-columns: repeat(3, 1fr); }
    .rich-detail-grid { grid-template-columns: 1fr; }
    .challenge-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
    nav ul { display: none; position: absolute; left: 4%; right: 4%; top: 80px; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px; flex-direction: column; align-items: flex-start; }
    nav ul.active { display: flex; }
    .mobile-toggle { display: block; }
    .nav-actions .btn-primary { display: none; }
    .hero { padding: 100px 0; }
    .product-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
    .app-grid { grid-template-columns: repeat(2, 1fr); }
    .result-card { grid-template-columns: 1fr; gap: 20px; }
    .explorer-results-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .eco-badges-wrapper { position: static; background: transparent; border: none; margin-top: 40px; }
    .eco-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
    .hero h1 { font-size: 32px; }
    .eco-badges { grid-template-columns: 1fr; }
    .product-grid, .app-grid, .news-grid, .footer-grid { grid-template-columns: 1fr; }
    .search-row { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
    .floating-contact { left: 16px; right: 16px; bottom: 16px; flex-direction: row; }
    .float-btn { flex: 1; text-align: center; padding: 14px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    section { padding: 60px 0; }
}


  /* =========================================================
       Ruize GP Product Page
       Scoped CSS: all styles are prefixed with .rz-gp-page
       ========================================================= */

    :root {
      --rz-gp-primary: #041222;
      --rz-gp-primary-light: #0d2847;
      --rz-gp-secondary: #10b981;
      --rz-gp-secondary-dark: #047857;
      --rz-gp-green-soft: #ecfdf5;
      --rz-gp-accent: #d97706;
      --rz-gp-blue: #0ea5e9;
      --rz-gp-red: #dc2626;
      --rz-gp-surface: #f4f7fb;
      --rz-gp-border: #e2e8f0;
      --rz-gp-text: #0f172a;
      --rz-gp-muted: #64748b;
      --rz-gp-white: #ffffff;
      --rz-gp-shadow: 0 20px 50px -20px rgba(4, 18, 34, 0.24);
      --rz-gp-radius-sm: 8px;
      --rz-gp-radius-md: 16px;
      --rz-gp-radius-lg: 28px;
    }

    .rz-gp-page,
    .rz-gp-page * {
      box-sizing: border-box;
    }

    .rz-gp-page {
      font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI",
        Roboto, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      color: var(--rz-gp-text);
      background: #ffffff;
      line-height: 1.65;
      overflow: hidden;
    }

    .rz-gp-page a {
      color: inherit;
      text-decoration: none;
    }

    .rz-gp-container {
      width: min(1240px, 92%);
      margin: 0 auto;
    }

    .rz-gp-section {
      padding: 88px 0;
    }

    .rz-gp-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 999px;
      background: rgba(16, 185, 129, 0.1);
      color: var(--rz-gp-secondary-dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 18px;
      border: 1px solid rgba(16, 185, 129, 0.22);
    }

    .rz-gp-section-title {
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.18;
      letter-spacing: -1.2px;
      color: var(--rz-gp-primary);
      margin: 0 0 18px;
      font-weight: 950;
    }

    .rz-gp-section-desc {
      max-width: 820px;
      color: var(--rz-gp-muted);
      font-size: 18px;
      margin: 0;
    }

    .rz-gp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 6px;
      padding: 14px 24px;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.4px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .rz-gp-btn-primary {
      background: var(--rz-gp-secondary);
      color: #fff;
      box-shadow: 0 14px 30px -14px rgba(16, 185, 129, 0.8);
    }

    .rz-gp-btn-primary:hover {
      background: var(--rz-gp-secondary-dark);
      transform: translateY(-2px);
    }

    .rz-gp-btn-outline {
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.28);
    }

    .rz-gp-btn-outline:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.55);
      transform: translateY(-2px);
    }

    .rz-gp-card {
      background: #fff;
      border: 1px solid var(--rz-gp-border);
      border-radius: var(--rz-gp-radius-md);
      box-shadow: 0 12px 36px -24px rgba(4, 18, 34, 0.28);
    }

    /* ================= Hero ================= */

    .rz-gp-hero {
      position: relative;
      min-height: 720px;
      padding: 120px 0 92px;
      color: #fff;
      background:
        radial-gradient(circle at 76% 22%, rgba(16, 185, 129, 0.22) 0%, transparent 34%),
        radial-gradient(circle at 18% 78%, rgba(14, 165, 233, 0.15) 0%, transparent 32%),
        linear-gradient(135deg, #03101f 0%, #061b33 54%, #063b3b 100%);
      overflow: hidden;
    }

    .rz-gp-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: 0.55;
      pointer-events: none;
    }

    .rz-gp-hero::after {
      content: "RUIZE";
      position: absolute;
      right: -26px;
      top: 120px;
      font-size: 160px;
      font-weight: 950;
      letter-spacing: 14px;
      color: rgba(255, 255, 255, 0.04);
      transform: rotate(-12deg);
      pointer-events: none;
    }

    .rz-gp-hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 70px;
      align-items: center;
    }

    .rz-gp-logo-line {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 38px;
    }

    .rz-gp-logo-mark {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--rz-gp-secondary), #047857);
      color: #fff;
      font-weight: 950;
      font-size: 18px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22);
    }

    .rz-gp-logo-text strong {
      display: block;
      font-size: 25px;
      font-weight: 950;
      line-height: 1;
      letter-spacing: -0.6px;
    }

    .rz-gp-logo-text span {
      display: block;
      margin-top: 4px;
      font-size: 13px;
      color: rgba(255,255,255,0.72);
    }

    .rz-gp-hero h1 {
      margin: 0 0 20px;
      max-width: 780px;
      font-size: clamp(44px, 6vw, 48px);
      line-height: 1.06;
      letter-spacing: -2px;
      font-weight: 950;
    }

    .rz-gp-hero h1 span {
      background: linear-gradient(135deg, #34d399 0%, #86efac 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .rz-gp-hero-subtitle {
      max-width: 760px;
      font-size: 18px;
      color: rgba(255, 255, 255, 0.72);
      margin: 0 0 34px;
      line-height: 1.62;
    }

    .rz-gp-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 46px;
    }

    .rz-gp-hero-badges {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      max-width: 860px;
    }

    .rz-gp-hero-badge {
      padding: 18px 16px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.055);
      border-radius: 14px;
      backdrop-filter: blur(10px);
    }

    .rz-gp-hero-badge-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin-bottom: 12px;
      border-radius: 10px;
      background: rgba(16, 185, 129, 0.13);
      color: #86efac;
      font-size: 20px;
    }

    .rz-gp-hero-badge strong {
      display: block;
      font-size: 13px;
      letter-spacing: 0.8px;
      margin-bottom: 3px;
      color: #fff;
    }

    .rz-gp-hero-badge span {
      display: block;
      color: rgba(255,255,255,0.62);
      font-size: 12px;
      line-height: 1.35;
    }

    .rz-gp-visual {
      position: relative;
      min-height: 470px;
    }

    .rz-gp-seal {
      position: absolute;
      top: 8px;
      right: 16px;
      width: 154px;
      height: 154px;
      border-radius: 999px;
      background: #fff;
      color: var(--rz-gp-secondary-dark);
      border: 8px solid #79c34a;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-shadow: 0 24px 60px rgba(0,0,0,0.25);
      z-index: 4;
      text-align: center;
      transform: rotate(7deg);
    }

    .rz-gp-seal small {
      font-size: 12px;
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: 0.6px;
    }

    .rz-gp-seal strong {
      display: block;
      font-size: 34px;
      line-height: 1;
      margin: 5px 0;
      font-weight: 950;
    }

    .rz-gp-paper {
      position: absolute;
      right: 44px;
      bottom: 16px;
      width: 420px;
      height: 320px;
      border-radius: 42px 18px 18px 42px;
      background:
        linear-gradient(115deg, #9b6a36 0%, #d9b579 18%, #b57b3d 20%, #ecd2a2 46%, #b98545 48%, #f0d6aa 76%, #8e5a2f 100%);
      box-shadow: 0 34px 70px rgba(0,0,0,0.34);
      transform: rotate(2deg);
      overflow: hidden;
    }

    .rz-gp-paper::before {
      content: "";
      position: absolute;
      left: 66px;
      top: 46px;
      width: 290px;
      height: 224px;
      border-radius: 30px;
      background:
        repeating-linear-gradient(25deg, rgba(255,255,255,0.11) 0 2px, transparent 2px 10px),
        rgba(255,255,255,0.08);
      transform: skewX(-10deg);
    }

    .rz-gp-oil-drop {
      position: absolute;
      left: 42px;
      bottom: 44px;
      width: 72px;
      height: 36px;
      background: rgba(120, 72, 24, 0.36);
      border-radius: 999px;
      filter: blur(0.2px);
    }

    .rz-gp-floating-card {
      position: absolute;
      left: 0;
      bottom: 68px;
      width: 270px;
      padding: 22px;
      border-radius: 18px;
      color: #fff;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(14px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.18);
      z-index: 5;
    }

    .rz-gp-floating-card strong {
      display: block;
      font-size: 32px;
      line-height: 1;
      margin-bottom: 8px;
      color: #86efac;
    }

    .rz-gp-floating-card span {
      display: block;
      font-size: 13px;
      color: rgba(255,255,255,0.72);
    }

    /* ================= Intro / Definition ================= */

    .rz-gp-intro {
      background: #fff;
      position: relative;
    }

    .rz-gp-intro-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 34px;
      align-items: stretch;
    }

    .rz-gp-definition-card {
      padding: 34px;
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      border-radius: var(--rz-gp-radius-lg);
      border: 1px solid var(--rz-gp-border);
      box-shadow: var(--rz-gp-shadow);
    }

    .rz-gp-definition-card h2 {
      font-size: 38px;
      margin: 0 0 14px;
      color: var(--rz-gp-primary);
      letter-spacing: -1px;
      font-weight: 950;
    }

    .rz-gp-definition-card p {
      color: var(--rz-gp-muted);
      font-size: 17px;
      margin: 0 0 18px;
    }

    .rz-gp-definition-highlight {
      margin-top: 22px;
      padding: 20px 22px;
      border-left: 6px solid var(--rz-gp-secondary);
      background: var(--rz-gp-green-soft);
      border-radius: 14px;
      font-size: 18px;
      font-weight: 850;
      color: var(--rz-gp-primary);
    }

    .rz-gp-keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .rz-gp-keyword {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      background: #fff;
      border: 1px solid var(--rz-gp-border);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      color: var(--rz-gp-primary);
    }

    .rz-gp-feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .rz-gp-feature-card {
      padding: 24px;
      border-radius: 20px;
      border: 1px solid var(--rz-gp-border);
      background: #fff;
      box-shadow: 0 10px 28px -22px rgba(4,18,34,0.28);
    }

    .rz-gp-feature-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(16,185,129,0.1);
      color: var(--rz-gp-secondary-dark);
      font-size: 23px;
      margin-bottom: 16px;
    }

    .rz-gp-feature-card h3 {
      margin: 0 0 8px;
      font-size: 18px;
      color: var(--rz-gp-primary);
      font-weight: 900;
    }

    .rz-gp-feature-card p {
      margin: 0;
      font-size: 14px;
      color: var(--rz-gp-muted);
    }

    /* ================= Pain Points ================= */

    .rz-gp-pain {
      background: var(--rz-gp-surface);
    }

    .rz-gp-pain-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .rz-gp-pain-card {
      padding: 28px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--rz-gp-border);
      box-shadow: 0 14px 34px -28px rgba(4, 18, 34, 0.32);
      min-height: 250px;
    }

    .rz-gp-pain-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: rgba(220, 38, 38, 0.08);
      color: var(--rz-gp-red);
      font-size: 24px;
      margin-bottom: 18px;
    }

    .rz-gp-pain-card h3 {
      margin: 0 0 12px;
      color: var(--rz-gp-primary);
      font-size: 20px;
      font-weight: 950;
    }

    .rz-gp-pain-card p {
      margin: 0;
      color: var(--rz-gp-muted);
      font-size: 15px;
    }

    /* ================= Advantages ================= */

    .rz-gp-advantages {
      background: #fff;
    }

    .rz-gp-advantages-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .rz-gp-adv-card {
      position: relative;
      padding: 28px 22px;
      border-radius: 22px;
      border: 1px solid var(--rz-gp-border);
      background: #fff;
      overflow: hidden;
      transition: all 0.25s ease;
    }

    .rz-gp-adv-card::before {
      content: "";
      position: absolute;
      right: -36px;
      top: -36px;
      width: 110px;
      height: 110px;
      border-radius: 999px;
      background: rgba(16,185,129,0.09);
    }

    .rz-gp-adv-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--rz-gp-shadow);
      border-color: rgba(16,185,129,0.32);
    }

    .rz-gp-adv-card .rz-gp-adv-icon {
      position: relative;
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--rz-gp-primary);
      color: #86efac;
      font-size: 24px;
      margin-bottom: 18px;
      z-index: 1;
    }

    .rz-gp-adv-card h3 {
      position: relative;
      margin: 0 0 10px;
      font-size: 18px;
      color: var(--rz-gp-primary);
      font-weight: 950;
      z-index: 1;
    }

    .rz-gp-adv-card p {
      position: relative;
      margin: 0;
      color: var(--rz-gp-muted);
      font-size: 14px;
      z-index: 1;
    }

    /* ================= Solutions ================= */

    .rz-gp-solutions {
      background:
        radial-gradient(circle at 85% 15%, rgba(16,185,129,0.08), transparent 26%),
        var(--rz-gp-surface);
    }

    .rz-gp-solutions-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .rz-gp-solution-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--rz-gp-border);
      border-radius: 24px;
      padding: 30px;
      overflow: hidden;
      box-shadow: 0 16px 38px -30px rgba(4,18,34,0.38);
    }

    .rz-gp-solution-no {
      position: absolute;
      top: 24px;
      right: 24px;
      font-size: 56px;
      line-height: 1;
      font-weight: 950;
      color: rgba(15,23,42,0.06);
      letter-spacing: -2px;
    }

    .rz-gp-solution-label {
      display: inline-flex;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 1px;
      color: #fff;
      margin-bottom: 18px;
    }

    .rz-gp-solution-card:nth-child(1) .rz-gp-solution-label {
      background: var(--rz-gp-secondary-dark);
    }

    .rz-gp-solution-card:nth-child(2) .rz-gp-solution-label {
      background: var(--rz-gp-blue);
    }

    .rz-gp-solution-card:nth-child(3) .rz-gp-solution-label {
      background: var(--rz-gp-accent);
    }

    .rz-gp-solution-card h3 {
      margin: 0 0 14px;
      font-size: 22px;
      color: var(--rz-gp-primary);
      font-weight: 950;
      letter-spacing: -0.4px;
    }

    .rz-gp-solution-card p {
      margin: 0 0 16px;
      color: var(--rz-gp-muted);
      font-size: 15px;
    }

    .rz-gp-solution-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .rz-gp-solution-list li {
      display: flex;
      gap: 9px;
      color: var(--rz-gp-text);
      font-size: 14px;
      font-weight: 650;
    }

    .rz-gp-solution-list li::before {
      content:"✓";
      color: var(--rz-gp-secondary-dark);
      font-weight: 950;
    }

    /* ================= Specs & Applications ================= */

    .rz-gp-spec-app {
      background: #fff;
    }

    .rz-gp-spec-app-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 30px;
      align-items: start;
      margin-top: 42px;
    }

    .rz-gp-table-wrap {
      overflow-x: auto;
      border-radius: 20px;
      border: 1px solid var(--rz-gp-border);
      background: #fff;
      box-shadow: 0 16px 38px -30px rgba(4,18,34,0.38);
    }

    .rz-gp-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 560px;
      font-size: 15px;
    }

    .rz-gp-table th {
      background: var(--rz-gp-primary);
      color: #fff;
      padding: 15px 18px;
      text-align: left;
      font-weight: 900;
      font-size: 14px;
    }

    .rz-gp-table td {
      padding: 15px 18px;
      border-bottom: 1px solid var(--rz-gp-border);
      color: var(--rz-gp-text);
      vertical-align: top;
    }

    .rz-gp-table tr:last-child td {
      border-bottom: none;
    }

    .rz-gp-table td:first-child {
      color: var(--rz-gp-muted);
      font-weight: 800;
      width: 38%;
    }

    .rz-gp-app-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .rz-gp-app-card {
      padding: 22px;
      background: #fff;
      border: 1px solid var(--rz-gp-border);
      border-radius: 18px;
      box-shadow: 0 14px 34px -30px rgba(4,18,34,0.38);
    }

    .rz-gp-app-card span {
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: var(--rz-gp-green-soft);
      color: var(--rz-gp-secondary-dark);
      font-size: 22px;
      margin-bottom: 14px;
    }

    .rz-gp-app-card h3 {
      margin: 0 0 8px;
      color: var(--rz-gp-primary);
      font-size: 17px;
      font-weight: 950;
    }

    .rz-gp-app-card p {
      margin: 0;
      color: var(--rz-gp-muted);
      font-size: 14px;
    }

    /* ================= Selection Logic ================= */

    .rz-gp-select {
      background: var(--rz-gp-primary);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .rz-gp-select::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 20%, rgba(16,185,129,0.14), transparent 32%),
        radial-gradient(circle at 88% 80%, rgba(14,165,233,0.11), transparent 28%);
      pointer-events: none;
    }

    .rz-gp-select .rz-gp-container {
      position: relative;
      z-index: 2;
    }

    .rz-gp-select .rz-gp-section-title {
      color: #fff;
    }

    .rz-gp-select .rz-gp-section-desc {
      color: rgba(255,255,255,0.66);
    }

    .rz-gp-compare-grid {
      margin-top: 42px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .rz-gp-compare-card {
      padding: 26px;
      border-radius: 20px;
      background: rgba(255,255,255,0.065);
      border: 1px solid rgba(255,255,255,0.11);
      backdrop-filter: blur(12px);
    }

    .rz-gp-compare-card strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      margin-bottom: 12px;
      color: #86efac;
      font-weight: 950;
    }

    .rz-gp-compare-card h3 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 20px;
      font-weight: 950;
    }

    .rz-gp-compare-card p {
      margin: 0;
      color: rgba(255,255,255,0.66);
      font-size: 14px;
    }

    /* ================= CTA ================= */

    .rz-gp-cta {
      background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 55%, #f8fafc 100%);
      padding: 76px 0;
    }

    .rz-gp-cta-box {
      display: grid;
      grid-template-columns: 1.1fr auto;
      gap: 34px;
      align-items: center;
      padding: 40px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--rz-gp-border);
      box-shadow: var(--rz-gp-shadow);
    }

    .rz-gp-cta-box h2 {
      margin: 0 0 12px;
      color: var(--rz-gp-primary);
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 950;
      letter-spacing: -1px;
    }

    .rz-gp-cta-box p {
      margin: 0;
      color: var(--rz-gp-muted);
      font-size: 17px;
      max-width: 820px;
    }

    .rz-gp-cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .rz-gp-cta .rz-gp-btn-outline {
      color: var(--rz-gp-primary);
      background: #fff;
      border-color: var(--rz-gp-border);
    }

    .rz-gp-cta .rz-gp-btn-outline:hover {
      background: var(--rz-gp-primary);
      color: #fff;
      border-color: var(--rz-gp-primary);
    }

    .rz-gp-note {
      margin-top: 20px;
      font-size: 13px;
      color: var(--rz-gp-muted);
      line-height: 1.55;
    }

    /* ================= Responsive ================= */

    @media (max-width: 1080px) {
      .rz-gp-hero-inner,
      .rz-gp-intro-grid,
      .rz-gp-spec-app-grid {
        grid-template-columns: 1fr;
      }

      .rz-gp-visual {
        min-height: 420px;
      }

      .rz-gp-paper {
        right: 0;
      }

      .rz-gp-floating-card {
        left: 20px;
      }

      .rz-gp-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .rz-gp-solutions-grid,
      .rz-gp-pain-grid,
      .rz-gp-compare-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .rz-gp-section {
        padding: 68px 0;
      }

      .rz-gp-hero {
        padding: 82px 0 70px;
        min-height: auto;
      }

      .rz-gp-logo-line {
        margin-bottom: 30px;
      }

      .rz-gp-hero-subtitle {
        font-size: 18px;
      }

      .rz-gp-hero-badges {
        grid-template-columns: 1fr 1fr;
      }

      .rz-gp-visual {
        min-height: 350px;
      }

      .rz-gp-paper {
        width: 330px;
        height: 245px;
        right: -26px;
      }

      .rz-gp-seal {
        width: 126px;
        height: 126px;
        right: 6px;
        top: 0;
      }

      .rz-gp-seal strong {
        font-size: 27px;
      }

      .rz-gp-floating-card {
        width: 230px;
        left: 0;
        bottom: 26px;
      }

      .rz-gp-feature-grid,
      .rz-gp-advantages-grid,
      .rz-gp-app-grid {
        grid-template-columns: 1fr;
      }

      .rz-gp-cta-box {
        grid-template-columns: 1fr;
        padding: 28px;
      }

      .rz-gp-cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 460px) {
      .rz-gp-hero-badges {
        grid-template-columns: 1fr;
      }

      .rz-gp-btn {
        width: 100%;
      }
    }
	
	
	
/* 轮播容器自适应 */
.vc-carousel{
  width: 100%;
  /* 高度自适应，PC固定高度，移动端按比例缩放 */
  height: auto;
  aspect-ratio: 16 / 9; /* 视频16:9比例，自适应宽高 */
  max-width: 1400px;
  /* margin: 20px auto; */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.vc-wrap{
  width:100%;
  height:100%;
  display:flex;
  transition:transform 0.6s ease;
}
.vc-item{
  flex:0 0 100%;
  height:100%;
}
.vc-item video{
  width:100%;
  height:100%;
  object-fit:cover;
}
/* 按钮自适应缩小，手机更好点击 */
.vc-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:36px;
  height:36px;
  background:rgba(0,0,0,.4);
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:16px;
  cursor:pointer;
  z-index:10;
}
/* 大屏按钮放大 */
@media(min-width:768px){
  .vc-btn{
    width:44px;
    height:44px;
    font-size:20px;
  }
}
.vc-btn:hover{background:rgba(0,0,0,.7)}
.vc-prev{left:10px}
.vc-next{right:10px}
@media(min-width:768px){
  .vc-prev{left:20px}
  .vc-next{right:20px}
}
.vc-dots-box{
  position:absolute;
  bottom:12px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:10;
}
@media(min-width:768px){
  .vc-dots-box{bottom: 5px;gap:10px}
}
.vc-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.5);
  cursor:pointer;
}
@media(min-width:768px){
  .vc-dot{width:12px;height:12px}
}
.vc-dot.active{background:#fff}







 /* 全局重置 + 唯一页面根类隔离样式，不污染全站 */

    .news-page-wrap {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: #F5F7FA;
      /* color: #333A47; */
      font-weight: 400;
      line-height: 1.65;
      letter-spacing: -0.01em;
      font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    }
    .news-page-wrap a {
      text-decoration: none;
    }
    .news-page-wrap ul, .news-page-wrap li {
      list-style: none;
    }
    .news-page-wrap button, .news-page-wrap input, .news-page-wrap textarea {
      font-family: inherit;
    }

    /* 工具通用类 */
    .news-page-container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 16px;
    }
    @media screen and (min-width: 1024px) {
      .news-page-container {
        padding: 0 32px;
      }
    }
    .news-page-card-shadow {
      box-shadow: 0 4px 20px rgba(15, 76, 129, 0.08);
    }
    .news-page-ellipsis-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-page-ellipsis-3 {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .news-page-modal-hidden {
      display: none !important;
    }
    .news-page-font-title {
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.3;
    }

    /* 颜色变量统一管理 */
    .news-page-wrap {
      --primary: #0F4C81;
      --secondary: #2973B9;
      --neutral: #F5F7FA;
      --darkgray: #333A47;
      --gray-light: #f1f1f1;
      --gray-border: #e5e7eb;
      --gray-text: #6b7280;
    }

    /* Banner区域 */
    .news-page-banner {
      position: relative;
      height: 180px;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    @media screen and (min-width: 640px) {
      .news-page-banner {
        height: 220px;
      }
    }
    @media screen and (min-width: 768px) {
      .news-page-banner {
        height: 280px;
      }
    }
    .news-page-banner-overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(0,0,0,0.3);
    }
    .news-page-banner-inner {
      position: relative;
      z-index: 1;
      color: #fff;
    }
    .news-page-banner-title {
      font-size: 26px;
      margin-bottom: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-banner-title {
        font-size: 32px;
      }
    }
    @media screen and (min-width: 768px) {
      .news-page-banner-title {
        font-size: 48px;
      }
    }
    .news-page-banner-desc {
      font-size: 0.825rem;
      color: rgba(255,255,255,0.8);
      max-width: 700px;
    }
    @media screen and (min-width: 768px) {
      .news-page-banner-desc {
        font-size: 1.125rem;
      }
    }
    .news-page-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      font-size: 12px;
      opacity: 0.9;
    }
    @media screen and (min-width: 768px) {
      .news-page-breadcrumb {
        font-size: 14px;
        margin-top: 24px;
      }
    }
    .news-page-breadcrumb a:hover {
      color: #fff;
    }

    /* 主内容区域 */
    .news-page-main {
      padding: 32px 0;
    }
    @media screen and (min-width: 768px) {
      .news-page-main {
        padding: 48px 0;
      }
    }
    @media screen and (min-width: 1024px) {
      .news-page-main {
        padding: 64px 0;
      }
    }
    .news-page-grid-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media screen and (min-width: 1024px) {
      .news-page-grid-wrap {
        grid-template-columns: 8fr 4fr;
        gap: 40px;
      }
    }

    /* 左侧筛选栏 */
    .news-page-filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }
    @media screen and (min-width: 640px) {
      .news-page-filter-bar {
        gap: 12px;
        margin-bottom: 40px;
      }
    }
    .news-page-filter-btn-active {
      padding: 8px 16px;
      background: var(--primary);
      color: #fff;
      border-radius: 999px;
      border: none;
      font-size: 0.825rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .news-page-filter-btn {
      padding: 8px 16px;
      background: #fff;
      color: var(--darkgray);
      border: 1px solid var(--gray-border);
      border-radius: 999px;
      font-size: 0.825rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .news-page-filter-btn:hover {
      border-color: var(--secondary);
      color: var(--secondary);
    }
    @media screen and (min-width: 640px) {
      .news-page-filter-btn-active, .news-page-filter-btn {
        padding: 8px 20px;
        font-size: 14px;
      }
    }

    /* 新闻卡片列表 */
    .news-page-card-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media screen and (min-width: 768px) {
      .news-page-card-list {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }
    .news-page-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .news-page-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(15, 76, 129, 0.12);
    }
    .news-page-card-img-box {
      overflow: hidden;
      height: 160px;
    }
    @media screen and (min-width: 640px) {
      .news-page-card-img-box {
        height: 200px;
        display: none;
      }
    }
    .news-page-card-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .news-page-card:hover .news-page-card-img-box img {
      transform: scale(1.1);
    }
    .news-page-card-body {
      padding: 20px;
    }
    @media screen and (min-width: 640px) {
      .news-page-card-body {
        padding: 24px;
      }
    }
    .news-page-card-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--gray-text);
      margin-bottom: 12px;
    }
    .news-page-card-title {
      font-size: 1rem;
      margin-bottom: 12px;
      transition: color 0.3s;
    }
    @media screen and (min-width: 640px) {
      .news-page-card-title {
        font-size: 1.125rem;
      }
    }
    .news-page-card:hover .news-page-card-title {
      color: var(--secondary);
    }
    .news-page-card-desc {
      font-size: 0.825rem;
      color: var(--gray-text);
    }
    .news-page-card-link {
      display: inline-flex;
      align-items: center;
      margin-top: 16px;
      color: var(--secondary);
      font-size: 0.825rem;
      font-weight: 500;
      gap: 8px;
      transition: gap 0.3s;
    }
    .news-page-card-link:hover {
      gap: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-card-link {
        font-size: 14px;
      }
    }

    /* 分页 */
    .news-page-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }
    @media screen and (min-width: 768px) {
      .news-page-pagination {
        margin-top: 48px;
      }
    }
    .news-page-page-btn, .news-page-page-active {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 14px;
      transition: all 0.3s;
    }
    @media screen and (min-width: 640px) {
      .news-page-page-btn, .news-page-page-active {
        width: 40px;
        height: 40px;
      }
    }
    .news-page-page-btn {
      border: 1px solid var(--gray-border);
    }
    .news-page-page-btn:hover {
      background-color: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .news-page-page-active {
      background-color: var(--primary);
      color: #fff;
    }

    /* 右侧侧边栏模块 */
    .news-page-sidebar-block {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 24px;
    }
    @media screen and (min-width: 640px) {
      .news-page-sidebar-block {
        padding: 24px;
        margin-bottom: 32px;
      }
    }
    .news-page-sidebar-title {
      font-size: 1rem;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
      margin-bottom: 16px;
    }
    @media screen and (min-width: 640px) {
      .news-page-sidebar-title {
        font-size: 1.125rem;
      }
    }
    /* 分类列表 */
    .news-page-category-list {
      font-size: 0.825rem;
    }
    @media screen and (min-width: 640px) {
      .news-page-category-list {
        font-size: 14px;
      }
    }
    .news-page-category-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 8px;
      margin-bottom: 8px;
      border-bottom: 1px solid var(--gray-light);
      transition: color 0.3s;
    }
    .news-page-category-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .news-page-category-item a:hover {
      color: var(--secondary);
    }
    .news-page-category-item span {
      font-size: 10px;
      background: var(--neutral);
      padding: 2px 8px;
      border-radius: 999px;
    }
    /* 热门资讯 */
    .news-page-hot-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    @media screen and (min-width: 768px) {
      .news-page-hot-list {
        gap: 20px;
      }
    }
    .news-page-hot-item {
      display: flex;
      gap: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-hot-item {
        gap: 16px;
      }
    }
    .news-page-hot-item img {
      width: 64px;
      height: 56px;
      border-radius: 8px;
      flex-shrink: 0;
      object-fit: cover;
    }
    @media screen and (min-width: 640px) {
      .news-page-hot-item img {
        width: 80px;
        height: 64px;
        display: none;
      }
    }
    .news-page-hot-item time {
      font-size: 10px;
      color: var(--gray-text);
    }
    .news-page-hot-item a {
      display: block;
      margin-top: 4px;
      font-size: 0.825rem;
      font-weight: 500;
      transition: color 0.3s;
    }
    @media screen and (min-width: 640px) {
      .news-page-hot-item a {
        font-size: 14px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1; /* 显示3行 */
        overflow: hidden;
      }
    }
    .news-page-hot-item a:hover {
      color: var(--secondary);
    }

    /* 侧边咨询广告块 */
    .news-page-contact-box {
      background-color: var(--primary);
      color: #fff;
      border-radius: 12px;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }
    @media screen and (min-width: 640px) {
      .news-page-contact-box {
        padding: 24px;
      }
    }
    .news-page-contact-box > div:first-child {
      position: relative;
      z-index: 1;
    }
    .news-page-contact-box i.fa-message-dots {
      position: absolute;
      right: 0;
      bottom: 0;
      font-size: 80px;
      opacity: 0.1;
    }
    @media screen and (min-width: 640px) {
      .news-page-contact-box i.fa-message-dots {
        font-size: 120px;
      }
    }
    .news-page-contact-title {
      font-size: 1.125rem;
      margin-bottom: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-contact-title {
        font-size: 1.25rem;
      }
    }
    .news-page-contact-desc {
      font-size: 0.825rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 16px;
    }
    @media screen and (min-width: 640px) {
      .news-page-contact-desc {
        font-size: 14px;
        margin-bottom: 20px;
      }
    }
    #news-page-open-modal-btn {
      background: #fff;
      color: var(--primary);
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 0.825rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
    }
    #news-page-open-modal-btn:hover {
      background-color: #f1f1f1;
    }
    @media screen and (min-width: 640px) {
      #news-page-open-modal-btn {
        padding: 12px 24px;
        font-size: 14px;
      }
    }

    /* 弹窗遮罩 */
    .news-page-modal-wrap {
      position: fixed;
      inset: 0;
      background-color: rgba(0,0,0,0.6);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
    }
    @media screen and (min-width: 640px) {
      .news-page-modal-wrap {
        padding: 16px;
      }
    }
    .news-page-modal-inner {
      width: 100%;
      max-width: 680px;
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      position: relative;
      max-height: 85vh;
      overflow-y: auto;
    }
    @media screen and (min-width: 640px) {
      .news-page-modal-inner {
        padding: 32px;
      }
    }
    #news-page-close-modal-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      background: transparent;
      border: none;
      font-size: 18px;
      color: var(--gray-text);
      cursor: pointer;
      transition: color 0.3s;
    }
    @media screen and (min-width: 640px) {
      #news-page-close-modal-btn {
        top: 16px;
        right: 16px;
        font-size: 20px;
      }
    }
    #news-page-close-modal-btn:hover {
      color: var(--primary);
    }
    .news-page-modal-title {
      font-size: 20px;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
      margin-bottom: 24px;
    }
    @media screen and (min-width: 640px) {
      .news-page-modal-title {
        font-size: 24px;
        margin-bottom: 32px;
      }
    }

    /* 表单样式 */
    .news-page-form-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    @media screen and (min-width: 640px) {
      .news-page-form-wrap {
        gap: 20px;
      }
    }
    .news-page-form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media screen and (min-width: 768px) {
      .news-page-form-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
    }
    .news-page-form-item label {
      display: block;
      font-size: 0.825rem;
      font-weight: 500;
      margin-bottom: 4px;
    }
    @media screen and (min-width: 640px) {
      .news-page-form-item label {
        font-size: 14px;
      }
    }
    .news-page-form-input, .news-page-form-textarea, .news-page-form-file {
      width: 100%;
      border: 1px solid var(--gray-border);
      border-radius: 8px;
      padding: 10px 12px;
      font-size: 0.825rem;
      outline: none;
      transition: border-color 0.3s;
    }
    @media screen and (min-width: 640px) {
      .news-page-form-input, .news-page-form-textarea, .news-page-form-file {
        padding: 12px 16px;
        font-size: 14px;
      }
    }
    .news-page-form-input:focus, .news-page-form-textarea:focus {
      border-color: var(--secondary);
    }
    .news-page-form-textarea {
      resize: none;
      min-height: 100px;
    }
    .news-page-form-file::file-selector-button {
      margin-right: 12px;
      padding: 6px 12px;
      border: none;
      border-radius: 6px;
      background-color: var(--primary);
      color: #fff;
      cursor: pointer;
    }
    .news-page-form-tip {
      font-size: 10px;
      color: var(--gray-text);
      margin-top: 4px;
    }
    #news-page-form-submit {
      width: 100%;
      padding: 12px;
      background-color: var(--primary);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 0.825rem;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s;
    }
    #news-page-form-submit:hover {
      background-color: var(--secondary);
    }
    @media screen and (min-width: 640px) {
      #news-page-form-submit {
        font-size: 14px;
      }
    }
	
	
	
	
	
	 /* 页面隔离根容器，不污染全站 */
 
    .news-detail-wrap {
      font-family: 'Inter', system-ui, sans-serif;
      background-color: #F5F7FA;
      color: #333A47;
      font-weight: 400;
      line-height: 1.7;
      letter-spacing: -0.01em;
      font-feature-settings: "cv02", "cv03", "cv04", "cv11";
      --primary: #0F4C81;
      --secondary: #2973B9;
      --neutral: #F5F7FA;
      --darkgray: #333A47;
      --gray-light: #f1f1f1;
      --gray-border: #e5e7eb;
      --gray-text: #6b7280;
    }

    .news-detail-wrap ul, .news-detail-wrap li {
      list-style: none;
    }
    .news-detail-wrap button, .news-detail-wrap input, .news-detail-wrap textarea {
      font-family: inherit;
    }

    /* 通用工具类 */
    .news-detail-container {
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 16px;
    }
    @media (min-width:1024px) {
      .news-detail-container {
        padding: 0 32px;
      }
    }
    .news-detail-card-shadow {
      box-shadow: 0 4px 20px rgba(15, 76, 129, 0.08);
    }
    .news-detail-modal-hidden {
      display: none !important;
    }
    .news-detail-font-title {
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.3;
    }
    .news-detail-text-ellipsis-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* 顶部Banner */
    .news-detail-banner {
      position: relative;
      height: 180px;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    @media (min-width:640px) {
      .news-detail-banner { height:220px; }
    }
    @media (min-width:768px) {
      .news-detail-banner { height:280px; }
    }
    .news-detail-banner-overlay {
      position: absolute;
      inset:0;
      background: rgba(0,0,0,0.3);
    }
    .news-detail-banner-inner {
      position: relative;
      z-index:1;
      color:#fff;
    }
    .news-detail-breadcrumb {
      display: flex;
      gap:8px;
      align-items:center;
      font-size:12px;
      opacity:0.9;
      margin-top:16px;
    }
	.news-detail-breadcrumb a{color:#fff;}
    @media (min-width:768px) {
      .news-detail-breadcrumb { font-size:14px; margin-top:24px; }
    }
    .news-detail-breadcrumb a:hover { color:#fff; }

    /* 主体布局 */
    .news-detail-main {
      padding:32px 0;
    }
    @media (min-width:768px) {
      .news-detail-main { padding:48px 0; }
    }
    @media (min-width:1024px) {
      .news-detail-main { padding:64px 0; }
    }
    .news-detail-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap:32px;
    }
    @media (min-width:1024px) {
      .news-detail-grid { grid-template-columns:8fr 4fr; gap:40px; }
    }

    /* 左侧文章主体 */
    .news-detail-article-wrap {
      background:#fff;
      border-radius:12px;
      overflow:hidden;
      .news-detail-card-shadow
    }
    .news-detail-article-bigimg {
      width:100%;
      height:240px;
      object-fit:cover;
    }
    @media (min-width:640px) {
      .news-detail-article-bigimg { height:320px; }
    }
    @media (min-width:1024px) {
      .news-detail-article-bigimg { height:400px; }
    }
    .news-detail-article-body {
      padding:24px 20px;
    }
    @media (min-width:640px) {
      .news-detail-article-body { padding:32px; }
    }
    .news-detail-meta-row {
      display:flex;
      flex-wrap:wrap;
      gap:16px;
      font-size:13px;
      color:var(--gray-text);
      margin-bottom:16px;
    }
    .news-detail-meta-row span i { margin-right:6px; }
    .news-detail-article-title {
      font-size:22px;
      margin-bottom:20px;
    }
    @media (min-width:640px) {
      .news-detail-article-title { font-size:28px; }
    }
    /* 正文富文本 */
    .news-detail-content p {
      margin-bottom:16px;
      font-size:15px;
      color:#444;
    }
    .news-detail-content h4 {
      font-size:18px;
      margin:24px 0 12px;
      color:var(--darkgray);
    }
    .news-detail-content ul {
      padding-left:20px;
      margin-bottom:16px;
    }
    .news-detail-content li {
      list-style:disc;
      margin-bottom:8px;
      font-size:15px;
    }
    .news-detail-content img {
      width:100%;
      border-radius:8px;
      margin:20px 0;
    }
    /* 标签 & 分享 */
    .news-detail-tag-share {
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      margin:30px 0;
      padding-top:24px;
      border-top:1px solid var(--gray-border);
    }
    .news-detail-tag-list {
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .news-detail-tag-item {
      padding:4px 12px;
      background:var(--neutral);
      border-radius:999px;
      font-size:12px;
      color:var(--gray-text);
    }
    .news-detail-share-list {
      display:flex;
      gap:10px;
    }
    .news-detail-share-btn {
      width:34px;
      height:34px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--gray-light);
      color:var(--darkgray);
      transition:0.3s;
    }
    .news-detail-share-btn:hover {
      background:var(--primary);
      color:#fff;
    }
    /* 上一篇下一篇 */
    .news-detail-prev-next {
      display:grid;
      grid-template-columns:1fr;
      gap:16px;
      margin-bottom:40px;
    }
    @media (min-width:768px) {
      .news-detail-prev-next { grid-template-columns:1fr 1fr; }
    }
    .news-detail-prev-next-item {
      padding:16px;
      border:1px solid var(--gray-border);
      border-radius:10px;
      transition:0.3s;
    }
    .news-detail-prev-next-item:hover {
      border-color:var(--secondary);
    }
    .news-detail-prev-next-label {
      font-size:12px;
      color:var(--gray-text);
      margin-bottom:6px;
      display:flex;
      align-items:center;
      gap:4px;
    }
    .news-detail-prev-next-title {
      font-size:14px;
      font-weight:500;
    }
    /* 相关推荐新闻 */
    .news-detail-relate-title {
      font-size:20px;
      margin-bottom:24px;
      padding-left:12px;
      border-left:4px solid var(--primary);
    }
    .news-detail-relate-wrap {
      display:grid;
      grid-template-columns:1fr;
      gap:24px;
    }
    @media (min-width:640px) {
      .news-detail-relate-wrap { grid-template-columns:1fr 1fr; }
    }
    @media (min-width:1024px) {
      .news-detail-relate-wrap { grid-template-columns:1fr 1fr 1fr; }
    }
    .news-detail-relate-card {
      background:#fff;
      border-radius:10px;
      overflow:hidden;
      .news-detail-card-shadow
      transition:0.3s;
    }
    .news-detail-relate-card:hover { transform:translateY(-4px); }
    .news-detail-relate-img {
      width:100%;
      height:160px;
      object-fit:cover;
    }
    .news-detail-relate-body {
      padding:16px;
    }
    .news-detail-relate-date {
      font-size:11px;
      color:var(--gray-text);
    }
    .news-detail-relate-txt {
      font-size:14px;
      font-weight:500;
      margin-top:6px;
    }
    .news-detail-relate-card:hover .news-detail-relate-txt { color:var(--secondary); }

    /* 右侧侧边栏通用 */
    .news-detail-sidebar-block {
      background:#fff;
      border-radius:12px;
      padding:20px;
      margin-bottom:24px;
      .news-detail-card-shadow
    }
    @media (min-width:640px) {
      .news-detail-sidebar-block { padding:24px; margin-bottom:32px; }
    }
    .news-detail-sidebar-title {
      font-size:1rem;
      padding-left:12px;
      border-left:4px solid var(--primary);
      margin-bottom:16px;
    }
    @media (min-width:640px) {
      .news-detail-sidebar-title { font-size:1.125rem; }
    }
    /* 分类列表 */
    .news-detail-category-list { font-size:0.825rem; }
    @media (min-width:640px) { .news-detail-category-list { font-size:14px; } }
    .news-detail-category-item {
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding-bottom:8px;
      margin-bottom:8px;
      border-bottom:1px solid var(--gray-light);
      transition:0.3s;
    }
    .news-detail-category-item:last-child { border:none; padding-bottom:0; margin-bottom:0; }
    .news-detail-category-item a:hover { color:var(--secondary); }
    .news-detail-category-item span {
      font-size:10px;
      background:var(--neutral);
      padding:2px 8px;
      border-radius:999px;
    }
    /* 热门资讯 */
    .news-detail-hot-list { display:flex; flex-direction:column; gap:16px; }
    @media (min-width:768px) { .news-detail-hot-list { gap:20px; } }
    .news-detail-hot-item { display:flex; gap:12px; }
    @media (min-width:640px) { .news-detail-hot-item { gap:16px; } }
    .news-detail-hot-item img {
      width:64px;
      height:56px;
      border-radius:8px;
      flex-shrink:0;
      object-fit:cover;
    }
    @media (min-width:640px) { .news-detail-hot-item img { width:80px; height:64px; } }
    .news-detail-hot-item time { font-size:10px; color:var(--gray-text); }
    .news-detail-hot-item a {
      display:block;
      margin-top:4px;
      font-size:0.825rem;
      font-weight:500;
    }
    @media (min-width:640px) { .news-detail-hot-item a { font-size:14px; } }
    .news-detail-hot-item a:hover { color:var(--secondary); }
    /* 侧边咨询块 */
    .news-detail-contact-box {
      background:var(--primary);
      color:#fff;
      border-radius:12px;
      padding:20px;
      position:relative;
      overflow:hidden;
    }
    @media (min-width:640px) { .news-detail-contact-box { padding:24px; } }
    .news-detail-contact-box > div:first-child { position:relative; z-index:1; }
    .news-detail-contact-box i.fa-message-dots {
      position:absolute;
      right:0;
      bottom:0;
      font-size:80px;
      opacity:0.1;
    }
    @media (min-width:640px) { .news-detail-contact-box i.fa-message-dots { font-size:120px; } }
    .news-detail-contact-title { font-size:1.125rem; margin-bottom:12px; }
    @media (min-width:640px) { .news-detail-contact-title { font-size:1.25rem; } }
    .news-detail-contact-desc {
      font-size:0.825rem;
      color:rgba(255,255,255,0.8);
      margin-bottom:16px;
    }
    @media (min-width:640px) { .news-detail-contact-desc { font-size:14px; margin-bottom:20px; } }
    #news-detail-open-modal-btn {
      background:#fff;
      color:var(--primary);
      border:none;
      padding:10px 20px;
      border-radius:8px;
      font-size:0.825rem;
      font-weight:500;
      cursor:pointer;
      transition:0.3s;
    }
    #news-detail-open-modal-btn:hover { background:#f1f1f1; }
    @media (min-width:640px) { #news-detail-open-modal-btn { padding:12px 24px; font-size:14px; } }

    /* 弹窗全局样式（同列表统一表单） */
    .news-detail-modal-wrap {
      position:fixed;
      inset:0;
      background:rgba(0,0,0,0.6);
      z-index:9999;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:12px;
    }
    @media (min-width:640px) { .news-detail-modal-wrap { padding:16px; } }
    .news-detail-modal-inner {
      width:100%;
      max-width:680px;
      background:#fff;
      border-radius:12px;
      padding:20px;
      position:relative;
      max-height:85vh;
      overflow-y:auto;
    }
    @media (min-width:640px) { .news-detail-modal-inner { padding:32px; } }
    #news-detail-close-modal-btn {
      position:absolute;
      top:12px;
      right:12px;
      background:transparent;
      border:none;
      font-size:18px;
      color:var(--gray-text);
      cursor:pointer;
    }
    @media (min-width:640px) { #news-detail-close-modal-btn { top:16px; right:16px; font-size:20px; } }
    #news-detail-close-modal-btn:hover { color:var(--primary); }
    .news-detail-modal-title {
      font-size:20px;
      padding-left:12px;
      border-left:4px solid var(--primary);
      margin-bottom:24px;
    }
    @media (min-width:640px) { .news-detail-modal-title { font-size:24px; margin-bottom:32px; } }
    .news-detail-form-wrap { display:flex; flex-direction:column; gap:16px; }
    @media (min-width:640px) { .news-detail-form-wrap { gap:20px; } }
    .news-detail-form-row {
      display:grid;
      grid-template-columns:1fr;
      gap:16px;
    }
    @media (min-width:768px) { .news-detail-form-row { grid-template-columns:1fr 1fr; gap:20px; } }
    .news-detail-form-item label {
      display:block;
      font-size:0.825rem;
      font-weight:500;
      margin-bottom:4px;
    }
    @media (min-width:640px) { .news-detail-form-item label { font-size:14px; } }
    .news-detail-form-input, .news-detail-form-textarea, .news-detail-form-file {
      width:100%;
      border:1px solid var(--gray-border);
      border-radius:8px;
      padding:10px 12px;
      font-size:0.825rem;
      outline:none;
      transition:0.3s;
    }
    @media (min-width:640px) {
      .news-detail-form-input, .news-detail-form-textarea, .news-detail-form-file {
        padding:12px 16px;
        font-size:14px;
      }
    }
    .news-detail-form-input:focus, .news-detail-form-textarea:focus { border-color:var(--secondary); }
    .news-detail-form-textarea { resize:none; min-height:100px; }
    .news-detail-form-file::file-selector-button {
      margin-right:12px;
      padding:6px 12px;
      border:none;
      border-radius:6px;
      background:var(--primary);
      color:#fff;
      cursor:pointer;
    }
    .news-detail-form-tip { font-size:10px; color:var(--gray-text); margin-top:4px; }
    #news-detail-form-submit {
      width:100%;
      padding:12px;
      background:var(--primary);
      color:#fff;
      border:none;
      border-radius:8px;
      font-size:0.825rem;
      font-weight:500;
      cursor:pointer;
    }
    #news-detail-form-submit:hover { background:var(--secondary); }
    @media (min-width:640px) { #news-detail-form-submit { font-size:14px; } }
	
	
	
	/* 合作伙伴外层区块 */
.brand-cooperation-block {
    padding: 70px 0 0;
    background-color: var(--surface);
}

/* 标题区域 */
.brand-title-wrap {
    text-align: center;
    margin-bottom: 55px;
}
.brand-sub-label {
    display: block;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #6a707c;
    margin-bottom: 14px;
}
.brand-main-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 18px;
}
.brand-desc-text {
    max-width: 620px;
    margin: 0 auto;
    font-size: 16px;
    color: #555a66;
    line-height: 1.75;
}
/* Logo网格容器 */
.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    gap: 20px;
    align-items: center;
}
/* 单个Logo卡片 */
.brand-logo-card {
    background: #ffffff;
    /* height: 110px; */
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.32s ease-out;
}
.brand-logo-card img {
    max-width: 100%;
    /* max-height: 65px; */
    /* filter: grayscale(100%); */
    opacity: 0.72;
    transition: all 0.32s ease-out;
}
/* Hover交互效果 */
.brand-logo-card:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.055);
}
.brand-logo-card:hover img {
    /* filter: grayscale(0%); */
    opacity: 1;
}
/* 移动端适配 */
@media screen and (max-width: 768px) {
    .brand-cooperation-block {
        padding: 65px 0;
    }
    .brand-main-title {
        font-size: 28px;
    }
    .brand-logo-grid {
        gap: 22px;
    }
    .brand-logo-card {
        height: 95px;
    }
}
	
	
	
	     /* 主容器：最大宽度1400px，无头部尾部 */
        .download_blue_main_wrap {
            max-width: 1400px;
            margin: 100px auto;
            padding: 0 10px;
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 32px;
            align-items: start;
        }

        /* 左侧分类导航 */
        .download_blue_sidebar {
            position: sticky;
            top: 40px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(10, 106, 156, 0.08);
            overflow: hidden;
        }

        .download_blue_sidebar_title {
            background: linear-gradient(90deg, #0a6a9c, #0878a3);
            color: #ffffff;
            padding: 18px 22px;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .download_blue_category_list {
            padding: 12px 0;
        }

        .download_blue_category_item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 22px;
            color: #4a5568;
            text-decoration: none;
            font-size: 15px;
            border-left: 3px solid transparent;
            transition: all 0.25s ease;
            cursor: pointer;
        }

        .download_blue_category_item:hover {
            background-color: #f0f7fc;
            color: #0a6a9c;
        }

        .download_blue_category_item.active {
            background-color: #e8f4fc;
            color: #0a6a9c;
            border-left-color: #0a6a9c;
            font-weight: 600;
        }

        .download_blue_category_dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #cbd5e0;
            transition: background-color 0.25s ease;
        }

        .download_blue_category_item:hover .download_blue_category_dot,
        .download_blue_category_item.active .download_blue_category_dot {
            background-color: #0a6a9c;
        }

        /* 右侧下载列表 */
        .download_blue_content_area {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .download_blue_section_title {
            font-size: 20px;
            font-weight: 600;
            color: #0a6a9c;
            margin-bottom: 8px;
        }

        .download_blue_file_card {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            background-color: #ffffff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.28s ease;
        }

        .download_blue_file_card:hover {
            border-color: #0a6a9c;
            box-shadow: 0 4px 16px rgba(10, 106, 156, 0.14);
            transform: translateY(-2px);
        }

        .download_blue_file_info {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
            min-width: 0;
        }

        .download_blue_file_icon {
            width: 42px;
            height: 42px;
            flex-shrink: 0;
            background-color: #f0f7fc;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .download_blue_file_icon svg {
            width: 24px;
            height: 24px;
            fill: #0a6a9c;
        }

        .download_blue_file_name {
            font-size: 16px;
            color: #2d3748;
            line-height: 1.5;
            word-break: break-word;
        }

        .download_blue_file_meta {
            font-size: 13px;
            color: #718096;
            margin-top: 4px;
        }

        .download_blue_download_btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background-color: #0a6a9c;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .download_blue_download_btn:hover {
            background-color: #0878a3;
            box-shadow: 0 2px 8px rgba(10, 106, 156, 0.25);
        }

        .download_blue_download_btn:active {
            transform: scale(0.97);
        }

        .download_blue_download_btn svg {
            width: 18px;
            height: 18px;
            fill: #ffffff;
            transition: transform 0.2s ease;
        }

        .download_blue_download_btn:hover svg {
            transform: translateY(3px);
        }

        /* 平板适配 */
        @media screen and (max-width: 992px) {
            .download_blue_main_wrap {
                grid-template-columns: 1fr;
            }

            .download_blue_sidebar {
                position: static;
            }

            .download_blue_category_list {
                display: flex;
                overflow-x: auto;
                padding: 12px 16px;
                gap: 8px;
            }

            .download_blue_category_item {
                white-space: nowrap;
                border-left: none;
                border-bottom: 2px solid transparent;
                border-radius: 6px 6px 0 0;
                padding: 10px 16px;
                background-color: #f7f9fc;
            }

            .download_blue_category_item.active {
                border-left: none;
                border-bottom-color: #0a6a9c;
                background-color: #ffffff;
            }
        }

        /* 手机适配 */
        @media screen and (max-width: 576px) {
            .download_blue_main_wrap {
                margin: 24px auto;
                padding: 0 16px;
            }

            .download_blue_file_card {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px;
            }

            .download_blue_download_btn {
                align-self: flex-end;
            }

            .download_blue_file_name {
                font-size: 15px;
            }

            .download_blue_sidebar_title {
                font-size: 16px;
                padding: 16px 18px;
            }
        }
	