/**
 * 公积金代取服务网站样式表
 * 主题色：热情红 #E53935
 * 作者：FastAdmin Template
 * 版本：1.0.0
 */

/* ========================================
   CSS变量定义 - 主题色配置
   ======================================== */
:root {
    /* 主题主色 - 商务蓝 */
    --gjj-primary: #1565C0;
    --gjj-primary-dark: #0D47A1;
    --gjj-primary-light: #42A5F5;
    --gjj-primary-lighter: #E3F2FD;
    
    /* 辅助色 */
    --gjj-secondary: #00ACC1;
    --gjj-accent: #FFC107;
    
    /* 文字色 */
    --gjj-text-primary: #212121;
    --gjj-text-secondary: #616161;
    --gjj-text-muted: #9E9E9E;
    --gjj-text-light: #FFFFFF;
    
    /* 背景色 */
    --gjj-bg-white: #FFFFFF;
    --gjj-bg-light: #F5F5F5;
    --gjj-bg-gray: #EEEEEE;
    --gjj-bg-dark: #212121;
    
    /* 边框色 */
    --gjj-border-color: #E0E0E0;
    --gjj-border-light: #F5F5F5;
    
    /* 阴影 */
    --gjj-shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --gjj-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --gjj-shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --gjj-shadow-primary: 0 4px 16px rgba(229,57,53,0.3);
    
    /* 圆角 */
    --gjj-radius-sm: 4px;
    --gjj-radius: 8px;
    --gjj-radius-lg: 12px;
    --gjj-radius-xl: 20px;
    
    /* 过渡 */
    --gjj-transition: all 0.3s ease;
    --gjj-transition-fast: all 0.2s ease;
    
    /* 字体 */
    --gjj-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ========================================
   基础样式重置
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--gjj-font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gjj-text-primary);
    background-color: var(--gjj-bg-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

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

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

/* ========================================
   顶部信息栏
   ======================================== */
.gjj-topbar {
    background: linear-gradient(135deg, var(--gjj-primary-dark) 0%, var(--gjj-primary) 100%);
    color: var(--gjj-text-light);
    padding: 10px 0;
    font-size: 14px;
}

.gjj-topbar-left,
.gjj-topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gjj-topbar-right {
    justify-content: flex-end;
}

.gjj-topbar a {
    color: var(--gjj-text-light);
}

.gjj-topbar a:hover {
    color: var(--gjj-accent);
}

.gjj-topbar i {
    margin-right: 5px;
}

.gjj-divider {
    opacity: 0.5;
}

.gjj-welcome-text,
.gjj-phone,
.gjj-service-time,
.gjj-quick-contact {
    display: inline-flex;
    align-items: center;
}

/* ========================================
   主导航栏
   ======================================== */
.gjj-header {
    background: var(--gjj-bg-white);
    box-shadow: var(--gjj-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.gjj-navbar {
    padding: 0;
}

.gjj-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.gjj-logo-img {
    height: 50px;
    width: auto;
}

.gjj-logo-text {
    display: flex;
    flex-direction: column;
}

.gjj-logo-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gjj-primary);
    line-height: 1.2;
}

.gjj-logo-subtitle {
    font-size: 12px;
    color: var(--gjj-text-secondary);
}

.gjj-nav {
    gap: 5px;
}

.gjj-nav-item {
    position: relative;
}

.gjj-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 25px 18px !important;
    color: var(--gjj-text-primary) !important;
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.gjj-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gjj-primary);
    transition: var(--gjj-transition);
    transform: translateX(-50%);
}

.gjj-nav-link:hover::after,
.gjj-nav-link.active::after {
    width: 80%;
}

.gjj-nav-link:hover,
.gjj-nav-link.active {
    color: var(--gjj-primary) !important;
}

.gjj-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.gjj-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gjj-primary);
    font-weight: 600;
    font-size: 16px;
}

.gjj-btn-consult {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gjj-primary) 0%, var(--gjj-primary-dark) 100%);
    color: var(--gjj-text-light) !important;
    padding: 12px 24px;
    border-radius: var(--gjj-radius);
    font-weight: 500;
    transition: var(--gjj-transition);
    box-shadow: var(--gjj-shadow-primary);
}

.gjj-btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229,57,53,0.4);
}

/* 移动端菜单按钮 */
.gjj-toggler {
    border: none;
    padding: 10px;
}

.gjj-toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gjj-toggler-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gjj-primary);
    border-radius: 2px;
    transition: var(--gjj-transition);
}

/* 移动端底部导航 */
.gjj-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gjj-bg-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
}

.gjj-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gjj-text-secondary);
    font-size: 12px;
}

.gjj-mobile-item i {
    font-size: 20px;
}

.gjj-mobile-item.active {
    color: var(--gjj-primary);
}

.gjj-mobile-call {
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: -20px;
    box-shadow: var(--gjj-shadow-primary);
}

/* ========================================
   页面横幅
   ======================================== */
.gjj-page-banner {
    background: linear-gradient(135deg, var(--gjj-primary) 0%, var(--gjj-primary-dark) 100%);
    padding: 80px 0;
    color: var(--gjj-text-light);
    position: relative;
    overflow: hidden;
}

.gjj-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
}

.gjj-page-banner-content {
    position: relative;
    z-index: 1;
}

.gjj-page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gjj-page-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.gjj-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.gjj-breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.gjj-breadcrumb a:hover {
    color: var(--gjj-text-light);
}

.gjj-breadcrumb .active {
    color: var(--gjj-text-light);
}

/* ========================================
   首页轮播图区域
   ======================================== */
.gjj-hero-section {
    position: relative;
}

.gjj-hero-slider {
    background: var(--gjj-bg-dark);
}

.gjj-hero-slide {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: var(--gjj-text-light);
}

.gjj-hero-content {
    padding-right: 30px;
}

.gjj-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
}

.gjj-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gjj-hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--gjj-accent);
}

.gjj-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.gjj-hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gjj-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gjj-primary) 0%, var(--gjj-primary-dark) 100%);
    color: var(--gjj-text-light) !important;
    padding: 15px 30px;
    border-radius: var(--gjj-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--gjj-transition);
    box-shadow: var(--gjj-shadow-primary);
    border: none;
    cursor: pointer;
}

