/* ==========================================
  沃虎国际1.0
   ========================================== */

/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1E88E5;
    --secondary-color: #FF9800;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --bg-gray: #F5F7FA;
    --bg-white: #FFFFFF;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #F44336;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-gray);
    overflow-x: hidden;
}


table {
    max-width: 100%;
}

.content-wrapper,
.news-split-grid,
.recruit-layout,
.notice-layout {
    min-width: 0;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

input,
select,
textarea,
button {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 14px;
    }

    .content-wrapper,
    .news-split-grid,
    .news-list-layout,
    .news-detail-layout,
    .recruit-layout,
    .notice-layout {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .sidebar,
    .list-sidebar,
    .notice-sidebar,
    .recruit-sidebar {
        order: 2;
    }

    .content-main,
    .list-main,
    .notice-main,
    .recruit-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    button,
    .btn,
    .hero-cta-btn,
    input,
    select,
    textarea {
        min-height: 1px;
    }
}

/* ==========================================
   头部导航
   ========================================== */

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.logo img {
    height: 50px;
    max-width: 180px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
}

.nav-list > li.active > a,
.nav-list > li:hover > a {
    color: var(--primary-color);
}

.sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-radius: 4px;
    margin-top: 10px;
}

.nav-list > li:hover .sub-nav {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.sub-nav li a {
    padding: 10px 20px;
    display: block;
    color: var(--text-color);
}

.sub-nav li a:hover {
    background: var(--bg-gray);
    color: var(--primary-color);
}

.header-search form {
    display: flex;
    align-items: center;
    background: var(--bg-gray);
    border-radius: 25px;
    padding: 5px 10px;
}

.header-search input {
    border: none;
    background: transparent;
    padding: 8px 15px;
    width: 200px;
    outline: none;
}

.header-search button {
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 10px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--bg-gray);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* 汉堡菜单动画 */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   横幅区域
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565C0 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-search form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px 5px 5px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-search i {
    color: var(--text-light);
    margin-right: 10px;
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 15px 10px;
    font-size: 16px;
    outline: none;
    color: var(--text-color);
}

.hero-search button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.hero-search button:hover {
    background: #F57C00;
    transform: translateY(-2px);
}

.quick-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-tags span {
    opacity: 0.8;
}

.quick-tags a {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
    transition: var(--transition);
}

.quick-tags a:hover {
    background: rgba(255,255,255,0.3);
}

/* ==========================================
   快速入口
   ========================================== */
.quick-entry {
    padding: 60px 0;
    background: var(--bg-white);
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.entry-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-gray);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.entry-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: white;
}

.entry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #1565C0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.entry-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.entry-item p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.entry-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.entry-link:hover {
    transform: translateX(5px);
}

/* ==========================================
   分类区域
   ========================================== */
.category-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    font-size: 16px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.category-card h3 a {
    color: var(--text-color);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 40px;
}

.category-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.category-info span {
    color: var(--text-light);
    font-size: 14px;
}

.view-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* ==========================================
   新版分类卡片设计（6个类目）
   ========================================== */
.category-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card-new {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card-new:hover::before {
    transform: scaleX(1);
}

.category-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(30, 136, 229, 0.15);
}

.category-icon-wrapper {
    margin-bottom: 25px;
}

.category-icon-new {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.category-card-new:hover .category-icon-new {
    transform: scale(1.1) rotate(5deg);
}

.category-content-new h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.category-content-new h3 a {
    color: var(--text-color);
    transition: var(--transition);
}

.category-card-new:hover .category-content-new h3 a {
    color: var(--primary-color);
}

.category-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 44px;
}

.category-article-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.category-article-list li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-article-list li::before {
    content: "•";
    color: var(--secondary-color);
    font-weight: 700;
}

