/* ========== 全局变量定义（高级深海蓝 & 暖金渐变色系） ========== */
:root {
    --primary-blue: #1A237E;
    --primary-blue-hover: #283593;
    --primary-gold: #D4AF37;
    --primary-gold-hover: #B28C19;
    --grad-blue: linear-gradient(135deg, #1A237E 0%, #283593 100%);
    --grad-gold: linear-gradient(135deg, #D4AF37 0%, #B28C19 100%);
    --grad-accent: linear-gradient(90deg, #1A237E 0%, #D4AF37 100%);
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
    border: none;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

/* ========== 顶部信息栏 ========== */
.top-bar {
    background: #f5f7fa;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
    color: var(--primary-gold);
    border-bottom: 1px solid #e8e8e8;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left i, .top-left span {
    color: var(--primary-gold);
    margin-right: 5px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right strong {
    color: var(--primary-gold);
    font-size: 16px;
}

.top-bar-right a:hover {
    color: var(--primary-blue);
}

.top-divider {
    color: #ddd;
}

/* ========== 头部导航 ========== */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h1 {
    font-size: 28px;
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 2px;
}

.logo p, .logo-text p {
    font-size: 12px;
    color: #999;
    letter-spacing: 2px;
}

.logo-icon {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}
.logo-icon img { height:55px; width:auto; }

.logo-text h1 {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 5px;
}

.nav > li, .nav > ul > li {
    position: relative;
}

.nav > ul {
    display: flex;
    gap: 8px;
}

.nav > li > a, .nav > ul > li > a {
    display: block;
    padding: 0 20px;
    height: 90px;
    line-height: 90px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav > li > a:hover,
.nav > li.active > a,
.nav > ul > li > a:hover,
.nav > ul > li.active > a {
    color: var(--primary-blue);
}

.nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--grad-accent);
    transition: width 0.3s ease;
}

.nav > li > a:hover::after,
.nav > li.active > a::after {
    width: 60%;
}

.nav > ul > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--grad-accent);
    border-radius: 2px;
}

/* 下拉菜单 */
.subnav, .nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 180px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    border-radius: 4px;
    overflow: hidden;
}

.nav > li:hover .subnav,
.nav > ul > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.subnav li a, .nav .submenu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}

.subnav li:last-child a, .nav .submenu li:last-child a {
    border-bottom: none;
}

.subnav li a:hover, .nav .submenu li a:hover {
    color: var(--primary-blue);
    background-color: #e2e2e2;
    padding-left: 25px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 190px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 0 40px 0 16px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-blue);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
    font-size: 16px;
}

.search-box button:hover {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ========== Banner 轮播 ========== */
.mySwiper {
    width: 100%;
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active { opacity: 1; }

.banner-slide .bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.banner-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 100%;
}

.banner-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--grad-blue);
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: var(--grad-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.banner-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dots li.active {
    background-color: var(--primary-blue);
    width: 30px;
    border-radius: 6px;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: background-color 0.3s ease;
}

.banner-arrow:hover { background-color: var(--primary-blue); }
.banner-arrow.prev { left: 30px; }
.banner-arrow.next { right: 30px; }

/* ========== 通用区块标题 ========== */
.section { padding: 70px 0; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h3 {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--grad-accent);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.section-title p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin: 0;
    letter-spacing: 0.5px;
}

.title-line {
    display: inline-block;
    width: 50px;
    height: 3px;
    background: var(--grad-accent);
    border-radius: 2px;
    position: relative;
}

.title-line::before, .title-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translateY(-50%);
}
.title-line::before { left: -15px; }
.title-line::after { right: -15px; }

.section-more { text-align: center; margin-top: 35px; }

.more-link {
    display: inline-block;
    padding: 10px 28px;
    background: #ffffff;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.more-link:hover {
    background: var(--grad-blue);
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(26, 35, 126, 0.2);
}

