/**
 * 期货招商网 - 全局样式表
 * 主题颜色：浅橘黄色 #FF8C42
 * 辅助颜色：#FFA726, #FFB74D, #FFCC80
 * 深色：#E65100
 */

/* ==================== 基础样式重置 ==================== */
:root {
    --futures-primary: #FF8C42;
    --futures-primary-dark: #E65100;
    --futures-primary-light: #FFB74D;
    --futures-primary-lighter: #FFCC80;
    --futures-secondary: #2C3E50;
    --futures-text: #333333;
    --futures-text-light: #666666;
    --futures-text-muted: #999999;
    --futures-bg: #FFFFFF;
    --futures-bg-light: #F8F9FA;
    --futures-bg-gray: #F5F5F5;
    --futures-border: #E0E0E0;
    --futures-shadow: rgba(0, 0, 0, 0.1);
    --futures-gradient: linear-gradient(135deg, #FF8C42 0%, #FFA726 100%);
    --futures-transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--futures-text);
    background-color: var(--futures-bg);
    overflow-x: hidden;
}

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

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

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

/* ==================== 通用按钮样式 ==================== */
.futures-btn-primary {
    background: var(--futures-gradient);
    border: none;
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--futures-transition);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.futures-btn-primary:hover {
    background: linear-gradient(135deg, #E65100 0%, #FF8C42 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.futures-btn-outline {
    background: transparent;
    border: 2px solid var(--futures-primary);
    color: var(--futures-primary);
    padding: 8px 23px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--futures-transition);
}

.futures-btn-outline:hover {
    background: var(--futures-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.futures-btn-light {
    background: #FFFFFF;
    border: none;
    color: var(--futures-primary);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--futures-transition);
}

.futures-btn-light:hover {
    background: var(--futures-primary-lighter);
    color: var(--futures-primary-dark);
    transform: translateY(-2px);
}

.futures-btn-outline-light {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    padding: 8px 23px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--futures-transition);
}

.futures-btn-outline-light:hover {
    background: #FFFFFF;
    color: var(--futures-primary);
}

/* ==================== 通用区块标题样式 ==================== */
.futures-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.futures-section-tag {
    display: inline-block;
    color: var(--futures-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.futures-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--futures-secondary);
    margin-bottom: 15px;
}

.futures-section-subtitle {
    font-size: 16px;
    color: var(--futures-text-light);
    margin-bottom: 20px;
}

.futures-section-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.futures-section-line span {
    width: 50px;
    height: 2px;
    background: var(--futures-primary);
}

.futures-section-line i {
    color: var(--futures-primary);
    font-size: 12px;
}

.futures-section-header-left {
    margin-bottom: 30px;
}

.futures-section-header-left .futures-section-tag {
    margin-bottom: 5px;
}

.futures-section-header-left .futures-section-title {
    margin-bottom: 10px;
}

.futures-section-tag-small {
    display: inline-block;
    color: var(--futures-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ==================== 顶部信息栏 ==================== */
.futures-topbar {
    background: var(--futures-secondary);
    padding: 8px 0;
    font-size: 12px;
    color: #FFFFFF;
}

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

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

.futures-topbar a {
    color: var(--futures-primary-light);
}

.futures-topbar a:hover {
    color: #FFFFFF;
}

.futures-topbar i {
    color: var(--futures-primary);
    margin-right: 5px;
}

.futures-divider {
    color: rgba(255, 255, 255, 0.3);
}

.futures-welcome-text strong {
    color: var(--futures-primary);
}

@media (max-width: 768px) {
    .futures-topbar-left,
    .futures-topbar-right {
        justify-content: center;
        font-size: 11px;
    }
    
    .futures-divider {
        display: none;
    }
}

/* ==================== 主导航栏 ==================== */
.futures-header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.futures-navbar {
    padding: 10px 0;
}

.futures-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.futures-logo-img {
    height: 45px;
    width: auto;
}

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

.futures-logo-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--futures-secondary);
    line-height: 1.2;
}

.futures-logo-sub {
    font-size: 12px;
    color: var(--futures-text-muted);
}

.futures-nav {
    gap: 5px;
}

.futures-nav .nav-link {
    color: var(--futures-text);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 20px;
    transition: var(--futures-transition);
}

.futures-nav .nav-link:hover,
.futures-nav .nav-link.active {
    color: var(--futures-primary);
    background: rgba(255, 140, 66, 0.1);
}

.futures-nav .nav-link i {
    margin-right: 5px;
}

.futures-quick-contact {
    margin-left: 15px;
}

.futures-toggler {
    border: none;
    padding: 5px 10px;
}

.futures-toggler:focus {
    box-shadow: none;
}

/* 移动端底部导航 */
.futures-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    z-index: 1000;
}

.futures-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--futures-text-light);
    font-size: 11px;
    gap: 3px;
}

.futures-mobile-nav-item i {
    font-size: 18px;
}

.futures-mobile-nav-item.active,
.futures-mobile-nav-item:hover {
    color: var(--futures-primary);
}

