* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
a {
    text-decoration: none;
    color: #333;
}
img {
    max-width: 100%;
    height: auto;
}

/* 核心样式：头部悬浮在轮播图上方 */
.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0));
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}
/* 电脑端文字白色 */
@media (min-width: 769px) {
    .logo-text h1,
    .logo-text p,
    .main-nav a {
        color: #fff !important;
    }
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
    width: 50px;
    height: 50px;
}
.logo-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	padding-left:50px
}
.logo-text h1 {
    font-size: 20px;
    color: #333;
}
.logo-text p {
    font-size: 12px;
    color: #666;
}
.right-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.top-tools {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-tools button {
    padding: 3px 8px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 12px;
}
.top-tools input {
    height: 24px;
    width: 150px;
    border: 1px solid #ccc;
    padding: 0 6px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.main-nav a {
    font-size: 15px;
    white-space: nowrap;
}
.main-nav a:hover {
    color: #c00;
}
.menu-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #C00;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}
.mobile-nav-list li a {
    color: #fff;
}
.mobile-close {
    color: #fff;
}
.mobile-menu.show {
    transform: translateX(0);
}
.mobile-menu-mask.show {
    display: block;
}
.mobile-close {
    text-align: right;
    font-size: 28px;
    cursor: pointer;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}
.mobile-nav-list {
    list-style: none;
}
.mobile-nav-list li {
    border-bottom: 1px solid #f0f0f0;
}
.mobile-nav-list li a {
    display: block;
    padding: 14px 10px;
    font-size: 16px;
    color: #333;
}
.mobile-nav-list li a:hover {
    color: #000;
}

/* 顶部全屏轮播 banner */
.slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #000;
}
@media (min-width: 768px) {
    .slider {
        height: 100vh;
    }
}
@media (max-width: 767px) {
    .slider {
        height: 320px;
    }
}

.slider-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s ease;
}
.slider-wrap img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

/* 细长条轮播指示器 */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 99;
}
.indicator {
    width: 2px !important;
    height: 16px !important;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}
.indicator.active {
    background: #fff !important;
    height: 24px !important;
    width: 2px !important;
}

.intro-section {
     position: relative;
            width: 100%;
            padding: 80px 30px 60px;
            background: url("../images_2026/jjbj.jpg") no-repeat ;
            background-size:  cover  ;
            z-index: 5;
}
.intro-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.intro-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.intro-text {
    flex: 1;
    padding: 40px 0;
}
.intro-text h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}
.intro-text p {
    line-height: 1.8;
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.intro-cards {
    flex: 0 0 380px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0;
    position: relative;
    margin-top: -60px;
}
.card {
    padding: 30px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card.light {
    background: #f0f0f0;
    color: #333;
}
.card.blue {
    background: #3498db;
}
.card.gray {
    background: #666;
}
.card.orange {
    background: #e67e22;
}
.card.yellow {
    background: #f1c40f;
    color: #333;
}
.card .num {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}
.card .label {
    font-size: 14px;
}
.card.highlight {
    background: #fff;
    color: #3498db;
    border: 1px solid #eee;
}

.card:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; margin-top:-40px; }
.card:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; margin-top:20px; }
.card:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 2; margin-top:20px; }
.card:nth-child(4) { grid-column: 1 / 2; grid-row: 2 / 3; }
.card:nth-child(5) { grid-column: 2 / 3; grid-row: 2 / 3; }
.card:nth-child(6) { grid-column: 3 / 4; grid-row: 2 / 3; }
.card:nth-child(7) { grid-column: 1 / 2; grid-row: 3 / 4; margin-bottom:40px; }
.card:nth-child(8) { grid-column: 2 / 3; grid-row: 3 / 4; }