.gjj-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229,57,53,0.4);
}

.gjj-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gjj-text-light) !important;
    padding: 15px 30px;
    border-radius: var(--gjj-radius);
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--gjj-transition);
}

.gjj-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gjj-text-light);
}

.gjj-hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.gjj-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.gjj-hero-feature-item i {
    color: var(--gjj-accent);
}

/* 快速表单 */
.gjj-hero-form-wrapper {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--gjj-radius-lg);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.gjj-quick-form {
    color: var(--gjj-text-light);
}

.gjj-quick-form-title {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gjj-form-group {
    margin-bottom: 15px;
}

.gjj-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.gjj-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--gjj-radius);
    background: rgba(255,255,255,0.1);
    color: var(--gjj-text-light);
    font-size: 14px;
    transition: var(--gjj-transition);
}

.gjj-form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.gjj-form-control:focus {
    outline: none;
    border-color: var(--gjj-accent);
    background: rgba(255,255,255,0.15);
}

.gjj-btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gjj-accent) 0%, #FFC107 100%);
    color: var(--gjj-text-primary);
    border: none;
    border-radius: var(--gjj-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--gjj-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gjj-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,214,0,0.4);
}

.gjj-form-notice {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* 轮播控制 */
.gjj-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
}

.gjj-carousel-indicators button.active {
    background: var(--gjj-accent);
}

.gjj-carousel-control {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   数据统计区域
   ======================================== */
.gjj-stats-section {
    background: var(--gjj-bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--gjj-border-light);
}

.gjj-stats-row {
    justify-content: center;
}

.gjj-stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--gjj-radius-lg);
    transition: var(--gjj-transition);
}

.gjj-stat-item:hover {
    background: var(--gjj-bg-light);
    transform: translateY(-5px);
}

.gjj-stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gjj-primary-lighter) 0%, var(--gjj-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.gjj-stat-icon i {
    font-size: 32px;
    color: var(--gjj-primary);
}

.gjj-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--gjj-primary);
    line-height: 1;
}

.gjj-stat-label {
    font-size: 16px;
    color: var(--gjj-text-secondary);
    margin-top: 10px;
}

/* ========================================
   通用区域标题样式
   ======================================== */
.gjj-section-header {
    margin-bottom: 50px;
}

.gjj-section-subtitle {
    display: inline-block;
    background: var(--gjj-primary-lighter);
    color: var(--gjj-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.gjj-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gjj-text-primary);
    margin-bottom: 15px;
}

.gjj-section-title-small {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gjj-section-desc {
    font-size: 16px;
    color: var(--gjj-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   服务项目区域
   ======================================== */
.gjj-services-section {
    padding: 80px 0;
    background: var(--gjj-bg-light);
}

.gjj-service-card {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--gjj-transition);
    box-shadow: var(--gjj-shadow);
    height: 100%;
    overflow: hidden;
}

.gjj-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--gjj-shadow-lg);
}

.gjj-service-card-highlight {
    border: 2px solid var(--gjj-primary);
}

.gjj-service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gjj-primary) 0%, var(--gjj-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.gjj-service-icon::before {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px dashed var(--gjj-primary);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gjj-service-icon i {
    font-size: 40px;
    color: var(--gjj-text-light);
}

.gjj-service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gjj-service-desc {
    color: var(--gjj-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.gjj-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.gjj-service-features li {
    padding: 8px 0;
    color: var(--gjj-text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gjj-service-features li i {
    color: var(--gjj-primary);
    font-size: 18px;
}

.gjj-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gjj-primary-lighter);
    color: var(--gjj-primary);
    padding: 12px 25px;
    border-radius: var(--gjj-radius);
    font-weight: 500;
    transition: var(--gjj-transition);
}

.gjj-service-btn:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

.gjj-service-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gjj-secondary);
    color: var(--gjj-text-light);
    padding: 5px 40px;
    font-size: 12px;
    transform: rotate(45deg);
}

.gjj-service-badge-hot {
    background: var(--gjj-primary);
}

/* 服务小卡片 */
.gjj-service-mini {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    padding: 25px;
    text-align: center;
    transition: var(--gjj-transition);
    box-shadow: var(--gjj-shadow-sm);
}

.gjj-service-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--gjj-shadow);
}

.gjj-service-mini-icon {
    width: 60px;
    height: 60px;
    background: var(--gjj-primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.gjj-service-mini-icon i {
    font-size: 28px;
    color: var(--gjj-primary);
}

.gjj-service-mini h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gjj-service-mini p {
    color: var(--gjj-text-secondary);
    font-size: 14px;
    margin: 0;
}

/* ========================================
   优势特色区域
   ======================================== */
.gjj-advantages-section {
    padding: 80px 0;
    background: var(--gjj-bg-white);
}

.gjj-advantages-intro {
    color: var(--gjj-text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.gjj-advantage-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gjj-advantage-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--gjj-bg-light);
    border-radius: var(--gjj-radius);
    transition: var(--gjj-transition);
}

.gjj-advantage-item:hover {
    background: var(--gjj-primary-lighter);
    transform: translateX(10px);
}

.gjj-advantage-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--gjj-primary) 0%, var(--gjj-primary-dark) 100%);
    border-radius: var(--gjj-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gjj-advantage-icon i {
    font-size: 28px;
    color: var(--gjj-text-light);
}

.gjj-advantage-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gjj-advantage-info p {
    color: var(--gjj-text-secondary);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* 优势图片区域 */
.gjj-advantages-image {
    position: relative;
    padding: 30px;
}

.gjj-image-main {
    border-radius: var(--gjj-radius-lg);
    overflow: hidden;
    box-shadow: var(--gjj-shadow-lg);
}

.gjj-image-main img {
    width: 100%;
    display: block;
}

.gjj-image-float {
    position: absolute;
    background: var(--gjj-bg-white);
    padding: 15px 20px;
    border-radius: var(--gjj-radius);
    box-shadow: var(--gjj-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.gjj-image-float i {
    color: var(--gjj-primary);
    font-size: 20px;
}

.gjj-image-float-1 {
    top: 50px;
    left: 0;
}

.gjj-image-float-2 {
    top: 120px;
    right: 0;
}

.gjj-image-float-3 {
    bottom: 80px;
    left: 20px;
}

/* ========================================
   办理流程区域
   ======================================== */
.gjj-process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gjj-primary-lighter) 0%, var(--gjj-bg-white) 100%);
}

.gjj-process-row {
    position: relative;
}

.gjj-process-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.gjj-process-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--gjj-primary);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.gjj-process-icon {
    width: 100px;
    height: 100px;
    background: var(--gjj-bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--gjj-shadow);
    position: relative;
    z-index: 1;
}

