/* 现代英雄区域样式 */
.modern-hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* 背景装饰 */
.hero-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(218, 157, 64, 0.1) 0%, transparent 70%);
}

.decor-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 25s infinite linear;
}

.decor-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
    animation: float 20s infinite linear reverse;
}

.decor-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
}

.decor-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(218, 157, 64, 0.3), transparent);
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 主容器 */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* 左侧内容 */
.hero-content {
    max-width: 700px;
}

/* 徽章 */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #da9d40;
}

.badge-item i {
    font-size: 12px;
}

.badge-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* 标题 */
.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #da9d40 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    display: block;
    position: relative;
    color: #da9d40;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #da9d40, transparent);
}

/* 副标题 */
.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 300;
}

/* 描述 */
.hero-desc {
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-desc p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* 核心优势 */
.core-advantages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.advantage-item i {
    color: #da9d40;
    font-size: 1.1rem;
}

/* 行动按钮 */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.btn-primary, .btn-secondary, .btn-outline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, #da9d40 0%, #c68c36 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(218, 157, 64, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 157, 64, 0.4);
    background: linear-gradient(135deg, #c68c36 0%, #b57b2d 100%);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #da9d40;
    transform: translateY(-3px);
}

.btn-outline:hover {
    border-color: #da9d40;
    background: rgba(218, 157, 64, 0.1);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

.btn-subtext {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
}

/* 右侧统计 */
.hero-stats {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* 统计网格 */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(218, 157, 64, 0.3);
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #da9d40, #c68c36);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, #da9d40);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0 0;
}

/* 热门展会 */
.hot-expos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hot-expos-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.hot-expos-header h4 i {
    color: #da9d40;
}

.view-all {
    color: #da9d40;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.view-all:hover {
    gap: 8px;
}

/* 展会列表 */
.expo-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.expo-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(218, 157, 64, 0.3);
    transform: translateX(5px);
}

.expo-info h5 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.expo-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.expo-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-btn {
    background: rgba(218, 157, 64, 0.2);
    color: #da9d40;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.expo-item:hover .action-btn {
    background: #da9d40;
    color: white;
}

/* 向下箭头 */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: #da9d40;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 响应式设计 */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-container {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .modern-hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .expo-meta {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 575px) {
    .modern-hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        padding: 8px 15px;
    }
    
    .badge-item span {
        font-size: 12px;
    }
    
    .hero-stats {
        padding: 20px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* 微信特殊适配 */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
    
    .btn-subtext {
        font-size: 0.8rem;
    }
    
    .expo-info h5 {
        font-size: 0.9rem;
    }
}

/***********zhuanti**********/
.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

.special-card a:hover {
    color: #da9d40 !important;
    text-decoration: none;
}

.special-expo .btn:hover {
    background: #c68c36 !important;
    text-decoration: none;
}

/*********wenti*********/
        .faq-section .category-link:hover,
        .faq-section .category-link.active {
            background: #da9d40 !important;
            color: white !important;
            transform: translateX(5px);
        }
        
        .faq-section .hot-question:hover {
            color: #da9d40 !important;
            padding-left: 5px;
        }
        
        .faq-section .btn-more-faq:hover {
            background: #c68c36 !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(218, 157, 64, 0.3);
        }
        
        .faq-section .panel-heading a[aria-expanded="true"] .faq-arrow {
            transform: translateY(-50%) rotate(180deg);
        }
        
        .faq-section .panel-heading a:hover {
            background: rgba(218, 157, 64, 0.05);
        }

/* 标题完整显示解决方案 - 使用特定类名避免冲突 */
.ws-exhibition-title {
    /* 强制文本换行 */
    word-wrap: break-word;      /* 旧版兼容 */
    word-break: break-word;     /* 避免英文溢出 */
    overflow-wrap: break-word;  /* 现代标准 */
    hyphens: auto;              /* 支持断字（英文） */
    
    /* 保证容器高度自适应 */
    min-height: auto;
    max-height: none;
    
    /* 移除所有溢出隐藏和截断 */
    overflow: visible;
    text-overflow: clip;
    display: block;
}

/* 容器自适应 */
.card-title-wrapper {
    min-height: auto;
    height: auto;
    overflow: visible;
}

/* 移动端适配 */
@media (max-width: 767px) {
    .latest-expo-section {
        padding: 40px 15px !important;
    }
    
    .section-title {
        font-size: 28px !important;
    }
    
    .section-header p {
        font-size: 16px !important;
        padding: 0 10px;
    }
    
    .ws-exhibition-item {
        margin-bottom: 20px !important;
        padding: 0 10px;
    }
    
    .ws-exhibition-card {
        margin: 0 !important;
    }
    
    .card-content-section {
        padding: 20px 15px !important;
    }
    
    .ws-exhibition-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .ws-exhibition-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
    
    .card-action-buttons {
        flex-direction: column !important;
        gap: 10px;
    }
    
    .ws-action-btn {
        margin-right: 0 !important;
        flex: none !important;
        width: 100%;
    }
    
    .filter-buttons {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
        display: flex;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-buttons::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-buttons::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .filter-buttons::-webkit-scrollbar-thumb {
        background: #da9d40;
        border-radius: 10px;
    }
    
    /* 移动端优化卡片布局 */
    .ws-exhibition-card {
        display: flex;
        flex-direction: column;
        height: auto;
    }
}

/* 平板端适配 */
@media (min-width: 768px) and (max-width: 991px) {
    .ws-exhibition-item {
        margin-bottom: 25px !important;
    }
    
    .ws-exhibition-title {
        font-size: 17px !important;
    }
    
    .card-content-section {
        padding: 20px !important;
    }
}

/* 大屏幕适配 */
@media (min-width: 992px) {
    .ws-exhibition-title {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }
}

/* Flexbox布局确保卡片等高 */
.ws-exhibition-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title-wrapper {
    flex: 1;
}

.card-action-buttons {
    margin-top: auto;
}

/* 悬停效果优化 */
.ws-exhibition-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.ws-exhibition-card:hover .card-image-section img {
    transform: scale(1.05);
}

.ws-exhibition-card:hover .ws-enroll-btn {
    background: #c78936 !important;
}

.ws-exhibition-card:hover .ws-detail-btn {
    background: #2c3e50 !important;
    color: white !important;
    border-color: #2c3e50 !important;
}

/* 英文断字优化 */
.ws-exhibition-title {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

/* 确保长链接不会破坏布局 */
.ws-exhibition-title a, .ws-exhibition-description {
    overflow-wrap: anywhere;
}

/* 防止过长的连续字符破坏布局 */
.ws-exhibition-title, .ws-exhibition-description {
    word-break: break-word;
    word-wrap: break-word;
}

/* 网格系统修正 */
.exhibition-grid .row {
    display: flex;
    flex-wrap: wrap;
}

.ws-exhibition-item {
    display: flex;
    flex-direction: column;
}

/* 筛选按钮样式 */
.ws-filter-btn {
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ws-filter-btn.active {
    background: #da9d40 !important;
    color: white !important;
}

/* 查看全部按钮样式 */
.ws-view-all-btn:hover {
    background: #da9d40 !important;
    color: white !important;
    transform: translateY(-2px);
}