.news-section {
    width: 100%;
    padding: 80px 20px;
    background: #fff;
}
.page-header {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.page-logo {
    width: 80px;
    height: 80px;
    background: url('../images_2026/logo2.png') no-repeat center;
    background-size: contain;
    margin-right: 20px;
}
.header-text h1 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
}
.header-text p {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
	 font-style: italic;
}
.main-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    gap: 30px;
}
.left-nav {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 450px;
}
.nav-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}
.nav-list {
    list-style: none;
    flex-grow: 1;
}
.nav-item {
    margin-bottom: 24px;
}
.nav-item a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
}
.nav-item a:hover {
    color: #333;
}
.nav-list .nav-item.active {
   font-size: 24px !important;
    font-weight: bold !important;
    color: #333 !important;
}
.nav-list .nav-item.active a {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #333 !important;
}
.pagination {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}
.pagination-line {
    flex-grow: 1;
    height: 2px;
    background: #ddd;
    position: relative;
    overflow: hidden;
}
.pagination-line .progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #333;
    width: 20%;
    transition: width 0.4s ease;
}
.pagination-text {
    font-size: 14px;
    color: #666;
    margin-left: 0;
}

.news-carousel {
    flex: 1;
    min-width: 300px;
    display: flex;
    height: 450px;
    overflow: visible !important;
    position: relative;
    background-color: #555;
}
.carousel-left {
    width: 55%;
    background-color: #f0f0f0;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.carousel-info {
    color: #666;
}
.carousel-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}
.carousel-date {
    font-size: 14px;
    color: #666;
}
.carousel-img-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.carousel-img {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
    display: none;
}
.carousel-img.active {
    display: block;
}
.more-btn {
    width: fit-content;
    padding: 8px 20px;
    background-color: #555;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color .3s;
}
.more-btn:hover { background-color: #333; }

.carousel-right {
    width: 45%;
    background-color: #555;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 8px 20px 35px 20px;
    overflow: visible !important;

}
/* 首页新闻项（保留原样式，加前缀隔离） */
.carousel-right .news-item {
    padding: 15px 0 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    overflow: visible !important;
    height: 86px;
}
.carousel-right .news-item:last-child { 
    border-bottom: none; 
    padding-bottom: 0;
}
.carousel-right .news-item.active {
    background-color: rgba(255,255,255,0.1);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}
.news-item:hover {
    background-color: rgba(255,255,255,0.1);
    margin: 0 -30px;
    padding-left: 10px;
    padding-right: 20px;
}

.news-left {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.carousel-right .news-title {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
}
.carousel-right .news-title::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: rotate(135deg);
    flex-shrink: 0;
    display: block;
}

.carousel-right .news-desc {
    font-size: 12px;
    color: #ddd;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95%;
}

.news-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    flex-shrink: 0;
    height: 100%;
    overflow: visible;
}
.carousel-right .news-date {
    font-size: 12px;
    color: #ddd;
    white-space: nowrap;
    line-height: 1.5;
    margin-top: 2px;
    margin-bottom: 18px;
    display: block;
}
.news-link {
    width: 24px;
    height: 2px;
    background: #fff;
    position: relative;
    cursor: pointer;
    opacity: .7;
    transition: opacity .3s;
    display: block;
}
.news-link::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.news-link:hover { opacity: 1; }


.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.3);
    cursor: pointer;
    transition: background-color .3s;
}
.carousel-dot.active { background-color: #fff; }

.share-btn {
    position: absolute;
    top: -100px;
    right: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    font-size: 18px;
    z-index: 10;
}

/* --- 线上展厅部分修改 --- */
.online-exhibition {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;

}
.online-exhibition-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images_2026/bj2.png") center top no-repeat;
    background-size: 100%;
    z-index: 1;
}
.top-banner {
    width: 100%;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    z-index: 2;
}
.banner-header {
    display: flex;
    align-items: center;
    gap: 18px;
}
.top-banner .page-logo {
    width: 70px;
    height: 70px;
    background: url('../images_2026/logo2.png') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}
.banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.top-banner h1 {
    font-size: 32px;
    font-weight: normal;
    margin: 0 0 5px 0;
    line-height: 1.2;
}
.top-banner p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin: 0;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: -80px auto 0;
    padding: 0 20px 60px;
    position: relative;
    z-index: 2;
}
.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: max-content;
}
.exhi-card {
    width: 270px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
}
.exhi-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.exhi-card-bottom {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.exhi-card-text {
    font-size: 14px;
    color: #333;
}
.exhi-more-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}
.carousel-controls {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: center;
}
.arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}
.arrow:hover {
    background: #333;
    color: #fff;
}
/* 弹窗样式（已修复：电脑端正常 + 手机端变小） */
.modal-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-box {
    width: 600px;
    max-width: 90%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    /* 核心：限制最大高度，避免撑满屏幕 */
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}
.modal-img {
    width: 100%;
    height: auto;
    max-height: 38vh;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.modal-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    padding: 0 5px;
    /* 文字区域可滚动 */
    overflow-y: auto;
}
.close-btn {
    margin-top: 12px;
    width: 100px;
    height: 36px;
    background: #1E40AF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: center;
    flex-shrink: 0;
}

/* 国际交流板块 */
.exchange-section {
    width: 100%;
    background: url("../images_2026/bj3.png") center center no-repeat;
    background-size: cover;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}