@media (max-width: 991px) {
    .futures-quick-contact {
        margin: 15px 0 0 0;
    }
    
    .futures-nav .nav-link {
        padding: 12px 15px;
    }
}

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

.futures-hero-slide {
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.futures-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.futures-hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    padding: 30px 0;
}

.futures-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.futures-hero-title .futures-highlight {
    color: var(--futures-primary);
}

.futures-hero-subtitle {
    font-size: 20px;
    color: var(--futures-primary-light);
    margin-bottom: 15px;
}

.futures-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
}

.futures-hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.futures-hero-btns .btn {
    padding: 12px 30px;
}

.futures-hero-features {
    background: #FFFFFF;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.futures-hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.futures-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    flex-shrink: 0;
}

.futures-feature-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 3px;
}

.futures-feature-text p {
    font-size: 12px;
    color: var(--futures-text-muted);
    margin: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--futures-primary);
}

@media (max-width: 768px) {
    .futures-hero-slide {
        height: 450px;
    }
    
    .futures-hero-title {
        font-size: 28px;
    }
    
    .futures-hero-subtitle {
        font-size: 16px;
    }
    
    .futures-hero-desc {
        font-size: 13px;
    }
    
    .futures-hero-features {
        margin-top: -30px;
        padding: 15px;
    }
    
    .futures-hero-feature-item {
        margin-bottom: 15px;
    }
}

/* ==================== 核心业务服务 ==================== */
.futures-business-section {
    padding: 80px 0;
    background: var(--futures-bg-light);
}

.futures-business-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--futures-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--futures-border);
}

.futures-business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--futures-primary);
}

.futures-business-card-highlight {
    border: 2px solid var(--futures-primary);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.futures-business-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--futures-primary);
    color: #FFFFFF;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.futures-business-icon {
    width: 80px;
    height: 80px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 35px;
    transition: var(--futures-transition);
}

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

.futures-business-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 15px;
}

.futures-business-content p {
    font-size: 14px;
    color: var(--futures-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.futures-business-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.futures-business-list li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--futures-text);
}

.futures-business-list li i {
    color: var(--futures-primary);
    margin-right: 8px;
}

.futures-business-link {
    color: var(--futures-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.futures-business-link:hover {
    color: var(--futures-primary-dark);
    gap: 10px;
}

@media (max-width: 768px) {
    .futures-business-section {
        padding: 50px 0;
    }
    
    .futures-business-card {
        margin-bottom: 20px;
    }
}

/* ==================== 数据统计 ==================== */
.futures-stats-section {
    padding: 60px 0;
}

.futures-stats-bg {
    background: var(--futures-gradient);
    padding: 60px 0;
}

.futures-stats-item {
    text-align: center;
    color: #FFFFFF;
}

.futures-stats-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
}

.futures-stats-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.futures-stats-label {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .futures-stats-number {
        font-size: 32px;
    }
    
    .futures-stats-item {
        margin-bottom: 30px;
    }
}

/* ==================== 服务优势 ==================== */
.futures-advantage-section {
    padding: 80px 0;
}

.futures-advantage-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.futures-advantage-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.futures-advantage-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--futures-gradient);
    padding: 20px 30px;
    border-radius: 10px;
    color: #FFFFFF;
    text-align: center;
}

.futures-exp-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

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

.futures-advantage-list {
    padding-left: 20px;
}

.futures-advantage-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.futures-advantage-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--futures-primary);
    font-size: 22px;
    flex-shrink: 0;
}

.futures-advantage-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 8px;
}

.futures-advantage-content p {
    font-size: 14px;
    color: var(--futures-text-light);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .futures-advantage-section {
        padding: 50px 0;
    }
    
    .futures-advantage-image {
        margin-bottom: 30px;
    }
    
    .futures-advantage-image img {
        height: 300px;
    }
    
    .futures-advantage-list {
        padding-left: 0;
    }
}

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

.futures-news-featured {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.futures-news-image {
    position: relative;
    height: 350px;
}

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

.futures-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.futures-news-content {
    padding: 25px;
}

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

.futures-news-category {
    background: var(--futures-gradient);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.futures-news-date {
    color: var(--futures-text-muted);
    font-size: 13px;
}

.futures-news-date i {
    margin-right: 5px;
}

.futures-news-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.futures-news-title a {
    color: var(--futures-secondary);
}

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

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

.futures-news-link {
    color: var(--futures-primary);
    font-weight: 500;
}

.futures-news-link:hover {
    color: var(--futures-primary-dark);
}

.futures-news-link i {
    margin-left: 5px;
}

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

.futures-news-item {
    display: flex;
    gap: 15px;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--futures-transition);
}

.futures-news-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.futures-news-thumb {
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.futures-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--futures-transition);
}

.futures-news-item:hover .futures-news-thumb img {
    transform: scale(1.1);
}

.futures-news-info {
    flex: 1;
}

.futures-news-info .futures-news-title {
    font-size: 15px;
    margin-bottom: 8px;
}

