/* 首页轮播横幅样式 */
.idx-hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.idx-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.idx-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.idx-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.idx-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem 1rem;
	    margin-top: 30px;
}

.idx-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.idx-hero-search {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.idx-search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    outline: none;
}

.idx-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.idx-search-btn:hover {
    background: #0052a3;
    transform: translateY(-50%) scale(1.05);
}

.idx-hot-cities {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.idx-hot-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.idx-city-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.idx-city-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* 主容器 */
        .expo-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 首页品字型幻灯片容器 */
        .idx-carousel-container {
            position: relative;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .idx-carousel-wrapper {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }
        
        .idx-carousel-track {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .idx-carousel-item {
            position: absolute;
            top: 0;
            left: 50%;
            width: 100%;
            height: 100%;
            transform: translateX(-50%) scale(0.83);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.7;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 0;
            z-index: 1;
            pointer-events: none;
        }
        
        .idx-carousel-item.is-active {
            transform: translateX(-50%) scale(1);
            opacity: 1;
            z-index: 2;
            pointer-events: auto;
        }
        
        .idx-carousel-item.is-in-stage {
            opacity: 0.7;
            pointer-events: auto;
        }
        
        .homepage-slide-main {
            grid-column: 1 / 3;
            grid-row: 1 / 2;
            position: relative;
            overflow: hidden;
        }
        
        .homepage-slide-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .homepage-slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .homepage-slide-content {
            text-align: left;
            color: #fff;
            padding: 3rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .homepage-slide-logo {
            font-size: 2rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: 1rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .homepage-slide-title {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .homepage-slide-date {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }
        
        .homepage-slide-title-en {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1;
        }
        
        .homepage-slide-subtitle {
            font-size: 1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .homepage-slide-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .homepage-slide-text {
            font-size: 16px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .homepage-slide-sub {
            grid-column: 1 / 3;
            grid-row: 2 / 3;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        
        .homepage-slide-sub-item {
            position: relative;
            overflow: hidden;
            border-radius: 0;
        }
        
        .homepage-slide-sub-image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.3s ease;
        }
        
        .homepage-slide-sub-item:hover .homepage-slide-sub-image {
            transform: scale(1.05);
        }
        
        .homepage-slide-sub-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .homepage-slide-sub-content {
            text-align: left;
            color: #fff;
            padding: 1.5rem;
            width: 100%;
        }
        
        .homepage-slide-sub-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ef4444;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        }
        
        .homepage-slide-sub-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        }
        
        .homepage-slide-sub-text {
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
            opacity: 0.9;
        }
        
        .homepage-slide-sub-text-small {
            font-size: 0.75rem;
            margin-bottom: 0.25rem;
            opacity: 0.85;
        }
        
        .homepage-slide-sub-date {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 0.5rem;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
        }
        
        .homepage-slide-sub-btn {
            margin-top: 1rem;
            padding: 0.5rem 1.25rem;
            background: #14b8a6;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .homepage-slide-sub-btn:hover {
            background: #0d9488;
            transform: translateY(-2px);
        }
        
        .idx-carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.9);
            color: #333;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        .idx-carousel-arrow:hover {
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .idx-carousel-prev {
            left: 10px;
        }
        
        .idx-carousel-next {
            right: 10px;
        }
        
        .idx-carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .idx-carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: 2px solid #fff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .idx-carousel-dot.active {
            background-color: #fff;
            transform: scale(1.2);
        }
        
        .idx-carousel-dot:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }
        
        .homepage-slide-btn {
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            color: #222;
            border: none;
            border-radius: 6px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }
        
        .homepage-slide-btn:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        
        /* 行业分类模块样式 - 压一半到背景图上 */
        .idx-categories-section {
            position: relative;
            padding: 0;
            margin: -100px 0 2rem 0;
            z-index: 10;
        }
        
        .idx-categories-box {
            position: relative;
            z-index: 2;
            background: #fff;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            margin: 0 auto;
            max-width: 1280px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        
        .idx-categories-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #222;
            
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .idx-categories-bar {
            display: inline-block;
            width: 4px;
            height: 24px;
            background: #ef4444;
            border-radius: 2px;
        }
        
        .idx-categories-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
               word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
        }
        
        .idx-category-item {
            display: block;
            padding: 0.75rem 0.5rem;
            text-align: center;
            text-decoration: none;
            color: #333;
            font-size: 0.9rem;
            font-weight: 400;
            transition: all 0.3s;
            border-radius: 4px;
        }
        
        .idx-category-item:hover {
            background: #f0f7ff;
            color: #0066cc;
        }
        
        /* 品字型模块容器 */
        .idx-featured-slider {
            background: #f5f7fa;
            padding: 3rem 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .idx-categories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .homepage-slide-title-en {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .idx-categories-section {
               
                margin: -100px 0 0 0;
            }
            .container {
 
    margin: 0 auto;
    padding: 0 0.8rem;
}.card-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}.card-content {
    padding: 0.5rem;
}.card-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--darker-gray);
    line-height: 1.4;
}.card-favorite-btn { 
    float: right;
}
.expo-news {  
    gap: 0px!important;  
}
.card-favorite-btn{ float: right;       }

            .idx-categories-box {
                padding: 2rem 1.5rem;
            }
            
            .idx-categories-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .homepage-slider-wrapper {
                height: 500px;
            }
            
            .homepage-slide-item {
                grid-template-columns: 1fr;
                grid-template-rows: 1fr 1fr;
            }
            
            .homepage-slide-main {
                grid-column: 1 / 3;
                grid-row: 1 / 2;
            }
            
            .homepage-slide-sub {
                grid-column: 1 / 3;
                grid-row: 2 / 3;
                display: grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 1fr;
            }
            
            .homepage-slide-title-en {
                font-size: 2rem;
            }
            
            .homepage-slide-content {
                padding: 2rem;
            }
            
            .homepage-slide-title {
                font-size: 24px;
            }
            
            .homepage-slide-text {
                font-size: 14px;
            }
            
            .homepage-slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .idx-categories-section {
                margin: -80px 0 1.5rem 0;
            }
            
            .idx-categories-box {
                padding: 2rem 1.5rem;
            }
            
            .idx-categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0rem;
            }
            
            .idx-categories-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .idx-categories-section {
                margin: -60px 0 1rem 0;
            }
            
            .idx-categories-box {
                padding: 1.5rem 1rem;
            }
         
            
            .idx-categories-title {
                font-size: 1.5rem;
            }
			.idx-hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.idx-hero-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}.expo-module-title {
      font-size: 1.5rem!important;
}.expo-more {
    text-align: center;
    margin-top: 30px!important;
}.exhibitions-section {
    padding-bottom: 30px!important;
}
.expo-more-button {padding: 8px 20px!important;}
.expo-module {padding: 30px 0!important;}
.expo-module-subtitle {font-size: 15px!important;}
        }
        
        /* 模块标题样式 - 居中 */
        .expo-module {
            padding: 70px 0;
        }
        
        .expo-module.white {
            background-color: #f5f7fa;
        }
        
        .expo-module.gray {
            background-color: #f5f7fa;
        }
        
        .expo-module-title {
            font-size: 32px;
            margin-bottom: 16px;
            color: #222;
            font-weight: 700;
            text-align: center;
            position: relative;
            padding-bottom: 16px;
        }
        
        .expo-module-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: #0066cc;
        }
        
        .expo-module-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            line-height: 1.6;
        }
        
        /* 特色服务模块 */
        .expo-services {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
        }
		
		
		.exhibitions-page{margin-top: 40px;}
		.exhibitions-section{padding-bottom: 70px;  }
		
		 /* 新闻模块 - 左右列表 */
        .expo-news {
            
            flex-wrap: wrap;
            gap: 32px;
            margin-bottom: 40px;
        }
        
        .expo-news-column {
            flex: 1;
            min-width: 300px;
        }
        
        .expo-news-item {
    background-color: #fff;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 20px;
    transition: all 0.2s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    width: 48%;
    float: left;
    margin-right: 20px;
}
        
        .expo-news-item:hover {
            transform: translateX(3px);
            box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
            border-color: #e0e0e0;
        }
        
        .expo-news-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: #222;
            line-height: 1.4;
            font-weight: 600;
                height: 50px;
        }
        
        .expo-news-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 14px;
            color: #888;
            font-size: 14px;
        }
        
        .expo-news-category {
            background-color: #f0f7ff;
            color: #0066cc;
            padding: 2px 10px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 500;
        }
        
        .expo-news-content {
            color: #555;
            line-height: 1.6;
            font-size: 15px;
        }
        
        /* 查看更多按钮 - 居中 */
        .expo-more {
            text-align: center;
            margin-top: 70px;
        }
        
        .expo-more-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 10px 22px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }
        
        .expo-more-button:hover {
            background-color: #134285;
            transform: translateY(-2px);
        }
		
		
	@media (max-width: 480px) {	
		.expo-news-item {
 
    width: 100%;
     
}
}
.activeggbd{display: none;}