.exchange-section > * {
    position: relative;
    z-index: 1;
}
.exchange-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap:20px;
}
.exchange-title {
    display: flex;
    align-items: center;
    gap: 15px;
}
.exchange-icon {
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23999" d="M50,10 C70,10 85,25 85,45 C85,65 70,80 50,80 C30,80 15,65 15,45 C15,25 30,10 50,10 Z"/></svg>') no-repeat center;
    background-size: contain;
}
.exchange-title h2 {
    font-size: 28px;
    color: #333;
}
.exchange-title p {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
	font-style:italic
}
.exchange-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.exchange-tab {
    padding: 10px 20px;
    border: 1px solid #999;
    border-radius: 4px;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-size: 14px;
}
.exchange-tab.active {
    background: #333;
    color: #fff;
    border-color: #333;
}
.carousel-group {
    display: none;
}
.carousel-group.show {
    display: block;
}
.exchange-section .carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
}
.exchange-section .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    padding: 0;
    margin: 0;
    width: max-content;
}
.exchange-section .carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 380px;
    padding: 0 10px;
}
.exchange-section .carousel-card {
    height: 260px;
    background: #ffffff !important;
    border-radius: 10px !important;
    padding: 30px 25px !important;
    color: #333 !important;
    display: flex;
    gap: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.exchange-section .carousel-card.active {
    background: #666 !important;
    color: #fff !important;
    box-shadow: none !important;
    position: relative;
    border-radius: 10px !important;
}
.exchange-section .carousel-card.active::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #fff;
    border-radius: 6px;
    pointer-events: none;
}
.date-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.date-col .date {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}
.date-col .day {
    font-size: 48px;
    font-weight: bold;
}
.content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content-col .title {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding-bottom: 10px;
}
.carousel-card.active .content-col .title {
    border-color: rgba(255,255,255,0.3);
}
.content-col .desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.content-col .more {
    font-size: 14px;
    color: inherit;
    text-decoration: none;
    display: inline-block;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
}
.prev-arrow { left: 20px; }
.next-arrow { right: 20px; }
.carousel-arrow:hover { background: #333; }
.indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.dot {
    width: 12px;
    height: 4px;
    background: rgba(0,0,0,0.2);
    border-radius: 2px;
    cursor: pointer;
}
.dot.active {
    background: #333;
}

footer {
    background: #33373B;
    color: #ccc;
    padding: 40px 0;
    margin-top: 0;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.footer-divider {
    width: 1px;
    height: auto;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
    margin: 0 10px;
}
.footer-left {
    flex: 1 1 250px;
    max-width: 100%;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo img {
	width:100%
}
.footer-logo-text h3 {
    color: #fff;
    font-size: 22px;
}
.footer-logo-text p {
    font-size: 12px;
    color: #aaa;
    border-top: 1px solid #555;
    padding-top: 5px;
}
.footer-left p {
    line-height: 1.8;
    font-size: 14px;
}
.footer-nav, .footer-contact, .footer-qrcode {
    flex: 1 1 200px;
    margin-top:20px;
}
.footer-nav h4, .footer-contact h4, .footer-qrcode h4 {
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}
.footer-nav h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: #fff;
}
.footer-nav ul {
    list-style: none;
}
.footer-nav li {
    margin-bottom: 12px;
}
.footer-nav a {
    color: #ccc;
    font-size: 14px;
}
.footer-nav li:hover a {
    font-size: 20px !important;
    font-weight: bold !important;
    color: #fff; /* 可选，让颜色更突出 */
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}
.contact-item .phone {
    color: #4cd964;
    font-size: 22px;
    font-weight: bold;
}
.qrcode-box {
    width: 100px;
    height: 100px;
    background: #fff;
}
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #555;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #aaa;
    padding: 20px 30px 0;
    flex-wrap: wrap;
    gap:10px;
    text-align:center;
}

/* ========== 【列表页专属：加前缀 .list- 彻底隔离，零冲突】 ========== */
/* 二级导航栏 */
.list-sub-nav {
    background: #f0f0f0;
    padding: 12px 5%;
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: #333;
}
.list-sub-nav-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.list-sub-nav-item.active {
    color: #0066cc;
}
/* 内容区域 */
.list-content {
    padding: 30px 5%;
    background: #e9e9e9;
}
.list-news-list {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.list-news-item {
    display: flex;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    gap: 20px;
}
.list-news-item:last-child {
    border-bottom: none;
}
.list-news-img {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
}
.list-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.list-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.list-news-title {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
}
.list-news-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}
.list-news-btn {
    align-self: flex-start;
    padding: 6px 18px;
    background: #ccc;
    color: #333;
    border: none;
    border-radius: 2px;
    font-size: 12px;
    cursor: pointer;
}
/* 分页 */
.list-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    background: #fff;
}
.list-pagination button {
    padding: 4px 8px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
}
.list-pagination button.current {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
}
/* 移动端列表 */
@media (max-width: 768px) {
    .list-news-item {
        flex-direction: column;
        padding: 20px;
    }
    .list-news-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* 悬浮在线客服按钮 */
.floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4cd964;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}
.floating-button:hover {
    background-color: #3bc053;
    transform: translateY(-2px);
}
.button-icon {
    font-size: 20px;
}
.button-text {
    font-weight: bold;
}
.chat-popup {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background-color: #f1f1f1;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 320px;
    z-index: 1001;
    display: none;
    flex-direction: column;
}
.chat-header {
    background-color: #4cd964;
    color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-title {
    font-weight: bold;
    font-size: 16px;
}
.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
.close-btn:hover {
    color: #ffd700;
}
.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background-color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.message {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
}
.bot-message {
    align-self: flex-start;
    background-color: #f1f1f1;
    color: #333;
}
.user-message {
    align-self: flex-end;
    background-color: #4cd964;
    color: white;
}
.chat-input {
    display: flex;
    padding: 10px;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
}
.chat-input input {
    flex-grow: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 8px;
    outline: none;
}
.chat-input input:focus {
    border-color: #4cd964;
}
.chat-input button {
    background-color: #4cd964;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.chat-input button:hover {
    background-color: #3bc053;
}

/* 响应式样式 */
@media (min-width: 769px) {
    .exhi-card {
        width: 270px;
    }
}
@media (max-width: 768px) {
    .header{
        padding:10px 15px;
        background: #C00;
        position: relative;
    }
	.online-exhibition .carousel-controls {
        gap: 30px;
        margin-top: 20px;
    }
    .logo-text h1,
    .logo-text p {
        color: #fff !important;
    }
    .top-tools, .main-nav { 
        display: none !important; 
    }
    .menu-btn { 
        display: block !important; 
        color: #fff; 
    }

    .intro-section {
        padding: 40px 15px;
    }
    .intro-container {
        flex-direction: column;
    }
    .intro-cards {
        flex: none;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 10px;
        margin-top: 20px;
    }
    .intro-cards .card {
        grid-column: auto !important;
        grid-row: auto !important;
        margin: 0 !important;
        padding: 20px 15px !important;
    }

    .news-section{
        padding: 40px 15px;
    }
    .page-header{
        margin-bottom: 20px;
    }
    .main-container{
        flex-direction: column;
        gap: 0;
    }
    .left-nav{
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .nav-list{
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .nav-item{
        margin-bottom: 0;
    }
    .pagination{
        display: none !important;
    }

    .carousel-left,
    .carousel-img-wrap,
    .share-btn,
    .more-btn {
        display: none !important;
    }

    .news-carousel {
        background: transparent !important;
    }

    .carousel-right {
        width: 100% !important;
        background: transparent !important;
        padding: 0 !important;
        height: auto !important;
    }
    .carousel-right .news-item {
        padding: 12px 0 !important;
        border-bottom: 1px solid #eee !important;
        display: flex !important;
        align-items: center !important;
        height: auto !important;
        background: transparent !important;
        margin: 0 !important;
    }
    .carousel-right .news-item.active {
        background: transparent !important;
        padding: 12px 0 !important;
    }
    .carousel-right .news-title {
        font-size: 15px !important;
        color: #333 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
    }
    .carousel-right .news-title::before {
        display: none !important;
    }
    .carousel-right .news-desc,
    .carousel-right .news-link {
        display: none !important;
    }
    .carousel-right .news-date {
        font-size: 12px !important;
        color: #999 !important;
        white-space: nowrap;
        margin-left: 10px;
    }

    .top-banner {
        height: 240px;
    }
    .top-banner h1 {
        font-size: 24px;
    }
    .exhi-card {
        width: calc(50vw - 60px) !important;
    }
    .container {
        margin-top: -40px;
    }

    .exchange-header{
        padding:0 15px;
    }
    .exchange-title h2{
        font-size:22px;
    }
    .exchange-icon{
        width:60px;
        height:60px;
    }
    .exchange-section .carousel-item{
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0;
    }
    .exchange-section .carousel-card{
        height:auto;
        flex-direction:column;
        gap:15px;
        padding:20px !important;
    }
    .date-col .day{
        font-size:36px;
    }
    .exchange-section .carousel-wrapper{
        padding: 0 15px;
        overflow: hidden;
        position: relative;
    }
    .exchange-section .carousel-track{
        margin: 0;
        width: max-content;
    }
    .exchange-section .carousel-arrow.prev-arrow {
        left: 25px;
    }
    .exchange-section .carousel-arrow.next-arrow {
        right: 25px;
    }

    /* 列表页移动端适配 */
    .list-content {
        padding: 20px 15px;
    }
    .list-news-item {
        flex-direction: column;
        padding: 20px;
    }
    .list-news-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    /* 手机端页脚精简优化 */
    .footer-container,
    .footer-nav,
    .footer-contact,
    .footer-qrcode,
    .footer-divider,
    .footer-left {
        display: none !important;
    }
    footer {
        padding: 20px 15px !important;
        background: #33373B !important;
    }
    .footer-bottom {
        margin: 0 auto !important;
        padding: 0 !important;
        border-top: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        text-align: center !important;
        font-size: 13px !important;
    }

    .exchange-section .carousel-card.active::after {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 4px;
    }
    .date-col .day {
        font-size: 32px !important;
    }
    .content-col .title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    .content-col .desc {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    .exchange-section .carousel-arrow.prev-arrow {
        left: 10px !important;
    }
    .exchange-section .carousel-arrow.next-arrow {
        right: 10px !important;
    }
    .exchange-header {
        padding: 0 15px !important;
    }
	.exchange-section .carousel-wrapper {
  overflow: hidden !important;
  width:100% !important;
}
.exchange-section .carousel-track {
  display: flex !important;
  width: 47% !important;
  flex-wrap: nowrap !important;
  transition: transform 0.5s ease !important;
}
.exchange-section .carousel-item {
  flex: 0 0 100% !important;
  width: 100% !important;
  padding: 0 !important;
}
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    gap: 15px;
}
.contact-item .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-top: 5px;
}
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-nav > a,
.main-nav > .nav-item.has-sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 16px;
    margin: 0;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}
.nav-item.has-sub .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 80px;
    background: #2a4996;
    padding: 8px 0;
    margin: 0;
    display: none;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-item.has-sub:hover .submenu {
    display: block;
}
.submenu li {
    list-style: none;
}
.submenu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}
.submenu li a:hover {
    background: #1a3678;
}
.mobile-has-sub {
    position: relative;
}
.mobile-has-sub > a::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s ease;
}
.mobile-has-sub.open > a::after {
    transform: rotate(180deg);
}
.mobile-submenu {
    display: none;
    padding-left: 25px;
    background: #f5f5f5;
}
.mobile-has-sub.open .mobile-submenu {
    display: block;
}

