/* ========================================
   全国证件服务中心 - 主题样式
   主色: 深海蓝 #1976D2
   辅助色: 皇家蓝 #0D47A1
   强调色: 香槟金 #D4AF37
   背景色: 浅灰蓝 #F5F7FA
   ======================================== */

:root {
    --zj-primary: #1976D2;
    --zj-primary-dark: #0D47A1;
    --zj-primary-light: #64B5F6;
    --zj-accent: #D4AF37;
    --zj-accent-dark: #B8960C;
    --zj-text: #333333;
    --zj-text-light: #666666;
    --zj-text-muted: #999999;
    --zj-bg: #F5F7FA;
    --zj-bg-white: #FFFFFF;
    --zj-bg-dark: #E8ECF1;
    --zj-border: #E0E0E0;
    --zj-border-light: #EEEEEE;
    --zj-shadow: rgba(25, 118, 210, 0.08);
    --zj-shadow-hover: rgba(25, 118, 210, 0.15);
    --zj-gradient: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
    --zj-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    --zj-radius: 8px;
    --zj-radius-lg: 16px;
    --zj-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --zj-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--zj-font);
    color: var(--zj-text);
    background: var(--zj-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--zj-primary); text-decoration: none; transition: var(--zj-transition); }
a:hover { color: var(--zj-primary-dark); }

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

/* ========== 顶部信息栏 ========== */
.zj-topbar {
    background: var(--zj-gradient);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.zj-topbar a { color: rgba(255,255,255,0.9); }
.zj-topbar a:hover { color: var(--zj-accent); }
.zj-topbar i { color: var(--zj-accent); margin-right: 4px; }

/* ========== 导航栏 ========== */
.zj-navbar {
    background: var(--zj-bg-white);
    box-shadow: 0 2px 20px var(--zj-shadow);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: var(--zj-transition);
}
.zj-navbar .navbar-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--zj-primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.zj-navbar .navbar-brand i {
    color: var(--zj-accent);
    font-size: 28px;
}
.zj-navbar .nav-link {
    color: var(--zj-text) !important;
    font-weight: 500;
    padding: 20px 16px !important;
    position: relative;
    transition: var(--zj-transition);
}
.zj-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--zj-primary);
    transform: scaleX(0);
    transition: var(--zj-transition);
}
.zj-navbar .nav-link:hover::after,
.zj-navbar .nav-link.active::after { transform: scaleX(1); }
.zj-navbar .nav-link:hover,
.zj-navbar .nav-link.active { color: var(--zj-primary) !important; }

.zj-navbar .dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px var(--zj-shadow-hover);
    border-radius: var(--zj-radius);
    padding: 8px;
    min-width: 200px;
}
.zj-navbar .dropdown-item {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--zj-text);
}
.zj-navbar .dropdown-item:hover {
    background: var(--zj-bg);
    color: var(--zj-primary);
}
.zj-navbar .dropdown-item i {
    color: var(--zj-accent);
    margin-right: 8px;
}

.zj-navbar .zj-phone-btn {
    background: var(--zj-gradient-gold);
    color: var(--zj-primary-dark) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.zj-navbar .zj-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}
.zj-navbar .zj-phone-btn::after { display: none !important; }

/* ========== 轮播图 ========== */
.zj-hero-slider { position: relative; }
.zj-hero-slider .carousel-item { min-height: 500px; }
.zj-hero-slider .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 500px;
}
.zj-hero-slider .carousel-caption {
    background: rgba(13, 71, 161, 0.75);
    border-radius: var(--zj-radius-lg);
    padding: 40px;
    max-width: 600px;
    left: 10%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    backdrop-filter: blur(10px);
}
.zj-hero-slider .carousel-caption h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.zj-hero-slider .carousel-caption p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.zj-hero-slider .carousel-caption .btn-gold {
    background: var(--zj-gradient-gold);
    color: var(--zj-primary-dark);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: var(--zj-transition);
}
.zj-hero-slider .carousel-caption .btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}
.zj-hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 6px;
}
.zj-hero-slider .carousel-indicators button.active {
    background: var(--zj-accent);
    width: 30px;
    border-radius: 6px;
}

