/* ========================= 共用 ========================= */
body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

h2,
h3 {
    font-weight: 600;
    color: #1e2e0b;
    /* 深墨绿色，突出标题重�?*/
}

#cases h2 {
    /* font-size: 2.5rem; 48px */
    color: #1e2e0b;
    /* 深墨绿色，突出标题重�?*/
}

.case-item {
    width: 100%;
    /* 稍微缩小卡片宽度 */
    margin: 0 auto;
    /* 居中 */
    height: auto;
    overflow: hidden;
    /* 隐藏溢出内容 */
}

.case-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* 保持图片比例，适应容器 */
    display: block;
}

/* ========================= 公司简介板块样�?========================= */
#intro {
    background: #f5f5f5;
    padding: 80px 0;
    position: relative;
}

#intro .container {
    max-width: 1200px;
}

/* GLOBAL SERVICE 标题样式 */
.global-service-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.green-e {
    color: #146fc8;
}

/* 介绍文字样式 */
.intro-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

/* more链接样式 */
.more-link {
    text-align: right;
    margin-top: 1rem;
}

.more-link a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.more-link a:hover {
    color: #146fc8;
}

/* 统计数据容器 */
.stats-container {
    position: relative;
}

/* 统计数据�?*/
.stats-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

/* 单个统计�?*/
.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.stat-unit {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    display: inline;
    margin-left: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* 世界地图样式 */
.world-map {
    text-align: center;
    margin-top: 1rem;
}

.world-map img {
    max-width: 100%;
    height: auto;
}

/* 服务亮点样式 */
.service-highlights {
    background: rgba(74, 109, 124, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #4A6D7C;
}

.service-highlights h5 {
    color: #4A6D7C;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(74, 109, 124, 0.1);
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.service-item strong {
    color: #070902;
    font-weight: 600;
}

/* ========================= 顶部导航 ========================= */
.navbar {
    padding: 1rem 0 !important;
    min-height: 80px;
}

.navbar-brand {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 100%;
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    justify-content: center;
}

.navbar-nav .nav-link {
    padding: 1rem 1rem;
    font-size: 18px;
    color: #000 !important;
    margin-left: 1rem;
}

/* 鼠标悬停时的样式 */
.navbar-nav .nav-link:hover {
    color: #000 !important;
}

/* 活跃状态的样式 */
.navbar-nav .nav-link.active {
    color: #000 !important;
}

/* 悬停显示 dropdown (Bootstrap 默认需点击) */
.nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

/* ========================= 轮播�?========================= */
#hero .carousel-item {
    position: relative;
}

#hero .carousel-item::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

#hero .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 全球展会页轮播，保持与首页一致的显示比例与裁切，确保动态加载后尺寸稳定 */
#expo-carousel .carousel-item {
    position: relative;
}

#expo-carousel .carousel-item::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

#expo-carousel .carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 覆盖高度以回到之前的视觉：桌面 40vh，移动 30vh；禁用比例填充 */
#expo-carousel .carousel-item::before {
    padding-top: 0; /* 覆盖前面的 56.25% 比例，避免高度过大 */
}

/* 统一非首页 Banner 高度为 50vh */
#expo-carousel .carousel-item {
  height: 50vh;
}

/* 隐藏 Banner 轮播左右箭头（首页与全球展会） */
#hero .carousel-control-prev,
#hero .carousel-control-next,
#expo-carousel .carousel-control-prev,
#expo-carousel .carousel-control-next {
  display: none !important;
}

.carousel-item {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.carousel-inner {
    padding-bottom: 0 !important;
}

#hero {
    margin-bottom: 0 !important;
}

/* 覆盖Bootstrap py-5 */
section#intro.py-5 {
    padding-top: 80px !important;
    margin-top: 0 !important;
}

@media (max-width: 767.98px) {
    #hero {
        margin-bottom: 0 !important;
    }

    #intro {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    section#intro.py-5 {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    #intro .container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    #intro .row {
        margin-top: 0 !important;
    }

    .py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* ========================= 案例 ========================= */
.case-item {
    position: relative;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 图片容器统一高度 */
.case-item .image-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.case-item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 标题在容器下方 */
.case-item .case-title {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.case-item .case-title h5 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.case-item:hover .case-title h5 {
    color: #146fc8;
}

/* 中等屏幕优化 */
@media (max-width: 992px) {
    .case-item .image-container {
        height: 240px;
    }

    .case-item .case-title {
        padding: 18px;
    }

    .case-item .case-title h5 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    #cases .row {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }

    .case-item {
        margin-bottom: 1rem;
    }

    .case-item .image-container {
        height: 200px;
    }

    .case-item .case-title {
        padding: 15px;
        border-top: 1px solid #f0f0f0;
    }

    .case-item .case-title h5 {
        font-size: 14px;
    }
}

.event-list .card {
    height: 400px;
    /* 固定卡片高度 */
    overflow: hidden;
    /* 隐藏溢出内容 */
    display: flex;
    flex-direction: column;
}

.event-list .card-img-top {
    width: 100%;
    height: 160px;
    /* 固定图片高度 */
    object-fit: contain;
    /* 保持图片比例，适应容器 */
    padding: 15px;
    /* 图片内边�?*/
    flex-shrink: 0;
}

.event-list .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 1rem;
}

.event-list .card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-list .card-info {
    margin-bottom: 1rem;
}

.event-list .event-time,
.event-list .event-location {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.event-list .btn {
    background: #aaa;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.6rem 2rem;
    font-size: 0.9rem;
    margin-top: auto;
    align-self: flex-start;
    font-weight: 500;
    text-decoration: none;
}

.event-list .btn:hover {
    background: #999;
    color: #fff;
}

.case-item .hover-img {
    position: absolute;
    top: 100%;
    left: 0;
    transition: transform .5s ease;
}

.case-item:hover .hover-img {
    transform: translateY(-100%);
}

.case-item:hover .front-img {
    transform: translateY(-100%);
    transition: transform .5s ease;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: .5rem;
    background-color: #f8f9fa;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(128, 128, 128, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.video-thumbnail .play-button::before {
    content: '';
    border-style: solid;
    border-width: 18px 0 18px 30px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
}

/* ========================= 分类标签 ========================= */
.nav-pills .nav-link {
    border-radius: 50rem;
    color: #6c757d;
    margin: 0 .25rem;
    transition: all 0.3s ease;
    padding: .5rem 1.25rem;
    border: 1px solid transparent;
    /* 添加透明边框 */
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: #4A6D7C;
    color: #fff;
    border-color: #4A6D7C;
    /* 悬停和激活时显示边框 */
}

.nav-pills .nav-link:not(.active):hover {
    color: #4A6D7C;
    /* 非激活状态悬停时文字变色 */
    background-color: #e9ecef;
    /* 浅灰色背�?*/
}

/* ======= 全球展位预订 分类导航 ======= */
#eventTabs .nav-link {
    border-radius: 4px;
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
    margin: 0 .5rem 0.5rem;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#eventTabs .nav-link:hover,
#eventTabs .nav-link:focus {
    color: #146fc8;
    border-color: #146fc8;
}

#eventTabs .nav-link.active {
    background: #146fc8;
    color: #fff;
    border-color: #146fc8;
}