.futures-news-info .futures-news-desc {
    font-size: 13px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.futures-news-views {
    font-size: 12px;
    color: var(--futures-text-muted);
}

.futures-news-views i {
    margin-right: 5px;
}

.futures-news-more {
    font-size: 12px;
    color: var(--futures-primary);
}

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

@media (max-width: 768px) {
    .futures-news-section {
        padding: 50px 0;
    }
    
    .futures-news-featured {
        margin-bottom: 30px;
    }
    
    .futures-news-image {
        height: 200px;
    }
    
    .futures-news-thumb {
        width: 100px;
        height: 75px;
    }
}

/* ==================== 加盟流程 ==================== */
.futures-process-section {
    padding: 80px 0;
}

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

.futures-process-number {
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 140, 66, 0.1);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.futures-process-icon {
    width: 80px;
    height: 80px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 32px;
}

.futures-process-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 10px;
}

.futures-process-item p {
    font-size: 14px;
    color: var(--futures-text-light);
    margin: 0;
}

.futures-process-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    color: var(--futures-primary);
    font-size: 24px;
}

@media (max-width: 991px) {
    .futures-process-arrow {
        display: none;
    }
    
    .futures-process-item {
        margin-bottom: 30px;
    }
}

/* ==================== 城市站点 ==================== */
.futures-city-section {
    padding: 80px 0;
    background: var(--futures-bg-light);
}

.futures-city-container {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.futures-city-label {
    font-weight: 600;
    color: var(--futures-secondary);
    flex-shrink: 0;
}

.futures-city-hot-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.futures-city-hot-item {
    padding: 6px 15px;
    background: var(--futures-bg-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--futures-text);
    transition: var(--futures-transition);
}

.futures-city-hot-item:hover,
.futures-city-hot-item.active {
    background: var(--futures-primary);
    color: #FFFFFF;
}

.futures-city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.futures-city-group-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--futures-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--futures-primary-lighter);
}

.futures-city-group-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.futures-city-link {
    font-size: 13px;
    color: var(--futures-text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--futures-transition);
}

.futures-city-link:hover {
    color: var(--futures-primary);
    padding-left: 5px;
}

.futures-city-link.active {
    color: var(--futures-primary);
    font-weight: 500;
}

.futures-city-link i {
    font-size: 10px;
}

@media (max-width: 1200px) {
    .futures-city-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .futures-city-section {
        padding: 50px 0;
    }
    
    .futures-city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .futures-city-container {
        padding: 20px;
    }
}

/* ==================== 常见问题 ==================== */
.futures-faq-section {
    padding: 80px 0;
}

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

.futures-faq-item {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--futures-border);
}

.futures-faq-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #FFFFFF;
    transition: var(--futures-transition);
}

.futures-faq-header:hover {
    background: var(--futures-bg-light);
}

.futures-faq-header h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.futures-faq-header h5 i {
    color: var(--futures-primary);
}

.futures-faq-icon {
    color: var(--futures-primary);
    transition: var(--futures-transition);
}

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

.futures-faq-body {
    padding: 0 20px 20px;
}

.futures-faq-body p {
    font-size: 14px;
    color: var(--futures-text-light);
    line-height: 1.8;
    margin: 0;
}

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

/* ==================== CTA区域 ==================== */
.futures-cta-section {
    padding: 0;
}

.futures-cta-bg {
    background: var(--futures-gradient);
    padding: 60px 0;
    color: #FFFFFF;
}

.futures-cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.futures-cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.futures-cta-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.futures-cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.futures-cta-features span i {
    color: var(--futures-primary-lighter);
}

.futures-cta-btns {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .futures-cta-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .futures-cta-features {
        justify-content: center;
    }
    
    .futures-cta-btns {
        justify-content: center;
    }
}

/* ==================== 合作伙伴 ==================== */
.futures-partner-section {
    padding: 80px 0;
    background: var(--futures-bg-light);
}

.futures-partner-slider {
    overflow: hidden;
}

.futures-partner-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.futures-partner-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.futures-partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--futures-transition);
}

.futures-partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .futures-partner-section {
        padding: 50px 0;
    }
    
    .futures-partner-item {
        width: 140px;
        height: 80px;
    }
}

/* ==================== 底部悬浮栏 ==================== */
.futures-float-bar {
    background: var(--futures-secondary);
    padding: 20px 0;
    position: sticky;
    bottom: 60px;
    z-index: 999;
}

.futures-float-text {
    color: #FFFFFF;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.futures-float-btns {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .futures-float-bar {
        bottom: 55px;
    }
    
    .futures-float-text {
        text-align: center;
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .futures-float-btns {
        justify-content: center;
    }
}

/* ==================== 页脚 ==================== */
.futures-footer {
    background: var(--futures-secondary);
    color: #FFFFFF;
}

.futures-footer-main {
    padding: 60px 0 40px;
}

.futures-footer-widget {
    margin-bottom: 30px;
}

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

.futures-footer-logo img {
    height: 40px;
}

.futures-footer-logo span {
    font-size: 18px;
    font-weight: 700;
}

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

