/*首页及通用样式*/

:root {
    --primary-color: #75bd1d;
    --secondary-color: #009639;
    --accent-color: #00a8e6;
    --text-dark: #222;
    --text-medium: #555;
    --text-light: #777;
    --border-light: #e5e5e5;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

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

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

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

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

/* 头部样式 */
.jz_head {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.jz_head_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav li {
    position: relative;
}

.nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
}

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

/* 轮播图样式 */
.jz_banner {
    position: relative;
    height: 800px;
    overflow: hidden;
    background: var(--bg-white);
}

.banner_pic {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner_pic_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner_pic_item.active {
    opacity: 1;
    z-index: 2;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner_module_zone {
    position: relative;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 2;
    transform: translateY(200px);
}

.banner-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.banner_module_zone p {
    font-size: 20px;
    margin-bottom: 40px;
}

.banner-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-style {
    display: inline-block;
    padding: 15px 40px;
    background: #fe6719;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    min-width: 200px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-style1 {
    display: inline-block;
    padding: 15px 40px;
    background: #75bd1d;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    min-width: 200px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-style2 {
    display: inline-block;
    padding: 15px 40px;
    background: #75bd1d;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    min-width: 250px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-style:hover {
    background: #75bd1d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-style1:hover {
    background: #fe6719;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-style2:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: #000000;
}

/* 区块样式 */
.section {
    padding: 70px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #005264;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-light);
}

/* 网格布局 */
.grid-2, .grid-3, .grid-4, .grid-5 ,.grid-6{
    display: grid;
    gap: 30px;
    margin-top: 40px;
    justify-items:center;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* 卡片样式 */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: inline-block;
    vertical-align: top;
    width: auto;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.card img {
    height: 300px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card p {
    color: var(--text-medium);
    font-size: 15px;
}

/* 视频区域 */
.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-container video {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* 赞助商区域 */
.sponsor-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.sponsor-sidebar {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.sponsor-sidebar img {
    margin: 20px auto;
    max-width: 200px;
}

.sponsor-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.sponsor-type {
    text-align: center;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sponsor-type h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sponsor-type a {
    display: block;
    margin-bottom: 20px;
}

.sponsor-type img {
    max-height: 80px;
    margin: 0 auto;
}

/* 展商手册特殊布局 */
.sponsor-handbook-grid {
    display: grid;
    gap: 30px;
}

.sponsor-handbook-main {
    grid-column: 1 / -1;
}

.sponsor-handbook-sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 新闻区域 */
.news-section .container {
    max-width: 1400px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.news-featured {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.news-featured img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.news-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 40px 30px 30px;
}

.news-tabs {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    background: var(--bg-light);
}

.tabs-header li {
    flex: 1;
    list-style: none;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 3px solid transparent;
}

.tabs-header li.on {
    background: var(--bg-white);
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-content {
    padding: 30px;
}

.news-tab {
    display: none;
}

.news-tab.active {
    display: block;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.news-item:last-child {
    border: none;
}

.news-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.news-item h4 a {
    color: var(--text-dark);
}

.news-item h4 a:hover {
    color: var(--primary-color);
}

.news-item p {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 5px;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 13px;
}

/* 表单区域 */
.form-section {
    background: var(--primary-color);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input, .form-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.form-submit {
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.form-submit:hover {
    background: #007a2e;
}

/* 底部样式 */
.jz_foot {
    background: var(--primary-color);
    color: white;
    padding: 50px 0 30px;
}

.foot-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.foot-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.foot-column ul {
    list-style: none;
}

.foot-column li {
    margin-bottom: 10px;
}

.foot-column a {
    color: rgba(255,255,255,0.8);
}

.foot-column a:hover {
    color: white;
}

.foot-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
}

/* 特色内容区块样式 */
.section-featured-content {
    background-color: #ffffff;
    padding: 3rem 0;
}

.container-featured-content {
    display: flex;
    align-items: center;
    gap: 8rem;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 70px;
    padding-bottom: 70px;
}

.content-area {
    flex: 1;
}

.banner-btns-featured {
    padding-right: 450px;
}

.image-area {
    position: relative;
    flex: 0 0 42%;
    padding-top: 50px;
}


.image-area-left .main-image {
    width: 100%;
    height: auto;
    display: block;
    border-top-right-radius: 60px;
    position: relative;
    z-index: 2;
}

.image-area-left .decorative-image {
    position: absolute;
    top: -110px;
    right: -110px;
    width: 150px;
    height: auto;
    z-index: 1;
}
.image-area-left .decorative-image_ipnf {
    position: absolute;
    top: -13px;
    right: -110px;
    width: 200px;
    height: auto;
    z-index: 1;
}
.image-area-right .decorative-image_ipnf1 {
    position: absolute;
    top: -10px;
    right: 493px;
    width: 250px;
    height: auto;
    z-index: 1;
}

.image-area-left .decorative-image_forvisitors {
    position: absolute;
    top: 0px;
    right: -82px;
    width: 27rem;
    height: auto;
    z-index: 1;
}
.image-area-left .decorative-image_forvisitors2 {
    position: absolute;
    top: 0px;
    right: 352px;
    width: 215px;
    height: auto;
    z-index: 1;
}
/* 装饰图包裹容器：启用Flex布局，实现子元素并排 */
.decorative-images-wrapper {
    /* 核心属性：启用Flex，子元素默认横向并排 */
    display: flex;
    /* 可选：设置两个装饰图之间的间距（避免紧贴） */
    gap: 10px; 
    /* 可选：让装饰图水平居中对齐（根据需求调整） */
    justify-content: flex-start; /* 左对齐（默认），可选 center/space-between 等 */

    /* 可选：给容器加个上边距，和主图分开 */
    margin-top: 15px;
}



.image-area-right {
    position: relative;
    flex: 0 0 42%;
    padding-top: 50px;
}

.image-area-right .main-image {
    width: 100%;
    height: auto;
    display: block;
    border-top-left-radius: 60px;
    position: relative;
    z-index: 2;
}

.image-area-right .decorative-image {
    position: absolute;
    top: -120px;
    right: 450px;
    width: 250px;
    height: auto;
    z-index: 1;
}

/* 卡片容器样式 */
.trade-fair-module {
    background-color: #fe6719;
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 100px;
}


/* 卡片样式 */
.trade-fair-card {
    background-color: #263238;
    color: #ffffff;
    padding: 2rem;
    width: 400px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.trade-fair-card:hover {
    background-color: #1d3252;
}

.trade-fair-card i {
    font-size: 4rem;
    margin-bottom: 1.2rem;
}

.trade-fair-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.trade-fair-btn {
    background-color: #ec407a;
    color: #ffffff;
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
}

.trade-fair-btn i {
    font-size: 1rem;
    margin-left: 0.5rem;
    margin-bottom: 0;
}

/* 展商手册模块样式 */
#sponsor-handbook-module {
    position: relative;
    overflow: visible !important;
    min-height: 150px;
    width: 100%;
}

.sponsor-handbook-wrapper {
    position: relative;
    z-index: 1;
    min-height: 300px;
    padding: 0 !important;
}

.sponsor-handbook-bg-container {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100vw !important;
    height: 100% !important;
    z-index: -2 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.sponsor-handbook-bg-img {
    position: absolute !important;
    top: 2316px !important;
    left: 0 !important;
    width: 100vw !important;
    height: 400% !important;
    object-fit: cover !important;
    z-index: -3 !important;
    transition: transform 0.08s ease !important;
}

.sponsor-handbook-mask {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100% !important;
    z-index: -1 !important;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)) !important;
}

.sponsor-handbook-grid {
    position: relative !important;
    z-index: 1 !important;
    padding: 50px 15px !important;
    max-width: 1200px;
    margin: 0 auto !important;
}

/* 媒体合作伙伴样式 */
.section-media-partners {
    padding: 100px 0;
    background: var(--bg-white);
}

.media-partners-title {
    color: #2d4059;
    font-family: 'Lufga', Sans-serif;
    font-size: 40px !important ;
    font-weight: 300;
}

#media-partners {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 20px;
}
/*媒体合作伙伴图片样式*/
.partner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.partner-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
/*媒体合作伙伴图片放大样式*/
.partner-link:hover img {
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .jz_head_box {
        height: 60px;
    }

    .logo img {
        height: 40px;
    }

    .nav {
        display: none;
    }

    .jz_banner {
        height: 400px;
        margin-top: 0px;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-btns {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 60px 0;
    }

    .grid-2, .grid-3, .grid-4, .grid-5 .grid-6{
        grid-template-columns: 1fr;
    }
    

    .sponsor-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-main {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .tabs-header {
        flex-wrap: wrap;
    }

    .foot-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-handbook-sub {
        grid-template-columns: 1fr;
    }

    /* 特色内容区块响应式 */
    .section-featured-content {
        padding: 2rem 0 !important;
    }
    
    .container-featured-content {
        flex-direction: column-reverse !important;
        gap: 2rem !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .banner-btns-featured {
        padding: 2rem !important;
        text-align: center !important;
    }
    
    .image-area {
        flex: 1 1 100% !important;
        padding-top: 5rem !important;
        margin-top: 0 !important;
    }
    
    .image-area-left .main-image,
    .image-area-right .main-image {
        border-top-left-radius: 30px !important;
    }
    
    .image-area-left .decorative-image {
        top: -30px !important;
        right: 10px !important;
        width: 80px !important;
    }
    
    .image-area-right .decorative-image {
        top: -30px !important;
        right: 10px !important;
        width: 80px !important;
    }
    
    .content-area {
        flex: 1 1 100% !important;
        text-align: center !important;
    }
    
    .trade-fair-module {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    .section-featured-content {
        padding: 0rem 0 !important;
    }
    
    .container-featured-content {
        gap: 1.5rem !important;
        padding-top: 0px !important;
        padding-bottom: 20px !important;
    }
    
    .image-area-left .decorative-image,
    .image-area-right .decorative-image {
        width: 80px !important;
        top: 1rem !important;
    }
    
    .image-area-left .main-image,
    .image-area-right .main-image {
        border-top-left-radius: 20px !important;
    }
}

@media (min-width: 1400px) {
    .container-featured-content {
        max-width: 1400px !important;
    }
}

/* 工具类 */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }


/*forvisitors.html*/
.jz_banner_forvisitors{
        position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--bg-white);
}

.banner-title_forvisitors{
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    padding-bottom: 50px;
}

/*首页结束*/


/* forvisitors页面样式 */
/* forvisitors卡片容器样式 */
.trade-fair-module_forvisitors {
    background-color: #fe6719;
    padding: 5rem;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 100px;
}
/* 卡片样式 */
.trade-fair-card_forvisitors {
    background-color: #263238;
    color: #ffffff;
    padding: 2rem;
    width: 400px;
    text-align: center;
    transition: background-color 0.3s ease;
    height: 400px;
}

.trade-fair-card_forvisitors:hover {
    background-color: #1d3252;
}

.trade-fair-card_forvisitors i {
    font-size: 7rem;
    margin-bottom: 1.2rem;
}

.trade-fair-card_forvisitors h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/*字体*/
.media-partners-title_h3_forvisitors {
    color: #ffffff;
    font-family: 'Lufga', Sans-serif;
    font-weight: 300;
}

/*卡片双排按钮容器*/
.banner-btns_card_forvisitors {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.banner-btns_card_forvisitors_img{
    display: flex;
    gap: 10px;
    justify-content: center;
}

/*卡片双排按钮样式*/
.btn-style2_forvisitors {
    display: inline-block;
    padding: 15px 40px;
    background: #75bd1d;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    min-width: 180px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-style2_forvisitors:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: #000000;
}
/*内容按钮*/
.banner-btns_right_forvisitors {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-right: 280px;
}
/*现场照片*/
.photoes-btns{
    background-color:#1d3252;
    min-height: 1500px;
    display: flex;
    gap: 1.5rem;
    padding: 100px 0;
}
.photoes-btns_assembly{
    background-color:#1d3252;
    display: flex;
    gap: 1.5rem;
    padding: 100px 0;
}
.photoes-link_forvisitors {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}
.photoes_container_forvisitors {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}
/*现场图片*/
.photoes-link_forvisitors:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/*现场图片标题*/
.photoes-title {
    color: #ffffff !important;
    font-family: 'Lufga', Sans-serif;
    font-size: 40px !important ;
    font-weight: 300;
}




/*ticketshop页面样式*/
.banner-btns_ticketshop {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-right: 15rem;
}

/*响应式*/
@media (max-width: 768px) {
    .banner-btns_ticketshop {
        /* 切换为垂直排列 */
        flex-direction: column;
        /* 重置右侧超大内边距，避免元素偏移出屏幕 */
        padding-right: 0;
        /* 优化垂直排列时的间距（可选，更适配移动端视觉） */
        gap: 15px;
        /* 垂直排列时，让子元素水平居中（保持视觉一致性） */
        align-items: center;
        /* 可选：添加左右少量内边距，避免元素贴屏幕边缘 */
        padding: 2rem 15px;
        /* 移除不必要的水平内边距（如有） */
        padding-left: 0;
    }
}
/* forvisitors页面样式 */
/* forvisitors卡片容器样式 */
.trade-fair-module_ticketshop {
    background-color: #e6007e;
    padding: 2rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 100px;
}
/* 卡片样式 */
.trade-fair-card_ticketshop {
    background-color: #1d3252;
    color: #ffffff;
    padding: 2rem;
    width: 700px;
    text-align: center;
    transition: background-color 0.3s ease;
    height: 450px;
}

.trade-fair-card_ticketshop:hover {
    background-color: #7D7C95;
}

.trade-fair-card_ticketshop i {
    font-size: 7rem;
    margin-bottom: 1.2rem;
}

.trade-fair-card_ticketshop h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.trade-fair-card_ticketshop h4 {
    font-family: "Lufga", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 28px;
    font-weight: 500;
}

.trade-fair-card_ticketshop p {
    border: 0;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    font-family: "Lufga", Sans-serif;
}
.video_btn__ticketshop{
    height: 200px;
}
/*卡片响应式布局*/
/* 响应式布局 - 手机端（768px断点） */
@media (max-width: 768px) {
    .trade-fair-module_ticketshop {
        padding-top: 50px;
        padding-bottom: 50px;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 2rem; /* 减小间距适配小屏 */
        justify-content: center; /* 保持卡片居中，视觉更友好 */
    }

    /* 核心：强制卡片尺寸完全跟随内容（关键优化） */
    .trade-fair-module_ticketshop > * {
        /* 宽度精准贴合内容（比auto更精准的内容适配） */
        width: fit-content;
        /* 高度自动跟随内容，不设固定值 */
        height: auto;
        /* 取消所有固定/最小/最大宽度限制（关键！） */
        min-width: unset;
        max-width: 100%; /* 兜底：内容过长时不超出屏幕 */
        /* 取消固定高度，完全由内容决定 */
        min-height: unset;
        max-height: unset;
        /* 内容自动换行，避免横向溢出 */
        white-space: normal;
        word-wrap: break-word;
    }
}
/*Forexhibitors.html*/
.img_card{
    width: 220px;
    text-align: center;
    height: auto;
}
.img_card_forvisitors{
    max-width: 30%;
    margin: auto;
    height: auto;
}
.trade-img-card_Forexhibitors {
    padding: 2rem;
    width: 400px;
    height: 400px;
}
/*粉色字体*/
.media-partners-title_h3_Forexhibitors {
    color: #e6007e !important;
    font-family: 'Lufga', Sans-serif;
    font-weight: 300;
}
.media-partners-title_p_Forexhibitors {
    font-family: 'Lufga', Sans-serif;
    font-weight: 300;
}
/*遮罩层样式*/
.section_Forexhibitors {
    background: var(--bg-white);
}

.section-title_Forexhibitors {
    text-align: center;
    margin-bottom: 30px;
}


/*Contact页面样式*/

/* 表单容器样式 */
.exhibitor-form {
  max-width: 700px;
  margin: 20px auto;
  padding: 0 20px;
  font-family: Arial, sans-serif;
}

/* 表单组间距 */
.form-group {
  margin-bottom: 18px;
}

/* 行布局（用于并排元素） */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
}

/* 行内表单组占比 */
.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

/* 标签样式 */
.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #333;
  font-size: 14px;
}

/* 必填项标记 */
.required {
  color: #e91e63;
  font-weight: bold;
}

/* 输入框/下拉框/文本域通用样式 */
input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  background-color: #fe6719;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

/* 占位符样式 */
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}

/* 提交按钮样式 */
.submit-btn {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 4px;
  background-color: #fe6719;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}

/*团队成员显示*/
/* 核心容器 - 强制一行3个+左对齐 关键样式 */
.contact_container_contact {
  display: flex;
  gap: 2rem; /* 卡片之间的间距，固定不变 */
  flex-wrap: wrap; /* 超出自动换行 */
  justify-content: flex-start; /* 核心属性：换行后内容靠左对齐 */
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact_container_contact {
  display: flex;
  gap: 2rem; /* 卡片之间的间距，固定不变 */
  flex-wrap: wrap; /* 超出自动换行 */
  justify-content: flex-start; /* PC端内容靠左对齐 */
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
  /* 兜底：容器最大宽度不超过页面宽度 */
  max-width: 100%;
}

/* 响应式布局 - 手机端（768px断点） */
@media (max-width:768px) {
  .contact_container_contact {
    /* 核心1：手机端改为垂直排列 */
    flex-direction: column;
    /* 垂直排列时，justify-content控制垂直方向对齐（保持原有逻辑） */
    justify-content: flex-start;
    /* 核心2：让子元素水平居中（flex布局关键属性） */
    align-items: center;
    max-width: 100%;
  }

  /* 关键：确保子元素居中且不超页面宽度 */
  .contact_container_contact > * {
    /* 子元素宽度贴合内容（居中效果更自然，而非占满整行） */
    width: fit-content;
    /* 兜底：子元素最大宽度不超过页面宽度 */
    max-width: 100%;
    /* 内容自动换行，避免横向溢出 */
    white-space: normal;
    box-sizing: border-box;
    /* 双重兜底：即使有样式干扰，仍保证水平居中 */
    margin-left: auto;
    margin-right: auto;
  }
  .contact_card_contact {
  width: 100% !important;
  flex-shrink: 0;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  /* 新增：过渡动画（控制放大的平滑度） */
 
  /* 新增：放大的原点为卡片中心（视觉更协调） */
  transform-origin: center center;
}
}

/* 单个联系人卡片 - 新增过渡+悬浮放大核心样式 */
.contact_card_contact {
  width: calc((100% - 4rem) / 3);
  flex-shrink: 0;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  /* 新增：过渡动画（控制放大的平滑度） */
 
  /* 新增：放大的原点为卡片中心（视觉更协调） */
  transform-origin: center center;
}

/* 新增：鼠标悬浮时 头像放大 */
.contact_img_contact:hover {
  transform: scale(1.08); /* 放大1.08倍（适度放大不夸张） */
  z-index: 10; /* 放大后覆盖其他卡片，避免重叠混乱 */
   transition: all 0.3s ease;
}

/* 头像样式 - 跟随卡片同步放大（无需额外设置，继承卡片的缩放） */
.contact_img_contact {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: 4px;
}
/* 头像样式 */
.contact_img_contact {
  width: auto;
  max-height: 322px;
  margin-bottom: 1rem;
  object-fit: cover;
}

/* 姓名样式 - 匹配原图粉色 */
.contact_name_contact {
  color: #e6007e;
  margin: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 300;
  font-family: "Lufga", Sans-serif;
}

/* 职位样式 - 底部粉色下划线 匹配原图 */
.contact_title_contact {
  color: #000000;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
  border-bottom: 2px solid #e6007e;
  padding-bottom: 0.5rem;
  font-style: italic;
}

/* 邮箱/电话通用样式 */
.contact_email_contact,
.contact_phone_contact {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  font-weight:600 ;
}

/* 联系方式链接样式 */
.contact_email_contact a,
.contact_phone_contact a {
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}
.contact_email_contact a:hover,
.contact_phone_contact a:hover {
  color: #e91e63;
}

.sponsor-handbook-bg-img_contact {
    position: absolute !important;
    top: 500px !important;
    left: 0 !important;
    width: 100vw !important;
    height: 400% !important;
    object-fit: cover !important;
    z-index: -3 !important;
    transition: transform 0.08s ease !important;
}


.banner-title_team{
   
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #e6007e;
    padding-bottom: 50px;
}

.content-title {
    color: #000000 !important;
    font-family: 'Lufga', Sans-serif;
    font-size: 40px !important ;
    font-weight: 300;
    padding-bottom: 1rem;
}
.content-title p {
    color: #000000 !important;
    font-family: 'Lufga', Sans-serif;
    font-size: 40px !important;
    font-weight: 500;
    /* 可选：重置p标签默认样式，避免干扰 */
    margin: 0;
    padding: 0;
    line-height: 1.2; /* 按需调整行高 */
    }
@media (max-width: 768px) {
.banner-title_team{
   
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #e6007e;
    padding-bottom: 90px;
    }
.content-title p {
    color: #000000 !important;
    font-family: 'Lufga', Sans-serif;
    font-size: 1.5rem !important;
    font-weight: 300;
    /* 可选：重置p标签默认样式，避免干扰 */
    margin: 0;
    padding: 0;
    line-height: 1.2; /* 按需调整行高 */
    }
    
.banner-title_forvisitors{
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #e6007e;
    padding-bottom: 50px;
}

.media-partners-title {
    color: #2d4059;
    font-family: 'Lufga', Sans-serif;
    font-size: 1.5rem !important ;
    font-weight: 300;
}

.photoes-title {
    color: #ffffff !important;
    font-family: 'Lufga', Sans-serif;
    font-size: 1.5rem !important ;
    font-weight: 300;
}
}

.assembly_title{
    width: 100%;
    height: 150px;
    background: #215968;
    text-align: center;
}
.assembly_title p{
    font-size: 40px;
    font-family: '微软雅黑';
    color: #ffffff;
    padding: 2.5rem 0;
}

/* 新闻列表整体样式 */
.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 1200px; /* 对应原w1200的宽度，可根据页面调整 */
    margin: 0 auto; /* 居中显示 */
}

/* 列表项 - 间距+边框分隔（可根据需求删边框） */
.news-list__item {
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}
/* 最后一项去掉下边框 */
.news-list__item:last-child {
    border-bottom: none;
}

/* 链接 - 块级布局，继承高度，取消下划线 */
.news-list__link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}
/* 鼠标悬浮轻微上浮+阴影，提升体验 */
.news-list__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* 列表项容器 - Flex布局（替换原浮动，无需清浮动） */
.news-list__container {
    display: flex;
    align-items: center;
    gap: 20px; /* 图和文字的间距，可调整 */
}

/* 新闻图片容器 */
.news-list__img {
    flex-shrink: 0; /* 图片不被挤压 */
    width: 220px; /* 图片宽度，可根据需求调整 */
    height: 150px; /* 保留原150px高度 */
    overflow: hidden; /* 裁剪图片超出部分 */
}
/* 图片自适应，保持比例 */
.news-list__img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 图片居中裁剪，不拉伸 */
    transition: transform 0.3s ease;
}
/* 悬浮图片轻微放大 */
.news-list__link:hover .news-list__img img {
    transform: scale(1.05);
}

/* 新闻文字内容容器 - 自动占满剩余宽度 */
.news-list__content {
    flex: 1;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 新闻标题 */
.news-list__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
    white-space: nowrap; /* 单行显示 */
    overflow: hidden; /* 溢出隐藏 */
    text-overflow: ellipsis; /* 超出显示省略号 */
}
.news-list__title span {
    color: #222;
}
.news-list__link:hover .news-list__title span {
    color: #0066cc; /* 悬浮标题变主色，可修改 */
}

/* 新闻简介 */
.news-list__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 限制3行，可调整 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* 时间/阅读数元信息 */
.news-list__meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}
/* 图标样式（原i1/i2），可配合字体图标/背景图使用 */
.news-list__meta .icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
/* 日期图标背景（可替换成你的图标地址） */
.icon-date {
    background-image: url("/static/icon/date.png");
}
/* 阅读数图标背景（可替换成你的图标地址） */
.icon-hits {
    background-image: url("/static/icon/hits.png");
}
/*新闻列表容器*/
.news-list_index{
    padding-top: 4rem;
}

/*分页样式*/
/* 分页容器样式 */
.pagination_page {
  display: flex;
  align-items: center;
  gap: 8px; /* 按钮之间的间距 */
  margin-bottom: 16px;
}

/* 分页按钮基础样式 */
.pagination_page a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: #ffffff;
  color: #75bd1d; /* 基础文字色用主题绿 */
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease; /* 过渡动画，交互更丝滑 */
  cursor: pointer;
}

/* 鼠标悬浮效果 */
.pagination_page a:hover:not(.active_page) {
  background-color: #f0f8e6; /* 浅绿背景，呼应主题色 */
  border-color: #75bd1d;
  color: #66a818;
}

/* 激活状态（当前选中）样式 - 用主题橙 */
.pagination_page a.active_page {
  background-color: #FE6719;
  color: #ffffff;
  border-color: #FE6719;
  font-weight: 500;
}

/* 禁用状态（可选，比如第一页时上一页/首页禁用） */
.pagination_page a.disabled_page {
  color: #cccccc;
  cursor: not-allowed;
  background-color: #fafafa;
  border-color: #e0e0e0;
}
.pagination_page a.disabled_page:hover {
  background-color: #fafafa;
  border-color: #e0e0e0;
  color: #cccccc;
}

/* 信息栏样式 */
.info_page {
  font-size: 14px;
  color: #666666;
  padding: 8px 16px;
  background-color: #ffffff;
  border-radius: 6px;
  border-left: 3px solid #75bd1d; /* 左侧绿边，强化主题 */
}

/* 响应式适配（小屏幕下按钮紧凑） */
@media (max-width: 480px) {
  .pagination_page a {
    padding: 6px 12px;
    font-size: 13px;
  }
  .info_page {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/*赞助商卡片样式*/
.sponsor-wrapper {
  display: flex;
  gap: 60px;
  padding-left:15rem ;
  font-family: Arial, sans-serif;
}

.sponsor-intro {
  max-width: 300px;
}

.sponsor-intro h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.sponsor-intro p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.btn-sponsor {
  background: #f2995a;
  color: #fff;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
}

.sponsor-groups {
  display: flex;
  gap: 32px;
  flex: 1;
}

.sponsor-group {
}

.sponsor-group h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.carousel {
  border-radius: 12px;
  border: 1px solid #ddd;
}

.track {
  display: flex;
  transition: transform 0.5s ease;
  height: 7.5rem;
}

.card_sponsor {
  width: 12.8rem;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card_sponsor img {
  max-width: 100%;
}

.dots {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

.dots span {
  width: 10px;
  height: 6px;
  background: #f2c7aa;
  border-radius: 4px;
  cursor: pointer;
}

.dots span.active {
  width: 24px;
  background: #f2995a;
}
.container-featured-content_index_exhibitor{
        display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 70px;
    padding-bottom: 70px;
}
