.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    background: white;
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);*/
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* 头部区域 - 左右布局 */
.header-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
}

/* 左侧标题区域 */
.title-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 24px;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #7ed321, #7ed321);
    border-radius: 2px;
}

/* 右侧快速了解区域 */
.quick-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.intro-text {
    font-size: 24px;
    color: #7ed321;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 20px 40px;
    border: 2px solid #7ed321;
    border-radius: 8px;
    background: rgba(184, 59, 184, 0.05);
}

.intro-text::before,
.intro-text::after {
    content: '—';
    color: #7ed321;
    font-size: 20px;
    margin: 0 10px;
}

/* 主要内容区域 */
.main-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: flex-start;
    /*margin-bottom: 60px;*/
}

.content-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 40px;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 按钮区域 */
.button-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.action-button {
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    color: white;
    letter-spacing: 1px;
}

.register-btn {
    background: linear-gradient(135deg, #7ed321, #58a800);
    box-shadow: 0 4px 15px rgba(196, 75, 196, 0.3);
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #78ba01;
}

.booth-btn {
    background: linear-gradient(135deg, #7ed321, #58a800);
    box-shadow: 0 4px 15px rgba(139, 47, 139, 0.3);
}

.booth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 47, 139, 0.4);
}

/* 统计数据区域 */
.stats-section {
    /*background: #f8f8f8;*/
    /*padding: 10px 40px;*/
    border-radius: 15px;
    /*margin-top: 40px;*/
}

.stats-grid-tj {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    text-align: center;
}

.stat-item {
    padding: 20px 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #77b902;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.stats-note {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #999;
    font-style: italic;
}
.about-header-hz1 {
    text-align: center;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

}
.about-header-hz1 img {
    width: 100%;
    height: auto;
    border-radius: 12px;

}
@media (max-width: 1024px){
	.stats-grid-tj{
		gap:10px;
	}
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 40px 20px;
    }

    .header-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .title-section {
        align-items: center;
    }

    .main-title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 20px;
    }

    .intro-text {
        font-size: 20px;
        padding: 15px 30px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    .content-left{
        width: 100%;
    }
    .stats-grid-tj {
        display: flex;
        flex-direction: column;
    }
    .container-zs-img img {
        height: 220px;
    }
    .about-header-hz1 {
        text-align: center;
        padding: 0px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    .about-header-hz1 img {
        height: 220px;
    }

    .content-image {
        order: -1;
        width: -webkit-fill-available;
    }

    .button-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stats-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 18px;
    }

    .intro-text {
        font-size: 18px;
        padding: 12px 20px;
    }

    .content-text {
        font-size: 15px;
    }

    .action-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 24px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 0.8s ease-out;
}

.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

/* 重置样式，防止继承 */
.grid-carousel-wrapper-t * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif !important;
}

.grid-carousel-wrapper-t {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
    background: transparent !important;
    position: relative !important;
    z-index: 1 !important;
}

.section-title-t {
    text-align: center !important;
    margin-bottom: 50px !important;
    background: transparent !important;
}

.section-title-t h2 {
    font-size: 36px !important;
    color: #78ba01 !important;
    margin-bottom: 10px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.section-title-t p {
    font-size: 16px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    text-transform: none !important;
}

/* Swiper 容器样式 */
.grid-swiper-t {
    width: 100% !important;
    /*height: 700px !important;*/
    height: auto;
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;*/
    /*background: #f8f9fa !important;*/
    padding: 20px !important;
}

/* 重置Swiper默认样式 */
.grid-swiper-t .swiper-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    display: flex !important;
    transition-property: transform !important;
    box-sizing: content-box !important;
}

.grid-swiper-t .swiper-slide {
    flex-shrink: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    transition-property: transform !important;
    display: block !important;
}

/* 网格布局 */
.grid-container-t {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;

}

/* 单个卡片样式 */
.grid-card-t {
    position: relative !important;
    /*border-radius: 15px !important;*/
    /*overflow: hidden !important;*/
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;*/
    /*transition: all 0.3s ease !important;*/
    /*cursor: pointer !important;*/
    /*background: white !important;*/
    /*display: flex !important;*/
    /*flex-direction: column !important;*/
}

.grid-card-t:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

/* 卡片图片 */
.card-image-t {
    width: 100% !important;
    /*height: 70% !important;*/
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.grid-card-t:hover .card-image-t {
    transform: scale(1.05) !important;
}

/* 卡片内容区域 */
.card-content-t {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)) !important;
    padding: 40px 20px 20px !important;
    color: white !important;
    /*height: 50% !important;*/
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
}