.futures-footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.futures-footer-contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 140, 66, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--futures-primary);
    flex-shrink: 0;
}

.futures-footer-contact-item span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.futures-footer-contact-item a,
.futures-footer-contact-item p {
    color: #FFFFFF;
    font-size: 14px;
    margin: 0;
}

.futures-footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.futures-footer-links {
    list-style: none;
}

.futures-footer-links li {
    margin-bottom: 10px;
}

.futures-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--futures-transition);
}

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

.futures-footer-links a i {
    font-size: 10px;
    color: var(--futures-primary);
}

.futures-footer-qr {
    text-align: center;
}

.futures-footer-qr img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.futures-footer-qr p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.futures-footer-friend {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.futures-friend-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.futures-friend-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    flex-shrink: 0;
}

.futures-friend-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.futures-friend-list a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.futures-friend-list a:hover {
    color: var(--futures-primary);
}

.futures-footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
}

.futures-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.futures-copyright a {
    color: rgba(255, 255, 255, 0.5);
}

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

.futures-footer-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.futures-footer-nav a {
    color: rgba(255, 255, 255, 0.5);
}

.futures-footer-nav a:hover {
    color: var(--futures-primary);
}

.futures-footer-nav span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .futures-footer-main {
        padding: 40px 0 20px;
    }
    
    .futures-footer-nav {
        justify-content: center;
        margin-top: 15px;
    }
    
    .futures-copyright {
        text-align: center;
    }
}

/* ==================== 返回顶部按钮 ==================== */
.futures-backtop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--futures-transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

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

.futures-backtop:hover {
    transform: translateY(-5px);
}

/* ==================== 右侧悬浮工具栏 ==================== */
.futures-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 997;
}

.futures-sidebar-item {
    width: 45px;
    height: 45px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--futures-transition);
}

.futures-sidebar-item a {
    color: var(--futures-text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.futures-sidebar-item:hover {
    background: var(--futures-primary);
}

.futures-sidebar-item:hover a {
    color: #FFFFFF;
}

.futures-sidebar-wechat {
    position: relative;
}

.futures-sidebar-qr {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: var(--futures-transition);
    width: 150px;
    text-align: center;
}

.futures-sidebar-qr img {
    width: 100%;
    margin-bottom: 10px;
}

.futures-sidebar-qr p {
    font-size: 12px;
    color: var(--futures-text-light);
    margin: 0;
}

.futures-sidebar-wechat:hover .futures-sidebar-qr {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .futures-sidebar {
        display: none;
    }
}


/* ==================== 页面标题区域 ==================== */
.futures-page-header {
    position: relative;
}

.futures-page-header-bg {
    background: linear-gradient(135deg, var(--futures-secondary) 0%, #1a252f 100%);
    padding: 80px 0;
    position: relative;
}

.futures-page-header-bg::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,140,66,0.1)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.futures-page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #FFFFFF;
}

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

.futures-breadcrumb {
    justify-content: center;
    margin-bottom: 15px;
}

.futures-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

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

.futures-breadcrumb .active {
    color: var(--futures-primary);
}

.futures-page-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .futures-page-header-bg {
        padding: 50px 0;
    }
    
    .futures-page-title {
        font-size: 28px;
    }
}

/* ==================== 资讯列表页 ==================== */
.futures-news-page {
    padding: 50px 0;
}

.futures-news-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--futures-border);
    flex-wrap: wrap;
    gap: 15px;
}

.futures-filter-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.futures-filter-label {
    font-weight: 600;
    color: var(--futures-secondary);
}

.futures-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.futures-filter-tabs a {
    padding: 6px 15px;
    background: var(--futures-bg-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--futures-text);
    transition: var(--futures-transition);
}

.futures-filter-tabs a:hover,
.futures-filter-tabs a.active {
    background: var(--futures-primary);
    color: #FFFFFF;
}

.futures-news-total {
    font-size: 14px;
    color: var(--futures-text-light);
}

.futures-news-total strong {
    color: var(--futures-primary);
}

.futures-news-highlight {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.futures-highlight-image {
    position: relative;
    height: 100%;
    min-height: 280px;
}

.futures-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.futures-highlight-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--futures-gradient);
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.futures-highlight-content {
    padding: 30px;
}