/* ======= 全球展会资讯 分类导航 ======= */
#newsTabs .nav-link {
    border-radius: 4px;
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
    margin: 0 .5rem 0.5rem;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#newsTabs .nav-link:hover,
#newsTabs .nav-link:focus {
    color: #146fc8;
    border-color: #146fc8;
}

#newsTabs .nav-link.active {
    background: #146fc8;
    color: #fff;
    border-color: #146fc8;
}

/* ======= 分类按钮阴影 ======= */
#eventTabs .nav-link,
#newsTabs .nav-link {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#eventTabs .nav-link:hover,
#eventTabs .nav-link:focus,
#newsTabs .nav-link:hover,
#newsTabs .nav-link:focus {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ======= 案例查看更多 & 查看全部展会按钮 ======= */
#cases .btn-primary,
#cases .btn-primary:visited {
    border-radius: 4px;
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
    margin: 0;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#cases .btn-primary:hover,
#cases .btn-primary:focus {
    background: #146fc8;
    color: #fff;
    border-color: #146fc8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ======= 查看全部展会按钮 ======= */
#events .btn-outline-primary {
    border-radius: 4px;
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
    margin: 0;
    padding: 0.6rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#events .btn-outline-primary:hover,
#events .btn-outline-primary:focus {
    background: #146fc8;
    color: #fff;
    border-color: #146fc8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ========================= 按钮样式 ========================= */
.btn-outline-primary {
    border-radius: 50rem;
    padding: .75rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: #4A6D7C;
    border-color: #4A6D7C;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    background-color: #146fc8;
    color: #fff;
    border-color: #146fc8;
}

/* ========================= 分页样式 ========================= */
.pagination .page-item .page-link {
    border-radius: 4px;
    margin: 0 .5rem 0.5rem;
    padding: .5rem .75rem;
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
    background: #146fc8;
    color: #fff;
    border-color: #146fc8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
    cursor: not-allowed;
}

/* 展会分页特殊样式 */
#exhibitionPagination .pagination {
    margin-bottom: 0;
    justify-content: center;
}

#exhibitionPagination .page-link {
    border: 1px solid #dee2e6;
    color: #146fc8;
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    margin: 0 2px;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

#exhibitionPagination .page-item.active .page-link {
    background-color: #146fc8;
    border-color: #146fc8;
    color: #fff;
}

#exhibitionPagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
    cursor: not-allowed;
}

#exhibitionPagination .page-link:hover:not(.disabled) {
    background-color: #146fc8;
    border-color: #146fc8;
    color: #fff;
}

/* 资讯分页特殊样式 */
#newsPagination .pagination {
    margin-bottom: 0;
    justify-content: center;
}

#newsPagination .page-link {
    border: 1px solid #dee2e6;
    color: #146fc8;
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    margin: 0 2px;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

#newsPagination .page-item.active .page-link {
    background-color: #146fc8;
    border-color: #146fc8;
    color: #fff;
}

#newsPagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
    cursor: not-allowed;
}

#newsPagination .page-link:hover:not(.disabled) {
    background-color: #146fc8;
    border-color: #146fc8;
    color: #fff;
}

/* 设计案例分页特殊样式 */
#designCasesPagination .pagination {
    margin-bottom: 0;
    justify-content: center;
}

#designCasesPagination .page-link {
    border: 1px solid #dee2e6;
    color: #146fc8;
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    margin: 0 2px;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

#designCasesPagination .page-item.active .page-link {
    background-color: #146fc8;
    border-color: #146fc8;
    color: #fff;
}

#designCasesPagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
    cursor: not-allowed;
}

#designCasesPagination .page-link:hover:not(.disabled) {
    background-color: #146fc8;
    border-color: #146fc8;
    color: #fff;
}

/* 咨询中心分页特殊样式 */
#newsPagination .pagination {
    margin-bottom: 0;
    justify-content: center;
}

#newsPagination .page-link {
    border: 1px solid #dee2e6;
    color: #146fc8;
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    margin: 0 2px;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

#newsPagination .page-item.active .page-link {
    background-color: #146fc8;
    border-color: #146fc8;
    color: #fff;
}

#newsPagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #dee2e6;
    cursor: not-allowed;
}

#newsPagination .page-link:hover:not(.disabled) {
    background-color: #146fc8;
    border-color: #146fc8;
    color: #fff;
}

/* ========================= 客户 Logo ========================= */
#clients {
    background-color: #fff;
    padding: 80px 0;
}

.clients-header {
    text-align: center;
    margin-bottom: 3rem;
}