.gjj-process-icon i {
    font-size: 40px;
    color: var(--gjj-primary);
}

.gjj-process-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gjj-process-desc {
    color: var(--gjj-text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.gjj-process-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gjj-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gjj-text-light);
}

/* ========================================
   城市站点区域
   ======================================== */
.gjj-cities-section {
    padding: 80px 0;
    background: var(--gjj-bg-white);
}

.gjj-cities-wrapper {
    background: var(--gjj-bg-light);
    border-radius: var(--gjj-radius-lg);
    padding: 30px;
}

.gjj-cities-hot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gjj-border-color);
}

.gjj-cities-label {
    font-weight: 600;
    color: var(--gjj-text-primary);
}

.gjj-city-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gjj-bg-white);
    border-radius: 30px;
    font-size: 14px;
    color: var(--gjj-text-secondary);
    transition: var(--gjj-transition);
}

.gjj-city-tag:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

.gjj-city-tag-hot {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

.gjj-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.gjj-city-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    font-size: 14px;
    color: var(--gjj-text-primary);
    transition: var(--gjj-transition);
}

.gjj-city-item:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

.gjj-city-arrow {
    opacity: 0;
    transition: var(--gjj-transition);
}

.gjj-city-item:hover .gjj-city-arrow {
    opacity: 1;
}

/* ========================================
   新闻资讯区域
   ======================================== */
.gjj-news-section {
    padding: 80px 0;
    background: var(--gjj-bg-light);
}

.gjj-news-featured {
    position: relative;
    border-radius: var(--gjj-radius-lg);
    overflow: hidden;
    box-shadow: var(--gjj-shadow);
}

.gjj-news-featured-link {
    display: block;
    color: inherit;
}

.gjj-news-featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.gjj-news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gjj-transition);
}

.gjj-news-featured:hover .gjj-news-featured-image img {
    transform: scale(1.05);
}

.gjj-news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.gjj-news-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--gjj-text-light);
}

.gjj-news-category {
    display: inline-block;
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.gjj-news-featured-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.gjj-news-featured-desc {
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-news-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    opacity: 0.7;
}

.gjj-news-meta i {
    margin-right: 5px;
}

/* 新闻列表 */
.gjj-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gjj-news-item {
    display: flex;
    gap: 20px;
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    padding: 20px;
    transition: var(--gjj-transition);
    color: inherit;
}

.gjj-news-item:hover {
    box-shadow: var(--gjj-shadow);
    transform: translateX(5px);
}

.gjj-news-item-image {
    width: 150px;
    min-width: 150px;
    height: 100px;
    border-radius: var(--gjj-radius);
    overflow: hidden;
}

.gjj-news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gjj-news-item-content {
    flex: 1;
}

.gjj-news-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-news-item-desc {
    font-size: 14px;
    color: var(--gjj-text-secondary);
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-news-item-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--gjj-text-muted);
}

.gjj-news-more {
    text-align: center;
    margin-top: 25px;
}

.gjj-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gjj-primary);
    font-weight: 500;
}

.gjj-btn-more:hover {
    gap: 12px;
}

/* ========================================
   客户评价区域
   ======================================== */
.gjj-testimonials-section {
    padding: 80px 0;
    background: var(--gjj-bg-white);
}

.gjj-testimonial-card {
    background: var(--gjj-bg-light);
    border-radius: var(--gjj-radius-lg);
    padding: 30px;
    height: 100%;
    transition: var(--gjj-transition);
}

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

.gjj-testimonial-rating {
    color: var(--gjj-accent);
    margin-bottom: 15px;
}

.gjj-testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gjj-text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.gjj-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gjj-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.gjj-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gjj-testimonial-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.gjj-testimonial-info span {
    font-size: 13px;
    color: var(--gjj-text-muted);
}

.gjj-testimonial-control {
    width: 45px;
    height: 45px;
    background: var(--gjj-primary);
    border-radius: 50%;
    opacity: 1;
}

/* ========================================
   常见问题区域
   ======================================== */
.gjj-faq-section {
    padding: 80px 0;
    background: var(--gjj-bg-light);
}

.gjj-faq-header {
    padding-right: 30px;
}

.gjj-faq-intro {
    color: var(--gjj-text-secondary);
    margin-bottom: 30px;
}

.gjj-faq-contact {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    padding: 25px;
    text-align: center;
}

.gjj-faq-contact p {
    margin-bottom: 15px;
    color: var(--gjj-text-secondary);
}

.gjj-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gjj-faq-item {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    overflow: hidden;
    box-shadow: var(--gjj-shadow-sm);
}

.gjj-faq-question {
    padding: 20px 25px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--gjj-transition);
}

.gjj-faq-question:hover {
    background: var(--gjj-primary-lighter);
}

.gjj-faq-question i:first-child {
    color: var(--gjj-primary);
}

.gjj-faq-icon {
    margin-left: auto;
    transition: var(--gjj-transition);
}

.gjj-faq-question[aria-expanded="true"] .gjj-faq-icon {
    transform: rotate(180deg);
}

.gjj-faq-answer {
    padding: 0 25px 20px;
    color: var(--gjj-text-secondary);
    line-height: 1.8;
}

/* ========================================
   联系咨询区域
   ======================================== */
.gjj-contact-section {
    padding: 80px 0;
    background: var(--gjj-bg-white);
}

.gjj-contact-info-wrapper {
    padding-right: 30px;
}

.gjj-contact-intro {
    color: var(--gjj-text-secondary);
    margin-bottom: 30px;
}

.gjj-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gjj-contact-info-item {
    display: flex;
    gap: 20px;
}