.category-article-list a {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.category-article-list a:hover {
    color: var(--primary-color);
}

.category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.category-count {
    color: var(--text-light);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-count i {
    color: var(--secondary-color);
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-card-new:hover .category-link i {
    transform: translateX(5px);
}

/* 渐变色方案（6种配色） */
.category-card-new:nth-child(1) .category-icon-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-card-new:nth-child(2) .category-icon-new {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-card-new:nth-child(3) .category-icon-new {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-card-new:nth-child(4) .category-icon-new {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.category-card-new:nth-child(5) .category-icon-new {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.category-card-new:nth-child(6) .category-icon-new {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* ==========================================
   热门问题
   ========================================== */
.hot-questions {
    padding: 60px 0;
    background: var(--bg-white);
}

.hot-questions-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.hot-main-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.hot-main-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}

.hot-main-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.hot-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff6b6b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.35);
}

.hot-main-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hot-main-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.hot-main-body h3 a {
    color: var(--text-color);
}

.hot-main-body h3 a:hover {
    color: var(--primary-color);
}

.hot-main-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.hot-main-meta {
    display: flex;
    gap: 16px;
    color: #666;
    font-size: 13px;
}

.hot-main-meta i {
    margin-right: 6px;
    color: var(--secondary-color);
}

.hot-list-grid {
    display: grid;
    gap: 16px;
}

.hot-list-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hot-list-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hot-list-rank {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1E88E5, #64B5F6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.hot-list-content h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text-color);
}

.hot-list-meta {
    display: flex;
    gap: 14px;
    color: #666;
    font-size: 12px;
}

.hot-list-card i.fa-angle-right {
    margin-left: auto;
    color: #b0b0b0;
}

@media (max-width: 1024px) {
    .hot-questions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hot-main-media img {
        height: 180px;
    }
    
    .hot-list-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hot-list-card i.fa-angle-right {
        display: none;
    }
}

/* ==========================================
   最新公告
   ========================================== */
.notice-section {
    padding: 60px 0;
}

.notice-list {
    max-width: 900px;
    margin: 0 auto;
}

.notice-item {
    display: flex;
    gap: 25px;
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.notice-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.notice-date {
    text-align: center;
    min-width: 70px;
}

.notice-date .day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.notice-date .month {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.notice-content {
    flex: 1;
}

.notice-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.notice-content h4 a {
    color: var(--text-color);
}

.notice-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* ==========================================
   CTA区域
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565C0 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #F57C00;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-lg {
    padding: 18px 50px;
    font-size: 18px;
}

/* ==========================================
   面包屑
   ========================================== */
.breadcrumb {
    background: var(--bg-white);
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid #e8eef7;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.6;
}

.breadcrumb a {
    color: #5c6f88;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb-home {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.breadcrumb-sep {
    color: #9aa8bb;
}

.breadcrumb-current {
    color: #10213f;
    font-weight: 600;
}

.breadcrumb i {
    margin-right: 2px;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 13px;
        padding: 10px 0;
    }

    .breadcrumb-nav {
        gap: 6px;
    }
}


/* ==========================================
   主内容区域
   ========================================== */
.main-content {
    padding: 40px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* 列表页布局增强 */
.list-layout {
    align-items: start;
}

.list-sidebar .widget-card {
    background: var(--bg-white);
    padding: 22px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}

.widget-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
}

.widget-sub {
    color: var(--text-light);
    font-size: 12px;
}

.list-main {
    background: var(--bg-white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 28px;
}

.list-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.list-hero-text .list-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.list-hero-text .list-desc {
    color: var(--text-light);
}

.list-hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-count {
    background: var(--bg-gray);
    color: var(--text-color);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.list-cards .question-card {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px dashed var(--border-color);
}

.list-cards .question-card:last-child {
    border-bottom: none;
}

.question-left {
    display: flex;
    justify-content: center;
}

.question-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1E88E5, #64B5F6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(30, 136, 229, 0.25);
}

.list-cards .question-title a {
    color: var(--text-color);
}

.list-cards .question-summary {
    color: var(--text-light);
}

.list-cards .question-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.list-cards .question-stats {
    color: var(--text-light);
}

.list-cards .question-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.list-cards .question-card:hover .question-arrow {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 1024px) {
    .list-hero {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .list-hero-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .list-main {
        padding: 20px;
    }
    
    .list-cards .question-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .question-left {
        justify-content: flex-start;
    }
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.category-menu {
    list-style: none;
}

.category-menu > li {
    margin-bottom: 10px;
}

.category-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: var(--bg-gray);
    border-radius: 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.category-menu > li.active > a,
.category-menu > li > a:hover {
    background: var(--primary-color);
    color: white;
}

.category-menu .count {
    font-size: 12px;
    opacity: 0.8;
}

.sub-category {
    list-style: none;
    margin-top: 10px;
    padding-left: 20px;
}

.sub-category li {
    margin-bottom: 8px;
}

.sub-category li a {
    display: block;
    padding: 8px 12px;
    color: var(--text-light);
    border-left: 2px solid var(--border-color);
}

.sub-category li.active a,
.sub-category li a:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.hot-list,
.related-list {
    list-style: none;
}

.hot-list li,
.related-list li {
    margin-bottom: 12px;
}

.hot-list li a,
.related-list li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

.hot-list li a:hover,
.related-list li a:hover {
    color: var(--primary-color);
}

.hot-num {
    width: 22px;
    height: 22px;
    background: var(--bg-gray);
    color: var(--text-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-widget .contact-box {
    text-align: center;
}

.contact-box p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* 内容主体 */
.content-main {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.list-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.list-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.list-desc {
    color: var(--text-light);
    margin-bottom: 20px;
}

.list-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.questions-list-page .question-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.questions-list-page .question-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.question-main {
    flex: 1;
}

.question-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.question-title a {
    color: var(--text-color);
}

.question-summary {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.question-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question-tags .tag {
    background: var(--bg-gray);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-light);
}

.question-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.question-arrow {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 24px;
}

/* ==========================================
   文章详情
   ========================================== */
.article-detail {
    margin-bottom: 40px;
}

.article-card {
    background: var(--bg-white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 28px;
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-gray);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 12px;
}

.article-title {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.meta-item {
    background: var(--bg-gray);
    padding: 6px 12px;
    border-radius: 999px;
}

.meta-item i {
    margin-right: 6px;
}

.article-body {
    font-size: 16px;
    line-height: 2;
    color: var(--text-color);
    max-width: 65ch;
    margin: 0 auto;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    margin: 30px 0 15px;
    color: var(--text-color);
}

.article-body ul,
.article-body ol {
    margin: 15px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-tags {
    margin: 30px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.article-tags i {
    color: var(--text-light);
}

.article-tags a {
    background: var(--bg-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
}

.article-tags a:hover {
    background: var(--primary-color);
    color: white;
}

.article-feedback {
    text-align: center;
    padding: 30px;
    background: var(--bg-gray);
    border-radius: 14px;
    margin: 30px 0;
}

.article-feedback p {
    font-size: 18px;
    margin-bottom: 20px;
}

.question-collect {
    margin: 30px 0;
    padding: 26px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.collect-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.collect-head h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.collect-head p {
    color: var(--text-light);
    font-size: 14px;
}

.collect-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.collect-form .form-group {
    margin-bottom: 16px;
}

.collect-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-light);
}

.collect-form input,
.collect-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    background: white;
    transition: var(--transition);
}

.collect-form input:focus,
.collect-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.12);
}

.collect-form .captcha-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.collect-form .captcha-img {
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.collect-form .required {
    color: var(--danger-color);
}

@media (max-width: 768px) {
    .collect-head {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .collect-form .form-row {
        grid-template-columns: 1fr;
    }
}

.feedback-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-feedback {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition);
}

.btn-feedback:hover {
    transform: translateY(-2px);
}

.btn-feedback.helpful:hover {
    border-color: var(--success-color);
    color: var(--success-color);
}

.btn-feedback.not-helpful:hover {
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.nav-item {
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-item:hover {
    background: var(--primary-color);
    color: white;
}

.nav-label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.nav-item a {
    font-size: 15px;
    font-weight: 500;
}

.related-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.section-subtitle {
    font-size: 24px;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    padding: 20px;
    background: var(--bg-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.related-card:hover {
    background: white;
    box-shadow: var(--shadow);
}

.related-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.related-card h4 a {
    color: var(--text-color);
}

.related-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.card-footer {
    font-size: 13px;
    color: var(--text-light);
}

/* ==========================================
   单页内容
   ========================================== */
.single-page .page-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.page-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
}

.page-body {
    font-size: 16px;
    line-height: 2;
    max-width: 65ch;
    margin: 0 auto;
}

/* ==========================================
   留言页面
   ========================================== */
.message-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.message-info {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.message-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.message-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    gap: 20px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.detail-content p {
    color: var(--text-light);
    font-size: 14px;
}

.message-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.message-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.required {
    color: var(--danger-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.captcha-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-group input {
    flex: 1;
}

.captcha-img {
    height: 45px;
    cursor: pointer;
    border-radius: 4px;
}

/* ==========================================
   搜索结果页
   ========================================== */
.search-result-wrapper {
    max-width: none;
    margin: 0;
    display: grid;
    gap: 18px;
}

.search-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.search-box form {
    display: flex;
    gap: 15px;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-box button {
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: #1565C0;
}

.search-info {
    background: var(--bg-white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.search-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.search-info p {
    color: var(--text-light);
}

.highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.search-results {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.search-item {
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.search-item:last-child {
    border-bottom: none;
}

.search-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.search-title a {
    color: var(--text-color);
}

.search-title a:hover {
    color: var(--primary-color);
}

.search-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.search-title a {
    word-break: break-word;
    overflow-wrap: anywhere;
}


.search-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.no-result {
    background: var(--bg-white);
    padding: 80px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.no-result-icon {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.no-result h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.no-result > p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.no-result-tips {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-result-tips p {
    font-weight: 600;
    margin-bottom: 15px;
}

.no-result-tips ul {
    list-style-position: inside;
    color: var(--text-light);
}

.no-result-tips li {
    margin-bottom: 8px;
}

.no-result-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.search-recommend {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.search-recommend h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.search-box,
.search-info,
.search-results,
.no-result,
.search-recommend {
    margin-bottom: 0;
}

.search-page .pagination {
    margin-top: 0;
}

@media (max-width: 768px) {
    .search-result-wrapper {
        gap: 14px;
    }

    .search-box,
    .search-info,
    .search-results,
    .search-recommend,
    .no-result {
        padding: 18px 14px;
    }

    .search-box form {
        flex-direction: column;
        gap: 10px;
    }

    .search-box button {
        width: 100%;
        padding: 12px 18px;
    }

    .no-result-actions {
        flex-direction: column;
        gap: 10px;
    }
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.recommend-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-gray);
    border-radius: 8px;
    color: var(--text-color);
    transition: var(--transition);
}

.recommend-item a:hover {
    background: var(--primary-color);
    color: white;
}

/* ==========================================
   分页
   ========================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 10px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-color);
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ==========================================
   底部
   ========================================== */
.footer {
    background: #2C3E50;
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-info i {
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.friend-links {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    margin-bottom: 20px;
}

.friend-links h4 {
    margin: 0 0 14px;
    font-size: 16px;
    color: #fff;
}

.friend-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.friend-links-list a {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    line-height: 1.6;
    transition: var(--transition);
}

.friend-links-list a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}


.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
}

/* ==========================================
   返回顶部
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1565C0;
    transform: translateY(-5px);
}

/* ==========================================
   悬浮客服
   ========================================== */
.float-service {
    position: fixed;
    right: 30px;
    bottom: 150px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.service-item {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-item:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ==========================================
   响应式设计
   ========================================== */

/* 大屏幕微调 (1280px - 1440px) */
@media (max-width: 1440px) {
    .container {
        max-width: 1140px;
    }
    
    .nav-list {
        gap: 20px;
    }
}

/* 中等屏幕 - 启用汉堡菜单 (1200px 以下) */
@media (max-width: 1200px) {
    /* 显示移动端切换按钮 */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
    }
    
    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-color);
        transition: var(--transition);
        border-radius: 2px;
    }
    
    /* 隐藏桌面导航 */
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        box-shadow: var(--shadow-hover);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav.show {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-list > li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-list > li > a {
        padding: 15px 25px;
        display: block;
        font-size: 15px;
    }
    
    .sub-nav {
        position: static;
        box-shadow: none;
        background: transparent;
        margin: 0;
        padding: 6px 0 2px 12px;
        opacity: 1;
        visibility: visible;
        display: block;
    }
    
    .sub-nav li {
        border-bottom: none;
    }
    
    .sub-nav li a {
        padding: 8px 12px;
        font-size: 14px;
        color: #64748b;
    }
    
    /* 隐藏头部搜索 */
    .header-search {
        display: none;
    }
    
    /* Logo 调整 */
    .logo img {
        height: 45px;
        max-width: 160px;
    }
    
    /* 添加遮罩层 */
    .nav-overlay {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: block;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 新版分类卡片响应式 */
    .category-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content > p {
        font-size: 16px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-search {
        display: none;
    }
    
    .category-grid,
    .entry-grid {
        grid-template-columns: 1fr;
    }
    
    /* 新版分类卡片响应式 */
    .category-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card-new {
        padding: 30px 25px;
    }
    
    .message-wrapper {
        grid-template-columns: 1fr;
    }
    
    .related-grid,
    .recommend-grid {
        grid-template-columns: 1fr;
    }
    
    .article-nav {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .friend-links-list {
        gap: 8px 14px;
    }

    
    .content-main {
        padding: 20px;
    }
    
    .single-page .page-content {
        padding: 30px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-search button {
        padding: 15px 25px;
    }
    
    .cta-content h2,
    .section-title h2 {
        font-size: 24px;
    }
    
    .list-title,
    .article-title {
        font-size: 24px;
    }
    
    .question-card {
        flex-direction: column;
    }
    
    .float-service,
    .back-to-top {
        right: 15px;
    }
}

/* 快递快速导航单页 */
.express-page {
    padding: 30px 0 60px;
}

.express-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.express-card,
.express-result,
.express-extra,
.tips-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.express-card {
    padding: 30px;
}

.express-header .page-title {
    margin: 0;
    font-size: 28px;
    color: #0f172a;
}

.express-subtitle {
    margin-top: 8px;
    color: #5f6b7a;
}

.express-form {
    margin-top: 20px;
}

.express-inputs {
    display: grid;
    grid-template-columns: 160px 1fr 140px;
    gap: 12px;
}

.express-inputs select,
.express-inputs input {
    height: 50px;
    border: 1px solid #e0e7ef;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    color: #1f2937;
}

.express-inputs select:focus,
.express-inputs input:focus {
    outline: none;
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}

.express-submit {
    height: 50px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.express-submit:disabled {
    background: #90caf9;
    cursor: not-allowed;
}

.express-help {
    margin-top: 10px;
    color: #8a94a6;
    font-size: 13px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.express-quick {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.express-quick-btn {
    background: #f1f5f9;
    border: none;
    color: #334155;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.express-quick-btn:hover {
    background: #e2e8f0;
}

.express-quick-btn.active {
    background: #1e88e5;
    color: #fff;
}

.express-tips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tips-card {
    padding: 24px;
}

.tips-card h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #0f172a;
}

.tips-card ul {
    margin: 0;
    padding-left: 18px;
    color: #5f6b7a;
    line-height: 1.7;
}

.tips-card-light {
    background: #f8fafc;
    border: 1px dashed #e2e8f0;
}

.express-result {
    margin-top: 28px;
    padding: 24px;
}

.express-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.express-result-header h2 {
    margin: 0;
    font-size: 20px;
    color: #0f172a;
}

.express-status {
    font-size: 13px;
    color: #1e88e5;
    background: #e3f2fd;
    padding: 4px 12px;
    border-radius: 999px;
}

.express-order-meta {
    margin-bottom: 8px;
    color: #64748b;
    font-size: 13px;
}

.result-empty,

.result-loading,
.result-error {
    color: #8a94a6;
    text-align: center;
    padding: 24px 0;
}

.result-error {
    color: #ef4444;
}

.express-timeline {
    margin-top: 8px;
}

.express-item {
    position: relative;
    padding: 12px 0 12px 18px;
    border-left: 2px solid #e4ecf4;
}

.express-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 18px;
    width: 12px;
    height: 12px;
    background: #90a4ae;
    border-radius: 50%;
}

.express-item.is-latest::before {
    background: #ff9800;
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.15);
}

.express-item time {
    display: block;
    color: #94a3b8;
    font-size: 12px;
}

.express-item p {
    margin: 4px 0 0;
    color: #334155;
}

.express-extra {
    margin-top: 24px;
    padding: 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 992px) {
    .express-hero {
        grid-template-columns: 1fr;
    }

    .express-inputs {
        grid-template-columns: 1fr;
    }

    .express-submit {
        width: 100%;
    }
}

/* ==========================================
   企业站主题增强（沃虎国际速运）
   ========================================== */
.site-header {
    top: 0;
}

.topbar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 12px;
}

.topbar-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar p {
    margin: 0;
}

.topbar-contact {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.topbar-contact a {
    color: #e2e8f0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-action-btn {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.header-action-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 65%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-20deg);
    transition: left .45s ease;
}

.header-action-btn:hover {
    transform: translateY(-2px);
}

.header-action-btn:hover::after {
    left: 130%;
}

.header-quote-btn {
    background: linear-gradient(135deg, var(--primary-color), #42a5f5);
    color: #fff;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.25);
}

.header-order-btn {
    border: 1px solid #cfe1f7;
    background: #fff;
    color: #0f62fe;
}


.enterprise-hero {
    background: linear-gradient(115deg, #0f62fe 0%, #155acb 54%, #0c4ca8 100%);
    padding: 86px 0 96px;
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-trust {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    opacity: 0.95;
}

.section {
    padding: 64px 0;
}

.pain-section,
.customer-section,
.case-section {
    background: #fff;
}

.why-wuhu-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.why-wuhu-title p {
    max-width: 900px;
    margin: 0 auto;
}

.why-wuhu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.why-wuhu-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid #dbe7f6;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(3, 31, 74, 0.08);
    padding: 26px 22px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    position: relative;
    overflow: hidden;
}

.why-wuhu-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0f62fe, #57afff);
}

.why-wuhu-card:hover {
    transform: translateY(-5px);
    border-color: #c8dbf2;
    box-shadow: 0 18px 36px rgba(3, 31, 74, 0.14);
}

.why-wuhu-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #0f172a;
}

.why-wuhu-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.why-wuhu-card li {
    color: #516176;
    line-height: 1.82;
    font-size: 14px;
}

.why-wuhu-card li strong {
    color: #0f62fe;
}

.data-logistics-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.data-logistics-title p {
    max-width: 860px;
    margin: 0 auto;
}

.data-logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.data-logistics-card {
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
    border: 1px solid #dce8f7;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(3, 31, 74, 0.08);
    padding: 24px 22px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.data-logistics-card:hover {
    transform: translateY(-4px);
    border-color: #c6daf1;
    box-shadow: 0 18px 34px rgba(3, 31, 74, 0.14);
}

.data-logistics-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #0f62fe, #4aa8ff);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 10px 18px rgba(15, 98, 254, .28);
}

.data-logistics-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.data-logistics-card p {
    color: #536174;
    line-height: 1.82;
    margin-bottom: 16px;
}

.data-logistics-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0f62fe;
    font-weight: 700;
    font-size: 14px;
}

.data-logistics-link i {
    transition: transform .2s ease;
}

.data-logistics-link:hover i {
    transform: translateX(3px);
}

.section-title {

    margin-bottom: 28px;
    text-align: center;
}

.section-title h2 {
    margin-bottom: 8px;
    font-size: 32px;
    color: #0f172a;
}

.section-title p {
    color: #64748b;
}

.pain-grid,
.service-grid,
.customer-grid,
.advantage-grid,
.case-list {
    display: grid;
    gap: 18px;
}

.pain-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pain-section {
    position: relative;
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
    overflow: hidden;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 98, 254, .12) 0%, rgba(15, 98, 254, 0) 72%);
    pointer-events: none;
}

.pain-section .container {
    position: relative;
    z-index: 1;
}

.pain-title h2 {
    font-size: 38px;
    letter-spacing: .2px;
    color: #0f172a;
}

.pain-title p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.85;
    color: #526176;
}

.pain-grid-new {
    gap: 22px;
}

.pain-grid article,
.service-grid article,
.customer-grid article,
.case-item,
.quote-card,
.about-highlights article,
.about-service-block,
.page-content {
    background: #fff;
    border: 1px solid #e5edf5;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(2, 32, 71, 0.06);
}

.pain-card {
    position: relative;
    padding: 26px 24px 24px;
    border: 1px solid #dbe7f6;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 35, 70, .08);
    overflow: hidden;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.pain-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0f62fe, #4aa8ff);
}

.pain-card:hover {
    transform: translateY(-4px);
    border-color: #c8dbf2;
    box-shadow: 0 18px 34px rgba(15, 35, 70, .14);
}

.pain-tag {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #0f62fe;
    background: #eaf3ff;
    margin-bottom: 14px;
    box-shadow: 0 6px 14px rgba(15, 98, 254, .18);
}

.pain-card h3 {
    font-size: 20px;
    line-height: 1.45;
    color: #0f172a;
}

.pain-card p {
    line-height: 1.9;
    color: #516176;
}




.pain-grid article,
.service-grid article,
.customer-grid article,
.case-item {
    padding: 22px;
}

.pain-grid h3,
.customer-grid h3,
.case-item h3,
.about-highlights h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.pain-grid p,
.service-grid p,
.customer-grid p,
.case-item p {
    color: #5f6b7a;
}


.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid article i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8f3ff;
    color: #0f62fe;
    margin-bottom: 12px;
    font-size: 18px;
}

.partner-foundation-section {
    position: relative;
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
    overflow: hidden;
}

.partner-foundation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(15, 98, 254, 0.09) 0 2px, transparent 3px),
        radial-gradient(circle at 76% 34%, rgba(37, 99, 235, 0.08) 0 2px, transparent 3px),
        radial-gradient(circle at 42% 70%, rgba(30, 64, 175, 0.08) 0 2px, transparent 3px),
        linear-gradient(112deg, rgba(15, 98, 254, 0.09) 1px, transparent 1px),
        linear-gradient(25deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
    background-size: auto, auto, auto, 260px 180px, 320px 220px;
    opacity: .2;
    pointer-events: none;
}

.partner-foundation-section .container {
    position: relative;
    z-index: 1;
}

.partner-foundation-title p {
    max-width: 920px;
    margin: 0 auto;
}

.partner-foundation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.partner-foundation-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d7e4f4;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(4, 24, 54, 0.08);
    padding: 28px 24px;
}

.partner-foundation-head h3 {
    margin-bottom: 6px;
    font-size: 28px;
    color: #0f172a;
}

.partner-foundation-head p {
    color: #2f5e98;
    font-size: 16px;
    font-weight: 600;
}

.partner-brand-list {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #ccdcf0;
    background: #f7fbff;
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
}

.partner-brand-chip em {
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    color: #436997;
    background: #e8f2ff;
    border-radius: 999px;
    padding: 2px 8px;
}

.partner-foundation-value {
    margin-top: 18px;
    line-height: 1.9;
    color: #4f5f73;
    font-size: 15px;
}


.advantage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.adv-item {
    border-radius: 16px;
    background: #0f172a;
    color: #fff;
    padding: 24px;
    text-align: center;
}

.adv-item strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 8px;
}

.case-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-split-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.news-panel {
    background: #fff;
    border: 1px solid #dce8f6;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(2, 32, 71, 0.07);
    padding: 20px 18px;
}

.news-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6eef8;
}

.news-panel-head h3 {
    font-size: 18px;
    color: #0f172a;
}

.news-panel-head a {
    font-size: 13px;
    color: #0f62fe;
    font-weight: 600;
}

.news-panel-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.news-panel-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.news-panel-list a {
    color: #334155;
    line-height: 1.6;
    flex: 1;
}

.news-panel-list a:hover {
    color: #0f62fe;
}

.news-panel-list span {
    color: #94a3b8;
    font-size: 12px;
    white-space: nowrap;
    margin-top: 2px;
}

.news-item {
    padding: 8px 0;
    border-bottom: 1px dashed #e8eef7;
}

.news-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.news-item-media,
.news-item-desc {
    display: none;
}

.news-item-main {
    width: 100%;
    min-width: 0;
}

.news-item-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.news-item-meta a {
    flex: 1;
    min-width: 0;
}

.news-item:first-child {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
    padding-top: 0;
}

.news-item:first-child .news-item-media {
    display: block;
    width: 108px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    flex: none;
    background: #e8eef7;
}

.news-item:first-child .news-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item:first-child .news-item-desc {
    display: block;
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fuel-slider-panel {
    overflow: hidden;
}

.fuel-panel-head {
    align-items: center;
}

.fuel-panel-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fuel-slider-dots {
    display: inline-flex;
    gap: 6px;
}

.fuel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: #cbd8ee;
    padding: 0;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.fuel-dot.is-active {
    width: 18px;
    border-radius: 999px;
    background: #0f62fe;
}

.fuel-slider-track-wrap {
    position: relative;
    overflow: hidden;
}

.fuel-slider-track {
    position: relative;
    min-height: 298px;
}

.fuel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
}

.fuel-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.fuel-slide-head {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.fuel-slide-head h4 {
    margin: 0;
    font-size: 16px;
    color: #0f1e35;
}

.fuel-slide-head span {
    font-size: 12px;
    color: #6c7f99;
}

.fuel-slide-table-wrap {
    border: 1px solid #e2ebf9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.fuel-slide-table {
    width: 100%;
    border-collapse: collapse;
}

.fuel-slide-table th,
.fuel-slide-table td {
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid #edf2fb;
}

.fuel-slide-table th {
    background: #f7faff;
    color: #5f728c;
    font-weight: 600;
    text-align: left;
}

.fuel-slide-table td {
    color: #334155;
}

.fuel-slide-table td.rate {
    color: #0f62fe;
    font-weight: 700;
    white-space: nowrap;
}

.fuel-slide-table tbody tr:last-child td {
    border-bottom: 0;
}

.fuel-trend-chart {
    border: 1px solid #e2ebf9;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
    padding: 8px 10px 4px;
    min-height: 86px;
}

.fuel-trend-svg {
    width: 100%;
    height: 64px;
    display: block;
}

.fuel-trend-labels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 4px;
}

.fuel-trend-labels span {
    font-size: 11px;
    color: #7a8ca3;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fuel-empty {
    margin: 0;
    font-size: 13px;
    color: #7b8ba0;
    text-align: center;
    line-height: 70px;
}

.case-item .meta {


    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-size: 13px;
}


.smart-journey-section {
    padding-top: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.smart-journey-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 44px 40px;
    background:
        radial-gradient(circle at 14% 22%, rgba(139, 202, 255, .18) 0%, rgba(139, 202, 255, 0) 46%),
        radial-gradient(circle at 84% 80%, rgba(98, 169, 255, .16) 0%, rgba(98, 169, 255, 0) 44%),
        linear-gradient(135deg, #0b1b35 0%, #112a50 44%, #1a3f72 100%);
    border: 1px solid rgba(160, 193, 238, .3);
    box-shadow: 0 24px 50px rgba(6, 21, 44, .28);
    text-align: center;
}

.smart-journey-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(118deg, rgba(158, 208, 255, .18) 1px, transparent 1px),
        linear-gradient(26deg, rgba(118, 182, 255, .12) 1px, transparent 1px);
    background-size: 260px 180px, 320px 220px;
    opacity: .18;
    pointer-events: none;
}

.smart-journey-head {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto 22px;
}

.smart-journey-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(169, 208, 255, .38);
    color: #d5ebff;
    background: rgba(127, 185, 255, .14);
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.smart-journey-card h2 {
    color: #f7fbff;
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: .4px;
}

.smart-journey-head p {
    color: rgba(223, 238, 255, .9);
    line-height: 1.85;
    font-size: 15px;
}

.smart-journey-form {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 196px;
    gap: 10px;
}

.smart-journey-form input {
    width: 100%;
    height: 54px;
    border-radius: 12px;
    border: 1px solid rgba(209, 226, 248, .45);
    background: rgba(255, 255, 255, .98);
    padding: 0 18px;
    color: #0f172a;
    font-size: 15px;
}

.smart-journey-form input:focus {
    outline: none;
    border-color: #91c4ff;
    box-shadow: 0 0 0 4px rgba(145, 196, 255, .24);
}

.smart-journey-form button {
    height: 54px;
    border-radius: 12px;
    border: 0;
    background: linear-gradient(135deg, #61b6ff 0%, #0f62fe 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 24px rgba(15, 98, 254, .38);
}

.smart-journey-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 98, 254, .45);
}

.smart-journey-tip {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    color: rgba(227, 241, 255, .95);
    font-size: 14px;
}


.footer-desc {

    color: #9aa4b2;
    margin: 14px 0 16px;
    line-height: 1.8;
}

.company-about-page .page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid #dfe9f8;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    box-shadow: 0 10px 30px rgba(8, 37, 84, 0.08);
}

.company-about-page .page-header {
    margin-bottom: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e4ecf8;
}

.company-about-page .page-title {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 1.35;
    color: #0f1e35;
}

.company-about-page .page-subtitle {
    margin: 0 auto;
    max-width: 860px;
    color: #61758f;
    font-size: 16px;
    line-height: 1.8;
}

.about-highlights {
    margin: 22px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-highlights article {
    padding: 20px;
}

.about-highlights h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.45;
    color: #1e2d45;
}

.about-highlights p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #62748a;
}

.about-highlights i {
    color: #0f62fe;
    margin-right: 8px;
}

.company-about-page .page-body {
    max-width: 100%;
    margin: 0;
    padding: 22px 24px;
    border: 1px solid #e2ebf8;
    border-radius: 14px;
    background: #fff;
    color: #3b4a61;
    font-size: 16px;
    line-height: 1.9;
    overflow: hidden;
}

.company-about-page .page-body > *:first-child {
    margin-top: 0 !important;
}

.company-about-page .page-body > *:last-child {
    margin-bottom: 0 !important;
}

.company-about-page .page-body p,
.company-about-page .page-body li {
    color: #516177;
    line-height: 1.9;
    word-break: break-word;
}

.company-about-page .page-body h1,
.company-about-page .page-body h2,
.company-about-page .page-body h3,
.company-about-page .page-body h4 {
    color: #1a2a42;
    line-height: 1.45;
    margin: 1.2em 0 .55em;
}

.company-about-page .page-body img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 10px;
    margin: 12px auto;
    display: block;
}

.company-about-page .page-body table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
    margin: 14px 0;
}

.company-about-page .page-body table th,
.company-about-page .page-body table td {
    border: 1px solid #dce6f5;
    padding: 10px 12px;
    white-space: nowrap;
}

.about-service-block {
    margin-top: 26px;
    padding: 26px;
    border: 1px solid #dde8f6;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(7, 34, 74, .06);
}

.about-service-head {
    margin-bottom: 16px;
}

.about-service-head h2 {
    margin: 0;
    font-size: 30px;
    color: #0f1e35;
}

.about-service-head p {
    margin: 8px 0 0;
    color: #60738b;
    line-height: 1.8;
}

.service-mini-grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.service-mini-item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e3ecf8;
    background: #f9fbff;
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    row-gap: 4px;
    align-items: start;
    transition: border-color .2s ease, background .2s ease;
}

.service-mini-item:hover {
    border-color: #cddff4;
    background: #ffffff;
}

.service-mini-item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eaf3ff;
    color: #0f62fe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    grid-row: 1 / span 2;
}

.service-mini-item strong,
.service-mini-item span {
    grid-column: 2;
}

.service-mini-item strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    margin-bottom: 0;
}

.service-mini-item span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 992px) {
    .company-about-page .page-content {
        padding: 24px;
    }

    .company-about-page .page-title {
        font-size: 30px;
    }

    .about-service-head h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .company-about-page .page-content {
        padding: 16px;
        border-radius: 14px;
    }

    .company-about-page .page-header {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .company-about-page .page-title {
        font-size: 24px;
    }

    .company-about-page .page-subtitle {
        font-size: 14px;
    }

    .company-about-page .page-body {
        padding: 14px;
        font-size: 15px;
    }

    .about-service-block {
        padding: 20px 16px;
    }

    .about-service-head h2 {
        font-size: 22px;
    }

    .service-mini-item {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .service-mini-item i,
    .service-mini-item strong,
    .service-mini-item span {
        grid-column: auto;
        grid-row: auto;
    }
}


.business-cta-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hidden-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1200px) {
    .pain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-wuhu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-list,
    .news-split-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fuel-slider-track {
        min-height: 320px;
    }
}



@media (max-width: 992px) {
    .topbar {
        display: none;
    }

    .header-quote-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content > p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .pain-title h2 {
        font-size: 34px;
    }

    .pain-title p {
        font-size: 15px;
        line-height: 1.8;
    }

    .why-wuhu-grid {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .customer-grid,
    .partner-foundation-grid,
    .about-highlights,
    .service-mini-grid {
        grid-template-columns: 1fr;
    }

    .partner-foundation-head h3 {
        font-size: 24px;
    }

    .smart-journey-card {
        padding: 34px 24px;
    }

    .smart-journey-card h2 {
        font-size: 32px;
    }

    .smart-journey-form {
        grid-template-columns: 1fr;
    }


}


@media (max-width: 768px) {
    .section {
        padding: 48px 0;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .pain-title h2 {
        font-size: 28px;
    }

    .pain-title p {
        font-size: 14px;
    }

    .why-wuhu-card {
        padding: 22px 18px;
    }

    .why-wuhu-card h3 {
        font-size: 20px;
    }

    .data-logistics-card {
        padding: 22px 18px;
    }

    .data-logistics-card h3 {
        font-size: 20px;
    }

    .pain-grid,
    .why-wuhu-grid,
    .data-logistics-grid,
    .partner-foundation-grid,
    .advantage-grid,
    .case-list,
    .news-split-grid {
        grid-template-columns: 1fr;
    }

    .fuel-panel-head {
        align-items: flex-start;
    }

    .fuel-panel-actions {
        width: 100%;
        justify-content: space-between;
    }

    .fuel-slider-track {
        min-height: 292px;
    }

    .fuel-slide-table th,
    .fuel-slide-table td {
        padding: 9px 10px;
    }

    .partner-foundation-card {

        padding: 22px 18px;
    }

    .partner-foundation-head h3 {
        font-size: 22px;
    }

    .smart-journey-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .smart-journey-card h2 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .smart-journey-form input,
    .smart-journey-form button {
        height: 48px;
        border-radius: 10px;
    }

    .smart-journey-tip {
        font-size: 13px;
    }

    .pain-card {

        padding: 18px;
    }

    .pain-card h3 {
        font-size: 18px;
    }
}


.fuel-page {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.fuel-page-content {
    border: 1px solid #dce8f6;
}

.fuel-page-header {
    text-align: center;
    margin-bottom: 26px;
}

.fuel-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.fuel-meta-grid article {
    background: #f6f9ff;
    border: 1px solid #deebf9;
    border-radius: 12px;
    padding: 14px 16px;
}

.fuel-meta-grid h3 {
    color: #0f172a;
    font-size: 16px;
    margin-bottom: 6px;
}

.fuel-meta-grid p {
    color: #526176;
    font-size: 14px;
    line-height: 1.7;
}

.fuel-table-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fuel-table-card {
    background: #fff;
    border: 1px solid #dce8f6;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(4, 30, 66, 0.06);
    overflow: hidden;
}

.fuel-table-head {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #e8eef7;
    background: linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
}

.fuel-table-head h2 {
    font-size: 18px;
    color: #0f172a;
}

.fuel-table-head a {
    color: #0f62fe;
    font-size: 13px;
    font-weight: 600;
}

.fuel-table-wrap {
    overflow-x: auto;
}

.fuel-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 320px;
}

.fuel-table th,
.fuel-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #edf2f8;
    font-size: 14px;
}

.fuel-table th {
    text-align: left;
    color: #334155;
    font-weight: 700;
    background: #f8fbff;
}

.fuel-table td {
    color: #4b5d73;
}

.fuel-table tbody tr:last-child td {
    border-bottom: 0;
}

.fuel-note-box {
    margin-top: 20px;
    background: #f7faff;
    border: 1px solid #dbe8f6;
    border-radius: 14px;
    padding: 18px;
}

.fuel-note-box h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 10px;
}

.fuel-note-box ul {
    margin-left: 18px;
    color: #4f5f73;
    line-height: 1.9;
}

@media (max-width: 992px) {
    .fuel-meta-grid,
    .fuel-table-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fuel-table th,
    .fuel-table td {
        padding: 9px 10px;
        font-size: 13px;
    }

    .fuel-page-content {
        padding: 22px 16px;
    }
}

/* ==========================================
   新闻列表页 / 详情页重设计
   ========================================== */
.news-list-page,
.news-detail-page {
    background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.news-list-layout,
.news-detail-layout {
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: start;
}

.news-widget {
    border: 1px solid #deebf9;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(3, 31, 74, 0.07);
}

.news-list-main,
.news-detail-main {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.news-list-hero {
    background: linear-gradient(135deg, #0f2548 0%, #1d3d72 100%);
    border-radius: 18px;
    border: 1px solid rgba(175, 208, 251, .35);
    padding: 28px 26px;
    margin-bottom: 18px;
}

.news-list-hero .list-title,
.news-list-hero .list-desc {
    color: #edf5ff;
}

.news-list-hero .list-count {
    background: rgba(255, 255, 255, .14);
    color: #edf5ff;
    border: 1px solid rgba(197, 220, 250, .34);
}

.news-cards {
    display: grid;
    gap: 16px;
}

.news-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #dde9f8;
    border-radius: 16px;
    padding: 20px 20px;
    box-shadow: 0 10px 24px rgba(3, 31, 74, 0.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    border-color: #c8ddf5;
    box-shadow: 0 16px 34px rgba(3, 31, 74, 0.12);
}

.news-card .question-title {
    margin-bottom: 8px;
    font-size: 23px;
}

.news-card .question-title a {
    color: #0f172a;
}

.news-card .question-summary {
    color: #536174;
    line-height: 1.85;
    margin-bottom: 12px;
}

.news-card-meta {
    justify-content: flex-start;
    gap: 16px;
    color: #64748b;
}

.news-card .question-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef5ff;
    color: #0f62fe;
}

.news-card:hover .question-arrow {
    background: #0f62fe;
    color: #fff;
}

.news-article-card {
    border: 1px solid #d8e6f6;
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(3, 31, 74, 0.12);
    padding: 0;
    overflow: hidden;
    background: #ffffff;
}

.news-article-header {
    position: relative;
    padding: 36px 38px 32px;
    margin-bottom: 0;
    border-bottom: 0;
    background: radial-gradient(circle at 16% 12%, rgba(58, 120, 255, .26) 0%, rgba(58, 120, 255, 0) 46%), linear-gradient(135deg, #091a34 0%, #173d71 58%, #1a4d89 100%);
}

.news-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: .22;
    pointer-events: none;
}

.news-hero-inner {
    position: relative;
    z-index: 1;
}

.news-article-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.news-article-header .article-badge {
    background: rgba(255, 255, 255, .16);
    color: #ecf5ff;
    border: 1px solid rgba(186, 214, 249, .35);
}

.news-article-card .article-title {
    font-size: 42px;
    line-height: 1.28;
    color: #f5f9ff;
    margin-bottom: 12px;
    letter-spacing: .3px;
}

.news-article-lead {
    color: rgba(226, 238, 255, .94);
    font-size: 17px;
    line-height: 1.88;
    max-width: 920px;
    margin-bottom: 22px;
}

.news-article-header .article-meta .meta-item {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(180, 210, 248, .36);
    color: #e8f3ff;
}

.news-hero-data {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.news-hero-data-item {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(179, 207, 245, .34);
    background: rgba(8, 21, 43, .34);
    backdrop-filter: blur(2px);
}

.news-hero-data-item span {
    display: block;
    font-size: 12px;
    color: rgba(209, 226, 248, .86);
    margin-bottom: 5px;
}

.news-hero-data-item strong {
    font-size: 16px;
    color: #f4f9ff;
    font-weight: 600;
}

.news-article-content-shell {
    margin: -24px 0 0;
    border-radius: 20px 20px 0 0;
    border: 1px solid #dce8f7;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 44, 88, 0.08);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.news-article-body-wrap {
    padding: 34px 36px 10px;
    background: #fff;
}

.news-article-card .article-body {
    font-size: 17px;
    line-height: 2;
    color: #334155;
}

.news-article-card .article-feedback {
    margin: 14px 36px 24px;
    border: 1px solid #dce9f8;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.news-article-card .article-nav {
    margin: 0 36px 30px;
}

.news-article-card .article-nav .nav-item {
    border-radius: 12px;
    border: 1px solid #dce8f7;
    background: #f8fbff;
}

.news-article-card .article-nav .nav-item:hover {
    background: #0f62fe;
    border-color: #0f62fe;
}

@media (max-width: 1200px) {
    .news-list-layout,
    .news-detail-layout {
        grid-template-columns: 260px 1fr;
        gap: 20px;
    }

    .news-article-card .article-title {
        font-size: 34px;
    }

    .news-hero-data {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .news-list-layout,
    .news-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-list-sidebar,
    .news-detail-sidebar {
        order: 2;
    }

    .news-list-main,
    .news-detail-main {
        order: 1;
    }

    .news-article-header {
        padding: 28px 24px 48px;
    }

    .news-article-content-shell {
        margin: -24px 16px 18px;
    }

    .news-article-body-wrap {
        padding: 24px 22px 6px;
    }

    .news-article-card .article-feedback,
    .news-article-card .article-nav {
        margin-left: 22px;
        margin-right: 22px;
    }
}

@media (max-width: 768px) {
    .news-list-hero {
        padding: 22px 18px;
    }

    .news-card {
        grid-template-columns: 1fr;
        padding: 18px 16px;
    }

    .news-card .question-title {
        font-size: 20px;
    }

    .news-article-card {
        border-radius: 16px;
    }

    .news-article-header {
        padding: 22px 16px 42px;
    }

    .news-article-meta-row {
        align-items: flex-start;
    }

    .news-article-card .article-title {
        font-size: 28px;
    }

    .news-article-lead {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .news-hero-data {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .news-article-content-shell {
        margin: -20px 0 0;
        border-radius: 14px 14px 0 0;
    }

    .news-article-body-wrap {
        padding: 18px 16px 4px;
    }

    .news-article-card .article-body {
        font-size: 15px;
        line-height: 1.9;
    }

    .news-article-card .article-feedback {
        margin: 14px 16px 18px;
    }

    .news-article-card .article-nav {
        margin: 0 16px 20px;
    }
}



.fuel-list-page {
    background: #f8fafc;
}


.fuel-list-header {
    text-align: center;
    margin-bottom: 22px;
}

.fuel-list-header h1 {
    font-size: 34px;
    color: #111827;
    margin-bottom: 8px;
}

.fuel-list-header p {
    color: #6b7280;
}

.fuel-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.fuel-list-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #edf2f7;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    padding: 16px 18px;
}

.fuel-list-card h2 {
    text-align: center;
    font-size: 33px;
    color: #1f2937;
    margin: 6px 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eceff4;
}


.fuel-list-table-wrap {
    overflow-x: auto;
}

.fuel-list-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 280px;
}

.fuel-list-table th,
.fuel-list-table td {
    padding: 12px 4px;
    border-bottom: 1px solid #f0f3f7;
    text-align: center;
    font-size: 16px;
}

.fuel-list-table th {
    color: #374151;
    font-weight: 700;
    background: #fbfcfe;
}

.fuel-list-table td {
    color: #4b5563;
}

.fuel-list-table td.rate {
    color: #ff6a00;
    font-weight: 700;
}

.fuel-list-table tbody tr:last-child td {
    border-bottom: 0;
}

.fuel-list-trend-chart {
    margin-top: 12px;
}

.fuel-list-trend-chart .fuel-trend-labels {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
    .fuel-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .fuel-list-grid {
        grid-template-columns: 1fr;
    }

    .fuel-list-header h1 {
        font-size: 28px;
    }

    .fuel-list-table th,
    .fuel-list-table td {
        font-size: 14px;
        padding: 10px 4px;
    }
}

/* ==========================================
   头部导航重设计（桌面端）
   ========================================== */
@media (min-width: 1201px) {
    .site-header {
        box-shadow: 0 10px 30px rgba(2, 32, 71, 0.08);
    }

    .header-content {
        min-height: 78px;
        padding: 10px 0;
        gap: 14px;
    }

    .logo img {
        height: 54px;
        max-width: 200px;
    }

    .nav {
        flex: 1;
        min-width: 0;
        display: flex;
        justify-content: center;
    }

    .nav-list {
        gap: 6px;
        background: #f5f9ff;
        border: 1px solid #dbe9f8;
        border-radius: 999px;
        padding: 6px;
    }

    .nav-list > li > a {
        padding: 10px 16px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 600;
        color: #334155;
    }

    .nav-list > li.active > a,
    .nav-list > li:hover > a {
        color: #0f62fe;
        background: #ffffff;
        box-shadow: 0 4px 10px rgba(15, 98, 254, 0.16);
    }

    .sub-nav {
        top: calc(100% + 8px);
        margin-top: 0;
        min-width: 210px;
        border-radius: 12px;
        border: 1px solid #e6eef8;
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
        padding: 8px;
        z-index: 1200;
        pointer-events: none;
        transform: translateY(8px);
    }

    .sub-nav::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -10px;
        height: 10px;
    }

    .nav-list > li:hover > .sub-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .sub-nav li a {
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 14px;
    }


    .header-search form {
        background: #f8fbff;
        border: 1px solid #dbe7f5;
        border-radius: 999px;
        padding: 4px 6px 4px 12px;
        height: 44px;
    }

    .header-search input {
        width: 170px;
        font-size: 14px;
        padding: 8px;
    }

    .header-search button {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #0f62fe;
        color: #fff;
        padding: 0;
    }

    .header-search button:hover {
        background: #0b55de;
        color: #fff;
    }

    .header-actions {
        gap: 8px;
    }

    .header-action-btn {
        padding: 10px 14px;
    }

    .header-quote-btn:hover {
        color: #fff;
        box-shadow: 0 12px 24px rgba(30, 136, 229, 0.28);
    }

    .header-order-btn:hover {
        color: #0b55de;
        box-shadow: 0 12px 24px rgba(15, 98, 254, 0.16);
    }
}


@media (max-width: 1366px) and (min-width: 1201px) {
    .header-search input {
        width: 136px;
    }

    .nav-list > li > a {
        padding: 10px 12px;
    }
}

@media (max-width: 1200px) {
    .topbar {
        display: none;
    }

    .header-content {
        min-height: 72px;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .header-tools {
        margin-left: auto;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        background: #f2f7ff;
        border: 1px solid #d8e7fb;
        gap: 4px;
    }

    .mobile-toggle span {
        width: 20px;
        height: 2px;
        background: #0f62fe;
    }

    .nav {
        top: 72px;
        width: 300px;
        height: calc(100vh - 72px);
        height: calc(100dvh - 72px);
        border-top: 1px solid #e6eef8;
        border-radius: 0 14px 14px 0;
    }

    .nav-overlay {
        top: 72px;
        height: calc(100vh - 72px);
    }

    .nav-list {
        padding: 16px;
    }

    .nav-list > li {
        border-bottom: none;
        margin-bottom: 6px;
    }

    .nav-list > li > a {
        border-radius: 10px;
        padding: 12px 14px;
        background: #f8fbff;
        font-weight: 600;
    }

    .nav-list > li.active > a {
        color: #0f62fe;
        background: #eaf3ff;
    }

    .sub-nav {
        display: block;
        background: transparent;
        padding: 6px 0 2px 12px;
    }

    .sub-nav li a {
        padding: 8px 12px;
        color: #64748b;
    }
}

/* 头部布局修正 */
@media (min-width: 1201px) {
    .header-content {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 16px;
    }

    .logo {
        min-width: max-content;
    }

    .nav {
        min-width: 0;
    }

    .nav-list {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        overflow: visible;
    }

    .nav-list > li {
        z-index: 2;
    }

    .nav-list > li:hover {
        z-index: 20;
    }


    .nav-list > li {
        flex: 0 0 auto;
    }

    .nav-list > li > a {
        white-space: nowrap;
        line-height: 1.35;
    }


    .header-tools {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-self: end;
        min-width: max-content;
    }

    .header-search {
        flex: 0 0 auto;
    }

    .header-search input {
        width: 150px;
    }
}

@media (max-width: 1366px) and (min-width: 1201px) {
    .header-content {
        grid-template-columns: auto 1fr auto;
    }

    .nav-list > li > a {
        padding: 10px 11px;
        font-size: 14px;
    }
}

/* 顶部导航右侧点击弹出搜索 */
@media (min-width: 1201px) {
    .header-tools {
        position: relative;
        min-width: max-content;
        justify-content: flex-end;
    }

    .header-search-toggle {
        height: 40px;
        border: 1px solid #d7e6f8;
        border-radius: 999px;
        background: #fff;
        color: #0f62fe;
        font-size: 13px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0 14px;
        cursor: pointer;
        box-shadow: 0 6px 14px rgba(15, 98, 254, 0.14);
        transition: all .25s ease;
    }

    .header-search-toggle:hover,
    .header-search-toggle[aria-expanded='true'] {
        color: #fff;
        border-color: transparent;
        background: linear-gradient(135deg, #0f62fe, #3ea5ff);
        box-shadow: 0 10px 20px rgba(15, 98, 254, 0.26);
    }

    .header-search-pop {
        position: absolute;
        right: 0;
        top: calc(100% + 10px);
        width: 340px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all .25s ease;
        z-index: 1002;
    }

    .header-search-pop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header-search-pop form {
        height: 46px;
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid #d7e6f8;
        border-radius: 12px;
        padding: 4px 4px 4px 12px;
        box-shadow: 0 14px 28px rgba(15, 98, 254, 0.18);
    }

    .header-search-pop input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
        color: #0f172a;
    }

    .header-search-pop input::placeholder {
        color: #8aa0bb;
    }

    .header-search-pop button {
        height: 36px;
        width: 40px;
        border: none;
        border-radius: 9px;
        background: linear-gradient(135deg, #0f62fe, #3ea5ff);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: filter .2s ease;
    }

    .header-search-pop button:hover {
        filter: brightness(1.05);
    }
}

@media (max-width: 1200px) {
    .header-tools {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .header-search-toggle {
        height: 38px;
        min-width: 38px;
        border: 1px solid #d7e6f8;
        border-radius: 10px;
        background: #fff;
        color: #0f62fe;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 10px;
        font-size: 14px;
    }

    .header-search-toggle span {
        display: none;
    }

    .header-search-pop {
        position: fixed;
        left: 12px;
        right: 12px;
        top: 78px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all .25s ease;
        z-index: 1002;
    }

    .header-search-pop.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header-search-pop form {
        height: 46px;
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid #d7e6f8;
        border-radius: 12px;
        padding: 4px 4px 4px 12px;
        box-shadow: 0 14px 28px rgba(15, 98, 254, 0.18);
    }

    .header-search-pop input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-size: 16px;
        color: #0f172a;
    }

    .header-search-pop button {
        height: 36px;
        width: 40px;
        border: none;
        border-radius: 9px;
        background: linear-gradient(135deg, #0f62fe, #3ea5ff);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}





/* 首页首屏轮播横幅 + 轨迹查询 */
.hero-slider {
    position: relative;
    min-height: 560px;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity .7s ease;
    transform: scale(1.03);
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(3, 23, 57, .82) 0%, rgba(10, 49, 112, .62) 48%, rgba(7, 22, 43, .42) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-slider .hero-content {
    text-align: left;
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 0;
}


.hero-track-form {
    margin: 24px auto 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 820px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .36);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.hero-cta-group {
    width: min(100%, 410px);
    display: flex;
    gap: 12px;
    margin: 0 auto 22px;
}

.hero-cta-btn {
    flex: 1;
    min-height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1px;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid;
    backdrop-filter: blur(6px);
    transition: all .22s ease;
}

.hero-cta-btn i {
    font-size: 12px;
}

.hero-quote-btn {
    color: #eaf2ff;
    background: rgba(15, 98, 254, .22);
    border-color: rgba(156, 197, 255, .56);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
}

.hero-order-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .4);
}

.hero-quote-btn:hover,
.hero-order-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .7);
    color: #fff;
    box-shadow: 0 10px 18px rgba(0, 20, 56, .22);
}

.hero-track-form input[name="cno"] {
    flex: 1;
    height: 68px;
    border: none;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 20px;
    line-height: 1.4;
    color: #0f172a;
    background: rgba(255, 255, 255, .96);
    outline: none;
}

.hero-track-form input[name="cno"]::placeholder {
    color: #64748b;
}

.hero-track-form input[name="cno"]:focus {
    box-shadow: 0 0 0 3px rgba(30, 136, 229, .18);
}

.hero-track-form button {
    height: 66px;
    min-width: 168px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #1d7fff, #3e9bff);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .3px;
    padding: 0 24px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(22, 119, 255, .3);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.hero-track-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(22, 119, 255, .38);
    filter: brightness(1.03);
}


.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dot {
    width: 28px;
    height: 6px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .36);
    cursor: pointer;
    transition: all .25s ease;
}

.hero-dot.is-active {
    width: 40px;
    background: #fff;
}

@media (max-width: 992px) {
    .hero-slider {
        min-height: 540px;
    }

    .hero-slider .hero-content {
        text-align: left;
        max-width: 100%;
        padding: 32px 0;
    }

    .hero-track-form {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        max-width: min(100%, 620px);
        margin: 18px 0 14px;
        padding: 12px;
        gap: 10px;
        border-radius: 14px;
        background: linear-gradient(145deg, rgba(10, 40, 90, .72), rgba(6, 24, 58, .62));
        border: 1px solid rgba(176, 210, 255, .42);
        box-shadow: 0 12px 26px rgba(2, 16, 42, .34);
    }

    .hero-track-form input[name="cno"] {
        width: 100%;
        height: 60px;
        border-radius: 12px;
        border: 1px solid rgba(171, 202, 247, .55);
        padding: 0 18px;
        font-size: 18px;
    }

    .hero-track-form button,
    .hero-cta-btn {
        width: 100%;
    }

    .hero-track-form button {
        height: 56px;
        min-width: 0;
        font-size: 17px;
    }

    .hero-cta-group {
        max-width: min(100%, 620px);
        margin: 0 0 20px;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }

    .hero-dots {
        bottom: 14px;
        gap: 5px;
    }

    .hero-dot {
        width: 10px;
        height: 3px;
        border-radius: 999px;
    }

    .hero-dot.is-active {
        width: 16px;
        height: 3px;
    }

    .hero-track-form {
        margin-top: 16px;
        padding: 10px;
        gap: 8px;
        border-radius: 12px;
        max-width: 100%;
    }

    .hero-track-form input[name="cno"] {
        width: 100%;
        box-sizing: border-box;
        height: 58px;
        border-radius: 11px;
        padding: 0 16px;
        font-size: 18px;
    }

    .hero-track-form input[name="cno"]::placeholder {
        font-size: 15px;
        color: #7c8ea9;
        letter-spacing: .1px;
    }

    .hero-track-form button {
        height: 54px;
        border-radius: 11px;
        font-size: 16px;
        letter-spacing: .2px;
    }

    .hero-cta-group {
        margin-top: 10px;
    }
}


/* ==========================================
   联系我们单页（简洁布局）
   ========================================== */
.contact-page {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.contact-clean-wrap {
    background: #ffffff;
    border: 1px solid #dce8f7;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(7, 34, 74, .07);
    padding: 28px;
}

.contact-clean-head {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4edf9;
}

.contact-clean-brand {
    font-size: 13px;
    color: #3f6ca3;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-clean-head h1 {
    margin-bottom: 10px;
    font-size: 36px;
    color: #0f1e35;
}

.contact-clean-head p {
    color: #5f738b;
    line-height: 1.8;
    margin: 0;
}

.contact-clean-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 18px;
    align-items: start;
}

.contact-clean-main {
    border: 1px solid #e3ecf8;
    border-radius: 12px;
    background: #f9fbff;
    padding: 14px;
}

.contact-clean-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.contact-clean-list li {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 10px;
    align-items: start;
    background: #fff;
    border: 1px solid #e5edf8;
    border-radius: 10px;
    padding: 12px;
}

.contact-clean-list li span {
    color: #60738b;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.contact-clean-list li span i {
    color: #0f62fe;
}

.contact-clean-list li strong {
    color: #172b47;
    font-size: 15px;
    line-height: 1.75;
    word-break: break-all;
}

.contact-clean-list li strong a {
    color: #0f62fe;
}

.contact-clean-address {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-clean-side {
    display: grid;
    gap: 10px;
}

.contact-clean-side .btn {
    justify-content: center;
}

.contact-clean-tip {
    margin-top: 2px;
    border: 1px dashed #c9dbf1;
    background: #f8fbff;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: #5d728a;
}

.contact-clean-tip i {
    color: #0f62fe;
    margin-top: 3px;
}

.contact-clean-tip p {
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
}

@media (max-width: 992px) {
    .contact-clean-grid {
        grid-template-columns: 1fr;
    }

    .contact-clean-head h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .contact-clean-wrap {
        padding: 20px 16px;
    }

    .contact-clean-head h1 {
        font-size: 26px;
    }

    .contact-clean-list li {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.solution-page {
    padding-bottom: 60px;
}

.solution-hero {
    background: linear-gradient(135deg, #0f172a, #0f62fe);
    color: #fff;
    border-radius: 18px;
    padding: 34px 28px;
    margin-bottom: 16px;
    box-shadow: 0 14px 30px rgba(15, 34, 66, .2);
}

.solution-kicker {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: .14em;
    opacity: .8;
}

.solution-hero h1 {
    margin: 0;
    font-size: 36px;
}

.solution-hero > p {
    margin: 10px 0 0;
    max-width: 760px;
    line-height: 1.8;
}

.solution-anchor-nav {
    position: sticky;
    top: 78px;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #dce8fa;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px);
    border-radius: 14px;
}

.solution-anchor-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    border-radius: 10px;
    color: #243b62;
    font-size: 14px;
    font-weight: 600;
    padding: 0 10px;
    text-align: center;
}

.solution-anchor-link:hover,
.solution-anchor-link.is-active {
    background: #0f62fe;
    color: #fff;
}

.solution-content {
    display: grid;
    gap: 20px;
}

.solution-block {
    border: 1px solid #deebf9;
    border-radius: 16px;
    padding: 22px;
    background: #fff;
    scroll-margin-top: 140px;
    box-shadow: 0 8px 20px rgba(15, 35, 70, .06);
}

.solution-block-head {
    margin-bottom: 14px;
}

.solution-block-head span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #0f62fe;
    margin-bottom: 6px;
}

.solution-block-head h2 {
    margin: 0;
    font-size: 30px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.solution-card {
    border: 1px solid #e7effb;
    border-radius: 14px;
    background: #f8fbff;
    padding: 16px;
    margin-bottom: 14px;
}

.solution-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #0f172a;
}

.solution-card h3 i {
    color: #0f62fe;
}

.solution-card p {
    margin: 0;
    color: #334155;
    line-height: 1.8;
}

.solution-compare-chart,
.timeliness-bars {
    display: grid;
    gap: 10px;
}

.chart-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    align-items: center;
}

.chart-row span {
    font-size: 14px;
    color: #334155;
}

.chart-track {
    height: 30px;
    border-radius: 999px;
    background: #e8effb;
    overflow: hidden;
}

.chart-track em {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    background: #94a3b8;
    color: #fff;
    font-size: 12px;
    font-style: normal;
    padding-right: 10px;
}

.chart-track em.is-better {
    background: linear-gradient(90deg, #0f62fe, #1d9bf0);
}

.timeliness-bars div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 10px;
}

.timeliness-bars span {
    font-size: 14px;
}

.timeliness-bars b {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f62fe, #2c7dff);
    color: #fff;
    font-size: 12px;
    padding-right: 10px;
}

.tool-card {
    background: #f2f8ff;
}

.mini-widget {
    display: grid;
    gap: 10px;
}

.mini-widget label {
    font-size: 14px;
    color: #334155;
    font-weight: 600;
}

.mini-widget input,
.mini-widget select {
    height: 42px;
    border-radius: 10px;
    border: 1px solid #d4e4fb;
    padding: 0 12px;
    background: #fff;
}

.widget-result {
    margin: 0;
    border-radius: 10px;
    border: 1px dashed #b7cff5;
    background: #fff;
    padding: 10px 12px;
    color: #334155;
    font-size: 14px;
}

.ddp-flow {
    margin: 0;
    padding-left: 22px;
    display: grid;
    gap: 8px;
    color: #1e293b;
}

.country-ddp-list,
.board-preview {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.country-ddp-list li,
.board-preview div {
    border: 1px solid #d7e6fb;
    border-radius: 12px;
    background: #fff;
    padding: 10px 12px;
    display: grid;
    gap: 4px;
}

.country-ddp-list li strong,
.board-preview b {
    color: #0f172a;
}

.country-ddp-list li span,
.board-preview span {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

.solution-case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #0f62fe;
}

.solution-cta {
    margin-top: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f62fe, #0f172a);
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}

.solution-cta h2 {
    margin: 0 0 16px;
    font-size: 30px;
}

.solution-cta .btn {
    min-width: 220px;
}

@media (max-width: 1200px) {
    .solution-anchor-nav {
        top: 70px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .solution-hero h1,
    .solution-block-head h2,
    .solution-cta h2 {
        font-size: 26px;
    }

    .solution-anchor-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .solution-hero {
        padding: 24px 18px;
    }

    .solution-anchor-nav {
        position: static;
        grid-template-columns: 1fr;
    }

    .solution-block {
        padding: 16px;
    }

    .chart-row,
    .timeliness-bars div {
        grid-template-columns: 1fr;
    }
}

.solution-v14 {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 260px);
    padding-bottom: 70px;
}

.solution-v14 .container {
    max-width: 1240px;
}

.v14-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #0e1f45;
    color: #fff;
    padding: 38px 34px;
    margin-bottom: 18px;
}

.v14-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 18%, rgba(53, 152, 255, .45), transparent 45%),
    radial-gradient(circle at 15% 90%, rgba(34, 214, 255, .32), transparent 38%);
    pointer-events: none;
}

.v14-hero > * {
    position: relative;
    z-index: 1;
}

.v14-hero-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .82);
}

.v14-hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.25;
}

.v14-hero p {
    margin: 12px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, .9);
}

.solution-v14 .v14-anchor-nav {
    top: 82px;
    border-radius: 12px;
    border: 1px solid #d8e7ff;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 20px rgba(15, 38, 76, .09);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 8px;
    gap: 8px;
}

.solution-v14 .solution-anchor-link {
    min-height: 44px;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #274064;
    background: #f6f9ff;
    border: 1px solid transparent;
}

.solution-v14 .solution-anchor-link i {
    color: #2d7cff;
}

.solution-v14 .solution-anchor-link.is-active,
.solution-v14 .solution-anchor-link:hover {
    background: linear-gradient(135deg, #0f62fe, #2d86ff);
    color: #fff;
    border-color: #0f62fe;
}

.solution-v14 .solution-anchor-link.is-active i,
.solution-v14 .solution-anchor-link:hover i {
    color: #fff;
}

.v14-content {
    gap: 18px;
}

.solution-v14 .v14-block {
    border: 1px solid #d9e8fb;
    border-radius: 16px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(15, 35, 72, .06);
    scroll-margin-top: 142px;
}

.v14-title-row {
    margin-bottom: 14px;
}

.v14-part {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0f62fe;
    letter-spacing: .06em;
}

.v14-title-row h2 {
    margin: 0;
    color: #0f172a;
    font-size: 32px;
}

.v14-two-col,
.v14-tools-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.v14-panel {
    border: 1px solid #dfecff;
    border-radius: 12px;
    background: #f8fbff;
    padding: 16px;
}

.v14-panel h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #0f1d3a;
}

.v14-panel h3 i {
    color: #2b7dff;
}

.v14-panel p {
    margin: 0;
    line-height: 1.8;
    color: #3c4d66;
}

.v14-panel.is-problem {
    background: linear-gradient(180deg, #fff8f4 0%, #fff 100%);
    border-color: #fde4d6;
}

.v14-panel.is-solution {
    background: linear-gradient(180deg, #f3f9ff 0%, #fff 100%);
    border-color: #d9e9ff;
}

.v14-chart-box {
    display: grid;
    gap: 10px;
}

.v14-chart-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    align-items: center;
}

.v14-chart-item span {
    font-size: 14px;
    color: #334155;
}

.v14-track {
    height: 32px;
    border-radius: 999px;
    background: #e7eef9;
    overflow: hidden;
}

.v14-track em {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    font-style: normal;
    color: #fff;
    font-size: 12px;
    padding-right: 10px;
    background: #99a8bf;
}

.v14-track em.is-good {
    background: linear-gradient(90deg, #0f62fe, #2d91ff);
}

.solution-v14 .timeliness-bars {
    display: grid;
    gap: 10px;
}

.solution-v14 .timeliness-bars div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 10px;
}

.solution-v14 .timeliness-bars b {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 28px;
    border-radius: 999px;
    padding-right: 10px;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(90deg, #0f62fe, #2d91ff);
}

.solution-v14 .mini-widget {
    display: grid;
    gap: 10px;
}

.solution-v14 .mini-widget label {
    font-size: 14px;
    font-weight: 600;
    color: #243b5d;
}

.solution-v14 .mini-widget input,
.solution-v14 .mini-widget select {
    height: 42px;
    border-radius: 8px;
    border: 1px solid #cfe0fb;
    background: #fff;
    padding: 0 12px;
}

.solution-v14 .widget-result {
    margin: 0;
    border: 1px dashed #b4cdf8;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
    font-size: 14px;
    color: #364b68;
}

.solution-v14 .ddp-flow,
.solution-v14 .country-ddp-list,
.solution-v14 .board-preview {
    margin: 0;
}

.solution-v14 .ddp-flow {
    padding-left: 22px;
    display: grid;
    gap: 8px;
}

.solution-v14 .country-ddp-list,
.solution-v14 .board-preview {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 8px;
}

.solution-v14 .country-ddp-list li,
.solution-v14 .board-preview div {
    border: 1px solid #dbe9ff;
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px;
    display: grid;
    gap: 2px;
}

.solution-v14 .country-ddp-list li span,
.solution-v14 .board-preview span {
    font-size: 14px;
    color: #475569;
}

.solution-v14 .v14-case-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0f62fe;
    font-weight: 700;
}

.solution-v14 .v14-cta {
    margin-top: 22px;
    border-radius: 16px;
    padding: 32px 20px;
    background: linear-gradient(130deg, #0f62fe 0%, #0e1f45 100%);
    color: #fff;
    text-align: center;
}

.solution-v14 .v14-cta h2 {
    margin: 0 0 16px;
    font-size: 32px;
}

@media (max-width: 1200px) {
    .solution-v14 .v14-anchor-nav {
        top: 74px;
    }

    .v14-two-col,
    .v14-tools-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .v14-hero h1,
    .v14-title-row h2,
    .solution-v14 .v14-cta h2 {
        font-size: 27px;
    }

    .solution-v14 .v14-anchor-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .v14-hero {
        padding: 24px 18px;
    }

    .solution-v14 .v14-anchor-nav {
        position: static;
        grid-template-columns: 1fr;
    }

    .solution-v14 .v14-block {
        padding: 16px;
    }

    .v14-chart-item,
    .solution-v14 .timeliness-bars div {
        grid-template-columns: 1fr;
    }
}

.solution-page-pro {
    padding-bottom: 0;
}

.solution-page-pro {
    background: #f5f8ff;
    padding: 18px 0 0;
}

.solution-page-pro .solution-nav {
    position: sticky;
    top: 72px;
    z-index: 160;
    padding: 0;
    margin: 0 auto 14px;
}

.solution-page-pro .nav-container {
    max-width: 1200px;
    width: calc(100% - 4rem);
    margin: 0 auto;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e8efff;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(21, 60, 139, 0.1);
    transition: box-shadow .25s ease;
}

.solution-page-pro .solution-nav.is-scrolled .nav-container {
    box-shadow: 0 12px 26px rgba(21, 60, 139, 0.14);
}

.solution-page-pro .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.solution-page-pro .nav-menu li {
    display: flex;
    justify-content: center;
}

.solution-page-pro .nav-link {
    color: #2d3b55;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all .2s ease;
    text-align: center;
    display: inline-block;
}


.solution-page-pro .nav-link.active {
    background: #0a61ff;
    color: #fff;
    box-shadow: 0 8px 16px rgba(10, 97, 255, 0.25);
}

.solution-page-pro .nav-link:hover {
    background: #eef4ff;
    color: #0a61ff;
}

.solution-page-pro .nav-link.active::after {
    content: none;
}

.solution-page-pro .btn-primary {
    background: #0a61ff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    display: inline-block;
    box-shadow: 0 8px 16px rgba(10, 97, 255, 0.25);
}

.solution-page-pro .solutions-container {
    margin-top: 0;
}

.solution-page-pro .solution-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 2rem 28px;
    border-bottom: none;
}

.solution-page-pro .solution-section:nth-child(even) {
    background: transparent;
}

.solution-page-pro .solution-content {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-page-pro .section-header {
    text-align: center;
    margin-bottom: 16px;
}

.solution-page-pro #cost-control > .section-header {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto 16px;
    padding: 44px 24px 48px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #053594 0%, #0b79ff 100%);
    box-shadow: 0 14px 30px rgba(9, 50, 140, 0.2);
}


.solution-page-pro #cost-control > .section-header::before,
.solution-page-pro #cost-control > .section-header::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.solution-page-pro #cost-control > .section-header::before {
    width: 260px;
    height: 260px;
    right: -70px;
    top: -120px;
    background: rgba(255, 255, 255, 0.18);
}

.solution-page-pro #cost-control > .section-header::after {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -130px;
    background: rgba(9, 247, 255, 0.2);
}

.solution-page-pro .section-header h1 {
    font-size: 2.5rem;
    color: #0057ff;
    margin-bottom: .5rem;
}

.solution-page-pro #cost-control > .section-header h1,
.solution-page-pro #cost-control > .section-header .section-subtitle,
.solution-page-pro #cost-control > .section-header h1 i {
    position: relative;
    color: #fff;
}

.solution-page-pro #cost-control > .section-header .section-subtitle {
    opacity: .94;
}

.solution-page-pro .section-subtitle {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.solution-page-pro .solution-content h2 {
    font-size: 28px;
    line-height: 1.35;
    margin: 0 0 16px;
    color: #1f2d3d;
    font-weight: 700;
}

.solution-page-pro .solution-content h3 {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 600;
}

.solution-page-pro .solution-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #5b687a;
}



.solution-page-pro .card {

    background: #fff;
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 18px;
    box-shadow: 0 8px 22px rgba(21, 60, 139, 0.1);
    transition: box-shadow .25s ease;
}

.solution-page-pro .card:hover {
    box-shadow: 0 12px 28px rgba(21, 60, 139, 0.14);
}


.solution-page-pro .card.highlight {
    border-left: 4px solid #0057ff;
    background: linear-gradient(135deg, #f8faff, #fff);
}

.solution-page-pro #cost-control .cost-solution-card {
    border-left: 4px solid #0a61ff;
    background: #fff;
    border: 1px solid #e8efff;
    box-shadow: 0 10px 24px rgba(12, 60, 145, 0.1);
    padding: 18px 20px;
}

.solution-page-pro #cost-control .cost-solution-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
    color: #1f2d3d;
}


.solution-page-pro #cost-control .cost-solution-card h2 i {
    color: #0a61ff;
}

.solution-page-pro #cost-control .cost-solution-card .solution-features {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.solution-page-pro #cost-control .cost-solution-card .feature {
    align-items: flex-start;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 10px;
}

.solution-page-pro #cost-control .cost-solution-card .feature-icon {
    width: 34px;
    height: 34px;
    background: #0a61ff;
    box-shadow: 0 6px 14px rgba(10, 97, 255, 0.25);
}

.solution-page-pro #cost-control .cost-solution-card .feature-icon i {
    font-size: 14px;
}

.solution-page-pro #cost-control .cost-solution-card .feature-content h3 {
    margin: 0 0 4px;
    font-size: 20px;
    color: #1f2d3d;
}


.solution-page-pro #cost-control .cost-solution-card .feature-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #5c6b7f;
}



.solution-page-pro .problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.solution-page-pro .problem-item {
    text-align: center;
    padding: 1.25rem;
    border-radius: 8px;
    background: #f8f9fa;
}

.solution-page-pro .problem-item i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: .75rem;
}

.solution-page-pro .solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.solution-page-pro .feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.solution-page-pro .feature-icon {
    background: #0057ff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-page-pro .feature-icon i {
    font-size: 1.2rem;
}

.solution-page-pro .data-showcase {
    text-align: center;
}

.solution-page-pro .comparison-item {
    margin-bottom: 1rem;
}

.solution-page-pro .comparison-label {
    margin-bottom: .5rem;
    font-weight: 500;
    text-align: left;
}

.solution-page-pro .comparison-bar {
    height: 40px;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
}

.solution-page-pro .bar-fill {
    height: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    font-weight: 700;
    color: #fff;
    justify-content: flex-start;
    transition: width 1.2s ease-out;
}

.solution-page-pro .bar-fill.traditional {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}

.solution-page-pro .bar-fill.vohoo {
    background: linear-gradient(90deg, #0057ff, #00c6ff);
}

.solution-page-pro .saving-badge {
    text-align: center;
    padding: .9rem 1.2rem;
    background: linear-gradient(135deg, #00c6ff, #0057ff);
    color: #fff;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
}

.solution-page-pro .saving-percent {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.solution-page-pro .tool-widget {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.solution-page-pro .calculator-form {
    max-width: 600px;
    margin: 0 auto;
}

.solution-page-pro .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.solution-page-pro .form-group {
    margin-bottom: .75rem;
}

.solution-page-pro .form-group label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 500;
}

.solution-page-pro .form-group select,
.solution-page-pro .form-group input {
    width: 100%;
    padding: .75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
}

.solution-page-pro .btn-calculate {
    background: linear-gradient(135deg, #0057ff, #00c6ff);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    margin: 1rem 0;
}

.solution-page-pro .result-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.solution-page-pro .price-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: .5rem;
    align-items: center;
    padding: .75rem;
    border-bottom: 1px solid #eee;
}

.solution-page-pro .price-item:last-child {
    border-bottom: none;
}

.solution-page-pro .price {
    font-weight: 700;
    color: #0057ff;
}

.solution-page-pro .time {
    color: #666;
    font-size: .9rem;
}

.solution-page-pro .btn-select {
    background: #0057ff;
    color: #fff;
    border: none;
    padding: .45rem .75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: .85rem;
}

.solution-page-pro .hint {
    margin-top: .8rem;
    font-size: .9rem;
    color: #666;
    text-align: center;
}

.solution-page-pro .case-preview {
    background: linear-gradient(135deg, #f8faff, #e3eeff);
    border: 1px solid #d1e3ff;
}

.solution-page-pro .case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.solution-page-pro .case-header h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.45;
    color: #1f2d3d;
}


.solution-page-pro .case-link {
    color: #0057ff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.solution-page-pro .case-summary {
    display: flex;
    justify-content: space-around;
    margin: 1.25rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.solution-page-pro .case-stat {
    text-align: center;
    min-width: 100px;
}

.solution-page-pro .stat-value {
    display: block;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #0057ff;
}

.solution-page-pro .stat-label {
    font-size: 14px;
    line-height: 1.5;
    color: #6f7d90;
}

.solution-page-pro .case-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #5f6d80;
}


.solution-page-pro #cost-control .cost-case-card {
    background: linear-gradient(180deg, #f9fbff 0%, #f3f8ff 100%);
    border: 1px solid #dbe9ff;
    box-shadow: 0 8px 20px rgba(20, 70, 165, 0.1);
    padding: 16px 20px;
}

.solution-page-pro #cost-control .cost-case-card .case-header {
    margin-bottom: 10px;
}

.solution-page-pro #cost-control .cost-case-card .case-header h3 {
    margin: 0;
    color: #1f2d3d;
}

.solution-page-pro #cost-control .cost-case-card .case-link {
    color: #0a61ff;
}

.solution-page-pro #cost-control .cost-case-card .case-summary {
    margin: 10px 0 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.solution-page-pro #cost-control .cost-case-card .case-stat {
    min-width: 0;
    text-align: center;
}