/* ========== 内页通用布局 ========== */
.page-banner {
    padding: 80px 0;
    background: var(--grad-blue) !important;
    color: #fff;
    text-align: center;
}

.page-banner h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.85;
    letter-spacing: 2px;
}

.page-layout {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    align-items: flex-start !important;
    width: 100%;
}

.main-content {
    flex: 1 !important;
    min-width: 0 !important;
}

/* PC 端侧边栏固定 280px 宽度 */
.sidebar {
    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
    flex: 0 0 280px !important;
    flex-shrink: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    box-shadow: 0 8px 24px rgba(26, 35, 126, 0.08);
}

.side-title {
    margin: 0;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-blue);
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    border-left: 4px solid var(--primary-blue);
    position: relative;
}

.side-title.light {
    background: var(--grad-blue);
    color: #ffffff;
    border-left: 4px solid var(--primary-gold);
    border-bottom: none;
}

.side-nav {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.side-nav li {
    margin: 0;
    border-bottom: 1px dashed #f1f5f9;
}

.side-nav li:last-child { border-bottom: none; }

.side-nav li a {
    display: block;
    padding: 12px 20px;
    font-size: 14.5px;
    font-weight: 500;
    color: #334155;
    text-decoration: none !important;
    transition: all 0.25s ease;
    position: relative;
}

.side-nav li a:hover {
    color: var(--primary-blue);
    background: #f0f4ff;
    padding-left: 26px;
}

.side-nav li.active a {
    background: var(--primary-blue);
    color: #ffffff !important;
    font-weight: 700;
    padding-left: 26px;
}

.side-nav li.active a::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.hot-news {
    list-style: none;
    padding: 12px 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hot-news li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hot-news li a {
    font-size: 13.5px;
    color: #475569;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    transition: color 0.2s ease;
}

.hot-news li a:hover { color: var(--primary-blue); }

.hot-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.hot-num.1, .hot-num.num-1 { background: #ef4444; color: #fff; }
.hot-num.2, .hot-num.num-2 { background: #f97316; color: #fff; }
.hot-num.3, .hot-num.num-3 { background: var(--primary-gold); color: #fff; }

.contact-box { background: #ffffff; border-color: var(--primary-blue); }

.contact-info {
    padding: 20px;
    text-align: center;
}

.contact-lbl {
    margin: 0 0 6px 0;
    font-size: 13px;
    color: #64748b;
}

.contact-info .tel {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.contact-info .tel a {
    color: #e53935 !important;
    text-decoration: none !important;
}

.contact-info .time {
    margin: 0 0 16px 0;
    font-size: 12px;
    color: #94a3b8;
}

.side-consult-btn {
    display: block;
    width: 100%;
    padding: 10px 0;
    background: var(--grad-blue);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
    transition: all 0.3s ease;
}

.side-consult-btn:hover {
    background: var(--grad-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* ========== 贷款产品板块 (旗舰高级风格) ========== */
.loan-products-section {
    background: var(--bg-light);
    padding: 60px 0 70px 0;
    width: 100%;
}

.product-main-header { margin-bottom: 50px !important; }

.product-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
    width: 100%;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #c7d2fe;
    box-shadow: 0 20px 40px rgba(26, 35, 126, 0.12);
}

.product-card:hover::before { background: var(--grad-accent); }

.card-head {
    text-align: center;
    padding: 24px 20px 14px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px dashed var(--border-color);
}

.card-head h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 8px 0;
}

.card-head h3 a {
    color: var(--text-dark);
    text-decoration: none !important;
    transition: color 0.2s ease;
    display: block;
}

.product-card:hover .card-head h3 a { color: var(--primary-blue); }

.sub-cat-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--primary-gold-hover);
    font-weight: 700;
    background: #fefce8;
    border: 1px solid #fef08a;
    padding: 2px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.product-desc-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 18px 10px 18px;
}

.desc-card-link {
    text-decoration: none !important;
    display: flex;
    flex: 1;
    width: 100%;
}

.formatted-custom-box {
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
    color: #475569;
    display: flex;
    flex-direction: column;
}

.formatted-custom-box .param-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
}

.formatted-custom-box .param-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px dashed #f1f5f9;
    line-height: 1.5;
    font-size: 13px;
}

.formatted-custom-box .param-list li:last-child {
    border-bottom: none;
    align-items: flex-start;
}

.formatted-custom-box .p-title {
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
    width: 68px;
}

.formatted-custom-box .p-val {
    color: #334155;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.formatted-custom-box .p-val.highlight {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 15px;
}

.formatted-custom-box .p-val.highlight-gold {
    color: #dc2626;
    background: #fef2f2;
    padding: 1px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14.5px;
}

.formatted-custom-box .p-val.desc-text {
    text-align: left;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: normal;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-action { padding: 0 18px; text-align: center; }

.consult-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 11px 0;
    background: var(--grad-blue);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover .consult-btn {
    background: var(--grad-gold);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* ========== 关于我们板块 ========== */
.about-section { padding-top: 60px; }

.about-wrap {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-img {
    flex: 0 0 45%;
    position: relative;
}

.img-placeholder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    border-radius: 8px;
    height: 100%;
    background: var(--grad-blue) !important;
}

.about-content { flex: 1; }

.about-content h4 {
    font-size: 26px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.about-features li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item { text-align: center; flex: 1; }

.stat-num, .stat-item .num {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-item p, .stat-item .label {
    font-size: 13px;
    color: #999;
}

.more-btn, .about-btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--grad-gold);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
}

.more-btn:hover, .about-btn:hover {
    background: var(--grad-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

/* ========== 成功案例 / 案例列表 ========== */
.services-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.case-filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.filter-tab {
    display: inline-block;
    padding: 10px 24px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.filter-tab:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    background: #f0f4ff;
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--primary-blue) !important;
    color: #ffffff !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
}

.case-grid, .case-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.case-card-item, .case-card-box {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.case-card-item:hover, .case-card-box:hover {
    transform: translateY(-6px);
    border-color: var(--primary-blue);
    box-shadow: 0 16px 32px rgba(26, 35, 126, 0.12);
}

.case-img-wrap, .case-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
    display: block;
}

.case-img-wrap img, .case-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card-item:hover .case-img-wrap img, 
.case-card-box:hover .case-img-box img { transform: scale(1.08); }

.case-cat-tag, .case-tag-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--grad-gold);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.case-info-wrap, .case-info-box {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-info-wrap h4, .case-info-box h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
}

.case-info-wrap h4 a, .case-info-box h4 a {
    color: var(--text-dark);
    text-decoration: none !important;
    transition: color 0.2s ease;
    display: block;
}

.case-card-item:hover .case-info-wrap h4 a, 
.case-card-box:hover .case-info-box h4 a { color: var(--primary-blue); }

.case-desc-text, .case-desc-info { margin: 0 0 18px 0; }

.case-desc-text a, .case-desc-info a {
    font-size: 13.5px;
    color: var(--text-muted) !important;
    line-height: 1.6;
    text-decoration: none !important;
    display: block;
    transition: color 0.2s ease;
}

.case-foot-action, .case-action-foot {
    border-top: 1px dashed #f1f5f9;
    padding-top: 14px;
    text-align: right;
}

.case-detail-btn, .case-read-more {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.case-card-item:hover .case-detail-btn, 
.case-card-box:hover .case-read-more {
    color: var(--primary-gold);
    padding-right: 4px;
}

/* 案例详情 */
.case-detail { margin: 0 auto; }

.case-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.case-detail-header h1 {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
}

.case-detail-meta {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    color: #999;
}

.case-detail-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.detail-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block;
}

/* ========== 服务流程 ========== */
.process-section {
    background: #ffffff;
    padding: 60px 0;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 35px;
    position: relative;
}

.process-step-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 16px 20px 16px;
    text-align: center;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 12px 28px rgba(26, 35, 126, 0.12);
}

.process-step-card.highlight {
    border-color: #e2cb83;
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
}

.process-step-card.highlight:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.18);
}

.step-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-blue);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.25);
    transition: transform 0.3s ease;
}