.gjj-contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--gjj-primary-lighter);
    border-radius: var(--gjj-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gjj-contact-info-icon i {
    font-size: 24px;
    color: var(--gjj-primary);
}

.gjj-contact-info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gjj-contact-info-content p {
    font-size: 18px;
    font-weight: 600;
    color: var(--gjj-primary);
    margin-bottom: 3px;
}

.gjj-contact-info-content span {
    font-size: 13px;
    color: var(--gjj-text-muted);
}

.gjj-contact-form-wrapper {
    background: var(--gjj-bg-light);
    border-radius: var(--gjj-radius-lg);
    padding: 40px;
}

.gjj-contact-form-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gjj-contact-form-title i {
    color: var(--gjj-primary);
}

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

.gjj-main-form .gjj-form-control {
    background: var(--gjj-bg-white);
    border: 1px solid var(--gjj-border-color);
    color: var(--gjj-text-primary);
}

.gjj-main-form .gjj-form-control::placeholder {
    color: var(--gjj-text-muted);
}

.gjj-main-form .gjj-form-control:focus {
    border-color: var(--gjj-primary);
}

.gjj-btn-submit-large {
    padding: 16px;
    font-size: 18px;
}

.gjj-btn-submit-xl {
    padding: 18px;
    font-size: 18px;
}

.gjj-form-promise {
    text-align: center;
    margin-top: 20px;
    color: var(--gjj-text-secondary);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gjj-form-promise i {
    color: var(--gjj-primary);
}

/* ========================================
   底部CTA区域
   ======================================== */
.gjj-footer-cta {
    background: linear-gradient(135deg, var(--gjj-primary) 0%, var(--gjj-primary-dark) 100%);
    padding: 50px 0;
    color: var(--gjj-text-light);
}

.gjj-cta-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gjj-cta-desc {
    opacity: 0.9;
    margin: 0;
}

.gjj-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.gjj-btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gjj-text-light);
    color: var(--gjj-primary) !important;
    padding: 15px 30px;
    border-radius: var(--gjj-radius);
    font-weight: 600;
    transition: var(--gjj-transition);
}

.gjj-btn-cta-online {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gjj-text-light) !important;
    padding: 15px 30px;
    border-radius: var(--gjj-radius);
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--gjj-transition);
}

.gjj-btn-cta-online:hover {
    background: rgba(255,255,255,0.1);
}

/* ========================================
   主底部区域
   ======================================== */
.gjj-footer {
    background: var(--gjj-bg-dark);
    color: var(--gjj-text-light);
    padding: 70px 0 0;
}

.gjj-footer-widget {
    margin-bottom: 40px;
}

.gjj-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.gjj-footer-logo img {
    height: 45px;
}

.gjj-footer-logo span {
    font-size: 20px;
    font-weight: 600;
}

.gjj-footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.gjj-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.gjj-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.gjj-footer-contact-item i {
    color: var(--gjj-primary);
}

.gjj-footer-social {
    display: flex;
    gap: 12px;
}

.gjj-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8) !important;
    transition: var(--gjj-transition);
}

.gjj-social-link:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
}

.gjj-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.gjj-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gjj-primary);
}

.gjj-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.gjj-footer-links a {
    color: rgba(255,255,255,0.7) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--gjj-transition);
}

.gjj-footer-links a:hover {
    color: var(--gjj-primary) !important;
    padding-left: 5px;
}

.gjj-footer-links a i {
    font-size: 12px;
}

.gjj-footer-qrcode {
    text-align: center;
}

.gjj-footer-qrcode img {
    width: 150px;
    border-radius: var(--gjj-radius);
    margin-bottom: 10px;
}

.gjj-footer-qrcode p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

/* 友情链接 */
.gjj-footer-friendlink {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gjj-friendlink-title {
    font-weight: 600;
    white-space: nowrap;
}

.gjj-friendlink-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gjj-friendlink-list a {
    color: rgba(255,255,255,0.6) !important;
    font-size: 14px;
}

.gjj-friendlink-list a:hover {
    color: var(--gjj-primary) !important;
}

/* 底部版权 */
.gjj-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.gjj-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.gjj-copyright a {
    color: rgba(255,255,255,0.6) !important;
}

.gjj-footer-bottom-links {
    text-align: right;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ========================================
   返回顶部按钮
   ======================================== */
.gjj-backtop {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--gjj-transition);
    box-shadow: var(--gjj-shadow-primary);
    z-index: 999;
}

.gjj-backtop.show {
    opacity: 1;
    visibility: visible;
}

.gjj-backtop:hover {
    transform: translateY(-5px);
    background: var(--gjj-primary-dark);
}

/* ========================================
   右侧悬浮工具栏
   ======================================== */
.gjj-float-tools {
    position: fixed;
    right: 30px;
    bottom: 170px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.gjj-float-item {
    width: 55px;
    height: 55px;
    background: var(--gjj-bg-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: var(--gjj-shadow);
    color: var(--gjj-text-secondary) !important;
    font-size: 12px;
    transition: var(--gjj-transition);
    position: relative;
}

.gjj-float-item i {
    font-size: 20px;
}

.gjj-float-item:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
    transform: scale(1.1);
}

.gjj-float-phone {
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
}

.gjj-float-wechat-popup {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gjj-bg-white);
    padding: 15px;
    border-radius: var(--gjj-radius);
    box-shadow: var(--gjj-shadow-lg);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--gjj-transition);
    width: 150px;
}

.gjj-float-wechat:hover .gjj-float-wechat-popup {
    opacity: 1;
    visibility: visible;
}

.gjj-float-wechat-popup img {
    width: 100%;
    margin-bottom: 10px;
}

.gjj-float-wechat-popup p {
    margin: 0;
    font-size: 12px;
    color: var(--gjj-text-secondary);
}

/* ========================================
   资讯列表页样式
   ======================================== */
.gjj-news-list-section {
    padding: 60px 0;
    background: var(--gjj-bg-light);
}

.gjj-section-intro {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    box-shadow: var(--gjj-shadow-sm);
}