/* 线上展厅卡片 完全对标行业应用样式 */
.exhi-card {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    padding: 0;
}
/* 顶部两个颜色层 */
.exhi-card .color-bar-top {
    height: 12px;
    background: #f0f0f0;
}
.exhi-card .color-bar-bottom {
    height: 8px;
    background: #ffffff;
}
/* 图片：上下左右留白边距，不贴边 */
.exhi-card-img {
    width: calc(100% - 30px);
    margin: 15px;
    border-radius: 4px;
    display: block;
}
/* 底部文字区域 */
.exhi-card-bottom {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}
.exhi-card-text {
    font-size: 18px;
    font-weight: 500;
    color: #333;
}
.exhi-more-btn {
    /* 强制宽高，不被其他样式覆盖 */
    width: 36px !important;
    height: 36px !important;
    /* 确保是正方形，不受padding/border影响 */
    box-sizing: border-box;
    /* 强制圆形 */
    border-radius: 50% !important;
    /* 禁止被flex拉伸 */
    flex: 0 0 36px !important;
    /* 居中对齐 */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}
/* hover 整体变色，对标行业应用选中样式 */
.exhi-card:hover {
    background-color: #008080; /* 深青绿色，和示例一致 */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.exhi-card:hover .color-bar-top {
    background: #007070;
}
.exhi-card:hover .color-bar-bottom {
    background: #008080;
}
.exhi-card:hover .exhi-card-text {
    color: #fff;
}
.exhi-card:hover .exhi-more-btn {
    border-color: #fff;
    color: #fff;
}
.exhi-card:hover .exhi-card-bottom {
    border-top-color: rgba(255,255,255,0.2);
}