/* ========== 特色服务条 ========== */
.zj-feature-bar {
    background: var(--zj-bg-white);
    padding: 30px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    border-radius: var(--zj-radius-lg);
    box-shadow: 0 10px 40px var(--zj-shadow);
}
.zj-feature-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--zj-border-light);
}
.zj-feature-item:last-child { border-right: none; }
.zj-feature-item .icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--zj-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    transition: var(--zj-transition);
}
.zj-feature-item:hover .icon-wrap {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}
.zj-feature-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--zj-text);
    margin-bottom: 6px;
}
.zj-feature-item p {
    font-size: 13px;
    color: var(--zj-text-muted);
    margin: 0;
}

/* ========== 通用区块标题 ========== */
.zj-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.zj-section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zj-primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.zj-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--zj-gradient-gold);
    border-radius: 2px;
}
.zj-section-title p {
    color: var(--zj-text-light);
    margin-top: 12px;
    font-size: 1rem;
}

/* ========== 服务卡片 ========== */
.zj-service-card {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--zj-transition);
    border: 1px solid var(--zj-border-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.zj-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--zj-gradient);
    transform: scaleX(0);
    transition: var(--zj-transition);
}
.zj-service-card:hover::before { transform: scaleX(1); }
.zj-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--zj-shadow-hover);
    border-color: var(--zj-primary-light);
}
.zj-service-card .service-icon {
    width: 80px;
    height: 80px;
    background: var(--zj-bg);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--zj-primary);
    transition: var(--zj-transition);
}
.zj-service-card:hover .service-icon {
    background: var(--zj-gradient);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}
.zj-service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--zj-text);
}
.zj-service-card p {
    color: var(--zj-text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.zj-service-card .zj-tag {
    display: inline-block;
    background: rgba(25, 118, 210, 0.1);
    color: var(--zj-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 12px;
    font-weight: 500;
}

/* ========== 优势区块 ========== */
.zj-advantage-section {
    background: var(--zj-gradient);
    position: relative;
    overflow: hidden;
}
.zj-advantage-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.zj-advantage-section .zj-section-title h2,
.zj-advantage-section .zj-section-title p { color: #fff; }
.zj-advantage-section .zj-section-title h2::after { background: var(--zj-accent); }
.zj-advantage-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--zj-radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--zj-transition);
    height: 100%;
}
.zj-advantage-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}
.zj-advantage-item .adv-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--zj-accent);
    line-height: 1;
    margin-bottom: 10px;
}
.zj-advantage-item h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.zj-advantage-item p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

/* ========== 样本展示 ========== */
.zj-gallery-card {
    position: relative;
    border-radius: var(--zj-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--zj-shadow);
    transition: var(--zj-transition);
    cursor: pointer;
}
.zj-gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--zj-transition);
}
.zj-gallery-card:hover img { transform: scale(1.1); }
.zj-gallery-card .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--zj-gradient);
    padding: 15px;
    transform: translateY(100%);
    transition: var(--zj-transition);
}
.zj-gallery-card:hover .gallery-overlay { transform: translateY(0); }
.zj-gallery-card .gallery-overlay h4 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

/* ========== 流程步骤 ========== */
.zj-process-step {
    text-align: center;
    position: relative;
    padding: 20px;
}
.zj-process-step .step-num {
    width: 50px;
    height: 50px;
    background: var(--zj-gradient);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}
.zj-process-step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--zj-text);
}
.zj-process-step p {
    font-size: 13px;
    color: var(--zj-text-light);
    margin: 0;
}
.zj-process-line {
    position: absolute;
    top: 45px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--zj-border);
    z-index: 1;
}
.zj-process-step:last-child .zj-process-line { display: none; }