.futures-highlight-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.futures-highlight-category {
    background: var(--futures-gradient);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.futures-highlight-date,
.futures-highlight-views {
    color: var(--futures-text-muted);
    font-size: 13px;
}

.futures-highlight-date i,
.futures-highlight-views i {
    margin-right: 5px;
}

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

.futures-highlight-title a {
    color: var(--futures-secondary);
}

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

.futures-highlight-desc {
    color: var(--futures-text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.futures-highlight-keywords {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.futures-keyword-tag {
    padding: 4px 12px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    font-size: 12px;
    color: var(--futures-primary);
}

.futures-news-list-page {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.futures-news-list-item {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--futures-transition);
}

.futures-news-list-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.futures-news-list-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
}

.futures-news-list-image a {
    display: block;
    height: 100%;
}

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

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

.futures-news-list-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--futures-gradient);
    color: #FFFFFF;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
}

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

.futures-news-list-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.futures-news-list-title a {
    color: var(--futures-secondary);
}

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

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

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

.futures-meta-item {
    font-size: 12px;
    color: var(--futures-text-muted);
}

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

.futures-news-list-keywords {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.futures-keyword-tag-small {
    padding: 2px 8px;
    background: var(--futures-bg-light);
    border-radius: 10px;
    font-size: 11px;
    color: var(--futures-text-light);
}

.futures-news-list-more {
    color: var(--futures-primary);
    font-size: 13px;
    font-weight: 500;
}

.futures-news-list-more:hover {
    color: var(--futures-primary-dark);
}

.futures-news-list-more i {
    margin-left: 3px;
}

/* 侧边栏样式 */
.futures-sidebar-widget {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.futures-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--futures-primary-lighter);
    display: flex;
    align-items: center;
    gap: 8px;
}

.futures-sidebar-title i {
    color: var(--futures-primary);
}

.futures-search-box .input-group {
    border-radius: 25px;
    overflow: hidden;
}

.futures-search-box .form-control {
    border: 1px solid var(--futures-border);
    padding: 12px 15px;
    font-size: 14px;
}

.futures-search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--futures-primary);
}

.futures-search-box .btn {
    padding: 10px 20px;
}

.futures-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.futures-tag-item {
    padding: 5px 12px;
    background: var(--futures-bg-light);
    border-radius: 15px;
    font-size: 12px;
    color: var(--futures-text);
    transition: var(--futures-transition);
}

.futures-tag-item:hover {
    background: var(--futures-primary);
    color: #FFFFFF;
}

.futures-random-news {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.futures-random-item {
    display: flex;
    gap: 12px;
}

.futures-random-thumb {
    width: 70px;
    height: 55px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.futures-random-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.futures-random-content {
    flex: 1;
}

.futures-random-content h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

.futures-random-content h5 a {
    color: var(--futures-text);
}

.futures-random-content h5 a:hover {
    color: var(--futures-primary);
}

.futures-random-date {
    font-size: 11px;
    color: var(--futures-text-muted);
}

.futures-random-date i {
    margin-right: 3px;
}

.futures-section-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.futures-section-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: var(--futures-bg-light);
    border-radius: 8px;
    color: var(--futures-text);
    font-size: 14px;
    transition: var(--futures-transition);
}

.futures-section-nav-item:hover {
    background: var(--futures-primary);
    color: #FFFFFF;
}

.futures-section-nav-item i {
    font-size: 12px;
}

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

.futures-contact-phone,
.futures-contact-wechat {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.futures-contact-phone i,
.futures-contact-wechat i {
    width: 30px;
    height: 30px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--futures-primary);
    font-size: 14px;
}

.futures-contact-phone a {
    color: var(--futures-primary);
    font-weight: 600;
}

.futures-ad-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.futures-ad-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.futures-ad-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #FFFFFF;
    text-align: center;
}

.futures-ad-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.futures-ad-content p {
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.futures-ad-box-small img {
    height: 150px;
}

/* 相关资讯推荐 */
.futures-related-news {
    padding: 50px 0;
    background: var(--futures-bg-light);
}

.futures-section-header-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.futures-section-header-small h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--futures-secondary);
}

.futures-view-more {
    font-size: 13px;
    color: var(--futures-primary);
}

.futures-view-more:hover {
    color: var(--futures-primary-dark);
}

.futures-related-item {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--futures-transition);
}

.futures-related-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

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

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

.futures-related-item:hover .futures-related-image img {
    transform: scale(1.05);
}

.futures-related-content {
    padding: 15px;
}

.futures-related-content h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

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

.futures-related-content h4 a:hover {
    color: var(--futures-primary);
}

.futures-related-date {
    font-size: 12px;
    color: var(--futures-text-muted);
}

.futures-related-date i {
    margin-right: 3px;
}

@media (max-width: 768px) {
    .futures-news-page {
        padding: 30px 0;
    }
    
    .futures-highlight-image {
        min-height: 200px;
    }
    
    .futures-highlight-content {
        padding: 20px;
    }
    
    .futures-highlight-title {
        font-size: 18px;
    }
    
    .futures-news-list-image {
        height: 150px;
        margin-bottom: 15px;
    }
}

/* ==================== 文章详情页 ==================== */
.futures-detail-header .futures-page-header-content {
    text-align: left;
}

.futures-detail-header .futures-breadcrumb {
    justify-content: flex-start;
}

.futures-detail-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

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

.futures-detail-meta .futures-meta-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.futures-detail-page {
    padding: 50px 0;
}

.futures-article {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.futures-article-cover {
    margin: -30px -30px 25px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    height: 350px;
}

.futures-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.futures-article-summary {
    background: rgba(255, 140, 66, 0.1);
    border-left: 4px solid var(--futures-primary);
    padding: 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.futures-article-summary i {
    font-size: 24px;
    color: var(--futures-primary);
    flex-shrink: 0;
}

.futures-article-summary p {
    margin: 0;
    color: var(--futures-text-light);
    font-size: 14px;
    line-height: 1.8;
}

.futures-article-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--futures-text);
}