.card-title-t {
    font-size: 16px !important;
    font-weight: bold !important;
    line-height: 1.3 !important;
    margin-bottom: 5px !important;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.card-subtitle-t {
    font-size: 12px !important;
    opacity: 0.9 !important;
    line-height: 1.4 !important;
    color: white !important;
    margin: 0 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    text-transform: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* 卡片标签 */
.card-badge-t {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    padding: 5px 10px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
    font-weight: bold !important;
    backdrop-filter: blur(10px) !important;
    z-index: 3 !important;
    border: none !important;
    text-transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* 特殊颜色主题 */
/*.card-ai-t { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important; }*/
.card-laser-t { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important; }
.card-solar-t { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important; }
.card-robot-t { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important; }
.card-logistics-t { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important; }
.card-optics-t { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%) !important; }

/* Swiper 导航按钮样式 */
.grid-swiper-t .swiper-button-next,
.grid-swiper-t .swiper-button-prev {
    position: absolute !important;
    top: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    z-index: 10 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    outline: none !important;
    font-family: swiper-icons !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.grid-swiper-t .swiper-button-next {
    right: -25px !important;
    left: auto !important;
}

.grid-swiper-t .swiper-button-prev {
    left: -25px !important;
    right: auto !important;
}

.grid-swiper-t .swiper-button-next:hover,
.grid-swiper-t .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-50%) scale(1.1) !important;
    margin-top: -25px !important;
}

.grid-swiper-t .swiper-button-next::after {
    content: 'next' !important;
}

.grid-swiper-t .swiper-button-prev::after {
    content: 'prev' !important;
}

/* 分页器样式 */
.grid-swiper-t .swiper-pagination {
    position: absolute !important;
    bottom: -40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
}

.grid-swiper-t .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
}

.grid-swiper-t .swiper-pagination-bullet-active {
    background: #007bff !important;
    border-color: rgba(0, 123, 255, 0.3) !important;
    transform: scale(1.2) !important;
}

/* 加载状态 */
.card-loading-t {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #666 !important;
    font-size: 14px !important;
    z-index: 2 !important;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .grid-swiper-t {
        height: 600px !important;
        padding: 15px !important;
    }

    .grid-container-t {
        gap: 15px !important;
    }

    .card-title-t {
        font-size: 14px !important;
    }

    .card-subtitle-t {
        font-size: 11px !important;
    }

    .card-content-t {
        padding: 30px 15px 15px !important;
    }
}

@media (max-width: 768px) {
    .grid-carousel-wrapper-t {
        padding: 0 10px !important;
    }

    .grid-swiper-t {
        height: 500px !important;
        border-radius: 15px !important;
        padding: 10px !important;
    }

    .grid-container-t {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(3, 1fr) !important;
        gap: 10px !important;
    }

    .card-title-t {
        font-size: 13px !important;
    }

    .card-subtitle-t {
        font-size: 10px !important;
    }

    .section-title-t h2 {
        font-size: 28px !important;
    }

    .grid-swiper-t .swiper-button-next,
    .grid-swiper-t .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
        font-size: 14px !important;
    }

    .grid-swiper-t .swiper-button-next {
        right: -20px !important;
    }

    .grid-swiper-t .swiper-button-prev {
        left: -20px !important;
    }

    .card-badge-t {
        top: 10px !important;
        right: 10px !important;
        padding: 4px 8px !important;
        font-size: 10px !important;
    }
}

@media (max-width: 480px) {
    .grid-container-t {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(6, 1fr) !important;
    }

    .grid-swiper-t {
        height: 800px !important;
    }
}

/* 嘉宾 */
/* 重置样式，防止继承 */
.guests-carousel-wrapper-tb * {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    font-family: 'Microsoft YaHei', 'PingFang SC', Arial, sans-serif !important;
}

.guests-carousel-wrapper-tb {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 60px auto !important;
    padding: 40px 20px !important;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 50%, #e8f5e8 100%) !important;
    border-radius: 30px !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

/* 背景装饰 */
.guests-carousel-wrapper-tb::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') !important;
    border-radius: 30px !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.section-title-guests-tb {
    text-align: center !important;
    margin-bottom: 50px !important;
    position: relative !important;
    z-index: 2 !important;
}

.section-title-guests-tb h2 {
    font-size: 48px !important;
    color: #78ba01 !important;
    margin-bottom: 8px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    letter-spacing: 2px !important;
    text-shadow: 0 2px 4px rgba(21, 101, 192, 0.1) !important;
}

.section-title-guests-tb .subtitle-en-tb {
    font-size: 18px !important;
    color: #90a4ae !important;
    font-weight: 300 !important;
    letter-spacing: 4px !important;
    text-transform: uppercase !important;
    margin-top: 5px !important;
}

/* Swiper 容器样式 */
.guests-swiper-tb {
    width: 100% !important;
    height: 600px !important;
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    padding: 30px !important;
    z-index: 2 !important;
}

/* 重置Swiper默认样式 */
.guests-swiper-tb .swiper-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    display: flex !important;
    transition-property: transform !important;
    box-sizing: content-box !important;
}