/* ========== 城市站点 ========== */
.zj-city-section {
    background: var(--zj-bg-dark);
}
.zj-city-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.zj-city-item {
    background: var(--zj-bg-white);
    padding: 12px 8px;
    border-radius: var(--zj-radius);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--zj-text);
    border: 1px solid var(--zj-border-light);
    transition: var(--zj-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.zj-city-item i { color: var(--zj-primary); font-size: 12px; }
.zj-city-item:hover {
    background: var(--zj-gradient);
    color: #fff;
    border-color: var(--zj-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--zj-shadow-hover);
}
.zj-city-item:hover i { color: var(--zj-accent); }

/* ========== 文章卡片 ========== */
.zj-news-card {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--zj-shadow);
    transition: var(--zj-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--zj-border-light);
}
.zj-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--zj-shadow-hover);
}
.zj-news-card .news-img-wrap {
    position: relative;
    overflow: hidden;
    height: 180px;
}
.zj-news-card .news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zj-transition);
}
.zj-news-card:hover .news-img-wrap img { transform: scale(1.08); }
.zj-news-card .news-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.zj-news-card .news-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--zj-text-muted);
    margin-bottom: 10px;
}
.zj-news-card .news-meta i { color: var(--zj-primary); margin-right: 3px; }
.zj-news-card h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--zj-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zj-news-card p {
    font-size: 13px;
    color: var(--zj-text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.zj-news-card .news-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--zj-border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.zj-news-card .read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--zj-primary);
    display: flex;
    align-items: center;
    gap: 4px;
}
.zj-news-card .read-more:hover { gap: 8px; }

/* ========== 文章详情 ========== */
.zj-article-detail {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    padding: 40px;
    box-shadow: 0 2px 15px var(--zj-shadow);
}
.zj-article-detail .article-header {
    border-bottom: 2px solid var(--zj-border-light);
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.zj-article-detail h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--zj-primary-dark);
    line-height: 1.4;
    margin-bottom: 15px;
}
.zj-article-detail .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--zj-text-muted);
    font-size: 14px;
}
.zj-article-detail .article-meta i { color: var(--zj-primary); margin-right: 4px; }
.zj-article-detail .content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--zj-text);
}
.zj-article-detail .content p { margin-bottom: 1.2em; }
.zj-article-detail .content img {
    border-radius: var(--zj-radius);
    margin: 20px 0;
    box-shadow: 0 4px 15px var(--zj-shadow);
}
.zj-article-detail .content h2,
.zj-article-detail .content h3 {
    color: var(--zj-primary-dark);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}
.zj-article-detail .article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--zj-border-light);
}
.zj-article-detail .article-tags a {
    display: inline-block;
    background: var(--zj-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
    color: var(--zj-text-light);
    border: 1px solid var(--zj-border-light);
}
.zj-article-detail .article-tags a:hover {
    background: var(--zj-primary);
    color: #fff;
    border-color: var(--zj-primary);
}

/* ========== 侧边栏 ========== */
.zj-sidebar-card {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px var(--zj-shadow);
    border: 1px solid var(--zj-border-light);
}
.zj-sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--zj-primary-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--zj-primary-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zj-sidebar-card h3 i { color: var(--zj-accent); }
.zj-sidebar-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--zj-border-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.zj-sidebar-list li:last-child { border-bottom: none; }
.zj-sidebar-list li i {
    color: var(--zj-primary);
    margin-top: 4px;
    font-size: 12px;
}
.zj-sidebar-list li a {
    color: var(--zj-text);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.zj-sidebar-list li a:hover { color: var(--zj-primary); }
.zj-sidebar-list li .side-date {
    font-size: 12px;
    color: var(--zj-text-muted);
    white-space: nowrap;
}

/* ========== 关于我们 ========== */
.zj-about-hero {
    background: var(--zj-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.zj-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.zj-about-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}
.zj-about-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    position: relative;
}
.zj-about-img-wrap {
    position: relative;
    border-radius: var(--zj-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px var(--zj-shadow-hover);
}
.zj-about-img-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.zj-about-img-wrap .experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--zj-gradient-gold);
    color: var(--zj-primary-dark);
    padding: 15px 25px;
    border-radius: var(--zj-radius);
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.zj-about-img-wrap .experience-badge span {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.zj-value-card {
    background: var(--zj-bg-white);
    padding: 30px;
    border-radius: var(--zj-radius-lg);
    text-align: center;
    border: 1px solid var(--zj-border-light);
    transition: var(--zj-transition);
    height: 100%;
}
.zj-value-card:hover {
    border-color: var(--zj-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--zj-shadow-hover);
}
.zj-value-card .value-icon {
    width: 70px;
    height: 70px;
    background: var(--zj-bg);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--zj-primary);
    margin-bottom: 15px;
    transition: var(--zj-transition);
}
.zj-value-card:hover .value-icon {
    background: var(--zj-gradient);
    color: #fff;
}
.zj-value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.zj-value-card p {
    font-size: 14px;
    color: var(--zj-text-light);
    margin: 0;
}

/* ========== 联系我们 ========== */
.zj-contact-hero {
    background: var(--zj-gradient);
    padding: 60px 0;
    color: #fff;
}
.zj-contact-hero h1 { font-weight: 700; }
.zj-contact-card {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px var(--zj-shadow);
    transition: var(--zj-transition);
    height: 100%;
    border: 1px solid var(--zj-border-light);
}
.zj-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--zj-shadow-hover);
}
.zj-contact-card .contact-icon {
    width: 70px;
    height: 70px;
    background: var(--zj-gradient);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}