.futures-article-content h2,
.futures-article-content h3,
.futures-article-content h4 {
    color: var(--futures-secondary);
    margin: 30px 0 15px;
    font-weight: 600;
}

.futures-article-content h2 {
    font-size: 24px;
}

.futures-article-content h3 {
    font-size: 20px;
}

.futures-article-content h4 {
    font-size: 18px;
}

.futures-article-content p {
    margin-bottom: 15px;
}

.futures-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.futures-article-content ul,
.futures-article-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.futures-article-content li {
    margin-bottom: 8px;
}

.futures-article-content blockquote {
    background: var(--futures-bg-light);
    border-left: 4px solid var(--futures-primary);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.futures-article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--futures-border);
    flex-wrap: wrap;
}

.futures-tags-label {
    font-weight: 600;
    color: var(--futures-secondary);
    flex-shrink: 0;
}

.futures-tag-link {
    padding: 5px 12px;
    background: var(--futures-bg-light);
    border-radius: 15px;
    font-size: 12px;
    color: var(--futures-text);
}

.futures-tag-link:hover {
    background: var(--futures-primary);
    color: #FFFFFF;
}

.futures-article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.futures-share-label {
    font-weight: 600;
    color: var(--futures-secondary);
}

.futures-share-btns {
    display: flex;
    gap: 8px;
}

.futures-share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    transition: var(--futures-transition);
}

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

.futures-share-btn.weibo {
    background: #E6162D;
}

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

.futures-share-btn.link {
    background: var(--futures-primary);
}

.futures-share-btn:hover {
    transform: translateY(-3px);
    color: #FFFFFF;
}

.futures-article-nav {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--futures-border);
}

.futures-article-prev,
.futures-article-next {
    display: flex;
    flex-direction: column;
}

.futures-article-prev span,
.futures-article-next span {
    font-size: 12px;
    color: var(--futures-text-muted);
    margin-bottom: 5px;
}

.futures-article-prev a,
.futures-article-next a {
    font-size: 14px;
    color: var(--futures-text);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.futures-article-prev a:hover,
.futures-article-next a:hover {
    color: var(--futures-primary);
}

.futures-article-next {
    text-align: right;
}

.futures-related-articles {
    margin-top: 30px;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.futures-related-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.futures-related-title i {
    color: var(--futures-primary);
}

.futures-related-article-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.futures-related-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.futures-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.futures-related-info {
    flex: 1;
}

.futures-related-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.4;
}

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

.futures-related-info h4 a:hover {
    color: var(--futures-primary);
}

.futures-related-info span {
    font-size: 12px;
    color: var(--futures-text-muted);
}

.futures-comments-section {
    margin-top: 30px;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.futures-comments-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.futures-comments-title i {
    color: var(--futures-primary);
}

.futures-comment-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--futures-text);
}

.futures-comment-form .form-label i {
    color: var(--futures-primary);
    margin-right: 5px;
}

.futures-comment-form .form-control {
    border: 1px solid var(--futures-border);
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 10px;
}

.futures-comment-form .form-control:focus {
    box-shadow: none;
    border-color: var(--futures-primary);
}

/* 作者信息框 */
.futures-author-box {
    text-align: center;
}

.futures-author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--futures-primary-lighter);
}

.futures-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.futures-author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 5px;
}

.futures-author-title {
    font-size: 13px;
    color: var(--futures-primary);
    margin-bottom: 10px;
}

.futures-author-desc {
    font-size: 13px;
    color: var(--futures-text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.futures-author-contact {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* 热门文章 */
.futures-hot-news {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.futures-hot-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.futures-hot-rank.top {
    background: var(--futures-primary);
    color: #FFFFFF;
}

.futures-hot-content {
    flex: 1;
}

.futures-hot-content h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 1.4;
}

.futures-hot-content h5 a {
    color: var(--futures-text);
}

.futures-hot-content h5 a:hover {
    color: var(--futures-primary);
}

.futures-hot-views {
    font-size: 11px;
    color: var(--futures-text-muted);
}

.futures-hot-views i {
    margin-right: 3px;
}

/* 最新文章 */
.futures-latest-news {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.futures-latest-item {
    display: flex;
    gap: 10px;
}

.futures-latest-thumb {
    width: 60px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.futures-latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.futures-latest-content {
    flex: 1;
}

.futures-latest-content h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 1.4;
}

.futures-latest-content h5 a {
    color: var(--futures-text);
}

.futures-latest-content h5 a:hover {
    color: var(--futures-primary);
}

.futures-latest-content span {
    font-size: 11px;
    color: var(--futures-text-muted);
}

@media (max-width: 768px) {
    .futures-detail-title {
        font-size: 22px;
    }
    
    .futures-article {
        padding: 20px;
    }
    
    .futures-article-cover {
        margin: -20px -20px 20px;
        height: 200px;
    }
}


/* ==================== 关于我们页面 ==================== */
.futures-about-page {
    padding: 0;
}

.futures-about-intro {
    padding: 80px 0;
}

.futures-about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.futures-about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.futures-about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.futures-exp-box {
    background: var(--futures-gradient);
    padding: 25px 35px;
    border-radius: 15px;
    color: #FFFFFF;
    text-align: center;
}

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

.futures-about-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--futures-secondary);
    margin-bottom: 10px;
}

.futures-about-subtitle {
    font-size: 16px;
    color: var(--futures-primary);
    margin-bottom: 20px;
}

.futures-about-desc {
    margin-bottom: 25px;
}

.futures-about-desc p {
    font-size: 14px;
    color: var(--futures-text-light);
    line-height: 1.9;
    margin-bottom: 15px;
}

.futures-about-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.futures-about-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--futures-secondary);
}