.clients-title {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.clients-subtitle {
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.clients-row {
    margin-bottom: 2rem;
}

.clients-row .col {
    flex: 0 0 12.5%;
    max-width: 12.5%;
    padding: 0.5rem;
    text-align: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 1rem;
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ========================= 新闻卡片动画效果 ========================= */
.news-item .card {
    transition: all 0.3s ease-in-out;
    /* 平滑过渡所有属�?*/
    border: 1px solid #e0e0e0;
    /* 默认边框 */
}

.news-item .card:hover {
    transform: translateY(-5px);
    /* 向上浮动 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    /* 增加阴影 */
    border-color: #4A6D7C;
    /* 悬浮时边框颜色改�?*/
}

/* ========================= 全球展位预订卡片动画效果 ========================= */
.event-item .card {
    transition: all 0.3s ease-in-out;
    /* 平滑过渡所有属�?*/
    border: 1px solid #e0e0e0;
    /* 默认边框 */
}

.event-item .card:hover {
    transform: translateY(-5px);
    /* 向上浮动 */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    /* 增加阴影 */
    border-color: #4A6D7C;
    /* 悬浮时边框颜色改�?*/
}


/* ========================= 主要按钮样式 ========================= */
.btn-primary {
    background-color: #4A6D7C;
    border-color: #4A6D7C;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3A5B6A;
    border-color: #3A5B6A;
    color: #fff;
}

/* ========================= 联系我们板块样式 ========================= */
#contact {
    background-color: #f9f9f9;
    padding: 0;
}

.contact-container {
    padding: 0;
    max-width: 100%;
}

/* 联系信息区域 */
.contact-left {
    background-color: #f9f9f9;
    padding: 40px 60px;
}

.contact-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

/* 留言板区�?*/
.contact-middle {
    background-color: #fff;
    padding: 40px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.message-title {
    color: #666;
    font-size: 1.2rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.input-with-star {
    position: relative;
}

.required-star {
    position: absolute;
    left: -15px;
    top: 10px;
    color: #ff0000;
    font-size: 0.9rem;
}

.form-control {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #333;
    height: auto;
}

.form-control:focus {
    border-color: #ddd;
    box-shadow: none;
}

.form-control::placeholder {
    color: #999;
}

.content-textarea {
    min-height: 100px;
    resize: none;
}

.btn-submit {
    background-color: #999;
    border: none;
    color: #fff;
    padding: 0.75rem 0;
    border-radius: 0;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #888;
}

/* 办公室图片区�?*/
.contact-right {
    padding: 0;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================= 联系表单 ========================= */
#contact-form input,
#contact-form textarea {
    border-radius: .25rem;
}

/* ========================= 展会资讯卡片样式 ========================= */
.news-item .card {
    height: 380px;
    /* 固定卡片高度 */
    display: flex;
    flex-direction: column;
}

.news-item .card-img-top {
    height: 200px;
    /* 固定图片高度 */
    object-fit: cover;
    /* 确保图片覆盖整个区域 */
}

.news-item .card-body {
    flex-grow: 1;
    overflow: hidden;
    /* 隐藏溢出内容 */
}

/* 在小屏幕时调�?*/
@media (max-width: 767.98px) {
    .navbar-nav .nav-link {
        padding: .75rem .5rem;
    }

    /* 展会服务页面导航标签移动端优�?*/
    #exhibitionTabs {
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 10px;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #exhibitionTabs::-webkit-scrollbar {
        display: none;
    }

    #intro {
        padding: 40px 0;
        text-align: center;
    }

    #intro .container {
        max-width: 100%;
        padding: 0 20px;
    }

    #intro .row {
        flex-direction: column;
    }

    /* 隐藏左侧文字介绍 */
    #intro .col-lg-6:first-child .intro-text,
    #intro .col-lg-6:first-child .more-link {
        display: none;
    }

    /* 隐藏世界地图 */
    #intro .world-map {
        display: none;
    }

    /* 标题样式调整 */
    #intro .global-service-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    /* 统计数据重新布局�?x2网格 */
    #intro .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    #intro .stat-item {
        text-align: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
    }

    #intro .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        line-height: 1;
    }

    #intro .stat-unit {
        font-size: 1rem;
        color: #333;
        font-weight: 500;
        display: inline;
        margin-left: 3px;
    }

    #intro .stat-desc {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
        line-height: 1.2;
    }

    /* 手机端案例区域样�?*/
    #cases {
        background-color: #fff !important;
        padding: 40px 0;
    }

    #cases .container {
        padding: 0 20px;
        max-width: 100%;
    }

    #cases h2 {
        display: block !important;
        text-align: center;
        font-size: 1.5rem;
        color: #333 !important;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    #cases p.text-muted {
        text-align: center;
        font-size: 0.9rem;
        color: #999 !important;
        margin-bottom: 2.5rem;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    #cases .row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    #cases .col-md-6 {
        max-width: 100%;
        flex: none;
    }

    .case-item {
        position: relative;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .case-item .image-container {
        width: 100%;
        height: 160px;
        overflow: hidden;
        position: relative;
    }

    .case-item .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .case-item .hover-img {
        display: none;
    }

    .case-title {
        padding: 12px;
        text-align: center;
        background: #fff;
        border-top: 1px solid #f0f0f0;
    }

    .case-title h5 {
        font-size: 0.9rem;
        color: #333;
        margin: 0;
        line-height: 1.4;
        font-weight: 500;
    }

    /* 超小屏幕优化 */
    @media (max-width: 576px) {
        .case-item .image-container {
            height: 140px;
        }

        .case-title {
            padding: 10px;
        }

        .case-title h5 {
            font-size: 0.85rem;
            line-height: 1.3;
        }
    }

    .case-title p {
        font-size: 0.8rem;
        color: #999;
        margin: 0;
        font-weight: 400;
        letter-spacing: 1px;
    }

    #cases .btn-primary {
        display: inline-block;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }

    /* 手机端全球展位预订样�?*/
    #events {
        background: #f0f0f0 !important;
        padding: 40px 0;
    }

    #events .container {
        padding: 0 20px;
    }

    #events h2 {
        text-align: center;
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    #events p.text-muted {
        text-align: center;
        font-size: 0.9rem;
        color: #999 !important;
        margin-bottom: 2rem;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* 手机端导航标签样�?*/
    #eventTabs {
        justify-content: flex-start !important;
        flex-wrap: nowrap;
        margin-bottom: 1.5rem;
        gap: 0.4rem;
        overflow-x: auto;
        padding: 0;
    }

    #eventTabs .nav-link {
        border-radius: 4px;
        background: #fff;
        color: #666;
        border: none;
        margin: 0;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        font-weight: 500;
        white-space: nowrap;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    #eventTabs .nav-link.active {
        background: #146fc8;
        color: #fff;
        border: none;
    }

    /* 手机端卡片布局 */
    #events .row.event-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 0;
    }

    #events .event-item {
        max-width: 100%;
        flex: none;
    }

    .event-item .card {
        border: none;
        border-radius: 0;
        background: #fff;
        box-shadow: none;
        height: 380px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .event-item .card-img-top {
        height: 150px;
        object-fit: contain;
        padding: 15px;
        background: #fff;
        flex-shrink: 0;
    }

    .event-item .card-body {
        padding: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
        background: #fff;
    }

    .event-item .card-title {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin: 0;
        padding: 0.8rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        border-bottom: 1px solid #f0f0f0;
    }

    .event-item .card-info {
        padding: 0.8rem;
    }

    .event-item .card-body .event-time {
        font-size: 0.9rem;
        color: #333;
        display: block;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .event-item .card-body .event-location {
        font-size: 0.9rem;
        color: #333;
        display: block;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .event-item .btn {
        background: #aaa;
        color: #fff;
        border: none;
        border-radius: 30px;
        padding: 0.6rem 2rem;
        font-size: 0.9rem;
        margin: 0.8rem auto;
        display: block;
        width: 80%;
        text-align: center;
        font-weight: 500;
        text-decoration: none;
    }

    .event-item .btn:hover {
        background: #999;
        color: #fff;
    }

    /* 手机端分页样�?*/
    #events .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem 0 1rem 0;
        padding: 0;
        gap: 0.8rem;
    }

    #events .pagination .page-item {
        border: none;
        background: none;
        margin: 0;
    }

    #events .pagination .page-info {
        color: #999;
        font-size: 0.9rem;
        font-weight: normal;
        margin: 0;
        padding: 0;
    }

    #events .pagination .page-link {
        border: none;
        background: none;
        color: #999;
        font-size: 1.1rem;
        padding: 0.3rem 0.6rem;
        margin: 0;
        box-shadow: none;
        text-decoration: none;
        line-height: 1;
    }

    #events .pagination .prev-link,
    #events .pagination .next-link {
        color: #999 !important;
        /* 使用!important确保不被其他样式覆盖 */
    }

    #events .pagination .page-link:hover {
        color: #666;
        background: none;
        border: none;
    }

    #events .pagination .page-link:hover {
        color: #666;
        background: none;
    }

    #events .btn-outline-primary {
        display: inline-block;
        background: #fff;
        color: #146fc8;
        border: 1px solid #146fc8;
        border-radius: 4px;
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        text-decoration: none;
        margin: 0 auto;
        display: block;
        width: fit-content;
        margin-bottom: 3rem;
        /* 增加底部间距 */
    }

    #events .btn-outline-primary:hover {
        background: #146fc8;
        color: #fff;
    }

    /* ========================= 展会服务页面参展流程卡片两列布局 ========================= */

    /* 参展流程所有卡片行改为两列网格 */
    #flow .row.row-cols-1.row-cols-sm-2.row-cols-lg-4.g-4.justify-content-center,
    #flow .row.row-cols-1.row-cols-sm-2.row-cols-lg-5.g-4.justify-content-center {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
        margin: 0 !important;
        padding: 0 0.5rem !important;
        justify-content: unset !important;
    }

    /* 参展流程卡片项目样式 */
    #flow .col.process-item {
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 参展流程卡片样式 */
    #flow .process-item .card.h-100.text-center.p-3 {
        background: #f8f9fa !important;
        border: none !important;
        border-radius: 0.75rem !important;
        padding: 1rem !important;
        height: auto !important;
        min-height: 200px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        margin-bottom: 0.5rem !important;
    }

    #flow .process-item .card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    }

    /* 步骤编号样式 */
    #flow .step-num.mx-auto.mb-2 {
        width: 50px !important;
        height: 50px !important;
        line-height: 50px !important;
        font-size: 1.2rem !important;
        font-weight: 700 !important;
        border-radius: 50% !important;
        color: #fff !important;
        margin: 0 0 0.75rem 0 !important;
        flex-shrink: 0 !important;
        text-align: center !important;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15) !important;
    }

    /* 卡片标题样式 */
    #flow .process-item .card h6.fw-semibold {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #333 !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
        text-align: left !important;
    }

    /* 卡片描述样式 */
    #flow .process-item .card p.small.text-muted.mb-0 {
        font-size: 0.85rem !important;
        color: #999 !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        flex-grow: 1 !important;
        text-align: left !important;
    }



    /* ========================= 展会服务页面移动端优�?========================= */

    /* 顶部选项卡导航手机端样式 */
    #exhibitionTabs {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 15px 0.5rem 15px;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: transparent;
        gap: 0.5rem;
    }

    #exhibitionTabs::-webkit-scrollbar {
        display: none;
    }

    #exhibitionTabs .nav-item {
        flex: 1;
        max-width: 120px;
        margin: 0;
    }

    #exhibitionTabs .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.75rem 0.5rem;
        border: none;
        background-color: #f8f9fa;
        color: #666;
        border-radius: 0.5rem;
        text-decoration: none;
        width: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    #exhibitionTabs .nav-link:hover {
        background-color: #e9ecef;
        color: #333;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    #exhibitionTabs .nav-link.active {
        background-color: #146fc8;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(20, 111, 200, 0.3);
    }

    #exhibitionTabs .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background-color: #146fc8;
        border-radius: 2px;
    }

    #exhibitionTabs .tab-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
        object-fit: contain;
    }

    #exhibitionTabs .tab-label {
        font-size: 0.8rem;
        text-align: center;
        font-weight: 500;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 展台设计搭建页面移动端优�?*/
    #design .row.row-cols-1.row-cols-md-3 {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin: 0;
    }

    #design .col {
        max-width: 100%;
        flex: none;
    }

    #design .card {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 0.75rem;
        padding: 1rem;
        height: auto;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    #design .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }

    #design .card img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-bottom: 0.75rem;
    }

    #design .card h6 {
        font-size: 0.85rem;
        font-weight: 600;
        color: #333;
        line-height: 1.3;
        margin: 0;
    }

    /* 设计搭建案例移动端优�?*/
    #design .design-case {
        margin-bottom: 1rem;
    }

    #design .design-case .card {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        height: auto;
    }

    #design .design-case .card-img-top {
        height: 180px;
        object-fit: cover;
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
    }

    #design .design-case .card-body {
        padding: 0;
        text-align: left;
    }

    #design .design-case .card-body h6 {
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
        line-height: 1.4;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    #design .design-case .card-body::after {
        display: none;
    }

    /* 增值服务页面移动端优化 */
    #service .row.g-3 {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin: 0;
    }

    #service .biz-item {
        padding: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    #service .biz-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    #service .biz-img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }

    #service .biz-item h5 {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    #service .biz-item p {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin: 0;
    }

    rem;
    color: #999;
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

