/* 基础样式 */
:root {
    --primary-color: #0d4a8f;
    /* 深空蓝 */
    --primary-gradient: linear-gradient(135deg, #0d4a8f, #1976d2);
    /* 渐变蓝 */
    --accent-color: #d96f4f;
    /* 橙色点缀 */
    --light-blue: #e8f0fe;
    --dark-blue: #005ac9;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #6c757d;
    --border-color: #dee2e6;
}
.bg-primary{
    background-color: var(--primary-color) !important;
}
.bg-primary-light{
    background-color: rgba(13, 74, 143, 0.1) !important;
}
.bg-danger-light{
    background-color: rgba(220, 53, 69, 0.1) !important;;
}
.bg-warning-light{
    background-color: rgba(255, 193, 7, 0.1) !important;;
}
.bg-success-light{
    background-color: rgba(40, 167, 69, 0.1) !important;;
}
.container1{
    max-width: 1280px ;
    margin: 0 auto;
}
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width: 1400px !important;
}
body {
    font-family: "Microsoft YaHei", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 18px;
}
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* 顶部工具栏 */

.top-info span {
    /* color: #fff; */
    color: var(--primary-color);
    font-size: 0.875rem;
}

.top-info i {
    /* color: #fff; */
    color: var(--primary-color);
}

.top-links a {
    /* color: white; */
    color: var(--primary-color);
    font-size: 0.85rem;
}
.top-links span{
    color: var(--primary-color);
}

    /* 头部样式 */
.header {
    position: relative;
    background-color: var(--primary-color);
    color: var(--text-light);

    z-index: 199;
}

/* 头部背景和遮罩 */
.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:#e5e8ed url('../images/headerbg2.jpg') no-repeat center center;
    /* opacity: 0.8; */
    z-index: -2;
}
/*.header.party .header-bg{*/
/*    background:#e5e8ed url('../images/party.jpg') no-repeat center center;*/
/*    background-size: cover;*/
/*}*/

/*.header.party::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*   background: linear-gradient(135deg, rgba(226, 225, 225, 0.95) 0%, rgba(255, 237, 237, 0.57) 70%, rgba(186, 178, 178, 0.5) 100%);*/
/*    z-index: -1;*/
/*}*/

/* Logo滤镜效果 - 使其显示为白色 */
.logo-img {
    filter: brightness(0) invert(1);
}

.header h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.search-box {
    max-width: 600px;
    /* margin: 0 auto; */
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */

    border-radius:3rem;
    overflow: hidden;
}

.search-box .form-control {
    border: none;
    height: 3rem;
    border-radius:3rem;
    /* background: none; */
    background: rgba(255, 255, 255, 0.4);
    padding-left: 20px;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: none;
}

.search-box .btn-primary {
    font-weight: 500;
    border-radius:3rem;
    padding: 0 2rem;
    background: var(--accent-color);
    border: none;
}

.search-box .btn-primary:hover {
    background-color: #e67300;
    border-color: #e67300;

}

/* 主导航 */
.main-nav {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: relative;
}

/* 导航栏样式 */
.navbar-nav {
    width: 100%;
}

.navbar-toggler {
    /* color: var(--text-light); */
    color: var(--primary-color);
    opacity: 0.5;
    border: 1px solid var(--primary-color);
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 74, 143, 0.25);
}

.main-nav .nav-link {
    color: var(--primary-color);
    padding: 15px 20px;
    font-weight: bold;
    text-align: center;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
}

.main-nav .nav-link.active {
    /*border-bottom: 3px solid var(--accent-color);*/
}
.main-nav .nav-link.red:hover{
    color:#dc3545;
}

.main-nav .nav-link.active.red {
    /*border-bottom: 3px;*/
    color: #dc3545;
    font-weight: bold;
}
/* 下拉菜单样式 */
.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0;
    border-top: 2px solid var(--accent-color);
    min-width: 100%;
}

.dropdown-menu.red{
    border-color: #dc3545;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}
.dropdown-menu.red .dropdown-item{
    color: #dc3545;
}

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

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--light-blue);
    color: var(--primary-color);
}
.dropdown-menu.red .dropdown-item:hover,.dropdown-menu.red .dropdown-item:focus{
    background: #dc3545;
    color: white;
}
/* PC端下拉菜单悬停效果 */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