.futures-about-feature-item i {
    color: var(--futures-primary);
    font-size: 18px;
}

/* 核心数据 */
.futures-about-stats {
    padding: 0;
}

.futures-stats-bg-light {
    background: var(--futures-bg-light);
    padding: 60px 0;
}

.futures-about-stat-item {
    text-align: center;
}

.futures-stat-icon {
    width: 70px;
    height: 70px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #FFFFFF;
    font-size: 28px;
}

.futures-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--futures-secondary);
    margin-bottom: 5px;
}

.futures-stat-label {
    font-size: 14px;
    color: var(--futures-text-light);
}

/* 企业文化 */
.futures-about-culture {
    padding: 80px 0;
}

.futures-culture-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--futures-transition);
    height: 100%;
    border: 1px solid var(--futures-border);
}

.futures-culture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--futures-primary);
}

.futures-culture-icon {
    width: 70px;
    height: 70px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 30px;
}

.futures-culture-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 15px;
}

.futures-culture-card p {
    font-size: 14px;
    color: var(--futures-text-light);
    line-height: 1.8;
    margin: 0;
}

/* 主营业务 */
.futures-about-business {
    padding: 80px 0;
    background: var(--futures-bg-light);
}

.futures-business-item {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--futures-transition);
    height: 100%;
}

.futures-business-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.futures-business-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--futures-primary);
    font-size: 32px;
    transition: var(--futures-transition);
}

.futures-business-item:hover .futures-business-icon-large {
    background: var(--futures-primary);
    color: #FFFFFF;
}

.futures-business-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 12px;
}

.futures-business-item p {
    font-size: 14px;
    color: var(--futures-text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.futures-business-item .futures-business-link {
    font-size: 13px;
}

/* 发展历程 */
.futures-about-timeline {
    padding: 80px 0;
}

.futures-timeline {
    position: relative;
    padding-left: 30px;
}

.futures-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--futures-primary-lighter);
}

.futures-timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 30px;
}

.futures-timeline-item:last-child {
    padding-bottom: 0;
}

.futures-timeline-year {
    position: absolute;
    left: -45px;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
}

.futures-timeline-content {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--futures-primary);
}

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

.futures-timeline-content p {
    font-size: 14px;
    color: var(--futures-text-light);
    line-height: 1.7;
    margin: 0;
}

/* 合作伙伴 */
.futures-about-partners {
    padding: 80px 0;
    background: var(--futures-bg-light);
}

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

.futures-partner-logo {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: var(--futures-transition);
    height: 100px;
}

.futures-partner-logo:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.futures-partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--futures-transition);
}

.futures-partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA区域 */
.futures-about-cta {
    padding: 0;
}

.futures-cta-bg-light {
    background: var(--futures-bg-light);
    padding: 60px 0;
}

@media (max-width: 768px) {
    .futures-about-intro {
        padding: 50px 0;
    }
    
    .futures-about-image {
        margin-bottom: 30px;
    }
    
    .futures-about-image img {
        height: 300px;
    }
    
    .futures-about-content {
        padding-left: 0;
    }
    
    .futures-about-title {
        font-size: 24px;
    }
    
    .futures-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .futures-timeline {
        padding-left: 20px;
    }
    
    .futures-timeline-year {
        left: -35px;
        width: 50px;
        height: 50px;
        font-size: 12px;
    }
}

/* ==================== 联系我们页面 ==================== */
.futures-contact-page {
    padding: 0;
}

/* 联系方式卡片 */
.futures-contact-cards {
    padding: 50px 0;
    background: var(--futures-bg-light);
}

.futures-contact-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--futures-transition);
    height: 100%;
    border: 1px solid var(--futures-border);
}

.futures-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--futures-primary);
}

.futures-contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 28px;
}

.futures-contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 8px;
}

.futures-contact-card p {
    font-size: 13px;
    color: var(--futures-text-muted);
    margin-bottom: 12px;
}

.futures-contact-info {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--futures-primary);
    margin-bottom: 5px;
}

.futures-contact-time {
    font-size: 12px;
    color: var(--futures-text-muted);
}

/* 主内容区 */
.futures-contact-main {
    padding: 60px 0;
}