.solution-page-pro #cost-control .cost-case-card .stat-value {
    font-size: 38px;
    line-height: 1.15;
    color: #0061ff;
}

.solution-page-pro #cost-control .cost-case-card .stat-label {
    color: #7a8798;
}

.solution-page-pro #cost-control .cost-case-card .case-desc {
    margin: 0;
    color: #606e80;
}


.solution-page-pro #time-guarantee .time-tool-card {
    background: #fff;
    border: 1px solid #e7efff;
    padding: 18px 20px;
}

.solution-page-pro #time-guarantee .time-tool-card h2 {
    margin-bottom: 14px;
}

.solution-page-pro #time-guarantee .time-tool-card .route-timeline {
    max-width: 100%;
    margin: 0;
    gap: 14px;
}

.solution-page-pro #time-guarantee .time-tool-card .route-point {
    min-width: 136px;
    border: 1px solid #edf2ff;
    box-shadow: 0 8px 16px rgba(16, 62, 152, 0.08);
    padding: 14px 12px;
}

.solution-page-pro #time-guarantee .time-tool-card .point-name {
    font-size: 18px;
}

.solution-page-pro #time-guarantee .time-tool-card .point-time {
    font-size: 15px;
    margin-top: 6px;
}

.solution-page-pro #time-guarantee .time-tool-card .route-line {
    margin: 0;
}