.guests-swiper-tb .swiper-slide {
    flex-shrink: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    transition-property: transform !important;
    display: block !important;
}

/* 嘉宾网格布局 */
.guests-grid-tb {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
}

/* 单个嘉宾卡片样式 */
.guest-card-tb {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    padding: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.guest-card-tb:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

/* 嘉宾头像 */
.guest-avatar-tb {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border: 3px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
}

.guest-card-tb:hover .guest-avatar-tb {
    transform: scale(1.1) !important;
    border-color: #42a5f5 !important;
}

/* 嘉宾信息区域 */
.guest-info-tb {
    flex: 1 !important;
    margin-left: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
}

.guest-name-tb {
    font-size: 18px !important;
    font-weight: bold !important;
    color: #78ba01 !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.guest-title-tb {
    font-size: 13px !important;
    color: #546e7a !important;
    font-weight: 500 !important;
    margin-bottom: 3px !important;
    line-height: 1.3 !important;
    text-transform: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.guest-company-tb {
    font-size: 12px !important;
    color: #78909c !important;
    line-height: 1.3 !important;
    text-transform: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* 装饰性背景元素 */
.guest-card-tb::before {
    content: '' !important;
    position: absolute !important;
    top: -20px !important;
    right: -20px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #42a5f5, #1e88e5) !important;
    border-radius: 50% !important;
    opacity: 0.1 !important;
    transition: all 0.3s ease !important;
    z-index: 0 !important;
}

.guest-card-tb:hover::before {
    opacity: 0.2 !important;
    transform: scale(1.2) !important;
}

.guest-card-tb > * {
    position: relative !important;
    z-index: 1 !important;
}

/* Swiper 导航按钮样式 */
.guests-swiper-tb .swiper-button-next,
.guests-swiper-tb .swiper-button-prev {
    position: absolute !important;
    top: 50% !important;
    width: 55px !important;
    height: 55px !important;
    margin-top: -27px !important;
    z-index: 10 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    background: linear-gradient(135deg, #1565c0, #1976d2) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    outline: none !important;
    font-family: swiper-icons !important;
    font-size: 20px !important;
    font-weight: bold !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3) !important;
}

.guests-swiper-tb .swiper-button-next {
    right: -30px !important;
    left: auto !important;
}

.guests-swiper-tb .swiper-button-prev {
    left: -30px !important;
    right: auto !important;
}

.guests-swiper-tb .swiper-button-next:hover,
.guests-swiper-tb .swiper-button-prev:hover {
    background: linear-gradient(135deg, #1976d2, #1565c0) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-50%) scale(1.1) !important;
    margin-top: -27px !important;
    box-shadow: 0 12px 35px rgba(21, 101, 192, 0.4) !important;
}

.guests-swiper-tb .swiper-button-next::after {
    content: 'next' !important;
}

.guests-swiper-tb .swiper-button-prev::after {
    content: 'prev' !important;
}

/* 分页器样式 */
.guests-swiper-tb .swiper-pagination {
    position: absolute !important;
    bottom: -50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
}

.guests-swiper-tb .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    background: rgba(21, 101, 192, 0.3) !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid rgba(21, 101, 192, 0.2) !important;
}

.guests-swiper-tb .swiper-pagination-bullet-active {
    background: #1565c0 !important;
    border-color: rgba(21, 101, 192, 0.4) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3) !important;
}

/* 底部说明文字 */
.guests-note-tb {
    text-align: center !important;
    margin-top: 30px !important;
    color: #78909c !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    position: relative !important;
    z-index: 2 !important;
}

/* 加载状态 */
.guest-loading-tb {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #78909c !important;
    font-size: 12px !important;
    z-index: 2 !important;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .guests-swiper-tb {
        height: 550px !important;
        padding: 25px !important;
    }

    .guests-grid-tb {
        gap: 20px !important;
    }

    .guest-card-tb {
        padding: 12px !important;
    }

    .guest-avatar-tb {
        width: 70px !important;
        height: 70px !important;
    }

    .guest-name-tb {
        font-size: 16px !important;
    }

    .guest-title-tb {
        font-size: 12px !important;
    }

    .guest-company-tb {
        font-size: 11px !important;
    }
}

@media (max-width: 1024px) {
    .guests-grid-tb {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(4, 1fr) !important;
    }

    .guests-swiper-tb {
        height: 650px !important;
    }
}

@media (max-width: 768px) {
    .guests-carousel-wrapper-tb {
        padding: 30px 15px !important;
        margin: 40px auto !important;
    }

    .section-title-guests-tb h2 {
        font-size: 36px !important;
    }

    .section-title-guests-tb .subtitle-en-tb {
        font-size: 14px !important;
    }

    .guests-swiper-tb {
        height: 600px !important;
        border-radius: 15px !important;
        padding: 20px !important;
    }

    .guests-grid-tb {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(6, 1fr) !important;
        gap: 15px !important;
    }

    .guest-card-tb {
        padding: 10px !important;
    }

    .guest-avatar-tb {
        width: 60px !important;
        height: 60px !important;
    }

    .guest-info-tb {
        margin-left: 12px !important;
    }

    .guest-name-tb {
        font-size: 14px !important;
    }

    .guest-title-tb {
        font-size: 11px !important;
    }

    .guest-company-tb {
        font-size: 10px !important;
    }

    .guests-swiper-tb .swiper-button-next,
    .guests-swiper-tb .swiper-button-prev {
        width: 45px !important;
        height: 45px !important;
        margin-top: -22px !important;
        font-size: 16px !important;
    }

    .guests-swiper-tb .swiper-button-next {
        right: -25px !important;
    }

    .guests-swiper-tb .swiper-button-prev {
        left: -25px !important;
    }
}

@media (max-width: 480px) {
    .guests-grid-tb {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(12, 1fr) !important;
    }

    .guests-swiper-tb {
        height: 800px !important;
        display: contents;
    }

    .guest-card-tb {
        padding: 15px !important;
    }

    .guest-avatar-tb {
        width: 70px !important;
        height: 70px !important;
    }

    .guest-info-tb {
        margin-left: 15px !important;
    }

    .guest-name-tb {
        font-size: 16px !important;
    }

    .guest-title-tb {
        font-size: 12px !important;
    }

    .guest-company-tb {
        font-size: 11px !important;
    }
}

/*  zs */
.container-zs {
    margin: 0 auto !important;
    width: 88% !important;
    max-width: 1460px !important;
    padding-bottom: 50px;
}
@media (max-width: 1320px) {
    .container-zs {
        width: 90% !important;
    }
}
@media (max-width: 767px) {
    .container-zs {
        padding: 0 15px !important;
        width: 100% !important;
    }
}
.sy_title-zs {
    font-size: 40px !important;
    color: #78ba01 !important;
    line-height: 100px !important;
    font-weight: bold !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
}
@media (max-width: 1320px) {
    .sy_title-zs {
        font-size: 34px !important;
        line-height: 80px !important;
    }
}
@media (max-width: 767px) {
    .sy_title-zs {
        font-size: 20px !important;
        line-height: 60px !important;
    }
}
.sy_fanwei-zs {
    display: flex !important;
    margin: 0 -15px !important;
    list-style: none !important;
    padding: 0 !important;
}
@media (max-width: 767px) {
    .sy_fanwei-zs {
        flex-wrap: wrap !important;
        margin: 0 -8px !important;
    }
}
.sy_fanwei-zs>li {
    width: 25% !important;
    padding: 0 15px !important;
    list-style: none !important;
}
@media (max-width: 767px) {
    .sy_fanwei-zs li {
        padding: 0 8px !important;
        width: 50% !important;
        padding-bottom: 25px !important;
    }
}
.sy_fanwei-zs .top_title-zs {
    z-index: 1 !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    transition: 0.5s !important;
    height: 300px !important;
    cursor: pointer !important;
    text-decoration: none !important;
}
@media (max-width: 767px) {
    .sy_fanwei-zs .top_title-zs {
        height: 200px !important;
    }
}

/* 默认显示的标题文字 */
.sy_fanwei-zs .top_title-zs .title-text-zs {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    color: #fff !important;
    text-align: center !important;
    z-index: 3 !important;
    transition: 0.4s !important;
    /*background: linear-gradient(135deg, rgba(0,100,230,0.8), rgba(0,150,255,0.8)) !important;*/
}

.sy_fanwei-zs .top_title-zs .title-text-zs h3 {
    font-size: 28px !important;
    line-height: 40px !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    color: #fff !important;
}

.sy_fanwei-zs .top_title-zs .title-text-zs p {
    font-size: 16px !important;
    opacity: 0.9 !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
}

/* 悬停时显示的详细文字 */
.sy_fanwei-zs .top_title-zs .detail-text-zs {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    color: #fff !important;
    text-align: left !important;
    z-index: 4 !important;
    transition: 0.4s !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    background: linear-gradient(135deg, #78ba01, #7ed321) !important;
    overflow-y: auto !important;
}

.sy_fanwei-zs .top_title-zs .detail-text-zs h4 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

.sy_fanwei-zs .top_title-zs .detail-text-zs ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}
.sy_fanwei-zs .top_title-zs .detail-text-zs ui li {
    width: 300px;
}
.sy_fanwei-zs .top_title-zs .detail-text-zs li {
    font-size: 14px !important;
    line-height: 24px !important;
    margin-bottom: 8px !important;
    padding-left: 15px !important;
    position: relative !important;
    color: #fff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2) !important;
    list-style: none !important;
}

.sy_fanwei-zs .top_title-zs .detail-text-zs li:before {
    content: "•" !important;
    position: absolute !important;
    left: 0 !important;
    color: #fff !important;
    font-weight: bold !important;
}

.sy_fanwei-zs .top_title-zs .detail-text-zs .category-zs {
    font-weight: bold !important;
    color: #ffeb3b !important;
    margin-top: 10px !important;
    margin-bottom: 5px !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    padding: 0 !important;
}

/* 不同卡片的背景色 */
.sy_fanwei-zs li:nth-child(1) .title-text-zs {
    /*background: linear-gradient(135deg, rgba(33,150,243,0.8), rgba(63,81,181,0.8)) !important;*/
    background-image: url("../img/bj1.jpeg");
    background-size: cover;
}
.sy_fanwei-zs li:nth-child(1) .detail-text-zs {
    /*background: linear-gradient(135deg, rgba(33,150,243,0.95), rgba(63,81,181,0.95)) !important;*/
    background-image: url("../img/bj1.jpeg");
    background-size: cover;
}

.sy_fanwei-zs li:nth-child(2) .title-text-zs {
    /*background: linear-gradient(135deg, rgba(156,39,176,0.8), rgba(103,58,183,0.8)) !important;*/
    background-image: url("../img/bj2.jpeg");
    background-size: cover;
}
.sy_fanwei-zs li:nth-child(2) .detail-text-zs {
    /*background: linear-gradient(135deg, rgba(156,39,176,0.95), rgba(103,58,183,0.95)) !important;*/
    background-image: url("../img/bj2.jpeg");
    background-size: cover;
}

.sy_fanwei-zs li:nth-child(3) .title-text-zs {
    /*background: linear-gradient(135deg, rgba(76,175,80,0.8), rgba(139,195,74,0.8)) !important;*/
    background-image: url("../img/bj3.jpeg");
    background-size: cover;
}
.sy_fanwei-zs li:nth-child(3) .detail-text-zs {
    /*background: linear-gradient(135deg, rgba(76,175,80,0.95), rgba(139,195,74,0.95)) !important;*/
    background-image: url("../img/bj3.jpeg");
    background-size: cover;
}

.sy_fanwei-zs li:nth-child(4) .title-text-zs {
    /*background: linear-gradient(135deg, rgba(96,125,139,0.8), rgba(69,90,100,0.8)) !important;*/
    background-image: url("../img/bj4.jpeg");
    background-size: cover;
}
.sy_fanwei-zs li:nth-child(4) .detail-text-zs {
    /*background: linear-gradient(135deg, rgba(96,125,139,0.95), rgba(69,90,100,0.95)) !important;*/
    background-image: url("../img/bj4.jpeg");
    background-size: cover;
}

/* 悬停效果 */
.sy_fanwei-zs .top_title-zs:hover .title-text-zs {
    top: -100% !important;
}

.sy_fanwei-zs .top_title-zs:hover .detail-text-zs {
    top: 0 !important;
}

/* 移动端优化 */
@media (max-width: 767px) {
    .sy_fanwei-zs .top_title-zs .title-text-zs h3 {
        font-size: 20px !important;
        line-height: 28px !important;
    }

    .sy_fanwei-zs .top_title-zs .title-text-zs p {
        font-size: 14px !important;
    }

    .sy_fanwei-zs .top_title-zs .detail-text-zs {
        padding: 15px !important;
    }

    .sy_fanwei-zs .top_title-zs .detail-text-zs h4 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    .sy_fanwei-zs .top_title-zs .detail-text-zs li {
        font-size: 12px !important;
        line-height: 20px !important;
        margin-bottom: 6px !important;
    }
}

/* 滚动条美化 */
.sy_fanwei-zs .top_title-zs .detail-text-zs::-webkit-scrollbar {
    width: 4px !important;
}

.sy_fanwei-zs .top_title-zs .detail-text-zs::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1) !important;
    border-radius: 2px !important;
}