.step-badge.gold {
    background: var(--grad-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.process-step-card:hover .step-badge { transform: scale(1.1); }

.process-step-card h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
}

.process-step-card p {
    margin: 0;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ========== 新闻动态 / 详情与列表 ========== */
.news-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.news-wrap {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.news-main-card {
    flex: 1.1;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.news-main-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 16px 32px rgba(26, 35, 126, 0.12);
}

.news-main-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.news-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-main-card:hover .news-main-img img { transform: scale(1.06); }

.news-main-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-main-title {
    margin: 0 0 10px 0;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
}

.news-main-title a {
    color: var(--text-dark);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.news-main-card:hover .news-main-title a { color: var(--primary-blue); }

.news-main-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.news-main-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #f1f5f9;
    padding-top: 12px;
}

.news-date { font-size: 12px; color: #94a3b8; }

.read-detail-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.read-detail-btn:hover { color: var(--primary-gold); }

.news-list-card {
    flex: 1;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-list-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-blue);
    margin-bottom: 12px;
}

.news-list-head h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.more-news-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.more-news-link:hover { color: var(--primary-blue); }

.news-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.news-item-list li { border-bottom: 1px dashed #f1f5f9; }
.news-item-list li:last-child { border-bottom: none; }

.news-item-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 8px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    border-radius: 6px;
}

.news-item-list li a:hover {
    background: #f0f0f0;
    padding-left: 14px;
}

.item-title {
    font-size: 14.5px;
    color: #334155;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
    position: relative;
}

.news-item-list li a:hover .item-title {
    color: var(--primary-blue);
    font-weight: 700;
}

.item-date {
    font-size: 12px;
    color: #94a3b8;
    background: #f8fafc;
    padding: 2px 8px;
    border-radius: 4px;
}

/* 新闻列表页卡片 */
.news-list-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card-item {
    display: flex;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 28px rgba(26, 35, 126, 0.12);
}

.news-card-img {
    width: 220px;
    min-width: 220px;
    height: 155px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-item:hover .news-card-img img { transform: scale(1.08); }

.news-card-info {
    padding: 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.news-title a {
    color: var(--text-dark);
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.news-card-item:hover .news-title a { color: var(--primary-blue); }

.news-meta-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
}

.meta-item {
    font-size: 12px;
    color: var(--text-muted);
    background: #f8fafc;
    padding: 2px 8px;
    border-radius: 4px;
}

.news-summary {
    margin: 0 0 12px 0;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-foot { text-align: right; }

.read-more-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.read-more-btn:hover { color: var(--primary-gold); padding-right: 4px; }

/* 文章详情页 */
.article-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.article-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta { font-size: 13px; color: #999; }
.article-meta span { margin: 0 12px; }

.article-tag {
    display: inline-block;
    padding: 3px 10px;
    background: #e9e9e9;
    color: var(--primary-blue);
    border-radius: 4px;
}

.article-content {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}

.article-content p { margin-bottom: 18px; text-align: justify; }

.article-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.article-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-nav a { font-size: 14px; color: #555; transition: color 0.3s; }
.article-nav a:hover { color: var(--primary-blue); }

.related-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.related-news h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.related-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-item a { display: block; }
.related-item p {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.adminbuy_cn img { max-width:100% !important; height:auto !important; display:inline-block; }

/* ========== 联系我们页 ========== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.contact-icon { font-size: 48px; margin-bottom: 15px; }
.contact-card h4 { font-size: 18px; color: #333; margin-bottom: 10px; }

.contact-value {
    font-size: 19px;
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 8px;
    word-break: break-all;
}

.contact-desc { font-size: 13px; color: #999; }

.contact-form-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.contact-form {
    padding-right: 30px;
    border-right: 1px solid #eee;
}

.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-item { flex: 1; }
.form-item label { display: block; font-size: 14px; color: #333; margin-bottom: 8px; }
.required { color: #ff4444; margin-left: 3px; }

.form-input {
    width: 100%;
    height: 42px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fff;
}

.form-input:focus { outline: none; border-color: var(--primary-blue); }

.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    resize: vertical;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-textarea:focus { outline: none; border-color: var(--primary-blue); }

.form-submit { margin-top: 25px; }

.submit-btn {
    padding: 12px 50px;
    background: var(--grad-gold);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--grad-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.contact-info-side h4 { font-size: 18px; color: #333; margin-bottom: 20px; }
.contact-info-side ul { margin-bottom: 25px; }
.contact-info-side li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.contact-info-side li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.qr-box { text-align: center; padding-top: 20px; border-top: 1px dashed #eee; }
.qr-box p { font-size: 13px; color: #666; margin: 5px 0; }

/* ========== 首页预约咨询 (CTA) ========== */
.cta-section {
    background: var(--grad-gold);
    padding: 50px 0;
    color: #fff;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-text h3 { font-size: 28px; margin-bottom: 8px; }
.cta-text p { font-size: 14px; opacity: 0.9; }

.cta-buttons { display: flex; gap: 20px; }

.cta-btn {
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.3s;
}

.cta-btn.light {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}

.cta-btn.light:hover { background: #fff; color: var(--primary-blue); }

.cta-btn.dark {
    background: #fff;
    color: var(--primary-blue);
    font-weight: bold;
}

.cta-btn.dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ========== 深度合作银行及金融机构 ========== */
.partner-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.bank-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #334155;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    user-select: none;
}

.bank-item:hover {
    transform: translateY(-4px);
    background: var(--grad-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.bank-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.bank-item:hover::before { left: 100%; }

/* ========== 底部高级金融风格 ========== */
.footer {
    background: #1e293b;
    color: #94a3b8;
    padding-top: 60px;
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B28C19);
    border-radius: 2px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.footer-contact p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.footer-contact a {
    color: #ffffff;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 13.5px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

.footer-qr {
    text-align: center;
}

.qr-code {
    display: inline-block;
    padding: 8px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.qr-code img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.footer-qr p {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
}

.footer-bottom {
    background: #0f172a;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom a {
    color: #64748b;
    margin: 0 5px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #D4AF37;
}

/* 返回顶部按钮 */
.back-top {
    position: fixed;
    right: 30px;
    bottom: 80px;
    width: 45px;
    height: 45px;
    background: var(--grad-blue);
    color: #fff;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-size: 18px;
    z-index: 999;
}

.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--grad-gold); transform: translateY(-3px); }

/* 分页组件 */
.pagebar { padding:20px; overflow:hidden; clear:both; }
.pagebar .pagination, .news-pagination-wrap .pagination, .case-pagination-wrap .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.pagination a {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.pagination a.page-num-current, .pagination a.active {
    color: #fff !important;
    background: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.pagination .curr-info {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 6px;
}

.empty-news-tip, .empty-tip-box {
    text-align: center;
    padding: 50px 0;
    color: #94a3b8;
    font-size: 15px;
    background: #fff;
    border-radius: 12px;
}

/* =========================================================
   ========== 全局移动端自适应（针对手机屏重写） ==========
   ========================================================= */

@media (max-width: 1200px) {
    .container { width: 95%; max-width: 1200px; }
}

@media (max-width: 1100px) {
    .product-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .process-steps-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* 📱 平板与手机端响应式适配 */
@media (max-width: 992px) {
    .container { width: 100% !important; padding: 0 16px !important; }

    /* 🎯 头部压缩：移动端 Header 高度为 50px，Logo 更小巧 */
    .header .container { height: 50px !important; position: relative; }
    .logo-icon img { height: 32px !important; }
    .mobile-menu-btn { display: flex !important; }
    .search-box { display: none !important; }

    /* 移动端下拉导航 */
    .nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        flex-direction: column !important;
        gap: 0 !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
        z-index: 9999 !important;
        max-height: 75vh !important;
        overflow-y: auto !important;
        border-top: 2px solid var(--primary-blue) !important;
    }

    .nav.active { display: flex !important; }

    .nav > li, .nav > ul > li { width: 100% !important; border-bottom: 1px solid #f1f5f9 !important; }

    .nav > li > a, .nav > ul > li > a {
        height: 44px !important;
        line-height: 44px !important;
        padding: 0 20px !important;
        font-size: 14.5px !important;
        color: #334155 !important;
        font-weight: 600 !important;
    }

    .nav > li > a::after, .nav > ul > li.active > a::after { display: none !important; }

    /* 🎯 关键排版调整：利用 order 重新分配移动端垂直顺序：
       1. 侧边栏-分类导航 (order: 1)
       2. 侧边栏-联系我们 (order: 2) -> 正好位于【导航下方、正文上方】
       3. 正文主内容 (order: 3)
    */
    .page-layout { 
        display: flex !important;
        flex-direction: column !important; 
        gap: 20px !important; 
    }

    .sidebar { 
        width: 100% !important; 
        max-width: 100% !important; 
        min-width: 100% !important; 
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        contents: display !important; /* 展平容器以供 order 生效 */
    }

    .sidebar .side-nav-box { order: 1 !important; }
    .sidebar .side-contact-box { order: 2 !important; }
    .main-content { order: 3 !important; }

    /* 隐藏热门新闻 */
    .sidebar .side-hot-news { display: none !important; }

    /* 底部横幅组件在手机切单列 */
    .page-cta-box {
        flex-direction: column !important;
        text-align: center !important;
        padding: 24px 20px !important;
        gap: 20px !important;
    }

    .page-cta-btns {
        flex-direction: column !important;
        width: 100% !important;
    }

    .cta-tel-btn, .cta-online-btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* 关于我们板块手机切竖排 */
    .about-wrap {
        flex-direction: column !important;
        gap: 25px !important;
    }

    .about-img {
        width: 100% !important;
        flex: none !important;
        height: 220px !important;
    }

    .about-features {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .about-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    /* 案例与新闻列表切 2列 */
    .case-grid, .case-grid-list { grid-template-columns: repeat(2, 1fr) !important; }
    .news-wrap { flex-direction: column !important; }

    /* 留言与联系卡片 */
    .contact-cards { grid-template-columns: repeat(2, 1fr) !important; }
    .contact-form-wrap { grid-template-columns: 1fr !important; padding: 20px !important; }
    .contact-form { padding-right: 0 !important; border-right: none !important; padding-bottom: 25px !important; border-bottom: 1px solid #eee !important; }

    /* 底部布局切 2列 */
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px !important; }
    .cta-content { flex-direction: column !important; gap: 20px !important; text-align: center !important; }
}

@media (max-width: 640px) {
    /* 智能手机小屏兼容 */
    .product-cards-grid, .case-grid, .case-grid-list { grid-template-columns: 1fr !important; }
    .product-card { min-height: auto !important; }
    
    .process-steps-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .process-step-card { padding: 16px 10px !important; }
    .step-badge { width: 40px !important; height: 40px !important; font-size: 15px !important; }
    .process-step-card h4 { font-size: 14.5px !important; }
    .process-step-card p { font-size: 11.5px !important; }

    .contact-cards { grid-template-columns: 1fr !important; }
    .news-card-item { flex-direction: column !important; }
    .news-card-img { width: 100% !important; height: 180px !important; }
    
    .form-row { flex-direction: column !important; gap: 15px !important; }
    .bank-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .footer-grid { grid-template-columns: 1fr !important; }
}