/* 容器全宽 */
.container-full {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
}

/* 全屏轮播 */
.hero-section {
    /* max-height: 500px;
    height: 25vw; */
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

/* 移动端轮播图样式 */
.mobile-hero-swiper {
    width: 100%;
    height: 240px;
    margin: 0 auto;
    background:rgba(13, 74, 143, 0.5);
}

.mobile-hero-swiper .swiper-slide {
    width: 100%;
    height: 240px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.mobile-hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.mobile-hero-swiper .swiper-button-next,
.mobile-hero-swiper .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: white;
}

.mobile-hero-swiper .swiper-button-next:after,
.mobile-hero-swiper .swiper-button-prev:after {
    font-size: 1rem;
}

.mobile-hero-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}

.mobile-hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
}

.hero-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    text-align: center;
}
.hero-swiper .swiper-slide img{
    width:100%;
    height:auto;
    display: block;
    margin: 0 auto;
    /* min-height:100%;
    transition:1s linear 2s;
    transform:scale(1,1); */
}

/* .hero-swiper .swiper-slide-active:hover img{
    transition:6s linear;
    transform:scale(1.1,1.1);
    } */
/* .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
} */
.hero-swiper .swiper-button-next:after,.hero-swiper .swiper-button-prev:after{
    font-size: 1.5rem;
}
.swiper-button-white {
    color: #fff;
}

/* 主横幅 */
.main-banner {
    background-color: var(--light-blue);
}

.banner-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
}

/* 轮播图 */
.main-swiper {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.main-swiper .swiper-slide {
    position: relative;
}
.main-swiper .swiper-slide img{
    height: 100%;
    height: 100%;
    max-height: 465px;
    object-fit: cover;
    width: 100%;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 15px;
}

.slide-caption p {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--light-blue);
}
.main-swiper .swiper-button-next:after,.main-swiper .swiper-button-prev:after{
    font-size: 1.75rem;
}
.swiper-pagination{
    bottom: 0 !important;
}
.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

/* 新闻列表 */
.news-list {
    background-color: #fff;
    border-radius: 5px;
    height: 100%;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.news-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

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

.news-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-dark);
}

.news-date {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-left: 10px;
}

.news-item a:hover .news-title {
    color: var(--accent-color);
}

/* 侧边导航 */
.sidebar-nav {
    background-color: var(--primary-color);
    border-radius: 5px;
    overflow: hidden;

}

.sidebar-nav .nav-item a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 15px;
    display: block;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
}

.sidebar-nav .nav-item a i{
    display: block;
    font-size: 1.75rem;
    margin-right: 6px;
}

.sidebar-nav .nav-item:hover a,
.sidebar-nav .nav-item.active a {
    background-color: var(--dark-blue);
    /* background-color: white; */
}

/* 内容选项卡 */
.content-tabs {
    background-color: #fff;
    border-radius: 5px;
    /* padding: 20px; */
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); */
}

.content-tabs .nav-tabs {
    border-bottom: 2px solid var(--border-color);
}

.content-tabs .nav-link {
    color: var(--text-dark);
    border: none;
    font-weight: 500;
    padding: 10px 15px;
}

.content-tabs .nav-link:hover {
    color: var(--accent-color);
}

.content-tabs .nav-link.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.news-items {
    list-style: none;
    padding: 0;
    margin: 15px 0 10px;
}
.card .news-items{
    padding: 0;
}

.news-items li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

.news-items li:last-child {
    border-bottom: none;
}

.news-items a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-items .title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-dark);
}
.news-items .more {
    justify-content: space-around; padding-top: 12px; font-size: 16px;
}
.news-items .date {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-left: 10px;
}

.news-items a:hover .title {
    color: var(--accent-color);
}

/* 核心栏目 */
.gov-info {
    background-color: #f5f5f5;
}

.section-header {
    margin-bottom: 20px;
    text-align: center;
}