.gjj-intro-icon {
    width: 70px;
    height: 70px;
    background: var(--gjj-primary-lighter);
    border-radius: var(--gjj-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gjj-intro-icon i {
    font-size: 32px;
    color: var(--gjj-primary);
}

.gjj-intro-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gjj-intro-content p {
    color: var(--gjj-text-secondary);
    margin: 0;
}

.gjj-news-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gjj-news-list-item {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    padding: 25px;
    transition: var(--gjj-transition);
}

.gjj-news-list-item:hover {
    box-shadow: var(--gjj-shadow);
}

.gjj-news-list-image {
    display: block;
    position: relative;
    border-radius: var(--gjj-radius);
    overflow: hidden;
    height: 180px;
}

.gjj-news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gjj-transition);
}

.gjj-news-list-item:hover .gjj-news-list-image img {
    transform: scale(1.05);
}

.gjj-news-category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.gjj-news-list-content {
    padding: 10px 0;
}

.gjj-news-list-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.gjj-news-list-title a {
    color: var(--gjj-text-primary);
}

.gjj-news-list-title a:hover {
    color: var(--gjj-primary);
}

.gjj-news-list-desc {
    color: var(--gjj-text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-news-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.gjj-meta-item {
    font-size: 13px;
    color: var(--gjj-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.gjj-tag {
    display: inline-block;
    background: var(--gjj-bg-light);
    color: var(--gjj-text-secondary);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 5px;
}

.gjj-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gjj-primary);
    font-weight: 500;
    font-size: 14px;
}

.gjj-read-more:hover {
    gap: 10px;
}

/* 分页 */
.gjj-pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* 侧边栏 */
.gjj-sidebar-widget {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--gjj-shadow-sm);
}

.gjj-widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gjj-primary-lighter);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gjj-widget-title i {
    color: var(--gjj-primary);
}

.gjj-search-form .input-group {
    border-radius: var(--gjj-radius);
    overflow: hidden;
}

.gjj-search-form .form-control {
    border: 1px solid var(--gjj-border-color);
    border-right: none;
}

.gjj-btn-search {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
    border: none;
    padding: 0 20px;
}

.gjj-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gjj-category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--gjj-text-secondary);
    border-bottom: 1px solid var(--gjj-border-light);
}

.gjj-category-item a:hover,
.gjj-category-item a.active {
    color: var(--gjj-primary);
}

.gjj-category-count {
    background: var(--gjj-bg-light);
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 12px;
}

.gjj-hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gjj-hot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gjj-border-light);
}

.gjj-hot-rank {
    width: 28px;
    height: 28px;
    background: var(--gjj-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gjj-text-secondary);
}

.gjj-hot-item:nth-child(1) .gjj-hot-rank {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

.gjj-hot-item:nth-child(2) .gjj-hot-rank {
    background: var(--gjj-secondary);
    color: var(--gjj-text-light);
}

.gjj-hot-item:nth-child(3) .gjj-hot-rank {
    background: var(--gjj-accent);
    color: var(--gjj-text-primary);
}

.gjj-hot-link {
    color: var(--gjj-text-primary);
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-hot-link:hover {
    color: var(--gjj-primary);
}

.gjj-recommend-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gjj-border-light);
    color: inherit;
}

.gjj-recommend-image {
    width: 80px;
    min-width: 80px;
    height: 60px;
    border-radius: var(--gjj-radius-sm);
    overflow: hidden;
}

.gjj-recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gjj-recommend-content h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-recommend-content span {
    font-size: 12px;
    color: var(--gjj-text-muted);
}

.gjj-widget-contact-content {
    text-align: center;
}

.gjj-widget-contact-content p {
    color: var(--gjj-text-secondary);
    margin-bottom: 15px;
}

.gjj-widget-phone {
    display: block;
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
    padding: 12px;
    border-radius: var(--gjj-radius);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gjj-widget-btn {
    display: block;
    background: var(--gjj-bg-light);
    color: var(--gjj-text-primary);
    padding: 12px;
    border-radius: var(--gjj-radius);
    font-weight: 500;
}

.gjj-widget-btn:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

.gjj-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gjj-tag-item {
    display: inline-block;
    background: var(--gjj-bg-light);
    color: var(--gjj-text-secondary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    transition: var(--gjj-transition);
}

.gjj-tag-item:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

/* ========================================
   文章详情页样式
   ======================================== */
.gjj-article-section {
    padding: 60px 0;
    background: var(--gjj-bg-light);
}

.gjj-article-wrapper {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius-lg);
    padding: 40px;
    box-shadow: var(--gjj-shadow-sm);
}

.gjj-article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gjj-border-light);
}

.gjj-article-category {
    margin-bottom: 15px;
}

.gjj-category-badge {
    display: inline-block;
    background: var(--gjj-primary-lighter);
    color: var(--gjj-primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.gjj-article-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.gjj-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.gjj-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gjj-article-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gjj-bg-light);
    color: var(--gjj-text-secondary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.gjj-article-summary {
    margin-bottom: 30px;
}

.gjj-summary-box {
    background: linear-gradient(135deg, var(--gjj-primary-lighter) 0%, var(--gjj-bg-light) 100%);
    border-left: 4px solid var(--gjj-primary);
    padding: 20px 25px;
    border-radius: 0 var(--gjj-radius) var(--gjj-radius) 0;
    display: flex;
    gap: 15px;
}

.gjj-summary-box i {
    font-size: 24px;
    color: var(--gjj-primary);
}

.gjj-summary-box p {
    margin: 0;
    color: var(--gjj-text-secondary);
    line-height: 1.8;
}

.gjj-article-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gjj-text-primary);
}

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

.gjj-article-content h2,
.gjj-article-content h3,
.gjj-article-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.gjj-article-content img {
    max-width: 100%;
    border-radius: var(--gjj-radius);
    margin: 20px 0;
}

.gjj-article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gjj-border-light);
}

.gjj-article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.gjj-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gjj-text-light) !important;
    transition: var(--gjj-transition);
}

.gjj-share-wechat {
    background: #07C160;
}

.gjj-share-weibo {
    background: #E6162D;
}

.gjj-share-qq {
    background: #12B7F5;
}

.gjj-share-link {
    background: var(--gjj-bg-gray);
    color: var(--gjj-text-secondary) !important;
}

.gjj-article-nav {
    background: var(--gjj-bg-light);
    border-radius: var(--gjj-radius);
    padding: 20px;
}