.sy_fanwei-zs .top_title-zs .detail-text-zs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3) !important;
    border-radius: 2px !important;
}

.sy_fanwei-zs .top_title-zs .detail-text-zs::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5) !important;
}

/* xw */
.info-container-zs {
    margin: 0 auto !important;
    width: 88% !important;
    max-width: 1460px !important;
    padding: 40px 0 !important;
}

@media (max-width: 1320px) {
    .info-container-zs {
        width: 90% !important;
    }
}

@media (max-width: 767px) {
    .info-container-zs {
        padding: 20px 15px !important;
        width: 100% !important;
    }
}

.info-layout-zs {
    display: flex !important;
    gap: 30px !important;
    align-items: flex-start !important;
}

@media (max-width: 1024px) {
    .info-layout-zs {
        flex-direction: column !important;
        gap: 20px !important;
    }
}

/* 左侧展会资料区域 */
.materials-section-zs {
	height:372px;
    flex: 0 0 280px !important;
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
}

.materials-section-zs:hover {
    transform: translateY(-5px) !important;
}

@media (max-width: 1024px) {
    .materials-section-zs {
        flex: none !important;
        width: 100% !important;
    }
}

.materials-header-zs {
    position: relative !important;
    height: 180px !important;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    background-image: url('/placeholder.svg?height=180&width=280') !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
}

