/* ========== 金融服务页面样式 ========== */

/* 高端奢华配色方案 */
body[data-page="finance"] {
    --primary-color: #D4AF37;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --banner-gradient: linear-gradient(135deg, #1A1A1A 0%, #2D3748 50%, #1A365D 100%);
    --banner-glow-color: rgba(212, 175, 55, 0.3);
    --banner-btn-primary-bg: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --banner-btn-primary-shadow: rgba(212, 175, 55, 0.4);
    --banner-btn-primary-shadow-hover: rgba(212, 175, 55, 0.6);
    --primary-gold: #D4AF37;
    --primary-dark: #1A1A1A;
    --primary-charcoal: #333333;
    --accent-teal: #0D4F4F;
    --accent-navy: #1A365D;
    --rose-gold: #B76E79;
    --light-gold: #F5E6C8;
}

/* 页面特定Banner背景 */
.finance-banner {
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(45, 55, 72, 0.88) 50%, rgba(26, 54, 93, 0.85) 100%),
        url('/public/images/banner-finance.jpeg') center/cover no-repeat;
}

/* 数据统计 */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1A1A1A 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    border-radius: 12px;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.stat-card .value {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 8px;
    font-family: 'Georgia', serif;
}

.stat-card .label {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

/* 金融产品 */
.products-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::before {
    display: none;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.section-title p {
    font-size: 15px;
    color: #888;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    border-radius: 16px;
    border: 1px solid #333;
    padding: 32px 24px;
    transition: all 0.3s;
    overflow:hidden;
}

.product-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #B76E79);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.product-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D4AF37 0%, #b85f0b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid #444;
}

.product-name h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.product-name .bank {
    font-size: 13px;
    color: #D4AF37;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.product-rates {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.rate-item {
    padding: 12px;
    text-align: center;
    background: #1A1A1A;
}

.rate-item .value {
    font-size: 18px;
    font-weight: 600;
    color: #D4AF37;
}

.rate-item .label {
    font-size: 11px;
    color: #666;
}

.product-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-apply {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-apply:hover {
    background: linear-gradient(135deg, #E5C349 0%, #D4AF37 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* 合作机构 */
.partners-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1d1c1b 0%, #111 100%);
}

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

.partner-card {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #fff;
    transition: all 0.3s;
    
}

.partner-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgb(212 175 55 / 60%);
    transform: translateY(-4px);
}

.partner-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo .logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.partner-card h4 {
    font-size: 14px;
    font-weight: 500;
    color: #888;
}

/* 融资服务流程 */
.process-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 12px;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.step-desc {
    font-size: 12px;
    color: #666;
}

.step-arrow {
    font-size: 24px;
    color: #D4AF37;
}

/* 成功案例 */
.cases-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1f1e1b 0%, #111 100%);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #252525 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #333;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #333;
}

.case-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D4AF37 0%, #b85f0b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid #444;
}

.case-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.case-tag {
    font-size: 12px;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.case-content {
    margin-bottom: 16px;
}

.case-content > div {
    display: flex;
    margin-bottom: 8px;
    font-size: 13px;
}

.case-content .label {
    color: #888;
    min-width: 72px;
    flex-shrink: 0;
}

.case-content .value {
    color: #ccc;
    flex: 1;
}

.case-content .value.highlight {
    color: #D4AF37;
    font-weight: 600;
    font-size: 15px;
}

.case-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px dashed #333;
    font-size: 12px;
    color: #666;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.faq-list {
    max-width: 1280px;
    margin: 0 auto;
}

.faq-item {
    background: #1A1A1A;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #333;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question span:nth-child(2) {
    flex: 1;
    font-size: 15px;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background: #2D2D2D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #1A1A1A;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #888;
    line-height: 1.8;
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding:20px 24px 20px 36px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.8;
}

/* 响应式 */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-direction: column;gap: 0;}
    .process-step{flex-direction: row;}
    .step-cont{display: flex ; flex-direction: column; align-items: flex-start; margin-left: 10px;}
    .step-arrow { transform: rotate(90deg); }
    .cases-grid { grid-template-columns: 1fr; }
    .faq-answer p { padding-left: 24px; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .product-card { padding: 16px; }
    .partner-card { padding: 16px; }
    .faq-item { padding: 12px; }
}