/* 展台设计搭建页面移动端优�?*/
#design .row.row-cols-1.row-cols-md-3 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 0;
}

#design .col {
    max-width: 100%;
    flex: none;
}

#design .card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 1rem;
    height: auto;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#design .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

#design .card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

#design .card h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

/* 设计搭建案例移动端优�?*/
#design .design-case {
    margin-bottom: 1rem;
}

#design .design-case .card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    height: auto;
}

#design .design-case .card-img-top {
    height: 180px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

#design .design-case .card-body {
    padding: 0;
    text-align: left;
}

#design .design-case .card-body h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#design .design-case .card-body::after {
    display: none;
}

/* 增值服务页面移动端优化 */
#service .row.g-3 {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0;
}

#service .biz-item {
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#service .biz-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

#service .biz-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

#service .biz-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

#service .biz-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}
}

font-size: 0.9rem;
font-weight: 600;
color: #333;
line-height: 1.4;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

#design .design-case .card-body::after {
    display: none;
}

/* 增值服务页面移动端优化 */
#service .row.g-3 {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0;
}

#service .biz-item {
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#service .biz-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

#service .biz-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

#service .biz-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

#service .biz-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

t-box-orient: vertical;
overflow: hidden;
}

#design .design-case .card-body::after {
    display: none;
}
}