.futures-contact-form-section {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.futures-form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--futures-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.futures-form-label i {
    color: var(--futures-primary);
}

.futures-form-input,
.futures-form-textarea {
    border: 1px solid var(--futures-border);
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    transition: var(--futures-transition);
}

.futures-form-input:focus,
.futures-form-textarea:focus {
    box-shadow: none;
    border-color: var(--futures-primary);
}

.futures-form-checks {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.futures-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--futures-text);
}

.futures-check-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--futures-primary);
}

.futures-form-submit {
    margin-top: 25px;
}

.futures-form-submit .btn {
    padding: 12px 40px;
}

.futures-form-tips {
    margin-top: 15px;
    font-size: 13px;
    color: var(--futures-text-muted);
}

.futures-form-tips i {
    color: var(--futures-primary);
    margin-right: 5px;
}

/* 联系信息区 */
.futures-contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.futures-wechat-qr {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.futures-wechat-qr h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.futures-wechat-qr h4 i {
    color: #07C160;
}

.futures-qr-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
}

.futures-qr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.futures-wechat-qr p {
    font-size: 14px;
    color: var(--futures-text);
    margin-bottom: 5px;
}

.futures-wechat-qr span {
    font-size: 12px;
    color: var(--futures-text-muted);
}

.futures-quick-contact-info {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.futures-quick-contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.futures-quick-contact-info h4 i {
    color: var(--futures-primary);
}

.futures-quick-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.futures-quick-item:last-child {
    margin-bottom: 0;
}

.futures-quick-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--futures-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.futures-quick-item span {
    display: block;
    font-size: 12px;
    color: var(--futures-text-muted);
    margin-bottom: 3px;
}

.futures-quick-item a,
.futures-quick-item p {
    font-size: 14px;
    color: var(--futures-text);
    font-weight: 500;
    margin: 0;
}

.futures-service-promise {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.futures-service-promise h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.futures-service-promise h4 i {
    color: var(--futures-primary);
}

.futures-promise-list {
    list-style: none;
}

.futures-promise-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--futures-text);
}

.futures-promise-list li i {
    color: var(--futures-primary);
}

/* 加盟优势 */
.futures-contact-advantages {
    padding: 80px 0;
    background: var(--futures-bg-light);
}

.futures-advantage-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--futures-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.futures-advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.futures-advantage-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 140, 66, 0.1);
}

.futures-advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--futures-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 28px;
}

.futures-advantage-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 12px;
}

.futures-advantage-card p {
    font-size: 14px;
    color: var(--futures-text-light);
    line-height: 1.7;
    margin: 0;
}

/* 加盟流程 */
.futures-contact-process {
    padding: 0;
}

.futures-process-bg {
    background: var(--futures-gradient);
    padding: 80px 0;
}

.futures-process-bg .futures-section-title,
.futures-process-bg .futures-section-subtitle {
    color: #FFFFFF;
}

.futures-process-bg .futures-section-line span,
.futures-process-bg .futures-section-line i {
    background: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.5);
}

.futures-process-step {
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

.futures-step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: var(--futures-transition);
}

.futures-process-step:hover .futures-step-icon {
    background: #FFFFFF;
    color: var(--futures-primary);
}

.futures-process-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.futures-process-step p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.futures-step-arrow {
    position: absolute;
    top: 40px;
    right: -15px;
    font-size: 24px;
    opacity: 0.5;
}

/* 常见问题 */
.futures-contact-faq {
    padding: 80px 0;
}

.futures-faq-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.futures-faq-simple-item {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--futures-primary);
}

.futures-faq-simple-item h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--futures-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.futures-faq-simple-item h5 i {
    color: var(--futures-primary);
}

.futures-faq-simple-item p {
    font-size: 14px;
    color: var(--futures-text-light);
    line-height: 1.7;
    margin: 0;
}

/* CTA区域 */
.futures-contact-cta {
    padding: 0;
}

@media (max-width: 768px) {
    .futures-contact-cards {
        padding: 30px 0;
    }
    
    .futures-contact-card {
        margin-bottom: 20px;
    }
    
    .futures-contact-main {
        padding: 40px 0;
    }
    
    .futures-contact-form-section {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .futures-form-checks {
        flex-direction: column;
        gap: 10px;
    }
    
    .futures-contact-advantages {
        padding: 50px 0;
    }
    
    .futures-advantage-card {
        margin-bottom: 20px;
    }
    
    .futures-process-bg {
        padding: 50px 0;
    }
    
    .futures-process-step {
        margin-bottom: 30px;
    }
    
    .futures-step-arrow {
        display: none;
    }
    
    .futures-contact-faq {
        padding: 50px 0;
    }
}

/* ==================== 响应式调整 ==================== */
@media (max-width: 576px) {
    .futures-section-title {
        font-size: 24px;
    }
    
    .futures-section-subtitle {
        font-size: 14px;
    }
    
    .futures-btn-primary,
    .futures-btn-outline,
    .futures-btn-light,
    .futures-btn-outline-light {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .futures-hero-btns .btn {
        padding: 10px 20px;
    }
}