@media (max-width: 480px) {
    .hero-content { padding: 60px 0 40px; }
    .hero-title { font-size: 22px; }
    .hero-desc { font-size: 13px; }
    .stat-item .value { font-size: 28px; }
    .section-title { font-size: 20px; }
    .product-card { padding: 12px; }
    .product-card h3 { font-size: 14px; }
    .partner-card { padding: 12px; }
    .partner-logo { width: 48px; height: 48px; }
    .process-step { padding: 12px 0; }
    .step-number { width: 32px; height: 32px; font-size: 14px; }
    .cases-grid { gap: 12px; }
    .faq-item { padding: 10px; }
    .faq-question { font-size: 14px; }
}

/* ==================== 金融产品详情页样式（标准亮色主题） ==================== */
.detail-main {
    background: #fff;
    padding: 0 0 48px;
    min-height: calc(100vh - 400px);
    margin-top: 70px;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #2563eb;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb-current {
    color: #333;
}

.article-header-sticky {
    position: sticky;
    top: 70px;
    background: #fff;
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
}

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

.article-header-left {
    flex: 1;
    min-width: 0;
}

.case-meta-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.case-type-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.case-date-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
}

.article-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 10px;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}

.meta-item svg {
    color: #bbb;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.article-actions {
    flex-shrink: 0;
}

.btn-apply-main {
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-apply-main:hover {
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.divider-line {
    height: 1px;
    background: #f0f0f0;
    margin: 0;
}

.finance-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fef9e8, #fdf3d8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.info-content {
    text-align: left;
}

.info-value {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.info-label {
    font-size: 14px;
    color: #888;
}

.article-content {
    padding: 24px 0;
}

.content-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: 28px;
}

.title-bar {
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 2px;
}

.content-section-title span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.content-body {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    background: #fafafa;
    border-radius: 10px;
    padding: 20px;
}

.content-body p {
    margin: 0 0 12px;
}

.content-body ul,
.content-body ol {
    margin: 0;
    padding-left: 20px;
}

.content-body li {
    margin-bottom: 8px;
    color: #555;
}

.content-body li::marker {
    color: #D4AF37;
}

.content-body strong {
    color: #1a1a1a;
    font-weight: 600;
}

.finance-apply-section {
    text-align: center;
    padding: 40px 0;
    border-top: 1px dashed #eee;
    margin-top: 40px;
}

.finance-apply-section .btn-apply-main {
    padding: 14px 40px;
    font-size: 15px;
}

.apply-hint {
    margin-top: 14px;
    font-size: 13px;
    color: #999;
}

.bank-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 0;
}

.bank-logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.bank-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bank-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.bank-details p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f5f5f5;
    border-radius: 10px;
    text-align: center;
}

.video-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.6;
}

.video-placeholder p {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px;
}

.video-placeholder span {
    font-size: 12px;
    color: #999;
}

.case-type-tag.secondary {
    background: #f0f0f0;
    color: #666;
}

.highlight-text {
    color: #D4AF37;
    font-weight: 600;
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.result-stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fef9e8, #fdf3d8);
    border-radius: 12px;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 4px;
}

.result-label {
    font-size: 13px;
    color: #666;
}

.testimonial {
    position: relative;
    padding: 28px 24px 24px 24px;
    background: linear-gradient(135deg, #fef9e8, #fff);
    border: 1px solid #f0e4c4;
    border-radius: 16px;
}
.testimonial-cont{
    position:relative;
}
.testimonial-cont::before {
    content: '“';
    position: absolute;
    top: -12px;
    left: -12px;
    font-size: 48px;
    color: #D4AF37;
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-cont::after {
    content: '”';
    position: absolute;
    bottom: -30px;
    right: 10px;
    font-size: 48px;
    color: #D4AF37;
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    font-size: 15px;
    color: #444;
    line-height: 1.9;
    font-style: italic;
    padding-left: 8px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    margin-left: auto;
    width: fit-content;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.author-title {
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

.case-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.partner-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .article-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-title {
        font-size: 18px;
    }
    
    .finance-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-body {
        padding: 16px;
    }

    .info-card{flex-direction: column;}
    .result-stats{grid-template-columns: repeat(1, 1fr);}
}