.solution-page-pro #time-guarantee .time-tool-card .line-progress {
    width: 72%;
    background: #006bff;
}

.solution-page-pro #time-guarantee .time-tool-card .tool-tip-center {
    margin-top: 14px;
}

.solution-page-pro #time-guarantee .time-tool-card .tool-tip-center p {
    margin: 0;
    font-size: 16px;
    color: #1f2d3d;
}

.solution-page-pro #time-guarantee .time-tool-card .tool-tip-center p:last-child {
    margin-top: 2px;
    font-size: 14px;
    color: #6c7a8d;
}

.solution-page-pro #time-guarantee .time-case-card {
    background: linear-gradient(180deg, #f9fbff 0%, #f3f8ff 100%);
    border: 1px solid #dbe9ff;
    box-shadow: 0 8px 20px rgba(20, 70, 165, 0.1);
    padding: 16px 20px;
}

.solution-page-pro #time-guarantee .time-case-card .case-header {
    margin-bottom: 10px;
}

.solution-page-pro #time-guarantee .time-case-card .case-header h3 {
    margin: 0;
    color: #1f2d3d;
}

.solution-page-pro #time-guarantee .time-case-card .case-link {
    color: #0a61ff;
}

.solution-page-pro #time-guarantee .time-case-card .case-summary {
    margin: 10px 0 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.solution-page-pro #time-guarantee .time-case-card .case-stat {
    min-width: 0;
    text-align: center;
}