.zj-contact-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.zj-contact-card p {
    color: var(--zj-text-light);
    font-size: 14px;
    margin: 0;
}
.zj-contact-card a {
    color: var(--zj-primary);
    font-weight: 600;
}

.zj-contact-form-wrap {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px var(--zj-shadow);
    border: 1px solid var(--zj-border-light);
}
.zj-contact-form-wrap h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zj-primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.zj-contact-form-wrap h2 i { color: var(--zj-accent); }
.zj-form-group { margin-bottom: 20px; }
.zj-form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--zj-text);
}
.zj-form-group label .required { color: #E53935; margin-left: 2px; }
.zj-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--zj-border);
    border-radius: var(--zj-radius);
    font-size: 14px;
    transition: var(--zj-transition);
    background: var(--zj-bg);
    color: var(--zj-text);
}
.zj-form-control:focus {
    outline: none;
    border-color: var(--zj-primary);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
    background: var(--zj-bg-white);
}
.zj-btn-submit {
    background: var(--zj-gradient);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--zj-transition);
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    width: 100%;
}
.zj-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
}
.zj-btn-submit i { margin-right: 6px; }

/* ========== 底部 ========== */
.zj-footer {
    background: var(--zj-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.zj-footer h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.zj-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--zj-accent);
    border-radius: 2px;
}
.zj-footer ul li { margin-bottom: 10px; }
.zj-footer ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.zj-footer ul li a:hover { color: var(--zj-accent); padding-left: 5px; }
.zj-footer ul li a i { font-size: 10px; color: var(--zj-accent); }
.zj-footer .footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}
.zj-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.zj-footer .footer-contact li i {
    color: var(--zj-accent);
    margin-top: 3px;
}
.zj-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}
.zj-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.zj-footer-bottom a { color: rgba(255,255,255,0.5); }
.zj-footer-bottom a:hover { color: var(--zj-accent); }

/* ========== 友情链接 ========== */
.zj-friend-link {
    background: rgba(255,255,255,0.03);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.zj-friend-link h5 {
    color: var(--zj-accent);
    font-size: 14px;
    margin-bottom: 12px;
}
.zj-friend-link a {
    display: inline-block;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-right: 15px;
    margin-bottom: 8px;
}
.zj-friend-link a:hover { color: var(--zj-accent); }

/* ========== 面包屑 ========== */
.zj-breadcrumb {
    background: var(--zj-bg-dark);
    padding: 15px 0;
    border-bottom: 1px solid var(--zj-border-light);
}
.zj-breadcrumb .breadcrumb {
    margin: 0;
    font-size: 14px;
}
.zj-breadcrumb .breadcrumb-item a { color: var(--zj-text-light); }
.zj-breadcrumb .breadcrumb-item a:hover { color: var(--zj-primary); }
.zj-breadcrumb .breadcrumb-item.active { color: var(--zj-primary); font-weight: 500; }

/* ========== 分页 ========== */
.zj-pagination .page-link {
    color: var(--zj-primary);
    border: 1px solid var(--zj-border);
    padding: 10px 16px;
    font-weight: 500;
    transition: var(--zj-transition);
}
.zj-pagination .page-link:hover {
    background: var(--zj-primary);
    color: #fff;
    border-color: var(--zj-primary);
}
.zj-pagination .page-item.active .page-link {
    background: var(--zj-primary);
    border-color: var(--zj-primary);
}

/* ========== 搜索框 ========== */
.zj-search-box {
    background: var(--zj-bg-white);
    padding: 25px;
    border-radius: var(--zj-radius-lg);
    box-shadow: 0 2px 10px var(--zj-shadow);
    margin-bottom: 30px;
    border: 1px solid var(--zj-border-light);
}
.zj-search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--zj-border);
}
.zj-search-box .form-control {
    border: none;
    padding: 14px 24px;
    font-size: 15px;
}
.zj-search-box .form-control:focus {
    box-shadow: none;
    background: var(--zj-bg-white);
}
.zj-search-box .btn-search {
    background: var(--zj-gradient);
    color: #fff;
    border: none;
    padding: 0 30px;
    font-weight: 600;
}
.zj-search-box .btn-search:hover {
    background: var(--zj-primary-dark);
}