/* ========================= 全球展会预订 ========================= */
#events {
    background: #e8e8e8;
}

#reservation h6 {
    letter-spacing: 1px;
    color: #777;
}

.reservation-tabs {
    background: #4e4e4e;
    /* 深灰色横�?*/
    padding: 6px 8px;
    border-radius: 2px;
}

.reservation-tabs .nav-link {
    color: #fff;
    border-radius: 0;
    padding: 6px 12px;
    font-size: 0.9rem;
}

.reservation-tabs .nav-link:hover {
    color: #fff;
    background: #6c757d;
}

.reservation-tabs .nav-link.active {
    background: #4A6D7C;
    /* 主题�?*/
}

.reservation-item .card {
    border: 1px solid #ddd;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reservation-item .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.1);
}

.reservation-item .btn-primary {
    background: #7a7a7a;
    border: none;
    border-radius: 20px;
    padding: 6px 32px;
    font-size: .875rem;
}

.reservation-item .btn-primary:hover {
    background: #505050;
}

.reservation-item .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 16px 12px;
}

.reservation-item .card-body small:not(:first-child) {
    margin-top: 8px;
}

.reservation-item .card-body small {
    font-size: .8125rem;
    line-height: 1.35;
}

.reservation-item .card img {
    height: 120px;
    object-fit: contain;
}

.reservation-item small {
    line-height: 1.4;
}

/* ========================= Process Cards ========================= */
.process-item .card {
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    transition: transform .25s ease, box-shadow .25s ease;
    padding: 2rem !important;
    /* 增加内边�?*/
}

.process-item .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .08);
}

.step-num {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    /* 增大数字圆标 */
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.25rem;
    /* 增大数字字体 */
}

.process-item .card h6 {
    font-size: 1.1rem;
    /* 增大标题字体 */
}

.process-item .card p {
    font-size: 0.95rem;
    /* 增大描述字体 */
}

/* ========================= Reservation Header  ========================= */
#reservation {
    background: #e5e5e5;
    /* 浅灰背景 */
}

.section-label {
    font-size: .9rem;
    font-weight: 600;
    color: #8b8b8b;
    letter-spacing: 2px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e2e0b;
}

.download-plan {
    background: #dfe2e2;
    border: none;
    border-radius: 20px;
    padding: 6px 24px;
    font-size: .875rem;
    color: #333;
}

.download-plan:hover {
    background: #cfd2d2;
    color: #000;
}

.search-box .form-control {
    width: 170px;
    border: none;
    border-radius: 20px 0 0 20px;
    font-size: .875rem;
    padding: 6px 12px;
}

.btn-search {
    background: #4e4e4e;
    border: none;
    border-radius: 0 20px 20px 0;
    color: #fff;
    font-size: .875rem;
    padding: 6px 16px;
}

.btn-search:hover {
    background: #3a3a3a;
}

/* ================= Design Case Cards ================= */
#design .card {
    border: none;
    background: transparent;
    box-shadow: none;
    transition: transform .3s ease, box-shadow .3s ease;
}

#design .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, .12);
}

#design .design-case .card-img-top {
    height: 320px;
    object-fit: cover;
    width: 100%;
    border-bottom: 1px solid #eee;
}

#design .design-case .card-body {
    padding: 1.5rem;
}

#design .design-case .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
}

#design .design-case .card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

#design .card-img-top {
    height: 260px;
    object-fit: contain;
    width: 100%;
    transition: transform .3s ease;
}

#design .card:hover .card-img-top {
    transform: scale(1.08);
}

#design .card-body {
    padding: 0;
    text-align: center;
}

#design .card-body p {
    display: none;
    /* 隐藏描述 */
}

#design .design-case .card-body {
    position: relative;
    padding: 0 0 20px;
    margin-right: 24px;
}

#design .design-case .card-body::after {
    content: "�?;
 position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1.25rem;
    color: #999;
    transform: translateX(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#design .design-case:hover .card-body::after {
    transform: translateX(6px);
    color: #000;
    animation: arrowPulse 1.5s infinite ease-in-out;
}

/* ================= 导航标签样式 ================= */
.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    border: none !important;
    position: relative;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 30px !important;
    margin: 0 15px;
    background: transparent !important;
    color: #333;
    font-size: 14px;
}

.nav-tabs .nav-link img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
    margin-bottom: 6px;
}

.nav-tabs .nav-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.nav-tabs .nav-link.active {
    opacity: 1;
    color: #0d6efd;
    font-weight: 500;
}