.solution-page-pro #time-guarantee .time-case-card .stat-value {
    font-size: 38px;
    line-height: 1.15;
    color: #0061ff;
}

.solution-page-pro #time-guarantee .time-case-card .stat-label {
    color: #7a8798;
}

.solution-page-pro #time-guarantee .time-case-card .case-desc {
    margin: 0;
    color: #606e80;
}


.solution-page-pro .flow-steps {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.solution-page-pro .flow-step {
    text-align: center;
    position: relative;
}

.solution-page-pro .step-number {
    width: 40px;
    height: 40px;
    background: #0057ff;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: .75rem;
    position: relative;
    z-index: 2;
}

.solution-page-pro .flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.solution-page-pro .flow-note {
    background: #e8f4ff;
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.solution-page-pro .table-wrap {
    overflow-x: auto;
    margin-top: 1rem;
}

.solution-page-pro .ddp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.solution-page-pro .ddp-table th,
.solution-page-pro .ddp-table td {
    padding: .9rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.solution-page-pro .ddp-table thead tr {
    background: #f8f9fa;
}

.solution-page-pro .platform-showcase {
    overflow: hidden;
}

.solution-page-pro .mockup-dashboard {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.solution-page-pro .mockup-header {
    background: #0057ff;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solution-page-pro .mockup-actions {
    display: flex;
    gap: .5rem;
}

.solution-page-pro .mockup-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.solution-page-pro .mockup-content {
    display: flex;
    min-height: 300px;
}

.solution-page-pro .mockup-sidebar {
    width: 200px;
    background: #f8f9fa;
    border-right: 1px solid #e0e0e0;
    padding: 1rem;
}

.solution-page-pro .menu-item {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: .75rem 1rem;
    margin-bottom: .4rem;
    border-radius: 4px;
    cursor: pointer;
}

.solution-page-pro .menu-item.active {
    background: #0057ff;
    color: #fff;
}

.solution-page-pro .mockup-main {
    flex: 1;
    padding: 1.2rem;
}

.solution-page-pro .stats-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: .8rem;
    margin-bottom: 1rem;
}

.solution-page-pro .stat-card {
    background: #f8f9fa;
    padding: .8rem;
    border-radius: 6px;
}

.solution-page-pro .stat-card h3 {
    margin: .45rem 0 0;
    color: #0057ff;
}

.solution-page-pro .tracking-table {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.solution-page-pro .table-header,
.solution-page-pro .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: .9rem;
    border-bottom: 1px solid #f0f0f0;
}

.solution-page-pro .table-header {
    background: #f8f9fa;
    font-weight: 600;
}

.solution-page-pro .table-row:last-child {
    border-bottom: none;
}

.solution-page-pro .status.in-transit {
    color: #ff9800;
    font-weight: 600;
}

.solution-page-pro .status.delivered {
    color: #4caf50;
    font-weight: 600;
}

.solution-page-pro .timeline-visual {
    margin-top: 1rem;
}

.solution-page-pro .route-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 780px;
    margin: 0 auto;
}

.solution-page-pro .route-point {
    text-align: center;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    min-width: 120px;
}

.solution-page-pro .point-name {
    display: block;
    font-weight: 700;
    color: #0057ff;
}

.solution-page-pro .point-time {
    display: block;
    font-size: .9rem;
    color: #666;
    margin-top: .25rem;
}

.solution-page-pro .route-line {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    position: relative;
    margin: 0 1rem;
}

.solution-page-pro .line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, #0057ff, #00c6ff);
}

.solution-page-pro .tool-tip-center {
    text-align: center;
    margin-top: 1rem;
}

.solution-page-pro .tool-tip-center p:last-child {
    font-size: .9rem;
    color: #666;
}

.solution-page-pro .integration-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 1rem;
    justify-content: center;
}

.solution-page-pro .integration-icons div {
    text-align: center;
}

.solution-page-pro .integration-icons i {
    font-size: 2.4rem;
    color: #0057ff;
}

.solution-page-pro .integration-note {
    margin-top: 1rem;
    text-align: center;
    color: #666;
}

.solution-page-pro .solution-cta {
    background: linear-gradient(135deg, #0057ff, #00c6ff);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.solution-page-pro .cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.solution-page-pro .cta-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.solution-page-pro .cta-container p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 1.5rem;
}

.solution-page-pro .cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.solution-page-pro .btn-cta {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .2);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-width: 180px;
    justify-content: center;
}

.solution-page-pro .btn-cta.highlight {
    background: #fff;
    color: #0057ff;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .solution-page-pro .solution-nav {
        top: 70px;
    }
}

@media (max-width: 992px) {
    .solution-page-pro .solutions-container {
        margin-top: 10px;
    }

    .solution-page-pro .nav-container {
        width: calc(100% - 1.5rem);
        grid-template-columns: 1fr;
        gap: .6rem;
        padding: .7rem;
    }

    .solution-page-pro .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .solution-page-pro .nav-link {
        min-width: 106px;
        text-align: center;
    }

    .solution-page-pro .nav-cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .solution-page-pro #cost-control .cost-solution-card .solution-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .solution-page-pro .solution-content h2 {
        font-size: 26px;
    }


    .solution-page-pro #time-guarantee .time-tool-card .route-timeline {
        flex-wrap: wrap;
        justify-content: center;
    }

    .solution-page-pro #time-guarantee .time-tool-card .route-line {
        max-width: 120px;
        flex: 0 0 120px;
    }

    .solution-page-pro #time-guarantee .time-case-card .case-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .solution-page-pro #cost-control .cost-case-card .stat-value,
    .solution-page-pro #time-guarantee .time-case-card .stat-value {
        font-size: 36px;
    }


    .solution-page-pro .stats-row {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}