/* ========== 悬浮联系 ========== */
.zj-float-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.zj-float-contact a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--zj-transition);
}
.zj-float-contact a:hover { transform: scale(1.1); }
.zj-float-contact .zj-float-phone { background: var(--zj-gradient); }
.zj-float-contact .zj-float-wechat { background: #07C160; }
.zj-float-contact .zj-float-top {
    background: var(--zj-text-muted);
    opacity: 0;
    visibility: hidden;
}
.zj-float-contact .zj-float-top.show { opacity: 1; visibility: visible; }

/* ========== 响应式 ========== */
@media (max-width: 991px) {
    .zj-navbar .nav-link { padding: 12px 16px !important; }
    .zj-navbar .nav-link::after { display: none; }
    .zj-hero-slider .carousel-item { min-height: 350px; }
    .zj-hero-slider .carousel-item img { height: 350px; }
    .zj-hero-slider .carousel-caption {
        left: 5%;
        right: 5%;
        padding: 20px;
        max-width: none;
    }
    .zj-hero-slider .carousel-caption h1 { font-size: 1.5rem; }
    .zj-hero-slider .carousel-caption p { font-size: 14px; }
    .zj-feature-bar { margin-top: 0; border-radius: 0; }
    .zj-feature-item { border-right: none; border-bottom: 1px solid var(--zj-border-light); }
    .zj-feature-item:last-child { border-bottom: none; }
    .zj-city-grid { grid-template-columns: repeat(4, 1fr); }
    .zj-process-line { display: none !important; }
    .zj-about-hero { padding: 50px 0; }
    .zj-about-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 767px) {
    .zj-section-title h2 { font-size: 1.5rem; }
    .zj-city-grid { grid-template-columns: repeat(3, 1fr); }
    .zj-article-detail { padding: 20px; }
    .zj-article-detail h1 { font-size: 1.4rem; }
    .zj-contact-form-wrap { padding: 25px; }
    .zj-float-contact { right: 10px; bottom: 80px; }
    .zj-float-contact a { width: 42px; height: 42px; font-size: 16px; }
    .zj-footer { padding-top: 40px; }
    .zj-gallery-card img { height: 160px; }
}

@media (max-width: 575px) {
    .zj-city-grid { grid-template-columns: repeat(2, 1fr); }
    .zj-service-card { padding: 20px; }
    .zj-advantage-item { padding: 20px; }
    .zj-news-card .news-img-wrap { height: 160px; }
}

/* ========== 工具类 ========== */
.zj-section { padding: 70px 0; }
.zj-bg-white { background: var(--zj-bg-white); }
.zj-text-primary { color: var(--zj-primary) !important; }
.zj-text-accent { color: var(--zj-accent) !important; }
.zj-fw-600 { font-weight: 600; }
.zj-gap-2 { gap: 0.5rem; }
.zj-gap-3 { gap: 1rem; }
.zj-gap-4 { gap: 1.5rem; }


/* ========================================
   cnmdd.com 风格首页模块样式
   ======================================== */

/* ========== 首屏横幅 ========== */
.zj-hero-banner {
    background: var(--zj-gradient);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.zj-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.zj-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}
.zj-hero-banner h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
}
.zj-hero-banner .hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
}
.zj-hero-banner .hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 25px;
    position: relative;
}
.zj-hero-banner .hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 25px;
}
.zj-hero-banner .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}
.zj-hero-banner .hero-badge i {
    color: var(--zj-accent);
}
.zj-hero-banner .hero-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
}
.zj-hero-banner .btn-hero-phone {
    background: var(--zj-gradient-gold);
    color: var(--zj-primary-dark);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--zj-transition);
}
.zj-hero-banner .btn-hero-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    color: var(--zj-primary-dark);
}
.zj-hero-banner .btn-hero-msg {
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 1.1rem;
    transition: var(--zj-transition);
}
.zj-hero-banner .btn-hero-msg:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-3px);
}