.section-title {
    color: var(--primary-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.info-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

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

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-title {
    font-weight: 500;
    color: var(--text-dark);
}

/* 会员展示 */
.special-topics {
    padding: 40px 0 0;
    /* background: linear-gradient(to bottom, #72abe4, #e9ecef); */
    background-color: var(--light-blue);
}

.topics-swiper {
    padding: 10px;
}

.topic-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    max-height: 240px;
}

.topic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.topic-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 74, 143, 0.8);
    color: #fff;
    padding: 10px;
    text-align: center;
}

/* 底部 */
.footer {
    background-color: var(--dark-blue);
    color: #fff;
}

.footer-main {
    padding: 40px 0;
}

.footer-info p {
    margin-bottom: 5px;
    font-size:1rem;
}

.footer-links h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.qrcode {
    text-align: center;
}

.qrcode img {
    max-width: 100px;
    margin-bottom: 10px;
}

.qrcode p {
    font-size: 0.85rem;
}

.footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    font-size: 0.85rem;
}

/* 认证按钮样式 */
.certification-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-btn {
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cert-btn:hover {
    background: #f8f9fa;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cert-text {
    color: #dc3545;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

/* 二维码样式 */
.qr-code-item {
    transition: all 0.3s ease;
    margin-right: 3em;
}
.qr-code-item:last-child{
    margin-right: 0;
}
.qr-code-item:hover {
    transform: translateY(-3px);
}
.qr-code-item{
    max-width: 120px;
}
.qr-code-item img {
    border-radius: 4px;
    width: 100%;
    transition: all 0.3s ease;
}


.qr-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin: 0;
    font-weight: 500;
}


.Inner_banner img{
    width: 100%;
}
/* 响应式调整 */
@media (max-width: 991px) {
    .main-swiper {
        height: auto;
    }
    .footer-copyright .row {
        text-align: center;
    }

    .footer-copyright .col-md-4 {
        margin-bottom: 20px;
    }

    .footer-copyright .col-md-4:last-child {
        margin-bottom: 0;
    }

    .certification-buttons {
        justify-content: center;
    }

    .qr-code-item {
        margin: 0 10px;
    }
}

@media (max-width: 767px) {

    .footer-copyright {
        padding: 20px 0;
    }

    .cert-btn {
        padding: 6px 8px;
        margin: 2px;
    }

    .cert-text {
        font-size: 0.7rem;
    }

    .qr-code-item{
        max-width: 80px !important;
    }

    .qr-label {
        font-size: 0.7rem!important;
    }

    .footer-copyright .d-flex {

        align-items: center;
    }

    .footer-copyright .d-flex > div {
        margin-bottom: 0;
    }
    .Inner_banner{display: none;}
    /* .Inner_banner{
        width: 100%;
        height: 150px;
        background-size: cover;
        text-align: center;
        color: white;
        padding-top: 10rem;
    }*/

}

/* 新闻中心版块样式 */
.news-section {
    padding: 40px 0;
}

/* 左侧导航样式增强 */
.sidebar-nav {
    background-color: var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-nav .nav-item {
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav .nav-item a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 37.6px 20px;
    transition: all 0.3s ease;
}

.sidebar-nav .nav-item:hover,
.sidebar-nav .nav-item.active {
    background-color: var(--accent-color);
}

.sidebar-nav .nav-item:hover a,
.sidebar-nav .nav-item.active a {
    color: var(--accent-color);
    color: white;
    background-color: var(--accent-color);
}


.sidebar-nav .nav-item.red:hover,
.sidebar-nav .nav-item.red.active {
    background-color: #dc3545;
}

.sidebar-nav .nav-item.red:hover a,
.sidebar-nav .nav-item.red.active a {
    color: white;
    background-color: #dc3545;
}

/* 右侧内容区域样式 */
.content-section {
    display: none;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.content-section.active {
    display: block;
    height: 100%;
}

/* Tab切换样式优化 */
.hover-tabs {
    border-bottom: 2px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
}

.hover-tabs .nav-item {
    margin-bottom: -2px;
}

.hover-tabs .nav-link {
    color: var(--text-dark);
    border: none;
    padding: 10px 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hover-tabs .nav-link:hover,
.hover-tabs .nav-link.active {
    color: var(--accent-color);
    background-color: transparent;
    border-bottom: 2px solid var(--accent-color);
    text-align: center;
}
.hover-tabs .nav-link i{
    display: block;
    font-size: 1.5rem;
}
.hover-tabs .nav-link.red:hover,
.hover-tabs .nav-link.red.active {
    color: #dc3545;
    background-color: transparent;
    border-bottom: 2px solid red;
    text-align: center;
}
/* 新闻列表样式优化 */

.card-body .news-items {
    margin-top: 0;
}
/* .tab-content .news-items{
    padding: 0;
} */

.news-items li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    transition: all 0.3s ease;
}

.news-items li:last-child {
    border-bottom: none;
}

.news-items li:hover {
    background-color: var(--light-blue);
    padding-left: 10px;
}

.news-items a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.news-items .title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.news-items .date {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-left: 15px;
}

.news-items a:hover .title {
    color: var(--accent-color);
}


/* 卡片样式 */
.card {
    border: none;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* .content-tabs .card{
    box-shadow: none;
    padding: 0;
} */
.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 15px 20px;
    border-bottom: none;
}

.card-body {
    padding: 10px 20px;
}

/* 友情链接样式 */
.friend-links {
    border-radius: 5px;
    /* padding: 20px 0; */
    font-size: 0.875rem;
    color:rgba(255, 255, 255, 0.2)

}

.friend-links .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.friend-links .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.friend-links .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.links-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.link-group {
    position: relative;
    text-align: center;
    margin-right: 2%;
    width: 100%;
}

.link-group:last-child{
    margin-right: 0;
}

.link-title {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.link-title:hover {
    /* background-color: var(--text-dark); */
}

.link-dropdown {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.link-group:hover .link-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.link-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-dropdown ul li {
    border-bottom: 1px solid #eee;
}

.link-dropdown ul li:last-child {
    border-bottom: none;
}

.link-dropdown ul li a {
    display: block;
    padding: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-dropdown ul li a:hover {
    background-color: var(--light-blue);
    color: var(--primary-color);
    padding-left: 15px;
}



/* 响应式设计 */
@media (max-width: 991px) {
    .site-title h1 {
        font-size: 1.5rem;
    }

    /* .search-box {
        margin: 15px auto 0;
    } */

    .banner-title {
        font-size: 1.5rem;
    }

    /* .hero-section,
    .hero-slide {
        height: 350px;
    } */

    /* 移动端导航栏样式 */
    .main-nav .navbar-collapse {
        /* background-color: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1030; */
    }

    .main-nav .navbar-nav {
        flex-direction: row;
        align-items: center;
        padding: 10px 0;
    }

    .main-nav .nav-item {
        width: 33.333%;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav .nav-link {
        text-align: left;
        padding: 12px 20px;
        color: var(--text-dark);
    }
    .main-nav .nav-link:hover{
        color: var(--text-dark);
    }

    .main-nav .nav-link.active {
        border-bottom: none;
        color: var(--accent-color);
        font-weight: bold;
    }


    /* 移动端下拉菜单 */
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        background-color: #f8f9fa;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        border-top: none;
        border-radius: 0;
        display: none;
    }
    .dropdown-menu.red{
        background: #dc3545;
    }
    /* 移动端下拉菜单项样式 */
    .dropdown-menu .dropdown-item {
        padding: 12px 30px;
        border-bottom: 1px solid var(--border-color);
        white-space: normal;
        font-size: 0.95rem;
    }

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

    .dropdown-menu .dropdown-item:hover,
    .dropdown-menu .dropdown-item:focus {
        background-color: #e9ecef;
        color: var(--primary-color);
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }

    /* 确保下拉菜单按钮可点击 */
    .dropdown-toggle {
        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
    }

    /* 下拉菜单箭头旋转 */
    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    /* 移动端菜单展开动画 */
    .navbar-collapse {
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    /* 移动端下拉菜单项样式 */
    .dropdown-menu .dropdown-item {
        padding-left: 40px;
        background-color: #f8f9fa;
    }

    .dropdown-menu .dropdown-item:hover {
        background-color: #e9ecef;
    }

    /* 移动端下拉菜单触摸区域增大 */
    .dropdown-toggle,
    .dropdown-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* 移动端下拉菜单图标对齐 */
    .dropdown-toggle i {
        margin-right: 10px;
        font-size: 1.1rem;
    }

    /* 移动端头部样式调整 */
    .header {
        padding:0;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .hover-tabs {
        /* flex-wrap: nowrap;
        overflow-x: auto; */
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .hover-tabs .nav-link {
        padding: 10px 15px;
    }

    .links-container {
        flex-wrap: wrap;
    }

    .link-group {
        width: 48%;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .main-nav .nav-link {
        padding: 10px;
    }

    .banner-title {
        font-size: 1.2rem;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    /* .hero-section,
    .hero-slide {
        height: 250px;
    } */

    .news-section {
        padding: 20px 0;
    }

    .content-section {
        padding: 15px;
    }

    .card-header {
        padding: 10px 15px;
    }

    .card-body {
        padding: 15px;
    }

    /* .sidebar-nav .nav-item {
       width: auto;
       min-width: 33%;
    } */

    .sidebar-nav .nav-item a {
        padding: 10px 0;
        font-size: 0.875rem;
        text-align: center;
        flex-wrap: wrap;
    }
    .sidebar-nav .nav-item a i{
        font-size: 1.25rem;
    }
    .sidebar-nav .nav-item a span{
        width: 100%;
    }
    .hover-tabs {
        flex-wrap: nowrap;
    }
    .hover-tabs .nav-item {
        min-width: 20%;
        width: auto;
        box-sizing: border-box;
    }
    .hover-tabs .nav-item .nav-link{
        padding: 10px 6px;
        text-align: center;
        margin: 0 auto;
        font-size: 0.75rem;
    }

    .hover-tabs .nav-link i{
        font-size: 1rem;
    }
    .hover-tabs .nav-link{
        font-size: 0.875rem;
    }

    .link-group {
        width: 48%;
        margin-bottom: 10px;
    }

    .link-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 5px;
    }

    .link-group.active .link-dropdown {
        display: block;
    }
}

/* 移动端导航菜单 */
@media (max-width: 991px) {
    .main-nav .nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .main-nav .nav-item {
        flex-shrink: 0;
    }

    .main-nav .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* 底部样式优化 */
.footer {
    background-color: var(--dark-blue);
    color: #fff;
    padding-top: 30px;
    /*overflow: hidden;*/
}

.footer-main {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.qrcode {
    text-align: center;
}

.qrcode img {
    max-width: 120px;
    margin-bottom: 10px;
}

.qrcode p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    font-size: 0.85rem;
}
.footer-copyright p{
    font-size: 0.98rem;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .links-container {
        flex-wrap: wrap;
    }

    .link-group {
        width: 48%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-info,
    .footer-links,
    .qrcode {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .link-group {
        width: 100%;
        margin-bottom: 10px;
    }

    .link-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 5px;
    }

    .link-group.active .link-dropdown {
        display: block;
    }

    .footer-links h5 {
        margin-bottom: 15px;
    }

    .footer-links ul li {
        margin-bottom: 6px;
    }

    .footer-copyright {
        text-align: center;
        overflow: hidden;
    }

    .footer-copyright .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

/* 企业展厅样式 */
.industry-classification {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.industry-classification h5 {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-list li {
    padding: 15px 8px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.industry-list li:last-child {
    border-bottom: none;
}

.industry-list li:hover {
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.industry-list li i {
    color: var(--primary-color);
}

/* 会员名片样式 */
.member-showcase {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.member-showcase h5 {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.member-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    height: 300px;
    /* 固定高度，确保显示3排 */
    width: 100%;
}

.member-card {
    /* background: linear-gradient(135deg, rgba(98, 171, 243, 0.5) 0%, rgba(200, 218, 245, 0.2) 100%); */
    border-radius: 8px;
    padding: 2px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    /* 使用100%高度填充网格 */
}

.member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.member-logo {
    width: 100%;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 6px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.member-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.member-info h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-dark);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.service-hotline {
    font-size: 0.75rem;
    /* color: #ff0000; */
    margin: 0;
}

/* 服务大厅样式 */
.service-hall {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.service-hall h5 {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.service-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.service-item i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-item:hover i {
    color: white;
}

/* 会员轮播样式 */
.member-swiper {
    position: relative;
    height: auto;
    /* 移除固定高度，让内容自适应 */
    overflow: hidden;
    padding-bottom: 18px;
}

.member-swiper .swiper-wrapper {
    transition-timing-function: ease-in-out;
}

.member-swiper .swiper-slide {
    height: auto;
    /* 让slide高度自适应内容 */
    display: flex;
    align-items: stretch;
}

.member-swiper .swiper-slide .member-card {
    width: 100%;
    height: 100%;
    /* 确保卡片填充整个slide */
}

.member-swiper .swiper-button-next,
.member-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-swiper .swiper-button-next:after,
.member-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.member-swiper .swiper-button-next {
    right: 10px;
}

.member-swiper .swiper-button-prev {
    left: 10px;
}

.member-swiper .swiper-button-next:hover,
.member-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

.member-swiper .swiper-pagination {
    bottom: 0;
    position: absolute;
}

.member-swiper .swiper-pagination-bullet {
    background: #dee2e6;
    opacity: 1;
}

.member-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

@media screen and (max-width: 1400px) {
    .industry-list li {
        font-size: 0.875rem;
        padding: 8px 4px;
    }

    .member-info h6 {
        font-size: 0.875rem;
    }
}

/* 响应式调整 */
@media (max-width: 991px) {
    .member-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-swiper {
        height: auto;
    }

    .member-swiper .swiper-slide {
        height: auto;
    }

    .member-card {
        height: 200px;
        padding: 10px;
    }

    .member-logo {
        height: 100px;
    }

    .industry-classification,
    .service-hall {
        margin-bottom: 20px;
    }

}

@media (max-width: 767px) {
    .member-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-swiper {
        height: auto;
    }

    .member-swiper .swiper-slide {
        height: auto;
    }

    .member-card {
        height: auto;
        padding: 10px;
    }

    .member-logo {
        height: 60px;
    }

    .member-info h6 {
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-hotline {
        font-size: 0.65rem;
    }

    .member-swiper .swiper-button-next,
    .member-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .industry-list li{
        width: 33.33%;
        text-align: center;
    }
}

/* 通知公告Tab切换样式 */
.notice-tabs {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.notice-nav-tabs {
    background-color: var(--primary-color);
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.notice-nav-tabs .nav-item {
    width: 50%;
}

.notice-nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 0;
    padding: 12px 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    width: 100%;
}

.notice-nav-tabs .nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.notice-nav-tabs .nav-link.active {
    color: #fff;
    width: 100%;
    background-color: var(--accent-color);
}

.notice-nav-tabs .nav-link i {
    display: block;
    font-size: 1.5rem;
    /* margin-bottom: 4px; */
}

.notice-nav-tabs .nav-link span {
    display: block;
    font-size: 1.25rem;
}

.tab-content {
    padding: 0;
}

.tab-pane {
    padding: 0;
}

.tab-pane .card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.tab-pane .card-body {
    padding: 15px;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .notice-nav-tabs .nav-link {
        padding: 10px 5px;
        font-size: 0.8rem;
    }

    .notice-nav-tabs .nav-link i {
        font-size: 1.25rem;
        margin-bottom: 2px;
    }

    .notice-nav-tabs .nav-link span {
        font-size:1rem;
        font-weight: bold;
    }
}

/* 图文飘窗样式 */
.floating-window {
    position: fixed;
    top: 100px;
    left: 50px;
    width: 300px;
    border-radius: 10px;
    z-index: 9999;
    cursor: move;
    user-select: none;
    transition: all 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.floating-window.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.floating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-radius: 10px 10px 0 0;
    flex-direction:row-reverse;
}

.floating-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-close {
    background: #fff;
    border: none;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.floating-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.floating-content {
    padding: 15px;
}

.floating-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.floating-link {
    display: block;

}



/* 浮动按钮样式 */
.floating-button {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9998;
    transition: none !important;
    will-change: left, top;
    touch-action: none;
    border-radius: 25px;
    overflow: hidden;
    /* background: linear-gradient(135deg, var(--dark-blue), var(--accent-color)); */
    background: var(--accent-color);
    /* background: var(--primary-color); */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.floating-button button {

    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    cursor: pointer;
    background: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}


.floating-button::hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-button i {
    font-size: 1.1rem;
}

/* 飘窗平滑移动动画 */
@keyframes smooth-float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, 20px);
    }
    50% {
        transform: translate(-20px, 40px);
    }
    75% {
        transform: translate(40px, -10px);
    }
}

.floating-window.moving {
    animation: smooth-float 15s infinite ease-in-out;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .top-info,.top-links .small{display: none;}
    .top-links {float: right;}
    .py-2 { padding: .0rem !important;}
    .floating-window {
        width: 250px;
        top: 80px;
        left: 20px;
        display: none;
    }

    .floating-image {
        height: 100px;
    }

    .floating-button {
        right: 10px;
    }

    .floating-button button {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}



/* 视频聚焦与工作简报版块样式 */


/* 工作简报侧边栏样式 */
.briefing-side-card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    background: white;
}

.card-header-side {
    padding: 2rem 1rem;
    /* border-bottom: 2px solid var(--primary-color); */
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: var(--primary-color);
    color: var(--text-light);
}
.card-header-side a{
    color: var(--text-light);
}
.card-header-side h5 {
    font-size: 1.25rem;

    color: var(--text-light);
}
.card-header-side i.bi-file-earmark-text{
    font-size: 1.5rem;
    display: block;
    color: var(--text-light);
}

.card-body-side {
    padding: 1rem;
    background: var(--text-light);
}

/* 视频聚焦版块样式 */
.video-focus-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-carousel-container {
    position: relative;
}

.video-horizontal-swiper {
    padding: 2rem 0;
}

.video-card-horizontal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card-horizontal:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



.video-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.8rem;
    margin-top: auto;
}

/* Swiper样式定制 */
.video-carousel-container .swiper-pagination {
    bottom: 0;
}

.video-carousel-container .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    width: 16px;
    height: 2px;
}

.video-carousel-container .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

.video-carousel-container .swiper-button-next,
.video-carousel-container .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;

}
.video-carousel-container .swiper-button-prev{
    left: -70px;
}
.video-carousel-container .swiper-button-next{
    right: -70px;
}
.video-carousel-container .swiper-button-next:hover,
.video-carousel-container .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.video-carousel-container .swiper-button-next::after,
.video-carousel-container .swiper-button-prev::after {
    font-size: 1rem;
}

.ad-banner{
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}
.ad-banner .container{
    position: relative;
}
.ad-banner .swiper-button-next::after,
.ad-banner .swiper-button-prev::after {
    font-size: 1.5rem;
}
.panter-swiper .swiper-slide{
    height: 150px;
}
.panter-swiper .swiper-slide img{
    width: 100%;
    height: 100%;

}

/* 响应式设计 */
@media (max-width: 768px) {
    .card-header-side{
        padding: 1rem;
    }
    .card-header-side h5{
        font-size: 1rem;
    }
    .hero-swiper .swiper-slide img{ height: 150px;}
    /* 移动端轮播图响应式调整 */
    /* .mobile-hero-swiper {
        height: 300px;
        max-width: 100%;
    }

    .mobile-hero-swiper .swiper-slide {
        height: 300px;
    } */

    .mobile-hero-swiper .swiper-button-next,
    .mobile-hero-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .mobile-hero-swiper .swiper-button-next:after,
    .mobile-hero-swiper .swiper-button-prev:after {
        font-size: 0.8rem;
    }

    .video-thumbnail {
        height: 200px;
    }

    .video-info {
        padding: 1rem;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-desc {
        font-size: 0.85rem;
    }
}

/* 置顶新闻样式 */
.news-items .pinned {
    padding: 10px 0 12px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 6px;
}
.news-items .top-news-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25em;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}
.news-items .top-news:hover .top-news-title {
    color: var(--accent-color);
    transform: none;
}
.news-items .top-news-meta {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 6px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}