.materials-header-zs::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('../img/huizhan.jpg') !important;
}

.materials-title-zs {
    position: relative !important;
    z-index: 2 !important;
    font-size: 24px !important;
    font-weight: bold !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
}

.materials-content-zs {
    padding: 25px !important;
}

.materials-desc-zs {
    font-size: 14px !important;
    line-height: 24px !important;
    color: #666 !important;
    margin-bottom: 20px !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

.download-btn-zs {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 24px !important;
    background: #6bc91a !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(107, 201, 26, 0.3) !important;
}

.download-btn-zs:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(107, 201, 26, 0.4) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.download-btn-zs::after {
    content: '↓' !important;
    margin-left: 8px !important;
    font-size: 16px !important;
}

/* 中间新闻区域 */
.news-section-zs {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

.news-block-zs {
	height:171px;
    background: #fff !important;
    border-radius: 12px !important;
    padding: 25px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    transition: transform 0.3s ease !important;
}

.news-block-zs:hover {
    transform: translateY(-3px) !important;
}

.news-header-zs {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 2px solid #f0f0f0 !important;
}

.news-title-zs {
    font-size: 22px !important;
    font-weight: bold !important;
    color: #333 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.more-link-zs {
    color: #666 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    transition: color 0.3s ease !important;
}

.more-link-zs:hover {
    color: #0064e6 !important;
    text-decoration: none !important;
}

.more-link-zs::after {
    content: '→' !important;
    margin-left: 5px !important;
    transition: transform 0.3s ease !important;
}

.more-link-zs:hover::after {
    transform: translateX(3px) !important;
}

.news-list-zs {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.news-item-zs {
    margin-bottom: 15px !important;
    padding-left: 15px !important;
    position: relative !important;
    line-height: 24px !important;
    color: #555 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: color 0.3s ease !important;
}
.news-item-zs a {
    color: #555 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.news-item-zs a:hover {
    color: #78ba01 !important;
}

.news-item-zs::before {
    content: '•' !important;
    position: absolute !important;
    left: 0 !important;
    color: #0064e6 !important;
    font-weight: bold !important;
}

.news-item-zs:last-child {
    margin-bottom: 0 !important;
}

/* 右侧宣传横幅 */
.banner-section-zs {
	height:372px;
    flex: 0 0 450px !important;
}

@media (max-width: 1024px) {
    .banner-section-zs {
        flex: none !important;
        width: 100% !important;
    }
}

.promo-banner-zs {
    position: relative !important;
    height: 400px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    background-image: url('/placeholder.svg?height=400&width=350') !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    box-shadow: 0 8px 30px rgba(107, 201, 26, 0.3) !important;
    transition: transform 0.3s ease !important;
}

.promo-banner-zs:hover {
    transform: translateY(-5px) !important;
}

.promo-banner-zs::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(107, 201, 26, 0.8), rgba(107, 201, 26, 0.6)) !important;
}

.banner-content-zs {
    position: relative !important;
    z-index: 2 !important;
    padding: 0px !important;
}

.banner-subtitle-zs {
    font-size: 18px !important;
    margin-bottom: 15px !important;
    color: #fff !important;
    opacity: 0.9 !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

.banner-main-title-zs {
    font-size: 28px !important;
    font-weight: bold !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
    line-height: 1.3 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    color: #fff !important;
}

.banner-event-info-zs {
    background: rgba(255,255,255,0.2) !important;
    padding: 15px 20px !important;
    border-radius: 25px !important;
    margin-bottom: 20px !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    margin: 0 0 20px 0 !important;
}

.banner-date-zs {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    color: #fff !important;
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
}

.banner-location-zs {
    font-size: 14px !important;
    opacity: 0.9 !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
}

.banner-cta-zs {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 25px !important;
    background: rgba(255,255,255,0.2) !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.banner-cta-zs:hover {
    background: rgba(255,255,255,0.3) !important;
    transform: translateY(-2px) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.banner-cta-zs::after {
    content: '✨' !important;
    margin-left: 8px !important;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .info-layout-zs {
        gap: 15px !important;
    }

    .materials-section-zs,
    .news-block-zs {
        padding: 20px !important;
    }

    .materials-title-zs {
        font-size: 20px !important;
    }

    .news-title-zs {
        font-size: 18px !important;
    }

    .promo-banner-zs {
        height: 300px !important;
    }

    .banner-main-title-zs {
        font-size: 22px !important;
    }

    .banner-subtitle-zs {
        font-size: 16px !important;
    }
}
/*hz*/
.partners-wrapper-hz {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 20px !important;
}

.partners-title-hz {
    text-align: center !important;
    font-size: 36px !important;
    color: #78ba01 !important;
    margin-bottom: 30px !important;
    font-weight: bold !important;
}

.partners-swiper-hz {
    width: 100% !important;
    height: 400px !important;
    /*background: #f8f9fa !important;*/
    border-radius: 10px !important;
    /*padding: 20px !important;*/
}

.partners-grid-hz {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    grid-template-rows: repeat(4, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
    height: 100% !important;
}

.partner-item-hz {
    background: white !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
}

.partner-item-hz:hover {
    transform: translateY(-3px) !important;
}

.partner-logo-hz {
    max-width: 100% !important;
    max-height: 50px !important;
    object-fit: contain !important;
}

.partners-swiper-hz .swiper-button-next,
.partners-swiper-hz .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: #1565c0 !important;
    border-radius: 50% !important;
    color: white !important;
}

.partners-swiper-hz .swiper-button-next {
    right: -20px !important;
}

.partners-swiper-hz .swiper-button-prev {
    left: -20px !important;
}

.partners-swiper-hz .swiper-pagination-bullet {
    background: #1565c0 !important;
}

/* 响应式 */
@media (max-width: 1024px) {
    .partners-grid-hz {
        grid-template-columns: repeat(4, 1fr) !important;
        grid-template-rows: repeat(6, 1fr) !important;
    }
    .partners-swiper-hz {
        height: 500px !important;
    }
}

@media (max-width: 768px) {
    .partners-grid-hz {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(8, 1fr) !important;
    }
    .partners-title-hz {
        font-size: 28px !important;
    }
}

@media (max-width: 480px) {
    .partners-grid-hz {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(12, 1fr) !important;
    }
    .partners-swiper-hz {
        height: 600px !important;
    }
}

/* lb */
.conference-container-hz {
    width: 100% !important;
    background: linear-gradient(171deg, #80b6dd 0%, #7ed321f5 100%) !important;
    padding: 40px 0 !important;
    font-family: 'Microsoft YaHei', Arial, sans-serif !important;
}

.conference-swiper-hz {
    width: 100% !important;
    height: 300px !important;
    position: relative !important;
}

.conference-slide-hz {
    width: 400px !important;
    height: 250px !important;
    position: relative !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    cursor: grab !important;
}

.conference-slide-hz:active {
    cursor: grabbing !important;
}

.conference-slide-hz:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.conference-image-hz {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.conference-slide-hz:hover .conference-image-hz {
    transform: scale(1.05) !important;
}

.conference-overlay-hz {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)) !important;
    color: white !important;
    padding: 30px 20px 20px !important;
    z-index: 2 !important;
}

.conference-title-hz {
    font-size: 16px !important;
    font-weight: bold !important;
    line-height: 1.4 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
    margin: 0 !important;
}

.conference-subtitle-hz {
    font-size: 13px !important;
    opacity: 0.9 !important;
    margin-top: 5px !important;
    line-height: 1.3 !important;
}

/* 导航按钮 */
.swiper-button-next-hz,
.swiper-button-prev-hz {
    color: #2196F3 !important;
    background: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    margin-top: -25px !important;
}

.swiper-button-next-hz:hover,
.swiper-button-prev-hz:hover {
    background: #2196F3 !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.swiper-button-next-hz::after,
.swiper-button-prev-hz::after {
    font-size: 18px !important;
    font-weight: bold !important;
}

/* 滚动条 */
.swiper-scrollbar-hz {
    background: rgba(255, 255, 255, 0.3) !important;
    height: 6px !important;
    border-radius: 3px !important;
    margin: 20px 50px 0 50px !important;
}

.swiper-scrollbar-drag-hz {
    background: #2196F3 !important;
    border-radius: 3px !important;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .conference-swiper-hz {
        height: 250px !important;
    }

    .conference-slide-hz {
        width: 300px !important;
        height: 200px !important;
    }

    .conference-title-hz {
        font-size: 14px !important;
    }

    .conference-subtitle-hz {
        font-size: 12px !important;
    }

    .swiper-button-next-hz,
    .swiper-button-prev-hz {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
    }

    .swiper-button-next-hz::after,
    .swiper-button-prev-hz::after {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .conference-slide-hz {
        width: 250px !important;
        height: 180px !important;
    }

    .conference-overlay-hz {
        padding: 20px 15px 15px !important;
    }
}
/*gy*/
.about-container-hz {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-header-hz {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
    margin-bottom: 40px;
    padding-bottom: 20px;
    /*border-bottom: 3px solid #4a90e2;*/
    text-align: center;
}

.about-title-hz {
    font-size: 36px;
    font-weight: bold;
    color: #78ba01;
    /*display: flex;*/
    /*align-items: center;*/
    gap: 15px;
}

.about-title-en-hz {
    font-size: 18px;
    color: #666;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-more-link-hz {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.about-more-link-hz:hover {
    color: #4a90e2;
}

.about-content-hz {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-image-hz {
    width: 100%;
    height: 350px;
    /*object-fit: cover;*/
    border-radius: 8px;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);*/
}

.about-text-section-hz {
    padding: 20px 0;
}

.about-description-hz {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.about-buttons-hz {
    display: flex;
    gap: 20px;
}

.about-btn-hz {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.about-btn-primary-hz {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
}

.about-btn-primary-hz:hover {
    background: linear-gradient(135deg, #357abd, #2968a3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.about-btn-success-hz {
    background: linear-gradient(135deg, #7cb342, #689f38);
    color: white;
}

.about-btn-success-hz:hover {
    background: linear-gradient(135deg, #689f38, #558b2f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .about-container-hz {
        padding: 40px 15px;
    }

    .about-title-hz {
        font-size: 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .about-content-hz {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .about-image-hz {
        height: 250px;
    }

    .about-buttons-hz {
        flex-direction: column;
        gap: 15px;
    }

    .about-btn-hz {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-header-hz {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .about-title-hz {
        font-size: 24px;
    }
}

.about-container-hz {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-header-hz {
    /*display: flex;*/
    text-align: center;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    /*border-bottom: 3px solid #4a90e2;*/
}

.about-title-hz {
    font-size: 36px;
    font-weight: bold;
    color: #78ba01;
}

/* 左右布局的内容区域 */
.about-content-hz {
    display: flex;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 左侧轮播图区域 */
.about-image-container-hz {
    flex: 1;
    max-width: 50%;
}

.about-image-hz {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.page-title{
	background: rgba(126,211,33,.7);
    width: 270px;
    border-radius: 40px;
	margin:0 auto;
}

/* 右侧文字区域 */
.about-text-section-hz {
    flex: 1;
    padding: 0 0 0 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-description-hz {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Swiper轮播样式 */
.about-swiper-hz {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.about-swiper-hz .swiper-wrapper {
    height: 100% !important;
}

.about-swiper-hz .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.about-swiper-hz .building-image-hz {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 导航按钮样式 */
.about-swiper-hz .swiper-button-next,
.about-swiper-hz .swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    margin-top: -20px !important;
}

.about-swiper-hz .swiper-button-next:hover,
.about-swiper-hz .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7) !important;
}

.about-swiper-hz .swiper-button-next::after,
.about-swiper-hz .swiper-button-prev::after {
    font-size: 16px !important;
}

/* 分页器样式 */
.about-swiper-hz .swiper-pagination {
    bottom: 15px !important;
}

.about-swiper-hz .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7) !important;
    opacity: 1 !important;
}

.about-swiper-hz .swiper-pagination-bullet-active {
    background: #4a90e2 !important;
}

.about-header-hz1 {
    margin-top: 40px;
}

.about-header-hz1 img {
    width: 100%;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-content-hz {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-container-hz {
        max-width: 100%;
    }

    .about-image-hz {
        height: 350px;
    }

    .about-text-section-hz {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .about-container-hz {
        padding: 40px 15px;
    }

    .about-title-hz {
        font-size: 28px;
    }

    .about-content-hz {
        padding: 25px 20px;
    }

    .about-image-hz {
        height: 280px;
    }

    .about-swiper-hz .swiper-button-next,
    .about-swiper-hz .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
        margin-top: -17px !important;
    }

    .about-swiper-hz .swiper-button-next::after,
    .about-swiper-hz .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .about-container-hz {
        padding: 30px 15px;
    }

    .about-header-hz {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .about-title-hz {
        font-size: 24px;
    }

    .about-content-hz {
        padding: 20px 15px;
    }

    .about-image-hz {
        height: 220px;
    }

    .about-description-hz {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-swiper-hz .swiper-button-next,
    .about-swiper-hz .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
        margin-top: -15px !important;
    }

    .about-swiper-hz .swiper-button-next::after,
    .about-swiper-hz .swiper-button-prev::after {
        font-size: 12px !important;
    }
}