.gjj-article-nav-prev,
.gjj-article-nav-next {
    color: inherit;
}

.gjj-article-nav-prev span,
.gjj-article-nav-next span {
    font-size: 13px;
    color: var(--gjj-text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.gjj-article-nav-prev p,
.gjj-article-nav-next p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 评论区 */
.gjj-comments-section {
    margin-top: 40px;
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius-lg);
    padding: 30px;
}

.gjj-comments-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gjj-comment-form {
    max-width: 600px;
}

/* 侧边栏作者 */
.gjj-widget-author {
    text-align: center;
}

.gjj-author-header {
    margin-bottom: 20px;
}

.gjj-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.gjj-author-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gjj-author-header p {
    color: var(--gjj-text-secondary);
    font-size: 14px;
    margin: 0;
}

.gjj-author-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--gjj-border-light);
    border-bottom: 1px solid var(--gjj-border-light);
}

.gjj-author-stat {
    text-align: center;
}

.gjj-stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--gjj-primary);
}

.gjj-stat-label {
    font-size: 12px;
    color: var(--gjj-text-muted);
}

.gjj-author-btn {
    display: block;
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
    padding: 12px;
    border-radius: var(--gjj-radius);
    font-weight: 500;
}

.gjj-related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gjj-related-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--gjj-border-light);
}

.gjj-related-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gjj-text-primary);
}

.gjj-related-dot {
    width: 8px;
    height: 8px;
    background: var(--gjj-primary);
    border-radius: 50%;
}

.gjj-related-title {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-hot-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gjj-hot-article-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.gjj-hot-article-image {
    width: 70px;
    height: 50px;
    border-radius: var(--gjj-radius-sm);
    overflow: hidden;
}

.gjj-hot-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gjj-hot-article-info {
    flex: 1;
}

.gjj-hot-article-info h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-hot-article-info span {
    font-size: 12px;
    color: var(--gjj-text-muted);
}

.gjj-quick-contact-content {
    text-align: center;
}

.gjj-quick-contact-content p {
    color: var(--gjj-text-secondary);
    margin-bottom: 15px;
}

.gjj-quick-phone {
    display: block;
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
    padding: 12px;
    border-radius: var(--gjj-radius);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gjj-quick-btns {
    display: flex;
    gap: 10px;
}

.gjj-quick-btn {
    flex: 1;
    background: var(--gjj-bg-light);
    color: var(--gjj-text-primary);
    padding: 10px;
    border-radius: var(--gjj-radius);
    font-size: 13px;
    font-weight: 500;
}

.gjj-quick-btn:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

.gjj-wechat-qrcode {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gjj-border-light);
    text-align: center;
}

.gjj-wechat-qrcode img {
    width: 120px;
    margin-bottom: 10px;
}

.gjj-wechat-qrcode p {
    font-size: 12px;
    color: var(--gjj-text-muted);
    margin: 0;
}

.gjj-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gjj-tag-link {
    display: inline-block;
    background: var(--gjj-bg-light);
    color: var(--gjj-text-secondary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.gjj-tag-link:hover {
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
}

/* 推荐阅读 */
.gjj-recommend-section {
    padding: 60px 0;
    background: var(--gjj-bg-light);
}

.gjj-recommend-card {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    overflow: hidden;
    box-shadow: var(--gjj-shadow-sm);
    transition: var(--gjj-transition);
}

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

.gjj-recommend-image {
    display: block;
    height: 150px;
    overflow: hidden;
}

.gjj-recommend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gjj-transition);
}

.gjj-recommend-card:hover .gjj-recommend-image img {
    transform: scale(1.05);
}

.gjj-recommend-content {
    padding: 20px;
}

.gjj-recommend-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-recommend-content h4 a {
    color: var(--gjj-text-primary);
}

.gjj-recommend-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--gjj-text-muted);
}

/* ========================================
   关于我们页样式
   ======================================== */
.gjj-about-intro-section {
    padding: 80px 0;
    background: var(--gjj-bg-white);
}

.gjj-about-image-wrapper {
    position: relative;
    padding: 20px;
}

.gjj-about-image-main {
    border-radius: var(--gjj-radius-lg);
    overflow: hidden;
    box-shadow: var(--gjj-shadow-lg);
}

.gjj-about-image-main img {
    width: 100%;
    display: block;
}

.gjj-about-image-float {
    position: absolute;
    background: var(--gjj-bg-white);
    padding: 15px 20px;
    border-radius: var(--gjj-radius);
    box-shadow: var(--gjj-shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.gjj-about-image-float i {
    color: var(--gjj-primary);
    font-size: 20px;
}

.gjj-float-1 {
    top: 0;
    left: 0;
}

.gjj-float-2 {
    bottom: 100px;
    right: 0;
}

.gjj-about-experience {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
    padding: 20px 30px;
    border-radius: var(--gjj-radius);
    text-align: center;
}

.gjj-exp-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.gjj-exp-text {
    font-size: 14px;
}

.gjj-about-content {
    padding-left: 30px;
}

.gjj-about-desc {
    font-size: 18px;
    color: var(--gjj-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.gjj-about-text {
    color: var(--gjj-text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.gjj-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.gjj-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.gjj-about-feature i {
    color: var(--gjj-primary);
    font-size: 20px;
}

/* 关于页统计 */
.gjj-about-stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gjj-primary) 0%, var(--gjj-primary-dark) 100%);
}

.gjj-stat-box {
    text-align: center;
    padding: 30px;
}

.gjj-stat-box .gjj-stat-icon {
    background: rgba(255,255,255,0.2);
}

.gjj-stat-box .gjj-stat-icon i {
    color: var(--gjj-text-light);
}

.gjj-stat-box .gjj-stat-number,
.gjj-stat-box .gjj-stat-suffix {
    color: var(--gjj-text-light);
}

.gjj-stat-box .gjj-stat-label {
    color: rgba(255,255,255,0.8);
}

/* 关于页优势 */
.gjj-about-advantages-section {
    padding: 80px 0;
    background: var(--gjj-bg-light);
}

.gjj-advantage-card {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius-lg);
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: var(--gjj-transition);
    box-shadow: var(--gjj-shadow-sm);
}

.gjj-advantage-card:hover {
    box-shadow: var(--gjj-shadow);
    transform: translateY(-10px);
}

.gjj-advantage-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gjj-primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.gjj-advantage-icon-wrapper i {
    font-size: 36px;
    color: var(--gjj-primary);
}

.gjj-advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.gjj-advantage-card p {
    color: var(--gjj-text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* 服务范围 */
.gjj-about-services-section {
    padding: 80px 0;
    background: var(--gjj-bg-white);
}

.gjj-services-image {
    position: relative;
    border-radius: var(--gjj-radius-lg);
    overflow: hidden;
    box-shadow: var(--gjj-shadow-lg);
}

.gjj-services-image img {
    width: 100%;
    display: block;
}

.gjj-services-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
    padding: 15px 25px;
    border-radius: var(--gjj-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.gjj-services-content {
    padding-left: 30px;
}

.gjj-services-intro {
    color: var(--gjj-text-secondary);
    margin-bottom: 30px;
}

.gjj-service-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gjj-service-list-item {
    display: flex;
    gap: 20px;
}

.gjj-service-list-item .gjj-service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gjj-primary-lighter);
    border-radius: var(--gjj-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gjj-service-list-item .gjj-service-icon i {
    font-size: 28px;
    color: var(--gjj-primary);
}

.gjj-service-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gjj-service-info p {
    color: var(--gjj-text-secondary);
    margin: 0;
}

/* 发展历程 */
.gjj-about-timeline-section {
    padding: 80px 0;
    background: var(--gjj-bg-light);
}

.gjj-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.gjj-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gjj-primary);
}

.gjj-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 40px;
}

.gjj-timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.gjj-timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--gjj-primary);
    color: var(--gjj-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.gjj-timeline-content {
    background: var(--gjj-bg-white);
    padding: 25px;
    border-radius: var(--gjj-radius);
    box-shadow: var(--gjj-shadow);
    max-width: 300px;
}

.gjj-timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gjj-primary);
}