@media (max-width: 768px) {

    .solution-page-pro .solution-nav {
        top: 64px;
        padding-top: .3rem;
    }

    .solution-page-pro .nav-container {
        width: calc(100% - .8rem);
        padding: .6rem .55rem;
        border-radius: 12px;
    }

    .solution-page-pro .nav-menu {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        width: 100%;
        gap: .45rem;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .solution-page-pro .nav-menu li {
        flex: 0 0 auto;
    }

    .solution-page-pro .nav-link {
        min-width: 92px;
        padding: .42rem .66rem;
        text-align: center;
    }

    .solution-page-pro .nav-cta {
        width: 100%;
    }

    .solution-page-pro .nav-cta .btn-primary {
        width: 100%;
        text-align: center;
        padding: .6rem 1rem;
    }

    .solution-page-pro .solutions-container {
        margin-top: 8px;
    }

    .solution-page-pro #cost-control > .section-header {
        padding: 2rem 1rem;
        border-radius: 14px;
    }

    .solution-page-pro #cost-control .cost-solution-card {
        padding: 14px;
    }

    .solution-page-pro .solution-content h2 {
        font-size: 22px;
    }

    .solution-page-pro .solution-content h3 {
        font-size: 18px;
    }

    .solution-page-pro .solution-content p {
        font-size: 14px;
    }


    .solution-page-pro #cost-control .cost-case-card {
        padding: 14px;
    }

    .solution-page-pro #cost-control .cost-case-card .case-summary {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .solution-page-pro #cost-control .cost-case-card .stat-value {
        font-size: 30px;
    }

    .solution-page-pro #cost-control .cost-case-card .case-desc {
        font-size: 14px;
    }

    .solution-page-pro #time-guarantee .time-tool-card {
        padding: 14px;
    }

    .solution-page-pro #time-guarantee .time-tool-card .route-timeline {
        flex-direction: column;
        gap: 10px;
    }

    .solution-page-pro #time-guarantee .time-tool-card .route-line {
        width: 4px;
        height: 34px;
        max-width: none;
        flex: none;
    }

    .solution-page-pro #time-guarantee .time-tool-card .line-progress {
        width: 100%;
        height: 70%;
    }

    .solution-page-pro #time-guarantee .time-case-card {
        padding: 14px;
    }

    .solution-page-pro #time-guarantee .time-case-card .case-summary {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .solution-page-pro #time-guarantee .time-case-card .stat-value {
        font-size: 30px;
    }

    .solution-page-pro #time-guarantee .time-case-card .case-desc {
        font-size: 14px;
    }

    .solution-page-pro .solution-section {
        padding: 2rem 1rem;
    }





    .solution-page-pro .section-header h1 {
        font-size: 2rem;
    }


    .solution-page-pro .problem-list,
    .solution-page-pro .solution-features,
    .solution-page-pro .form-row {
        grid-template-columns: 1fr;
    }

    .solution-page-pro .flow-steps {
        grid-template-columns: 1fr;
    }

    .solution-page-pro .flow-step:not(:last-child)::after {
        top: 100%;
        left: 50%;
        width: 2px;
        height: 20px;
        transform: translateX(-50%);
    }

    .solution-page-pro .route-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .solution-page-pro .route-line {
        width: 4px;
        height: 60px;
        margin: 0;
    }

    .solution-page-pro .line-progress {
        width: 100%;
        height: 70%;
    }

    .solution-page-pro .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .solution-page-pro .btn-cta {
        width: 100%;
        max-width: 300px;
    }

    .solution-page-pro .mockup-content {
        flex-direction: column;
    }

    .solution-page-pro .mockup-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .solution-page-pro .table-header,
    .solution-page-pro .table-row,
    .solution-page-pro .price-item {
        grid-template-columns: 1fr;
        gap: .4rem;
    }

    .solution-page-pro .case-header,
    .solution-page-pro .case-summary {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   招聘列表 & 详情页
   ========================================== */
.recruit-page {
    padding: 42px 0 56px;
    background: #f5f8ff;
}

.recruit-page .card-like {
    background: #fff;
    border: 1px solid #e7eefc;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(23, 67, 148, 0.08);
}

.recruit-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.recruit-page .btn.btn-primary {
    background: #0a61ff;
    color: #fff;
}

.recruit-page .btn.btn-outline {
    border: 1px solid #c5d9ff;
    color: #0a61ff;
    background: #f5f9ff;
}

.recruit-kicker {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #0a61ff;
    background: #eaf2ff;
}

.recruit-hero {
    padding: 26px 28px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

.recruit-hero-main h1 {
    margin: 10px 0 10px;
    font-size: 34px;
    color: #1f2d3d;
}

.recruit-hero-main p {
    margin: 0;
    max-width: 720px;
    color: #5e6d82;
    line-height: 1.75;
}

.recruit-hero-side {
    min-width: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 14px;
}

.recruit-hero-side .hero-stat {
    text-align: right;
}

.recruit-hero-side .hero-stat strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: #0a61ff;
}

.recruit-hero-side .hero-stat span {
    font-size: 13px;
    color: #6d7b90;
}

.recruit-filter {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.recruit-filter .filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #3c4b63;
    white-space: nowrap;
}

.recruit-filter .filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.recruit-filter .tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    padding: 6px 12px;
    font-size: 13px;
    color: #5d6c83;
    background: #f4f7fd;
    border: 1px solid #e0e9fb;
    border-radius: 999px;
}

.recruit-filter .tag.active {
    color: #fff;
    background: #0a61ff;
    border-color: #0a61ff;
}

.recruit-list-empty {
    display: none;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px dashed #d7e4fb;
    color: #5d6f88;
    background: #f8fbff;
    font-size: 14px;
}

.recruit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 16px;
}

.recruit-list {
    display: grid;
    gap: 14px;
}

.recruit-item {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.recruit-item-main h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.4;
}

.recruit-item-main h3 a {
    color: #1f2d3d;
}

.recruit-item-main h3 a:hover {
    color: #0a61ff;
}

.recruit-item-main p {
    margin: 0 0 12px;
    color: #5f6e82;
    line-height: 1.75;
}

.recruit-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: #76839a;
}

.recruit-go {
    flex: 0 0 auto;
    align-self: center;
    color: #0a61ff;
    font-weight: 600;
    white-space: nowrap;
}

.recruit-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.recruit-tip-card {
    padding: 18px;
}

.recruit-tip-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.recruit-tip-card p,
.recruit-tip-card li {
    font-size: 14px;
    line-height: 1.7;
    color: #5f6f83;
}

.recruit-tip-card ul {
    padding-left: 18px;
    margin: 0;
}

.recruit-tip-card .btn {
    margin-top: 8px;
}

.recruit-detail-card {
    padding: 28px;
}

.recruit-detail-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #e8eef9;
    padding-bottom: 16px;
}

.recruit-detail-head h1 {
    margin: 10px 0 10px;
    font-size: 34px;
    color: #1f2d3d;
}

.recruit-detail-head p {
    margin: 0;
    color: #5f6e82;
    line-height: 1.75;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 auto;
}

.recruit-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0 4px;
    font-size: 13px;
    color: #73839a;
}

.recruit-detail-body {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.9;
    color: #2f3d52;
}

.recruit-detail-body h2,
.recruit-detail-body h3,
.recruit-detail-body h4 {
    color: #1f2d3d;
    margin-top: 1.4em;
}

.recruit-apply-box {
    margin-top: 24px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f2f7ff, #f8fbff);
    border: 1px solid #dce8ff;
}

.recruit-apply-box h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.recruit-apply-box p {
    margin: 0 0 12px;
    color: #5f6f84;
}

.recruit-article-nav {
    margin-top: 20px;
}

@media (max-width: 992px) {
    .recruit-layout {
        grid-template-columns: 1fr;
    }

    .recruit-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .recruit-hero {
        flex-direction: column;
    }

    .recruit-hero-side {
        align-items: flex-start;
    }

    .recruit-hero-side .hero-stat {
        text-align: left;
    }

    .recruit-detail-head {
        flex-direction: column;
    }

    .detail-actions {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .recruit-page {
        padding: 28px 0 38px;
    }

    .recruit-hero,
    .recruit-item,
    .recruit-detail-card {
        padding: 16px;
    }

    .recruit-hero-main h1,
    .recruit-detail-head h1 {
        font-size: 26px;
    }

    .recruit-item {
        flex-direction: column;
    }

    .recruit-go {
        align-self: flex-start;
    }

    .recruit-filter {
        flex-direction: column;
        align-items: flex-start;
    }

    .recruit-side {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   物流查询详情页
   ========================================== */
.tracking-detail-page {
    padding: 42px 0 58px;
    background: #f5f8ff;
}

.tracking-detail-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
}

.tracking-detail-page .btn.btn-primary {
    color: #fff;
    background: #0a61ff;
}

.tracking-detail-page .btn.btn-outline {
    color: #0a61ff;
    background: #f5f9ff;
    border: 1px solid #c8dcff;
}

.tracking-hero,
.tracking-status-card,
.tracking-progress-card,
.tracking-timeline-card,
.tracking-help-card {
    background: #fff;
    border: 1px solid #e5ecfa;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(16, 56, 128, 0.08);
}

.tracking-hero {
    padding: 24px 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 18px;
    margin-bottom: 14px;
}

.tracking-kicker {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #0a61ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.tracking-hero-main h1 {
    margin: 10px 0 10px;
    font-size: 34px;
    color: #1f2d3d;
}

.tracking-hero-main p {
    margin: 0;
    color: #5f6f84;
    line-height: 1.75;
}

.tracking-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-content: center;
    gap: 10px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid #dbe8ff;
    background: linear-gradient(180deg, #f9fbff 0%, #f3f7ff 100%);
}

.tracking-search-form input {
    width: 100%;
    height: 48px;
    border: 1px solid #d7e4f9;
    border-radius: 11px;
    padding: 0 16px;
    font-size: 15px;
    color: #1f2d3d;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tracking-search-form input::placeholder {
    color: #94a3b8;
}

.tracking-search-form input:focus {
    outline: none;
    border-color: #78a8ff;
    box-shadow: 0 0 0 4px rgba(120, 168, 255, .2);
}

.tracking-search-form button {
    height: 48px;
    border: 0;
    border-radius: 11px;
    padding: 0 20px;
    color: #fff;
    background: linear-gradient(135deg, #0b63ff 0%, #3f8cff 100%);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(10, 97, 255, 0.28);
    transition: transform .18s ease, box-shadow .18s ease;
}

.tracking-search-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(10, 97, 255, 0.32);
}


.tracking-status-card,
.tracking-progress-card,
.tracking-timeline-card,
.tracking-help-card {
    padding: 20px 22px;
    margin-bottom: 14px;
}

.tracking-status-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.status-label {
    margin: 0;
    font-size: 13px;
    color: #7a879a;
}

.tracking-status-head h2 {
    margin: 4px 0 0;
    font-size: 30px;
    color: #1f2d3d;
    line-height: 1.2;
    word-break: break-all;
}

.status-badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.status-badge.in-transit {
    color: #0a61ff;
    background: #eaf2ff;
}

.tracking-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.status-item {
    padding: 12px;
    border-radius: 10px;
    background: #f7faff;
    border: 1px solid #e7efff;
}

.status-item span {
    display: block;
    font-size: 13px;
    color: #76859a;
    margin-bottom: 4px;
}

.status-item strong {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    color: #23344b;
}

.progress-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.progress-head h3 {
    margin: 0;
    font-size: 22px;
    color: #1f2d3d;
}

.progress-head span {
    font-size: 13px;
    color: #6f7e93;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.progress-steps .step {
    min-height: 74px;
    border: 1px solid #e3ebfa;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #8b98ab;
    background: #fafcff;
    font-size: 13px;
}

.progress-steps .step i {
    font-size: 16px;
}

.progress-steps .step.done {
    color: #0a61ff;
    border-color: #cfe0ff;
    background: #eff5ff;
}

.progress-steps .step.current {
    color: #fff;
    border-color: #0a61ff;
    background: linear-gradient(135deg, #0b63ff, #3f8cff);
}

.tracking-timeline-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    color: #1f2d3d;
}

.tracking-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tracking-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 14px;
    padding: 0 0 14px 18px;
}

.tracking-timeline li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c5d6f5;
}

.tracking-timeline li::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 20px;
    bottom: -4px;
    width: 2px;
    background: #dde7f8;
}

.tracking-timeline li:last-child::after {
    display: none;
}

.tracking-timeline li.active::before {
    background: #0a61ff;
    box-shadow: 0 0 0 4px rgba(10, 97, 255, 0.2);
}

.timeline-time {
    font-size: 13px;
    color: #72839b;
    line-height: 1.7;
}

.timeline-content h4 {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.55;
    color: #1f2d3d;
}

.timeline-content p {
    margin: 0;
    font-size: 14px;
    color: #667991;
}

.tracking-help-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.tracking-help-card p {
    margin: 0;
    color: #5f6f83;
    line-height: 1.7;
}

.help-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 1200px) {
    .tracking-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .tracking-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .progress-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tracking-timeline li {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 768px) {
    .tracking-detail-page {
        padding: 28px 0 36px;
    }

    .tracking-hero,
    .tracking-status-card,
    .tracking-progress-card,
    .tracking-timeline-card,
    .tracking-help-card {
        padding: 14px;
    }

    .tracking-hero-main h1 {
        font-size: 26px;
    }

    .tracking-search-form {
        grid-template-columns: 1fr;
        padding: 6px;
    }

    .tracking-search-form button {
        width: 100%;
    }

    .tracking-status-head {
        flex-direction: column;
    }


    .tracking-status-head h2 {
        font-size: 23px;
    }

    .tracking-status-grid,
    .progress-steps {
        grid-template-columns: 1fr;
    }

    .tracking-help-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================
   公司公告（正式风格）
   ========================================== */
.notice-page {
    background: #f3f5f8;
    position: relative;
}

.formal-watermark::before {
    content: '沃虎国际速运';
    position: fixed;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-22deg);
    font-size: clamp(56px, 10vw, 130px);
    font-weight: 700;
    letter-spacing: .24em;
    color: rgba(15, 30, 53, 0.05);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.notice-page .container {
    position: relative;
    z-index: 1;
}

.notice-hero,
.notice-item,
.notice-side-card,
.notice-detail-card {
    background: #fff;
    border: 1px solid #d8e0eb;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(15, 30, 53, 0.05);
}

.notice-hero {
    padding: 28px 30px;
    margin-bottom: 20px;
    border-top: 5px solid #1f3554;
}

.notice-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    color: #2f4b73;
}

.notice-hero h1 {
    margin: 0;
    font-size: 34px;
    color: #0f1e35;
}

.notice-subtitle {
    margin: 12px 0 0;
    color: #5f7087;
    font-size: 15px;
    line-height: 1.9;
}

.notice-hero-meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.notice-hero-meta span {
    font-size: 13px;
    color: #3a4b63;
}

.notice-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
}

.notice-list {
    display: grid;
    gap: 14px;
}

.notice-item {
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 126px;
    gap: 16px;
    align-items: start;
}

.notice-item-sign {
    display: grid;
    gap: 10px;
    align-content: start;
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #1f4f90;
    background: #eef4ff;
    border: 1px solid #cfe0f6;
    width: fit-content;
}

.notice-date {
    color: #5f7088;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0;
}

.notice-item-body {
    min-width: 0;
}

.notice-item h2 {
    margin: 0;
    font-size: 23px;
    line-height: 1.6;
}

.notice-item h2 a {
    color: #15263f;
}

.notice-summary {
    margin: 10px 0 0;
    color: #536880;
    line-height: 1.85;
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notice-note {
    margin: 8px 0 0;
    color: #39567e;
    font-size: 14px;
    line-height: 1.75;
}

.notice-item-aside {
    border-left: 1px dashed #d7e2f0;
    padding-left: 12px;
    display: grid;
    gap: 10px;
    align-content: center;
    justify-items: start;
    color: #415875;
    font-size: 13px;
}

.notice-visits {
    white-space: nowrap;
}

.notice-item .notice-link {
    color: #1f4f90;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.notice-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.notice-side-card {
    padding: 20px;
}

.notice-side-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #132744;
}

.notice-side-card ul {
    margin: 0;
    padding-left: 18px;
    color: #4e617c;
    line-height: 1.85;
}

.notice-side-card p {
    margin: 0 0 8px;
    color: #4e617c;
}

.notice-detail-card {
    padding: 28px 30px;
    border-top: 5px solid #1f3554;
}

.notice-detail-head h1 {
    margin: 0;
    font-size: 36px;
    color: #0f1e35;
    line-height: 1.45;
}

.notice-detail-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: #485c79;
    font-size: 13px;
}

.notice-detail-lead {
    margin: 14px 0 0;
    padding: 12px 14px;
    border-left: 3px solid #2d4b77;
    background: #f5f8fc;
    color: #536880;
    line-height: 1.85;
}

.notice-detail-body {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.95;
    color: #1f2d3d;
}

.notice-detail-body img {
    max-width: 100%;
    height: auto;
}

.notice-detail-foot {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #dee6f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.notice-signature {
    color: #304967;
    line-height: 1.8;
}

.notice-signature p {
    margin: 0;
}

.notice-article-nav {
    margin-top: 18px;
}