/* 下拉菜单项样�?*/
.dropdown-menu {
    margin-top: 0.1rem !important;
    /* 进一步减少上边距 */
    border: none;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
    min-width: 10rem;
    padding: 0.5rem 0;
    border-radius: 0.25rem;
}

/* 修复下拉菜单定位问题 - 确保下拉菜单相对于父元素定位 */
.nav-item.dropdown.position-static .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    transform: none !important;
}

/* 确保导航项容器有正确的定位上下文 */
.nav-item.dropdown.position-static {
    position: relative !important;
}

/* 确保导航栏有足够的z-index */
.navbar {
    z-index: 1030 !important;
}

/* 确保下拉菜单有正确的z-index */
.dropdown-menu {
    z-index: 1031 !important;
}

/* 添加悬停区域 */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* 确保下拉菜单和导航项之间有重叠区�?*/
.nav-item.dropdown {
    padding: 0.5rem 0;
    margin: -0.5rem 0;
}

.dropdown-menu .dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
    border-radius: 4px;
    margin: 0 0.5rem;
    width: calc(100% - 1rem);
    display: block;
    white-space: nowrap;
}

/* 悬停效果 */
.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

/* 选中状�?*/
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background-color: #e9ecef !important;
    color: #212529 !important;
}

/* 移除焦点轮廓 */
.dropdown-menu .dropdown-item:focus {
    outline: none !important;
    box-shadow: none !important;
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #0d6efd;
    border-radius: 3px;
}

/* ================= Business Travel ================= */
.biz-img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.biz-item:hover .biz-img {
    transform: scale(1.02);
}

/* 商旅案例卡片 */
.biz-case {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.biz-case:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.biz-case-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.biz-case .position-absolute {
    z-index: 2;
}

.biz-case .bg-primary {
    background-color: #0d6efd !important;
}

.biz-case h6 {
    font-weight: 600;
    color: #333;
}

.biz-case .small {
    color: #666;
    line-height: 1.5;
}

/* 商旅服务业务列表 */
#service .container.py-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100%;
}

#service .row.g-3 {
    margin-left: 0;
    margin-right: 0;
    padding: 0 15px;
}

.biz-item {
    max-width: 1320px;
    margin: 0 auto 2rem;
    border: 1px solid #fff;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    padding: 2rem;
    transition: all 0.3s ease;
    width: 100%;
}

.biz-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width:768px) {
    .row .col-12:nth-child(even) .biz-item {
        flex-direction: row-reverse;
        text-align: right;
    }

    .row .col-12:nth-child(even) .biz-img {
        margin-left: 1rem !important;
        margin-right: 0 !important;
    }
}

/* ======= 企业文化 右侧填充 ======= */
#videos .row.align-items-center>.col-lg-6:nth-child(2) {
    background: #146fc8;
    color: #fff;
    padding: 2rem;
    border-radius: 4px;
}

#videos .row.align-items-center>.col-lg-6:nth-child(2) h2,
#videos .row.align-items-center>.col-lg-6:nth-child(2) p {
    color: #fff;
}

@keyframes arrowPulse {
    0% {
        transform: translateX(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateX(8px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 0.7;
    }
}

/* 确保左侧
箭头颜色与右侧一�?- 添加更高优先级规�?*/
#events .pagination li:first-child .page-link {
    color: #999 !important;
    border: none;
    background: none;
}

/* 
手机端全球展会资讯样�?*/
@media (max-width: 767.98px) {
    #news {
        background-color: #f5f5f5;
        padding: 2rem 0;
    }

    #news h2 {
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 0.3rem;
    }

    #news p.text-muted {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* 导航标签样式 */
    #newsTabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    #newsTabs::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Edge */
    }

    #newsTabs .nav-item {
        flex: 0 0 auto;
        margin: 0 0.25rem;
    }

    #newsTabs .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border-radius: 1.5rem;
        background-color: #fff;
        color: #666;
        border: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    #newsTabs .nav-link.active {
        background-color: #146fc8;
        color: #fff;
    }

    /* 资讯卡片样式 */
    .news-item {
        margin-bottom: 1rem;
    }

    .news-item .card {
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
        height: auto;
    }

    .news-item .card-img-top {
        height: 140px;
        object-fit: cover;
    }

    .news-item .card-body {
        padding: 0.8rem;
    }

    .news-item .card-title {
        font-size: 1rem;
        font-weight: 500;
        margin-bottom: 0.3rem;
        line-height: 1.4;
    }

    .news-item small.text-muted {
        font-size: 0.8rem;
        color: #999 !important;
    }

    .news-item p.small {
        font-size: 0.8rem;
        margin-top: 0.5rem !important;
        margin-bottom: 0;
        color: #666;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 修改资讯卡片布局为两�?*/
    .news-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .news-item {
        width: 100%;
        padding: 0;
    }
}

/* �?机端展会资讯分页样式 */
@media (max-width: 767.98px) {
    #news .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem 0 1rem 0;
        padding: 0;
        gap: 0.8rem;
    }

    #news .pagination .page-item {
        border: none;
        background: none;
        margin: 0;
    }

    #news .pagination .page-info {
        color: #999;
        font-size: 0.9rem;
        font-weight: normal;
        margin: 0;
        padding: 0;
    }

    #news .pagination .page-link {
        border: none;
        background: none;
        color: #999;
        font-size: 1.1rem;
        padding: 0.3rem 0.6rem;
        margin: 0;
        box-shadow: none;
        text-decoration: none;
        line-height: 1;
    }

    #news .pagination .prev-link,
    #news .pagination .next-link {
        color: #999 !important;
    }

    #news .pagination .page-link:hover {
        color: #666;
        background: none;
        border: none;
    }

    /* 查看全部资讯按钮样式 */
    #news .btn-outline-primary.news-view-all {
        display: inline-block;
        background: #fff;
        color: #146fc8;
        border: 1px solid #146fc8;
        border-radius: 4px;
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        text-decoration: none;
        margin: 0 auto;
        display: block;
        width: fit-content;
        margin-bottom: 3rem;
    }

    #news .btn-outline-primary.news-view-all:hover {
        background: #146fc8;
        color: #fff;
    }

    /* 确保资讯卡片边框样式 */
    #news .card {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

/*
 手机端展会资讯导航标签样式优�?*/