.gjj-timeline-content p {
    color: var(--gjj-text-secondary);
    margin: 0;
    font-size: 14px;
}

/* 合作伙伴 */
.gjj-about-partners-section {
    padding: 60px 0;
    background: var(--gjj-bg-white);
}

.gjj-partners-row {
    justify-content: center;
}

.gjj-partner-item {
    background: var(--gjj-bg-light);
    border-radius: var(--gjj-radius);
    padding: 30px;
    text-align: center;
    transition: var(--gjj-transition);
}

.gjj-partner-item:hover {
    background: var(--gjj-primary-lighter);
}

.gjj-partner-item i {
    font-size: 40px;
    color: var(--gjj-primary);
    margin-bottom: 10px;
    display: block;
}

.gjj-partner-item span {
    font-size: 14px;
    color: var(--gjj-text-secondary);
}

/* CTA区域 */
.gjj-about-cta-section {
    padding: 60px 0;
    background: var(--gjj-bg-light);
}

.gjj-cta-box {
    background: linear-gradient(135deg, var(--gjj-primary) 0%, var(--gjj-primary-dark) 100%);
    border-radius: var(--gjj-radius-lg);
    padding: 50px;
    color: var(--gjj-text-light);
}

.gjj-cta-box h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gjj-cta-box p {
    opacity: 0.9;
    margin: 0;
}

.gjj-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gjj-text-light);
    color: var(--gjj-primary) !important;
    padding: 15px 30px;
    border-radius: var(--gjj-radius);
    font-weight: 600;
    margin-right: 15px;
}

.gjj-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gjj-text-light) !important;
    padding: 15px 30px;
    border-radius: var(--gjj-radius);
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
}

/* ========================================
   联系我们页样式
   ======================================== */
.gjj-contact-info-section {
    padding: 60px 0;
    background: var(--gjj-bg-light);
}

.gjj-contact-cards-row {
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.gjj-contact-card {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius-lg);
    padding: 35px;
    text-align: center;
    box-shadow: var(--gjj-shadow);
    transition: var(--gjj-transition);
    height: 100%;
}

.gjj-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--gjj-shadow-lg);
}

.gjj-contact-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gjj-primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.gjj-contact-card-icon i {
    font-size: 36px;
    color: var(--gjj-primary);
}

.gjj-contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gjj-contact-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--gjj-primary);
    margin-bottom: 5px;
}

.gjj-contact-card p a {
    color: var(--gjj-primary);
}

.gjj-contact-card span {
    font-size: 13px;
    color: var(--gjj-text-muted);
}

.gjj-contact-form-section {
    padding: 80px 0;
    background: var(--gjj-bg-white);
}

.gjj-form-header {
    margin-bottom: 30px;
}

.gjj-form-header p {
    color: var(--gjj-text-secondary);
}

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

.gjj-sidebar-box {
    background: var(--gjj-bg-light);
    border-radius: var(--gjj-radius);
    padding: 25px;
}

.gjj-sidebar-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gjj-sidebar-box h4 i {
    color: var(--gjj-primary);
}

.gjj-wechat-box {
    text-align: center;
}

.gjj-wechat-qrcode {
    margin-bottom: 15px;
}

.gjj-wechat-qrcode img {
    width: 180px;
    border-radius: var(--gjj-radius);
}

.gjj-wechat-box p {
    font-weight: 600;
    margin-bottom: 5px;
}

.gjj-wechat-box span {
    font-size: 13px;
    color: var(--gjj-text-muted);
}

.gjj-promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gjj-promise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gjj-border-color);
}

.gjj-promise-list li:last-child {
    border-bottom: none;
}

.gjj-promise-list li i {
    color: var(--gjj-primary);
    font-size: 20px;
}

.gjj-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gjj-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gjj-border-color);
}

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

.gjj-hours-highlight {
    color: var(--gjj-primary);
    font-weight: 500;
}

/* 地图区域 */
.gjj-map-section {
    padding: 0;
}

.gjj-map-wrapper {
    height: 400px;
    background: var(--gjj-bg-gray);
}

.gjj-map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gjj-map-placeholder i {
    font-size: 60px;
    color: var(--gjj-primary);
    margin-bottom: 20px;
}

.gjj-map-placeholder h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gjj-map-placeholder p {
    color: var(--gjj-text-secondary);
    margin-bottom: 20px;
}