/* ========== 首屏特色标签 ========== */
.zj-hero-features {
    background: var(--zj-bg-white);
    padding: 20px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}
.zj-hero-features .hero-feature-item {
    background: var(--zj-gradient);
    color: #fff;
    padding: 20px;
    border-radius: var(--zj-radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.25);
    transition: var(--zj-transition);
}
.zj-hero-features .hero-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(25, 118, 210, 0.35);
}
.zj-hero-features .hero-feature-item i {
    font-size: 28px;
    color: var(--zj-accent);
}
.zj-hero-features .hero-feature-item span {
    font-size: 14px;
    font-weight: 600;
}

/* ========== 证件分类卡片 v2 ========== */
.zj-services-section {
    background: var(--zj-bg-white);
}
.zj-service-card-v2 {
    background: var(--zj-bg-white);
    border: 1px solid var(--zj-border-light);
    border-radius: var(--zj-radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--zj-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.zj-service-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--zj-gradient);
    transform: scaleX(0);
    transition: var(--zj-transition);
}
.zj-service-card-v2:hover::before {
    transform: scaleX(1);
}
.zj-service-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px var(--zj-shadow-hover);
    border-color: var(--zj-primary-light);
}
.zj-service-card-v2 .service-icon-v2 {
    width: 70px;
    height: 70px;
    background: var(--zj-bg);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 32px;
    color: var(--zj-primary);
    transition: var(--zj-transition);
}
.zj-service-card-v2:hover .service-icon-v2 {
    background: var(--zj-gradient);
    color: #fff;
    transform: scale(1.1);
}
.zj-service-card-v2 h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--zj-text);
    margin-bottom: 10px;
}
.zj-service-card-v2 p {
    font-size: 14px;
    color: var(--zj-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========== 服务优势 v2 ========== */
.zj-advantage-section-v2 {
    background: var(--zj-bg-dark);
}
.zj-adv-card-v2 {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--zj-border-light);
    transition: var(--zj-transition);
    height: 100%;
}
.zj-adv-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--zj-shadow-hover);
    border-color: var(--zj-primary);
}
.zj-adv-card-v2 .adv-icon-v2 {
    width: 60px;
    height: 60px;
    background: var(--zj-gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}
.zj-adv-card-v2 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zj-text);
    margin-bottom: 10px;
}
.zj-adv-card-v2 p {
    font-size: 13px;
    color: var(--zj-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========== 样本展示 v2 ========== */
.zj-gallery-section {
    background: var(--zj-bg-white);
}
.zj-gallery-card-v2 {
    position: relative;
    border-radius: var(--zj-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--zj-shadow);
    transition: var(--zj-transition);
    cursor: pointer;
    border: 1px solid var(--zj-border-light);
}
.zj-gallery-card-v2 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--zj-transition);
}
.zj-gallery-card-v2:hover img {
    transform: scale(1.08);
}
.zj-gallery-card-v2 .gallery-overlay-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--zj-gradient);
    padding: 10px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* ========== 知识科普 ========== */