/* ========== 国际交流卡片核心样式（修复hover） ========== */
.carousel-card {
    background: #6c8086; /* 普通卡片默认背景 */
    border-radius: 8px;
    padding: 30px 25px;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
    min-width: 320px;
}
/* 普通卡片 hover 变色 */
.carousel-item:not(.center-item) .carousel-card:hover {
    background: #4a5c61 !important;
}
/* 中间卡片样式：上移+更深背景 */
.carousel-item.center-item .carousel-card {
    background: #405257;
    transform: translateY(-15px);
}
/* 中间卡片 hover 不变化 */
.carousel-item.center-item .carousel-card:hover {
    background: #405257 !important;
}

.date-col .date {
    font-size: 16px;
    opacity: 0.8;
}
.date-col .day {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
}
.content-col .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.content-col .desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.6;
}
.content-col .more {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}
.content-col .more:hover {
    opacity: 1;
}

/*adminbuyIdx_News 开始*/
.clear:after { display:block; overflow:hidden; clear:both; height:0; visibility:hidden; content:".";}

.adminbuyIdx_News { width:100%; height:auto; overflow:hidden; margin:0 auto; padding:80px 0 50px; 
background: url("../images_2026/bj3.png") center center no-repeat;
    background-size: cover;
 
 position:relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.adminbuyIdx_News .adminbuyIdxNews_Top { width:100%; max-width:74%; height:auto; margin:0 auto 40px; padding:0; position:relative;}
.adminbuyIdxNews_Top .adminbuyIdx_Title1 { width:50%; margin:0;}

.adminbuyIdxNews_Tab { height:50px; position:absolute; right:0; top:30px; z-index:2;}
.adminbuyIdxNews_Tab ul li { display:inline-block; width:auto; height:50px; overflow:hidden; line-height:48px; color:#333; font-size:16px; background-color:none; border:1px solid #333; border-radius:6px; margin:0 0 0 26px; padding:0 30px; cursor:pointer; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.adminbuyIdxNews_Tab ul li.NwCur, .adminbuyIdxNews_Tab ul li:hover { color:#fff; background-color:#626262; border:1px solid #626262;}

.adminbuyIdx_News .adminbuyIdxNews_List { width:100%; height:auto; min-height:320px; margin:0 auto; padding:0;}
.adminbuyIdxNews_List .swiper-container { width:100%; height:auto; overflow:hidden; margin:0 auto; padding:15px 0 50px; position:relative;}
.adminbuyIdxNews_List .swiper-container .swiper-slide { margin:0; padding:15px; background-color:#fff; border-radius:6px; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.adminbuyIdxNews_List .swiper-container .swiper-slide-active, .adminbuyIdxNews_List .swiper-container .swiper-slide:hover { margin-top:-15px; background-color:#626262;}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con { width:100%; height:auto; margin:0 auto; padding:30px; border:1px solid rgba(255,255,255,0.45); border-radius:6px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Time { width:70px; height:auto; margin:0; padding:0; float:left;}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Time span { display:block; width:100%; height:auto; line-height:20px; color:#999; font-size:16px; text-align:center; margin:0 auto; padding:5px 0; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Time p { display:block; width:100%; height:auto; line-height:50px; color:#999; font-size:48px; text-align:center; margin:0 auto; padding:0; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.adminbuyIdxNews_List .swiper-container .swiper-slide-active .adminbuyIdxNews_Con .adminbuyIdxNews_Time span, .adminbuyIdxNews_List .swiper-container .swiper-slide-active .adminbuyIdxNews_Con .adminbuyIdxNews_Time p, .adminbuyIdxNews_List .swiper-container .swiper-slide:hover .adminbuyIdxNews_Con .adminbuyIdxNews_Time span, .adminbuyIdxNews_List .swiper-container .swiper-slide:hover .adminbuyIdxNews_Con .adminbuyIdxNews_Time p { color:#fff;}

.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Text { width:calc(100% - 100px); width:-webkit-calc(100% - 100px); width:-moz-calc(100% - 100px); width:-o-calc(100% - 100px); height:auto; margin:0; padding:0; float:right;}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewName { display:block; width:100%; height:30px; overflow:hidden; line-height:30px; color:#333; font-size:18px; font-weight:bold; white-space:nowrap; text-overflow:ellipsis; margin:0 auto; padding:0; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.adminbuyIdxNews_List .swiper-container .swiper-slide-active .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewName, .adminbuyIdxNews_List .swiper-container .swiper-slide:hover .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewName { color:#fff;}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Text em { display:block; width:30px; height:2px; overflow:hidden; margin:10px 0 0; padding:0; background-color:#00838A; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.adminbuyIdxNews_List .swiper-container .swiper-slide-active .adminbuyIdxNews_Con .adminbuyIdxNews_Text em, .adminbuyIdxNews_List .swiper-container .swiper-slide:hover .adminbuyIdxNews_Con .adminbuyIdxNews_Text em { background-color:#fff;}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Text p { width:100%; height:90px; overflow:hidden; line-height:30px; color:#666; font-size:16px; text-align:justify; word-break:break-all; margin:20px auto 30px; padding:0; display:-webkit-box; text-overflow:ellipsis; -webkit-line-clamp:3; -webkit-box-orient:vertical; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.adminbuyIdxNews_List .swiper-container .swiper-slide-active .adminbuyIdxNews_Con .adminbuyIdxNews_Text p, .adminbuyIdxNews_List .swiper-container .swiper-slide:hover .adminbuyIdxNews_Con .adminbuyIdxNews_Text p { color:rgba(255,255,255,0.7);}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewMore { display:block; width:auto; height:30px; overflow:hidden; line-height:30px; color:#333; font-size:16px; margin:0; padding:0; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewMore i { display:inline-block; width:30px; height:30px; overflow:hidden; margin:0 0 0 10px; padding:0; vertical-align:middle; background:url(../images/jt01.png) center center no-repeat; background-size:100% 100%; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.adminbuyIdxNews_List .swiper-container .swiper-slide-active .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewMore, .adminbuyIdxNews_List .swiper-container .swiper-slide:hover .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewMore { color:#fff;}
.adminbuyIdxNews_List .swiper-container .swiper-slide-active .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewMore i, .adminbuyIdxNews_List .swiper-container .swiper-slide:hover .adminbuyIdxNews_Con .adminbuyIdxNews_Text a.NewMore i { margin:0 0 0 20px; background:url(../images/jt02.png) center center no-repeat; background-size:100% 100%;}

.adminbuyIdxNews_More { width:165px; height:auto; position:absolute; top:110px; left:calc(50% + 635px);}
.adminbuyIdxNews_More a { display:block; width:100%; height:50px; overflow:hidden; line-height:48px; color:#333; font-size:16px; text-align:center; background-color:none; border:1px solid #ddd; border-radius:6px; margin:0; padding:0; float:right; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
.adminbuyIdxNews_More a i { display:inline-block; width:30px; height:30px; overflow:hidden; margin:0 0 0 10px; padding:0; vertical-align:middle; background:url(../images/jt01.png) center center no-repeat; background-size:100% 100%;}
.adminbuyIdxNews_More a:hover { color:#fff; background-color:#00838A; border:1px solid #00838A;}
.adminbuyIdxNews_More a:hover i { background:url(../images/jt02.png) center center no-repeat; background-size:100% 100%;}
/*分页器*/
.adminbuyIdxNews_List .swiper-container .swiper-pagination { width:100%; height:auto; overflow:hidden; margin:0; padding:0; left:0; bottom:0!important;}
.adminbuyIdxNews_List .swiper-container .swiper-pagination .swiper-pagination-bullet { width:12px; height:6px; opacity:1; background-color: #dfdfdf; margin:0 5px; border-radius:3px; transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s;}
.adminbuyIdxNews_List .swiper-container .swiper-pagination .swiper-pagination-bullet-active { width:24px; background-color: #626262;}

/*设置滚动条样式*/
#c_detail_wrap #new-div::-webkit-scrollbar {height:2px;}/* 滚动槽 */
#c_detail_wrap #new-div::-webkit-scrollbar-track {background-color:#f0f0f0;border-radius:0px;}/* 滚动条滑块 */
#c_detail_wrap #new-div::-webkit-scrollbar-thumb {background-color:#bfbfbf;}
#c_detail_wrap #new-div::-webkit-scrollbar-thumb:window-inactive {background-color:#3c3c3c;}

/* 完整手机端响应式适配 */
@media (max-width:880px) {
    #c_detail_wrap img,#c_detail_wrap p,#c_detail_wrap span,#c_detail_wrap div,#c_detail_wrap video,#c_detail_wrap embed{width:auto !important;height:auto !important;max-width:100% !important;max-height: 100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;white-space:normal;word-break:break-all;word-break: normal;}

    /* 国际交流板块顶部适配 */
    .adminbuyIdx_News .adminbuyIdxNews_Top {
        max-width:92%;
    }
    .exchange-title {
        width:100%;
    }
    .adminbuyIdxNews_Top .adminbuyIdx_Title1 {
        width:100%;
    }
    /* 标签栏手机端完全适配 */
    .adminbuyIdxNews_Tab {
        position:relative;
        right:auto;
        top:auto;
        margin-top:15px;
    }
    .adminbuyIdxNews_Tab ul li {
        height:36px;
        line-height:34px;
        font-size:13px;
        padding:0 15px;
    }
    /* 轮播卡片内边距缩小 */
    .adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con {
        padding:20px 15px;
    }
    /* 时间模块手机端适配 */
    .adminbuyIdxNews_List .swiper-container .swiper-slide .adminbuyIdxNews_Con .adminbuyIdxNews_Time p {
        font-size:36px;
    }
}

/* 线上展厅图片hover放大 */
.exhi-card-img {
    
    object-fit: cover;
    transition: transform 0.3s ease;
}
.exhi-card:hover .exhi-card-img {
    transform: scale(1.05);
}

/* 新闻轮播图hover放大 */
.carousel-img-wrap {
    overflow: hidden; /* 隐藏放大溢出部分 */
}
.carousel-img-wrap img {
    width: 100%;
    transition: transform 0.3s ease;
}
.carousel-img-wrap:hover img {
    transform: scale(1.03);
}