.gjj-btn-view-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gjj-primary);
    color: var(--gjj-text-light) !important;
    padding: 12px 25px;
    border-radius: var(--gjj-radius);
    font-weight: 500;
}

/* 联系页FAQ */
.gjj-contact-faq-section {
    padding: 80px 0;
    background: var(--gjj-bg-light);
}

.gjj-faq-row {
    margin-top: 30px;
}

.gjj-faq-card {
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--gjj-shadow-sm);
    transition: var(--gjj-transition);
}

.gjj-faq-card:hover {
    box-shadow: var(--gjj-shadow);
}

.gjj-faq-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gjj-faq-card h4 i {
    color: var(--gjj-primary);
}

.gjj-faq-card p {
    color: var(--gjj-text-secondary);
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

/* 快速联系条 */
.gjj-quick-contact-bar {
    background: var(--gjj-primary);
    padding: 40px 0;
    color: var(--gjj-text-light);
}

.gjj-quick-contact-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gjj-quick-contact-content i {
    font-size: 50px;
}

.gjj-quick-contact-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.gjj-quick-contact-content p {
    opacity: 0.9;
    margin: 0;
}

.gjj-btn-quick-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gjj-text-light);
    color: var(--gjj-primary) !important;
    padding: 15px 35px;
    border-radius: var(--gjj-radius);
    font-size: 20px;
    font-weight: 600;
}

/* ========================================
   响应式设计
   ======================================== */
@media (max-width: 1199px) {
    .gjj-hero-title {
        font-size: 40px;
    }
    
    .gjj-section-title {
        font-size: 32px;
    }
    
    .gjj-about-content,
    .gjj-services-content {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .gjj-topbar-right {
        display: none;
    }
    
    .gjj-header-actions {
        display: none;
    }
    
    .gjj-hero-slide {
        min-height: auto;
        padding: 60px 0;
    }
    
    .gjj-hero-title {
        font-size: 32px;
    }
    
    .gjj-hero-subtitle {
        font-size: 18px;
    }
    
    .gjj-hero-form-wrapper {
        margin-top: 40px;
    }
    
    .gjj-process-arrow {
        display: none;
    }
    
    .gjj-timeline::before {
        left: 35px;
    }
    
    .gjj-timeline-item,
    .gjj-timeline-item:nth-child(even) {
        padding-left: 90px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .gjj-timeline-year {
        left: 35px;
        transform: translateX(-50%);
    }
    
    .gjj-page-title {
        font-size: 32px;
    }
    
    .gjj-cta-buttons {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .gjj-footer-cta {
        text-align: center;
    }
    
    .gjj-float-tools {
        display: none;
    }
    
    .gjj-backtop {
        bottom: 80px;
        right: 15px;
    }
}

@media (max-width: 767px) {
    .gjj-hero-title {
        font-size: 26px;
    }
    
    .gjj-hero-buttons {
        flex-direction: column;
    }
    
    .gjj-btn-primary,
    .gjj-btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .gjj-hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .gjj-section-title {
        font-size: 24px;
    }
    
    .gjj-stat-number {
        font-size: 32px;
    }
    
    .gjj-cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gjj-news-item-image {
        width: 100%;
        height: 180px;
        margin-bottom: 15px;
    }
    
    .gjj-news-item {
        flex-direction: column;
    }
    
    .gjj-article-wrapper {
        padding: 25px;
    }
    
    .gjj-article-title {
        font-size: 22px;
    }
    
    .gjj-about-image-float,
    .gjj-about-experience {
        display: none;
    }
    
    .gjj-about-features {
        grid-template-columns: 1fr;
    }
    
    .gjj-cta-box {
        padding: 30px;
        text-align: center;
    }
    
    .gjj-btn-cta,
    .gjj-btn-cta-outline {
        width: 100%;
        margin: 10px 0;
        justify-content: center;
    }
    
    .gjj-contact-cards-row {
        margin-top: -40px;
    }
    
    .gjj-contact-card {
        margin-bottom: 20px;
    }
    
    .gjj-quick-contact-content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .gjj-btn-quick-call {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .gjj-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gjj-footer-friendlink {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .gjj-copyright,
    .gjj-footer-bottom-links {
        text-align: center;
    }
}

/* ========================================
   动画效果
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gjj-animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   空状态
   ======================================== */
.gjj-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--gjj-bg-white);
    border-radius: var(--gjj-radius);
}

.gjj-empty-icon {
    font-size: 60px;
    color: var(--gjj-text-muted);
    margin-bottom: 20px;
}

.gjj-empty-state h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.gjj-empty-state p {
    color: var(--gjj-text-secondary);
}

/* ========================================
   表单复选框
   ======================================== */
.gjj-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.gjj-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gjj-text-secondary);
}

.gjj-checkbox-label input {
    display: none;
}

.gjj-checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--gjj-border-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gjj-transition);
    flex-shrink: 0;
}

.gjj-checkmark::after {
    content: '\2713';
    font-size: 12px;
    color: var(--gjj-text-light);
    opacity: 0;
}

.gjj-checkbox-label input:checked + .gjj-checkmark {
    background: var(--gjj-primary);
    border-color: var(--gjj-primary);
}

.gjj-checkbox-label input:checked + .gjj-checkmark::after {
    opacity: 1;
}

/* ========================================
   相关资讯
   ======================================== */
.gjj-related-news-section {
    padding: 60px 0;
    background: var(--gjj-bg-white);
}

.gjj-related-news-card {
    display: block;
    background: var(--gjj-bg-light);
    border-radius: var(--gjj-radius);
    overflow: hidden;
    transition: var(--gjj-transition);
    color: inherit;
}

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

.gjj-related-news-image {
    height: 150px;
    overflow: hidden;
}

.gjj-related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gjj-transition);
}

.gjj-related-news-card:hover .gjj-related-news-image img {
    transform: scale(1.05);
}

.gjj-related-news-content {
    padding: 20px;
}

.gjj-related-news-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gjj-related-news-content span {
    font-size: 12px;
    color: var(--gjj-text-muted);
}

.gjj-view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gjj-primary);
    font-weight: 500;
}

.gjj-view-all:hover {
    gap: 10px;
}