@media (max-width: 1200px) {
    .notice-layout {
        grid-template-columns: 1fr;
    }

    .notice-item {
        grid-template-columns: 160px minmax(0, 1fr) 116px;
        gap: 14px;
    }
}

@media (max-width: 992px) {
    .notice-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .notice-item-sign {
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 10px;
    }

    .notice-date {
        font-size: 13px;
    }

    .notice-item-aside {
        border-left: 0;
        border-top: 1px dashed #d7e2f0;
        padding-left: 0;
        padding-top: 10px;
        grid-template-columns: auto auto;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .notice-item .notice-link {
        justify-self: end;
    }
}

@media (max-width: 768px) {
    .formal-watermark::before {
        font-size: 48px;
        letter-spacing: .12em;
    }

    .notice-hero,
    .notice-item,
    .notice-side-card,
    .notice-detail-card {
        padding: 16px;
    }

    .notice-hero h1,
    .notice-detail-head h1 {
        font-size: 26px;
    }

    .notice-badge {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    .notice-date {
        font-size: 12px;
    }

    .notice-item h2 {
        font-size: 20px;
    }

    .notice-summary,
    .notice-note {
        font-size: 14px;
    }

    .notice-item-aside {
        grid-template-columns: 1fr;
    }

    .notice-item .notice-link {
        justify-self: start;
    }

    .notice-detail-foot {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================
   沃虎智能空运专线单页
   ========================================== */
.airline-page {
    padding: 28px 0 64px;
    background: radial-gradient(circle at top, #eef5ff 0%, #f7faff 38%, #ffffff 72%);
}

.airline-page .container {
    display: grid;
    gap: 22px;
}

.airline-hero,
.airline-section {
    background: #fff;
    border: 1px solid #dbe6f7;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(6, 35, 80, .08);
}

.airline-hero {
    padding: 42px 40px;
    color: #fff;
    background: linear-gradient(128deg, #062d78 0%, #0f62fe 46%, #2b87ff 100%);
}

.airline-kicker {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    font-size: 12px;
    margin: 0 0 14px;
}

.airline-hero h1 {
    margin: 0;
    font-size: 44px;
    line-height: 1.2;
    color: #fff;
}

.airline-lead {
    margin: 16px 0 0;
    max-width: 920px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .94);
}

.airline-query-form {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr 1.4fr;
    gap: 10px;
}

.airline-query-form select,
.airline-query-form input,
.airline-query-form button {
    height: 46px;
    border-radius: 10px;
    border: none;
}

.airline-query-form select,
.airline-query-form input {
    padding: 0 12px;
    color: #143057;
    background: rgba(255, 255, 255, .95);
}

.airline-query-form button {
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    background: linear-gradient(135deg, #ff8d1f, #ffb54c);
    box-shadow: 0 10px 20px rgba(255, 157, 52, .35);
}

.airline-query-result {
    margin-top: 12px;
    color: #e8f2ff;
    font-size: 13px;
}

.airline-section {
    padding: 32px;
}

.airline-title-row h2 {
    margin: 0;
    font-size: 30px;
    color: #10203f;
}

.airline-title-row p {
    margin: 10px 0 0;
    color: #5d6d84;
}

.airline-heat-grid,
.airline-category-grid,
.airline-dashboard-grid {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

.airline-heat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airline-lane-card {
    padding: 20px;
    border: 1px solid #dce7f7;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.airline-lane-card h3 {
    margin: 0;
    font-size: 20px;
    color: #0f213f;
}

.airline-lane-card p {
    margin: 10px 0 0;
    color: #5a6e87;
}

.airline-lane-card span {
    display: inline-flex;
    margin-top: 12px;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #0f62fe;
    background: #eaf2ff;
    font-size: 12px;
}

.airline-lane-card.hot { border-color: #ffd6ae; }
.airline-lane-card.warm { border-color: #cde2ff; }
.airline-lane-card.stable { border-color: #cfead9; }

.airline-flow {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.airline-step {
    padding: 18px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    border: 1px solid #dce8f7;
}

.airline-step strong {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0f62fe;
    color: #fff;
    font-size: 12px;
}

.airline-step span {
    display: block;
    margin-top: 10px;
    color: #314b6a;
}

.airline-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.airline-category-grid article {
    padding: 20px;
    border: 1px solid #dce8f7;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.airline-category-grid i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0f62fe, #50abff);
}

.airline-category-grid h3 {
    margin: 12px 0 0;
    font-size: 20px;
    color: #10203f;
}

.airline-category-grid p {
    margin: 10px 0 0;
    color: #5f6f86;
    line-height: 1.8;
}

.airline-dashboard-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.airline-dashboard-grid article {
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dce8f7;
}

.airline-dashboard-grid span {
    color: #5f6f86;
    font-size: 13px;
}

.airline-dashboard-grid strong {
    display: block;
    margin-top: 10px;
    color: #0f62fe;
    font-size: 30px;
    line-height: 1.1;
}

.airline-cta {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
}

.airline-cta h2 {
    margin: 0;
    font-size: 32px;
    color: #10203f;
}

.airline-cta p {
    margin: 12px auto 0;
    max-width: 640px;
    color: #5f6f86;
}

.airline-cta-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.airline-btn {
    min-height: 44px;
    padding: 0 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .22s ease;
}

.airline-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #0f62fe, #3a97ff);
    box-shadow: 0 10px 20px rgba(15, 98, 254, .28);
}

.airline-btn-light {
    color: #0f62fe;
    background: #edf4ff;
}

.airline-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .airline-hero h1 {
        font-size: 36px;
    }

    .airline-query-form {
        grid-template-columns: 1fr 1fr;
    }

    .airline-flow,
    .airline-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .airline-page {
        padding: 18px 0 50px;
    }

    .airline-hero,
    .airline-section {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .airline-hero h1 {
        font-size: 30px;
    }

    .airline-lead {
        font-size: 14px;
        line-height: 1.8;
    }

    .airline-query-form,
    .airline-heat-grid,
    .airline-flow,
    .airline-category-grid,
    .airline-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .airline-title-row h2 {
        font-size: 25px;
    }

    .airline-dashboard-grid strong {
        font-size: 24px;
    }

    .airline-cta h2 {
        font-size: 26px;
    }

    .airline-cta-actions {
        flex-direction: column;
    }

    .airline-btn {
        width: 100%;
    }
}

/* ==========================================
   V-Express 国际快递代理单页
   ========================================== */
.vexpress-page {
    padding: 28px 0 64px;
    background: radial-gradient(circle at top, #f4f8ff 0%, #eef4ff 26%, #ffffff 70%);
}

.vexpress-page .container {
    display: grid;
    gap: 24px;
}

.vexpress-section,
.vexpress-hero {
    background: #fff;
    border: 1px solid #dce8f8;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(5, 37, 84, .08);
}

.vexpress-hero {
    position: relative;
    padding: 44px 42px;
    overflow: hidden;
    background: linear-gradient(130deg, #0a3d9b 0%, #0f62fe 42%, #2786ff 100%);
    border-color: rgba(255, 255, 255, .25);
    color: #fff;
}

.vexpress-hero-glow {
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0));
}

.vexpress-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    font-size: 12px;
    margin: 0 0 14px;
}

.vexpress-hero h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 44px;
    line-height: 1.24;
    color: #fff;
}

.vexpress-lead {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    max-width: 900px;
    color: rgba(255, 255, 255, .92);
    line-height: 1.9;
}

.vexpress-hero-actions {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vexpress-btn {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .24s ease;
}

.vexpress-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff8a00, #ffb341);
    box-shadow: 0 12px 24px rgba(255, 138, 0, .34);
}

.vexpress-btn-light {
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .4);
}

.vexpress-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}

.vexpress-trust {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
}

.vexpress-title-row h2 {
    margin: 0;
    font-size: 30px;
    color: #0f1f3b;
}

.vexpress-title-row p {
    margin: 10px 0 0;
    color: #5d6e84;
}

.vexpress-section {
    padding: 34px;
}

.vexpress-network-grid,
.vexpress-scene-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.vexpress-network-card,
.vexpress-scene-grid article,
.vexpress-quote-card,
.vexpress-compare-result .vx-row {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dce8f7;
    border-radius: 16px;
}

.vexpress-network-card {
    padding: 22px;
}

.vexpress-network-card h3,
.vexpress-scene-grid article h3 {
    margin: 0;
    font-size: 20px;
    color: #0f1f3b;
}

.vexpress-chips {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vexpress-chips span,
.vexpress-map-tags span {
    display: inline-flex;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    align-items: center;
    font-size: 12px;
    color: #1259cb;
    background: #eaf2ff;
}

.vexpress-stats {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.vexpress-stats div {
    background: #f4f8ff;
    border-radius: 12px;
    border: 1px solid #dbe8fa;
    padding: 12px 10px;
    text-align: center;
}

.vexpress-stats strong {
    display: block;
    font-size: 20px;
    color: #0f62fe;
}

.vexpress-stats span {
    font-size: 12px;
    color: #68778e;
}

.vexpress-network-map p {
    margin-top: 12px;
    color: #5d6e84;
    line-height: 1.7;
}

.vexpress-map-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vexpress-compare-form {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 90px 1fr 90px 1fr 90px 1fr 140px;
    gap: 10px;
    align-items: center;
}

.vexpress-compare-form label {
    font-size: 13px;
    color: #4a5e79;
}

.vexpress-compare-form select,
.vexpress-compare-form input {
    height: 44px;
    border: 1px solid #d5e2f5;
    border-radius: 10px;
    padding: 0 12px;
    color: #0f1f3b;
    background: #fff;
}

.vexpress-compare-form select:focus,
.vexpress-compare-form input:focus {
    outline: none;
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, .14);
}

.vexpress-compare-form button {
    height: 44px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #0f62fe, #3292ff);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.vexpress-compare-preset {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vexpress-compare-preset button {
    min-height: 32px;
    border: none;
    border-radius: 999px;
    padding: 0 12px;
    color: #315886;
    background: #edf4ff;
    cursor: pointer;
}

.vexpress-compare-result {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.vexpress-compare-result .vx-row {
    padding: 16px;
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr .9fr;
    align-items: center;
    gap: 8px;
}

.vexpress-compare-result .vx-name {
    font-weight: 700;
    color: #0f1f3b;
}

.vexpress-compare-result .vx-tag {
    margin-left: 8px;
    font-size: 12px;
    color: #0f62fe;
    background: #eaf2ff;
    border-radius: 999px;
    padding: 2px 8px;
}

.vexpress-compare-result .vx-price {
    font-size: 22px;
    font-weight: 800;
    color: #0f62fe;
}

.vexpress-compare-result .vx-time,
.vexpress-compare-result .vx-note {
    color: #55667e;
}

.vexpress-scene-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vexpress-scene-grid article {
    padding: 20px;
}

.vexpress-scene-grid i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: linear-gradient(135deg, #0f62fe, #57aeff);
    box-shadow: 0 8px 18px rgba(15, 98, 254, .25);
    margin-bottom: 12px;
}

.vexpress-scene-grid p {
    margin: 10px 0 0;
    color: #5f6f86;
    line-height: 1.75;
}

.vexpress-quote-card {
    margin-top: 16px;
    padding: 24px;
}

.vexpress-quote-card p {
    margin: 0;
    color: #2c425f;
    font-size: 17px;
    line-height: 1.95;
}

.vexpress-quote-card strong {
    color: #0f62fe;
}

.vexpress-quote-card span {
    display: block;
    margin-top: 10px;
    color: #6b7d95;
    font-size: 13px;
}

.vexpress-cta {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.vexpress-cta h2 {
    margin: 0;
    font-size: 32px;
    color: #0f1f3b;
}

.vexpress-cta p {
    margin: 12px auto 0;
    max-width: 640px;
    color: #5e6f86;
}

.vexpress-cta .vexpress-hero-actions {
    justify-content: center;
}

@media (max-width: 1200px) {
    .vexpress-hero h1 {
        font-size: 36px;
    }

    .vexpress-compare-form {
        grid-template-columns: 1fr 1fr;
    }

    .vexpress-compare-form label {
        display: none;
    }

    .vexpress-network-grid,
    .vexpress-scene-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .vexpress-page {
        padding: 18px 0 50px;
    }

    .vexpress-section,
    .vexpress-hero {
        border-radius: 16px;
    }

    .vexpress-hero,
    .vexpress-section {
        padding: 24px 18px;
    }

    .vexpress-hero h1 {
        font-size: 30px;
    }

    .vexpress-lead {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .vexpress-hero-actions {
        flex-direction: column;
    }

    .vexpress-btn {
        width: 100%;
    }

    .vexpress-title-row h2 {
        font-size: 25px;
    }

    .vexpress-network-grid,
    .vexpress-scene-grid,
    .vexpress-stats,
    .vexpress-compare-result .vx-row {
        grid-template-columns: 1fr;
    }

    .vexpress-compare-form {
        grid-template-columns: 1fr;
    }

    .vexpress-compare-result .vx-price {
        font-size: 20px;
    }

    .vexpress-cta h2 {
        font-size: 26px;
    }
}

/* ==========================================
   沃虎海运整合解决方案单页
   ========================================== */
.ocean-page {
    padding: 28px 0 64px;
    background: radial-gradient(circle at top, #eef4ff 0%, #f9fbff 36%, #ffffff 72%);
}

.ocean-page .container {
    display: grid;
    gap: 22px;
}

.ocean-hero,
.ocean-section {
    border-radius: 20px;
    border: 1px solid #dbe6f6;
    background: #fff;
    box-shadow: 0 14px 34px rgba(5, 33, 78, .08);
}

.ocean-hero {
    padding: 42px 40px;
    color: #fff;
    background: linear-gradient(126deg, #062d78 0%, #0f62fe 46%, #2c88ff 100%);
}

.ocean-kicker {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    margin: 0 0 12px;
    font-size: 12px;
}

.ocean-hero h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.22;
    color: #fff;
}

.ocean-lead {
    margin: 16px 0 0;
    max-width: 940px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .94);
}

.ocean-hero-actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ocean-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.ocean-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff8d1f, #ffb34a);
    box-shadow: 0 10px 22px rgba(255, 153, 58, .32);
}

.ocean-btn-light {
    color: #0f62fe;
    background: #edf4ff;
}

.ocean-section {
    padding: 32px;
}

.ocean-title-row h2 {
    margin: 0;
    font-size: 30px;
    color: #10213f;
}

.ocean-title-row p {
    margin: 10px 0 0;
    color: #5e6f86;
}

.ocean-region-grid,
.ocean-mode-grid,
.ocean-flow-grid,
.ocean-compare-grid,
.ocean-benefit-grid {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.ocean-region-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ocean-region-grid article,
.ocean-mode-card,
.ocean-flow-grid article,
.ocean-compare-grid article,
.ocean-benefit-grid div {
    border: 1px solid #dce8f7;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 18px;
}

.ocean-region-grid h3,
.ocean-mode-card h3,
.ocean-compare-grid h3 {
    margin: 0;
    font-size: 20px;
    color: #10213f;
}

.ocean-region-grid p,
.ocean-mode-card p,
.ocean-mode-card li,
.ocean-flow-grid span,
.ocean-compare-grid p,
.ocean-benefit-grid span {
    color: #5c6e86;
    line-height: 1.78;
}

.ocean-tip {
    margin: 14px 0 0;
    color: #36557f;
    background: #eef5ff;
    border: 1px dashed #c7dbf5;
    border-radius: 12px;
    padding: 10px 12px;
}

.ocean-mode-tabs {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ocean-mode-tabs button {
    min-height: 36px;
    border: none;
    border-radius: 999px;
    padding: 0 14px;
    font-weight: 700;
    color: #37577e;
    background: #edf4ff;
    cursor: pointer;
}

.ocean-mode-tabs button.is-active {
    color: #fff;
    background: linear-gradient(135deg, #0f62fe, #3a97ff);
}

.ocean-mode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ocean-mode-card {
    opacity: .82;
    transition: all .2s ease;
}

.ocean-mode-card.is-active {
    opacity: 1;
    border-color: #bcd4f3;
    box-shadow: 0 10px 24px rgba(15, 98, 254, .1);
}

.ocean-mode-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.ocean-client {
    margin-top: 12px;
    font-size: 13px;
}

.ocean-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ocean-flow-grid strong {
    display: block;
    color: #0f62fe;
    margin-bottom: 8px;
}

.ocean-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ocean-risk {
    color: #ba4e27;
    font-weight: 700;
}

.ocean-safe {
    color: #12613f;
    font-weight: 700;
}

.ocean-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ocean-benefit-grid strong {
    display: block;
    color: #0f62fe;
    margin-bottom: 6px;
}

.ocean-schedule-tool {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 10px;
}

.ocean-schedule-tool select,
.ocean-schedule-tool button {
    height: 44px;
    border-radius: 10px;
}

.ocean-schedule-tool select {
    border: 1px solid #d5e2f5;
    padding: 0 12px;
}

.ocean-schedule-tool button {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #0f62fe, #3996ff);
}

.ocean-schedule-hint {
    margin-top: 10px;
    color: #51657f;
    font-size: 13px;
}

.ocean-table-wrap {
    margin-top: 12px;
    overflow-x: auto;
}

.ocean-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.ocean-table th,
.ocean-table td {
    border-bottom: 1px solid #e5edf8;
    text-align: left;
    padding: 12px 8px;
    font-size: 14px;
}

.ocean-table th {
    color: #27476e;
    background: #f5f9ff;
}

.ocean-cta {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.ocean-cta h2 {
    margin: 0;
    font-size: 32px;
    color: #10213f;
}

.ocean-quote-form {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.ocean-quote-form input {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d5e2f5;
    padding: 0 12px;
}

.ocean-quote-result {
    margin-top: 10px;
    color: #49627f;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .ocean-hero h1 {
        font-size: 34px;
    }

    .ocean-region-grid,
    .ocean-flow-grid,
    .ocean-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ocean-quote-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .ocean-hero,
    .ocean-section {
        padding: 28px 22px;
    }

    .ocean-hero h1 {
        font-size: 32px;
    }

    .ocean-title-row h2,
    .ocean-cta h2 {
        font-size: 27px;
    }

    .ocean-mode-grid,
    .ocean-compare-grid,
    .ocean-quote-form,
    .ocean-schedule-tool {
        grid-template-columns: 1fr;
    }

    .ocean-mode-tabs button {
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .ocean-page {
        padding: 18px 0 50px;
    }

    .ocean-hero,
    .ocean-section {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .ocean-hero h1 {
        font-size: 30px;
    }

    .ocean-lead {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .ocean-mode-grid,
    .ocean-flow-grid,
    .ocean-region-grid,
    .ocean-compare-grid,
    .ocean-benefit-grid,
    .ocean-schedule-tool,
    .ocean-quote-form {
        grid-template-columns: 1fr;
    }

    .ocean-hero-actions {
        flex-direction: column;
    }

    .ocean-btn {
        width: 100%;
    }

    .ocean-title-row h2 {
        font-size: 25px;
    }

    .ocean-cta h2 {
        font-size: 26px;
    }

    .ocean-table {
        min-width: 0;
        table-layout: fixed;
    }

    .ocean-table th,
    .ocean-table td {
        font-size: 13px;
        white-space: normal;
        word-break: break-word;
    }
}

/* ==========================================
   中欧卡航 / 东南亚卡班 单页
   ========================================== */
.road-page {
    padding: 28px 0 64px;
    background: radial-gradient(circle at top, #f1f6ff 0%, #f8fbff 36%, #ffffff 72%);
}

.road-page .container {
    display: grid;
    gap: 22px;
}

.road-hero,
.road-section {
    border-radius: 20px;
    border: 1px solid #dbe7f8;
    background: #fff;
    box-shadow: 0 14px 34px rgba(5, 33, 78, .08);
}

.road-hero {
    padding: 42px 40px;
    color: #fff;
    background: linear-gradient(126deg, #0a2d6f 0%, #0f62fe 48%, #318eff 100%);
}

.road-kicker {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    margin: 0 0 12px;
    font-size: 12px;
}

.road-hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.24;
    color: #fff;
}

.road-lead {
    margin: 16px 0 0;
    max-width: 930px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .95);
}

.road-hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.road-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.road-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff8c20, #ffb24b);
    box-shadow: 0 10px 22px rgba(255, 152, 52, .32);
}

.road-btn-light {
    color: #0f62fe;
    background: #edf4ff;
}

.road-section {
    padding: 32px;
}

.road-title-row h2 {
    margin: 0;
    font-size: 30px;
    color: #10213f;
}

.road-title-row p {
    margin: 10px 0 0;
    color: #5e6f86;
}

.road-market-grid,
.road-triangle-grid,
.road-flow-grid,
.road-adv-list,
.road-table-wrap,
.road-hero-actions,
.road-quote-form {
    margin-top: 18px;
}

.road-market-grid,
.road-triangle-grid,
.road-flow-grid {
    display: grid;
    gap: 12px;
}

.road-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.road-market-grid article,
.road-triangle-grid article,
.road-flow-grid article {
    border: 1px solid #dce8f7;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 18px;
}

.road-market-grid h3,
.road-triangle-grid strong {
    color: #10213f;
}

.road-market-grid span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    margin-top: 10px;
    font-size: 12px;
    color: #0f62fe;
    background: #eaf2ff;
}

.road-tip {
    margin: 14px 0 0;
    color: #36557f;
    background: #eef5ff;
    border: 1px dashed #c7dbf5;
    border-radius: 12px;
    padding: 10px 12px;
}

.road-triangle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.road-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.road-flow-grid strong {
    display: block;
    color: #0f62fe;
    margin-bottom: 8px;
}

.road-adv-list {
    padding-left: 18px;
    color: #5e6f86;
    line-height: 1.8;
}

.road-adv-list li + li {
    margin-top: 8px;
}

.road-schedule-form {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 10px;
}

.road-schedule-form select,
.road-schedule-form button {
    height: 44px;
    border-radius: 10px;
}

.road-schedule-form select {
    border: 1px solid #d5e2f5;
    padding: 0 12px;
}

.road-schedule-form button {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #0f62fe, #3996ff);
}

.road-schedule-hint {
    margin-top: 10px;
    color: #51657f;
    font-size: 13px;
}

.road-table-wrap {
    overflow-x: auto;
}

.road-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.road-table th,
.road-table td {
    border-bottom: 1px solid #e5edf8;
    text-align: left;
    padding: 12px 8px;
    font-size: 14px;
}

.road-table th {
    background: #f5f9ff;
    color: #27476e;
}

.road-cta {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.road-cta h2 {
    margin: 0;
    font-size: 32px;
    color: #10213f;
}

.road-quote-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.road-quote-form input {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d5e2f5;
    padding: 0 12px;
}

.road-quote-result {
    margin-top: 10px;
    color: #49627f;
    font-size: 13px;
}

.road-proof {
    margin: 10px 0 0;
    color: #627590;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .road-hero h1 {
        font-size: 34px;
    }

    .road-triangle-grid,
    .road-flow-grid,
    .road-quote-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .road-hero,
    .road-section {
        padding: 28px 22px;
    }

    .road-hero h1 {
        font-size: 32px;
    }

    .road-title-row h2,
    .road-cta h2 {
        font-size: 27px;
    }

    .road-flow-grid,
    .road-schedule-form,
    .road-quote-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .road-page {
        padding: 18px 0 50px;
    }

    .road-hero,
    .road-section {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .road-hero h1 {
        font-size: 30px;
    }

    .road-lead {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .road-market-grid,
    .road-triangle-grid,
    .road-flow-grid,
    .road-schedule-form,
    .road-quote-form {
        grid-template-columns: 1fr;
    }

    .road-hero-actions {
        flex-direction: column;
    }

    .road-btn {
        width: 100%;
    }

    .road-title-row h2 {
        font-size: 25px;
    }

    .road-cta h2 {
        font-size: 26px;
    }

    .road-table {
        min-width: 0;
        table-layout: fixed;
    }

    .road-table th,
    .road-table td {
        font-size: 13px;
        white-space: normal;
        word-break: break-word;
    }
}

/* ==========================================
   V-Rail 中欧班列DDP 单页
   ========================================== */
.rail-page {
    padding: 28px 0 64px;
    background: radial-gradient(circle at top, #eef4ff 0%, #f8fbff 36%, #ffffff 72%);
}

.rail-page .container {
    display: grid;
    gap: 22px;
}

.rail-hero,
.rail-section {
    border-radius: 20px;
    border: 1px solid #dbe7f8;
    background: #fff;
    box-shadow: 0 14px 34px rgba(5, 33, 78, .08);
}

.rail-hero {
    padding: 42px 40px;
    color: #fff;
    background: linear-gradient(126deg, #08295d 0%, #0f62fe 48%, #3d97ff 100%);
}

.rail-kicker {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    margin: 0 0 12px;
    font-size: 12px;
}

.rail-hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.24;
    color: #fff;
}

.rail-lead {
    margin: 16px 0 0;
    max-width: 960px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .95);
}

.rail-hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rail-btn {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.rail-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #ff8c20, #ffb24b);
    box-shadow: 0 10px 22px rgba(255, 152, 52, .32);
}

.rail-btn-light {
    color: #0f62fe;
    background: #edf4ff;
}

.rail-section {
    padding: 32px;
}

.rail-title-row h2 {
    margin: 0;
    font-size: 30px;
    color: #10213f;
}

.rail-title-row p {
    margin: 10px 0 0;
    color: #5e6f86;
}

.rail-compare-grid,
.rail-flow-grid,
.rail-adv-list,
.rail-table-wrap,
.rail-hero-actions,
.rail-quote-form,
.rail-guide-form {
    margin-top: 18px;
}

.rail-compare-grid,
.rail-flow-grid {
    display: grid;
    gap: 12px;
}

.rail-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rail-compare-grid article,
.rail-flow-grid article {
    border: 1px solid #dce8f7;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 18px;
}

.rail-compare-grid h3,
.rail-flow-grid strong {
    margin: 0;
    color: #10213f;
}

.rail-flow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rail-flow-grid p {
    margin: 8px 0 0;
    color: #5e6f86;
    line-height: 1.75;
}

.rail-tip,
.rail-note {
    margin: 14px 0 0;
    color: #36557f;
    background: #eef5ff;
    border: 1px dashed #c7dbf5;
    border-radius: 12px;
    padding: 10px 12px;
}

.rail-adv-list {
    padding-left: 18px;
    color: #5e6f86;
    line-height: 1.8;
}

.rail-adv-list li + li {
    margin-top: 8px;
}

.rail-lane-form {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 10px;
}

.rail-lane-form select,
.rail-lane-form button {
    height: 44px;
    border-radius: 10px;
}

.rail-lane-form select {
    border: 1px solid #d5e2f5;
    padding: 0 12px;
}

.rail-lane-form button {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #0f62fe, #3996ff);
}

.rail-lane-hint {
    margin-top: 10px;
    color: #51657f;
    font-size: 13px;
}

.rail-table-wrap {
    overflow-x: auto;
}

.rail-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.rail-table th,
.rail-table td {
    border-bottom: 1px solid #e5edf8;
    text-align: left;
    padding: 12px 8px;
    font-size: 14px;
}

.rail-table th {
    background: #f5f9ff;
    color: #27476e;
}

.rail-cta {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.rail-cta h2 {
    margin: 0;
    font-size: 32px;
    color: #10213f;
}

.rail-quote-form {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.rail-quote-form input,
.rail-guide-form input {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d5e2f5;
    padding: 0 12px;
}

.rail-guide-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 10px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.rail-quote-result,
.rail-guide-result {
    margin-top: 10px;
    color: #49627f;
    font-size: 13px;
}

.rail-proof {
    margin: 10px 0 0;
    color: #627590;
    font-size: 13px;
}

@media (max-width: 1200px) {
    .rail-hero h1 {
        font-size: 34px;
    }

    .rail-flow-grid,
    .rail-quote-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .rail-hero,
    .rail-section {
        padding: 28px 22px;
    }

    .rail-hero h1 {
        font-size: 32px;
    }

    .rail-title-row h2,
    .rail-cta h2 {
        font-size: 27px;
    }

    .rail-flow-grid,
    .rail-lane-form,
    .rail-guide-form,
    .rail-quote-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rail-page {
        padding: 18px 0 50px;
    }

    .rail-hero,
    .rail-section {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .rail-hero h1 {
        font-size: 30px;
    }

    .rail-lead {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .rail-compare-grid,
    .rail-flow-grid,
    .rail-lane-form,
    .rail-quote-form,
    .rail-guide-form {
        grid-template-columns: 1fr;
    }

    .rail-hero-actions {
        flex-direction: column;
    }

    .rail-btn {
        width: 100%;
    }

    .rail-title-row h2 {
        font-size: 25px;
    }

    .rail-cta h2 {
        font-size: 26px;
    }

    .rail-table {
        min-width: 0;
        table-layout: fixed;
    }

    .rail-table th,
    .rail-table td {
        font-size: 13px;
        white-space: normal;
        word-break: break-word;
    }
}

/* ==========================================
   跨境物流解决方案总览 单页
   ========================================== */
.overview-page {
    padding: 28px 0 64px;
    background: radial-gradient(circle at top, #eef4ff 0%, #f8fbff 36%, #ffffff 72%);
}

.overview-page .container {
    display: grid;
    gap: 22px;
}

.overview-hero,
.overview-section {
    border-radius: 20px;
    border: 1px solid #dbe7f8;
    background: #fff;
    box-shadow: 0 14px 34px rgba(5, 33, 78, .08);
}

.overview-hero {
    padding: 42px 40px;
    color: #fff;
    background: linear-gradient(126deg, #071f46 0%, #0f62fe 52%, #3f9cff 100%);
}

.overview-kicker {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    margin: 0 0 12px;
    font-size: 12px;
}

.overview-hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.24;
    color: #fff;
}

.overview-lead {
    margin: 16px 0 0;
    max-width: 980px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .95);
}

.overview-section {
    padding: 32px;
}

.overview-title-row h2 {
    margin: 0;
    font-size: 30px;
    color: #10213f;
}

.overview-title-row p {
    margin: 10px 0 0;
    color: #5e6f86;
}

.overview-card-grid,
.overview-guide-grid,
.overview-decision-form,
.overview-consult-form {
    margin-top: 18px;
}

.overview-card-grid,
.overview-guide-grid {
    display: grid;
    gap: 12px;
}

.overview-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


.overview-card {
    border: 1px solid #dce8f7;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 18px;
}

.overview-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.overview-card-head i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.overview-card h3 {
    margin: 0;
    font-size: 18px;
    color: #10213f;
}

.overview-tag {
    margin: 12px 0 0;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    color: #27476e;
    background: #edf4ff;
}

.overview-slogan {
    margin: 12px 0 0;
    font-weight: 700;
    color: #1d3762;
}

.overview-card p,
.overview-card li {
    color: #5e6f86;
    line-height: 1.75;
}


.overview-card ul {
    margin: 12px 0 0;
    padding-left: 18px;
}

.overview-customer {
    margin: 12px 0 0;
    font-size: 13px;
    color: #4f6683;
}

.overview-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    text-decoration: none;
}

.overview-card.is-express {
    border-top: 4px solid #ff9d2f;
}

.overview-card.is-express .overview-card-head i,
.overview-card.is-express .overview-link {
    color: #ff8e21;
}

.overview-card.is-express .overview-card-head i {
    background: rgba(255, 158, 53, .16);
}

.overview-card.is-air {
    border-top: 4px solid #a641ff;
}

.overview-card.is-air .overview-card-head i,
.overview-card.is-air .overview-link {
    color: #8f35df;
}

.overview-card.is-air .overview-card-head i {
    background: rgba(166, 65, 255, .15);
}

.overview-card.is-ocean {
    border-top: 4px solid #0f62fe;
}


.overview-card.is-ocean .overview-card-head i,
.overview-card.is-ocean .overview-link {
    color: #0f62fe;
}

.overview-card.is-ocean .overview-card-head i {
    background: rgba(15, 98, 254, .15);
}

.overview-card.is-road {
    border-top: 4px solid #17a96f;
}

.overview-card.is-road .overview-card-head i,
.overview-card.is-road .overview-link {
    color: #159965;
}

.overview-card.is-road .overview-card-head i {
    background: rgba(23, 169, 111, .14);
}

.overview-card.is-rail {
    border-top: 4px solid #59657a;
}

.overview-card.is-rail .overview-card-head i,
.overview-card.is-rail .overview-link {
    color: #59657a;
}

.overview-card.is-rail .overview-card-head i {
    background: rgba(89, 101, 122, .16);
}

.overview-table-wrap {
    overflow-x: auto;
    margin-top: 18px;
}

.overview-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.overview-table th,
.overview-table td {
    border-bottom: 1px solid #e5edf8;
    text-align: left;
    padding: 12px 8px;
    font-size: 14px;
    color: #4f6781;
}

.overview-table th {
    background: #f5f9ff;
    color: #27476e;
}

.overview-decision-form {

    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 10px;
}

.overview-decision-form select,
.overview-decision-form button,
.overview-consult-form input,
.overview-btn {
    height: 44px;
    border-radius: 10px;
}

.overview-decision-form select,
.overview-consult-form input {
    border: 1px solid #d5e2f5;
    padding: 0 12px;
}

.overview-decision-form button,
.overview-btn {
    border: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #0f62fe, #3996ff);
}

.overview-decision-result,
.overview-consult-result {
    margin-top: 10px;
    font-size: 13px;
    color: #49627f;
}

.overview-cta {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.overview-cta h2 {
    margin: 0;
    font-size: 32px;
    color: #10213f;
}

.overview-cta p {
    margin: 10px 0 0;
    color: #5d6f87;
}

.overview-cta-ask {
    margin-top: 14px;
    color: #2c4f7b;
    font-weight: 700;
}

.overview-consult-form {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.overview-btn {
    height: auto;
    min-height: 44px;
    padding: 10px 14px;
    line-height: 1.4;
}

.overview-contact {
    margin-top: 18px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #dce8f7;
    background: #f7fbff;
    text-align: left;
}

.overview-contact h3 {
    margin: 0 0 10px;
    color: #10213f;
}

.overview-contact p {
    margin: 6px 0 0;
    color: #49627f;
}

@media (max-width: 1200px) {

    .overview-hero h1 {
        font-size: 34px;
    }

    .overview-card-grid,
    .overview-consult-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .overview-hero,
    .overview-section {
        padding: 28px 22px;
    }

    .overview-hero h1 {
        font-size: 32px;
    }

    .overview-title-row h2,
    .overview-cta h2 {
        font-size: 27px;
    }

    .overview-decision-form,
    .overview-consult-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .overview-page {
        padding: 18px 0 50px;
    }

    .overview-hero,
    .overview-section {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .overview-hero h1 {
        font-size: 30px;
    }

    .overview-lead {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.8;
    }

    .overview-card-grid,
    .overview-guide-grid,
    .overview-decision-form,
    .overview-consult-form {
        grid-template-columns: 1fr;
    }

    .overview-title-row h2 {
        font-size: 25px;
    }

    .overview-cta h2 {
        font-size: 26px;
    }

    .overview-table {
        min-width: 0;
        table-layout: fixed;
    }

    .overview-table th,
    .overview-table td {
        font-size: 13px;
        white-space: normal;
        word-break: break-word;
    }

    .overview-link {
        width: 100%;
        justify-content: space-between;
    }
}






























