.zj-knowledge-section {
    background: var(--zj-bg);
}
.zj-knowledge-card {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    padding: 25px;
    border: 1px solid var(--zj-border-light);
    transition: var(--zj-transition);
    height: 100%;
}
.zj-knowledge-card:hover {
    border-color: var(--zj-primary);
    box-shadow: 0 10px 30px var(--zj-shadow-hover);
    transform: translateY(-3px);
}
.zj-knowledge-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zj-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.zj-knowledge-card p {
    font-size: 14px;
    color: var(--zj-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========== 新闻资讯 v2 ========== */
.zj-news-section {
    background: var(--zj-bg-white);
}
.zj-news-card-v2 {
    background: var(--zj-bg-white);
    border-radius: var(--zj-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--zj-shadow);
    transition: var(--zj-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--zj-border-light);
}
.zj-news-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--zj-shadow-hover);
}
.zj-news-card-v2 .news-img-wrap-v2 {
    position: relative;
    overflow: hidden;
    height: 170px;
}
.zj-news-card-v2 .news-img-wrap-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--zj-transition);
}
.zj-news-card-v2:hover .news-img-wrap-v2 img {
    transform: scale(1.08);
}
.zj-news-card-v2 .news-body-v2 {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.zj-news-card-v2 .news-meta-v2 {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: var(--zj-text-muted);
    margin-bottom: 8px;
}
.zj-news-card-v2 .news-meta-v2 i {
    color: var(--zj-primary);
    margin-right: 3px;
}
.zj-news-card-v2 h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
}
.zj-news-card-v2 h3 a {
    color: var(--zj-text);
}
.zj-news-card-v2 h3 a:hover {
    color: var(--zj-primary);
}
.zj-news-card-v2 p {
    font-size: 13px;
    color: var(--zj-text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: 10px;
}
.zj-news-card-v2 .read-more-v2 {
    font-size: 13px;
    font-weight: 600;
    color: var(--zj-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.zj-news-card-v2 .read-more-v2:hover {
    gap: 8px;
}

/* ========== 城市站点 v2 ========== */
.zj-city-section-v2 {
    background: var(--zj-bg-dark);
}
.zj-city-grid-v2 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}
.zj-city-item-v2 {
    background: var(--zj-bg-white);
    padding: 10px 6px;
    border-radius: var(--zj-radius);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--zj-text);
    border: 1px solid var(--zj-border-light);
    transition: var(--zj-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.zj-city-item-v2 i {
    color: var(--zj-primary);
    font-size: 11px;
}
.zj-city-item-v2:hover {
    background: var(--zj-gradient);
    color: #fff;
    border-color: var(--zj-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--zj-shadow-hover);
}
.zj-city-item-v2:hover i {
    color: var(--zj-accent);
}

/* ========== 联系横幅 ========== */
.zj-contact-banner {
    background: var(--zj-gradient);
    position: relative;
    overflow: hidden;
}
.zj-contact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

/* ========== 响应式 ========== */
@media (max-width: 991px) {
    .zj-hero-banner { padding: 60px 0 50px; }
    .zj-hero-banner h1 { font-size: 1.5rem; }
    .zj-hero-banner .hero-subtitle { font-size: 1rem; }
    .zj-hero-banner .hero-desc { font-size: 14px; }
    .zj-hero-banner .btn-hero-phone,
    .zj-hero-banner .btn-hero-msg { padding: 12px 24px; font-size: 1rem; }
    .zj-hero-features { margin-top: 0; padding: 15px 0; }
    .zj-hero-features .hero-feature-item { padding: 15px 10px; }
    .zj-hero-features .hero-feature-item i { font-size: 22px; }
    .zj-hero-features .hero-feature-item span { font-size: 12px; }
    .zj-city-grid-v2 { grid-template-columns: repeat(6, 1fr); }
    .zj-gallery-card-v2 img { height: 150px; }
}

@media (max-width: 767px) {
    .zj-hero-banner { padding: 50px 15px 40px; }
    .zj-hero-banner h1 { font-size: 1.2rem; }
    .zj-hero-banner .hero-badges { gap: 8px; }
    .zj-hero-banner .hero-badge { padding: 6px 14px; font-size: 12px; }
    .zj-service-card-v2 { padding: 20px; }
    .zj-service-card-v2 .service-icon-v2 { width: 55px; height: 55px; font-size: 24px; }
    .zj-service-card-v2 h3 { font-size: 15px; }
    .zj-adv-card-v2 { padding: 20px; }
    .zj-adv-card-v2 .adv-icon-v2 { width: 50px; height: 50px; font-size: 20px; }
    .zj-adv-card-v2 h3 { font-size: 14px; }
    .zj-knowledge-card { padding: 18px; }
    .zj-knowledge-card h3 { font-size: 14px; }
    .zj-city-grid-v2 { grid-template-columns: repeat(4, 1fr); }
    .zj-gallery-card-v2 img { height: 130px; }
}

@media (max-width: 575px) {
    .zj-hero-banner h1 { font-size: 1.1rem; }
    .zj-hero-banner .hero-subtitle { font-size: 13px; }
    .zj-hero-banner .hero-desc { font-size: 12px; }
    .zj-hero-banner .btn-hero-phone,
    .zj-hero-banner .btn-hero-msg { padding: 10px 18px; font-size: 14px; width: 100%; max-width: 280px; }
    .zj-hero-banner .hero-contact { flex-direction: column; align-items: center; }
    .zj-hero-features .hero-feature-item span { font-size: 11px; }
    .zj-city-grid-v2 { grid-template-columns: repeat(3, 1fr); }
    .zj-news-card-v2 .news-img-wrap-v2 { height: 140px; }
}


/* ========================================
   首屏横幅 v3 - 全屏背景图+半透明遮罩
   ======================================== */

.zj-hero-banner-v3 {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 80px;

}
.zj-hero-banner-v3 .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.88) 0%, rgba(25, 118, 210, 0.82) 50%, rgba(13, 71, 161, 0.9) 100%);
    z-index: 1;
}
.zj-hero-banner-v3 .hero-content {
    position: relative;
    z-index: 2;
}
.zj-hero-banner-v3 h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}
.zj-hero-banner-v3 h1 .text-gold {
    color: var(--zj-accent);
}
.zj-hero-banner-v3 .hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.zj-hero-banner-v3 .hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 25px;
}
.zj-hero-banner-v3 .hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.zj-hero-banner-v3 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}
.zj-hero-banner-v3 .hero-badge i {
    color: var(--zj-accent);
    font-size: 18px;
}
.zj-hero-banner-v3 .hero-contact {
    display: flex;
    justify-content: center;
}
.zj-hero-banner-v3 .btn-hero-main {
    background: var(--zj-primary);
    color: #fff;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(25, 118, 210, 0.4);
    transition: var(--zj-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.zj-hero-banner-v3 .btn-hero-main:hover {
    background: #1565C0;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(25, 118, 210, 0.5);
    color: #fff;
}

/* 响应式 */
@media (max-width: 991px) {
    .zj-hero-banner-v3 { min-height: 500px; padding: 80px 20px 60px; }
    .zj-hero-banner-v3 h1 { font-size: 2.2rem; }
}
@media (max-width: 767px) {
    .zj-hero-banner-v3 { min-height: 450px; padding: 70px 15px 50px; }
    .zj-hero-banner-v3 h1 { font-size: 1.8rem; }
    .zj-hero-banner-v3 .hero-subtitle { font-size: 1rem; }
    .zj-hero-banner-v3 .hero-desc { font-size: 14px; }
    .zj-hero-banner-v3 .hero-badges { gap: 15px; }
    .zj-hero-banner-v3 .hero-badge { font-size: 13px; }
    .zj-hero-banner-v3 .btn-hero-main { padding: 12px 32px; font-size: 1rem; }
}
@media (max-width: 575px) {
    .zj-hero-banner-v3 { min-height: 400px; padding: 60px 15px 40px; }
    .zj-hero-banner-v3 h1 { font-size: 1.5rem; }
    .zj-hero-banner-v3 .hero-subtitle { font-size: 14px; }
    .zj-hero-banner-v3 .hero-desc { font-size: 13px; }
    .zj-hero-banner-v3 .hero-badge { font-size: 12px; }
    .zj-hero-banner-v3 .hero-badge i { font-size: 14px; }
    .zj-hero-banner-v3 .btn-hero-main { padding: 10px 28px; font-size: 14px; width: 100%; max-width: 280px; justify-content: center; }
}