@media (max-width: 767.98px) {
    #news {
        background-color: #f5f5f5;
        padding: 2.5rem 0;
    }

    #news .container {
        padding: 0 15px;
    }

    #news h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.3rem;
    }

    #news p.text-muted {
        font-size: 0.85rem;
        color: #999 !important;
        margin-bottom: 1.8rem;
        letter-spacing: 1px;
    }

    /* 导航标签容器样式 */
    #newsTabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 0.5rem;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    #newsTabs::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Edge */
    }

    /* 导航标签项样�?*/
    #newsTabs .nav-item {
        flex: 0 0 auto;
        margin: 0;
    }

    #newsTabs .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
        border-radius: 0.25rem;
        background-color: #e9e9e9;
        color: #666;
        border: none;
        margin: 0 0.2rem;
        white-space: nowrap;
        box-shadow: none;
    }

    #newsTabs .nav-link.active {
        background-color: #146fc8;
        color: #fff;
    }

    /* 资讯卡片列表样式 */
    .news-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin: 0;
    }

    .news-item {
        width: 100%;
        padding: 0;
        margin-bottom: 0.8rem;
    }

    .news-item .card {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        height: auto;
    }

    .news-item .card-img-top {
        height: 120px;
        object-fit: cover;
    }

    .news-item .card-body {
        padding: 0.8rem;
    }

    .news-item .card-title {
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.3rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.8rem;
    }

    .news-item small.text-muted {
        font-size: 0.75rem;
        color: #999 !important;
        display: block;
    }

    .news-item p.small {
        font-size: 0.75rem;
        margin-top: 0.5rem !important;
        margin-bottom: 0;
        color: #666;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* 
手机端展会资讯样式优�?- 最终版 */
@media (max-width: 767.98px) {

    /* 整体背景和间�?*/
    #news {
        background-color: #f5f5f5;
        padding: 2.5rem 0;
    }

    /* 标题样式 */
    #news h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.3rem;
    }

    #news p.text-muted {
        font-size: 0.85rem;
        color: #999 !important;
        margin-bottom: 1.8rem;
        letter-spacing: 1px;
    }

    /* 导航标签容器样式 - 精确匹配图片 */
    #newsTabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #newsTabs::-webkit-scrollbar {
        display: none;
    }

    /* 导航标签项样�?- 精确匹配图片 */
    #newsTabs .nav-item {
        flex: 0 0 auto;
        margin: 0;
    }

    #newsTabs .nav-link {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
        border-radius: 0.25rem;
        background-color: #e9e9e9;
        color: #666;
        border: none;
        margin: 0 0.2rem;
        white-space: nowrap;
        box-shadow: none;
        font-weight: normal;
    }

    #newsTabs .nav-link.active {
        background-color: #146fc8;
        color: #fff;
        font-weight: normal;
    }

    /* 资讯卡片列表样式 - 精确匹配图片 */
    .news-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin: 0;
    }

    .news-item {
        width: 100%;
        padding: 0;
        margin-bottom: 0.8rem;
    }

    /* 卡片样式 - 精确匹配图片 */
    .news-item .card {
        border: none;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        height: auto;
    }

    .news-item .card-img-top {
        height: 120px;
        object-fit: cover;
    }

    .news-item .card-body {
        padding: 0.8rem;
    }

    .news-item .card-title {
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 0.3rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: auto;
    }

    .news-item small.text-muted {
        font-size: 0.75rem;
        color: #999 !important;
        display: block;
    }

    .news-item p.small {
        font-size: 0.75rem;
        margin-top: 0.5rem !important;
        margin-bottom: 0;
        color: #666;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 分页样式 - 精确匹配图片 */
    #news .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem 0 1rem 0;
        padding: 0;
        gap: 0.8rem;
    }

    #news .pagination .page-item {
        border: none;
        background: none;
        margin: 0;
    }

    #news .pagination .page-info {
        color: #999;
        font-size: 0.9rem;
        font-weight: normal;
        margin: 0;
        padding: 0;
    }

    #news .pagination .page-link {
        border: none;
        background: none;
        color: #999;
        font-size: 1.1rem;
        padding: 0.3rem 0.6rem;
        margin: 0;
        box-shadow: none;
        text-decoration: none;
        line-height: 1;
    }

    #news .pagination .prev-link,
    #news .pagination .next-link {
        color: #999 !important;
    }

    /* 查看全部资讯按钮样式 - 精确匹配图片 */
    #news .btn-outline-primary.news-view-all {
        display: inline-block;
        background: #fff;
        color: #146fc8;
        border: 1px solid #146fc8;
        border-radius: 4px;
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        text-decoration: none;
        margin: 0 auto;
        display: block;
        width: fit-content;
        margin-bottom: 3rem;
    }

    #news .btn-outline-primary.news-view-all:hover {
        background: #146fc8;
        color: #fff;
    }
}

/* 查看全部
展会按钮样式 */
.view-all-btn {
    display: inline-block;
    background-color: #fff;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    text-decoration: none;
    margin: 1.5rem auto;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 300px;
}

.view-all-btn:hover {
    background-color: #f9f9f9;
    color: #146fc8;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .view-all-btn {
        width: 80%;
        max-width: 300px;
        margin: 1.5rem auto;
        display: block;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

/*
 查看全部展会按钮样式 - 更新�?*/
.view-all-btn {
    display: inline-block;
    background-color: #fff;
    color: #146fc8;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    text-decoration: none;
    margin: 1.5rem auto;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 300px;
}

.view-all-btn:hover {
    background-color: #f9f9f9;
    color: #146fc8;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .view-all-btn {
        width: 80%;
        max-width: 300px;
        margin: 1.5rem auto;
        display: block;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        background-color: #fff;
        color: #146fc8;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
}

/* 展会
服务页面手机端样�?*/
@media (max-width: 767.98px) {

    /* 顶部选项卡导航手机端样式 */
    #exhibitionTabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #exhibitionTabs::-webkit-scrollbar {
        display: none;
    }

    #exhibitionTabs .nav-item {
        flex: 0 0 auto;
        margin: 0 0.25rem;
    }

    #exhibitionTabs .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 1rem;
        border: none;
        background-color: #f8f9fa;
        color: #666;
        border-radius: 0.5rem;
        text-decoration: none;
        min-width: 100px;
    }

    #exhibitionTabs .nav-link.active {
        background-color: #146fc8;
        color: #fff;
    }

    #exhibitionTabs .tab-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 0.25rem;
    }

    #exhibitionTabs .tab-label {
        font-size: 0.8rem;
        text-align: center;
    }

    /* 参展流程手机端样�?*/
    .process-flow-mobile {
        display: block;
        padding: 1rem;
    }

    .process-section-mobile {
        margin-bottom: 2rem;
    }

    .process-section-title {
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        background-color: #f8f9fa;
        border-radius: 0.5rem;
    }

    .process-item-mobile {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
        padding: 1rem;
        background-color: #fff;
        border-radius: 0.5rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    }

    .process-number {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        margin-right: 1rem;
    }

    .process-number.blue {
        background-color: #007bff;
    }

    .process-number.orange {
        background-color: #fd7e14;
    }

    .process-number.red {
        background-color: #dc3545;
    }

    .process-number.green {
        background-color: #146fc8;
    }

    .process-number.cyan {
        background-color: #17a2b8;
    }

    .process-number.gray {
        background-color: #6c757d;
    }

    .process-number.purple {
        background-color: #6f42c1;
    }

    .process-number.yellow {
        background-color: #ffc107;
        color: #333;
    }

    .process-content {
        flex: 1;
    }

    .process-title {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .process-description {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin: 0;
    }

    /* 隐藏桌面端的流程卡片 */
    .row.row-cols-1.row-cols-sm-2.row-cols-lg-4,
    .row.row-cols-1.row-cols-sm-2.row-cols-lg-5 {
        display: none;
    }

    /* 隐藏桌面端的标题 */
    #flow h3,
    #flow hr {
        display: none;
    }

    /* 显示手机端流�?*/
    .process-flow-mobile {
        display: block !important;
    }

    .process-flow-mobile.d-none {
        display: block !important;
    }

    /* 确保手机端流程显�?*/
    @media (max-width: 767.98px) {
        .process-flow-mobile.d-none {
            display: block !important;
        }
    }
}

-webkit-box-orient: vertical;
overflow: hidden;
}

#design .design-case .card-body::after {
    display: none;
}

/* 增值服务页面移动端优化 */
#service .row.g-3 {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0;
}

#service .biz-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    height: 100%;
}

#service .biz-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

#service .biz-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 1.5rem !important;
    flex-shrink: 0;
}

#service .biz-item h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

#service .biz-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
}/* 热门文章样式 *
/
.sidebar-widget .list-unstyled li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    display: block;
    padding: 2px 0;
    transition: color 0.3s ease;
}

.sidebar-widget .list-unstyled li a:hover {
    color: #146fc8;
    text-decoration: none;
}

.sidebar-widget .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}/* 资讯详
情模态框样式 */
#newsModal .modal-dialog {
    max-width: 90vw;
    margin: 1rem auto;
}

#newsModal .modal-content {
    max-height: 90vh;
}

#newsModal .modal-body {
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    padding: 1.5rem;
}

#newsModal .news-content {
    text-align: justify;
}

#newsModal .news-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#newsModal .news-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

#newsModal .news-content h1,
#newsModal .news-content h2,
#newsModal .news-content h3,
#newsModal .news-content h4,
#newsModal .news-content h5,
#newsModal .news-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

#newsModal .modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

#newsModal .modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    #newsModal .modal-dialog {
        max-width: 95vw;
        margin: 0.5rem auto;
    }
    
    #newsModal .modal-content {
        max-height: 95vh;
    }
    
    #newsModal .modal-body {
        max-height: calc(95vh - 120px);
        padding: 1rem;
    }
}/* 资讯
详情页面样式 */
.news-detail {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.news-meta {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

.news-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-content p {
    margin-bottom: 1.2rem;
}

.news-content h1,
.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5,
.news-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.news-content blockquote {
    border-left: 4px solid #146fc8;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
}

.news-content ul,
.news-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.news-content li {
    margin-bottom: 0.5rem;
}

.news-footer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.share-buttons .btn {
    margin-left: 0.5rem;
}

/* 面包屑导航样式 */
.breadcrumb-item a {
    color: #146fc8;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .news-detail {
        padding: 1rem;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .news-title {
        font-size: 1.5rem;
    }
    
    .news-content {
        font-size: 1rem;
    }
    
    .news-footer {
        padding: 1rem;
    }
    
    .news-footer .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .share-buttons {
        text-align: center;
    }
}

/* ==========================  页脚样式  ========================== */
footer {
    background: #1976d2 !important;
}

footer h5 {
    color: #007bff !important;
    font-weight: 600;
}

footer h6 {
    color: #ffffff !important;
    font-weight: 500;
}

footer a {
    color: #bbdefb !important;
    transition: all 0.3s ease;
}

footer a:hover {
    color: white !important;
    text-decoration: none !important;
}

/* 在线客服按钮样式 */
.position-fixed .btn {
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    transition: all 0.3s ease;
    border: none;
}

.position-fixed .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

/* 二维码容器样式 */
footer .p-2 {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6 !important;
}

footer .p-2:hover {
    border-color: #007bff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.2);
}

/* 响应式调整 */
@media (max-width: 768px) {
    footer .col-lg-4,
    footer .col-lg-6,
    footer .col-lg-2 {
        margin-bottom: 2rem;
    }
    
    .position-fixed {
        right: 10px !important;
        bottom: 80px !important;
    }
    
    .position-fixed .btn {
        width: 50px !important;
        height: 50px !important;
    }
    
    footer h6 {
        font-size: 1rem;
    }
    
    footer .row .col-md-4 {
        margin-bottom: 1rem;
    }
}

/* 2025 news-detail 页底部操作区颜色覆盖：仅作用于 .news-footer 区域 */
.news-footer { color: #fff; }
.news-footer .text-muted { color: #fff !important; opacity: .95; }
.news-footer .btn-outline-primary,
.news-footer .btn-outline-secondary {
  color: #fff !important;
  border-color: rgba(255,255,255,.7) !important;
}
.news-footer .btn-outline-primary:hover,
.news-footer .btn-outline-secondary:hover {
  background: rgba(255,255,255,.15) !important;
  color: #fff !important;
  border-color: #fff !important;
}