/* 顶部头部区域样式 */
.header-top {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    background: url('../images/top.png') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/banner-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 50px;
}

.logo-img {
    height: 80px;
    width: auto;
}

.site-info h1 {
    font-size: 2.7rem;
    color: #2c5aa0;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: 2px;
}

.site-info p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    letter-spacing: 1px;
}

.header-top-right {
    text-align: right;
}

.header-date {
    font-size: 1.1rem;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 500;
}

.header-links {
    font-size: 0.9rem;
}

.header-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-links a:hover {
    color: #2c5aa0;
}

.header-links span {
    color: #ccc;
    margin: 0 8px;
}

/* 顶部导航样式 */
.main-header {
    background-color: #2c5aa0;
    padding: 0;
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    height: 60px;
}

.logo a {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.main-nav {
    flex: 1;
    margin: 0 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    display: block;
    padding: 0 20px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 60px;
    transition: all 0.3s ease;
}

.nav-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-box {
    display: flex;
    align-items: center;
}

.search-box input {
    width: 150px;
    height: 36px;
    padding: 0 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px 0 0 18px;
    background: transparent;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.search-box button {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-left: none;
    border-radius: 0 18px 18px 0;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

section {
    background: #fff;
}

/* 底部样式 */
.main-footer {
    background-color: #2c5aa0;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-site-name {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-info {
    font-size: 0.9rem;
    line-height: 2;
    padding-left: 50px;
}

.footer-info p {
    margin: 0;
    opacity: 0.9;
}

.footer-info p span {
    margin-right: 10px;
}

.footer-info a {
    color: white;
    text-decoration: none;
}


.footer-center {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gov-img {
    width: 60px;
    height: auto;
    margin-right: 100px;
}

.footer-badge span {
    font-size: 0.85rem;
}

.footer-qrcodes {
    display: flex;
    gap: 30px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 90px;
    height: 90px;
    background: white;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.qrcode-item p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.back-to-top {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 幻灯片样式 */
.hero-slider {
    width: 100%;
    height: 562px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 1000px;
    height: 562px;
    flex-shrink: 0;
    transition: all 0.5s ease;
    border-radius: 8px;
    margin: 0 auto;
}

.heroSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* 非活动幻灯片添加阴影和变暗效果 */
.heroSwiper .swiper-slide:not(.swiper-slide-active) {
    filter: brightness(0.6);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.heroSwiper .swiper-slide:not(.swiper-slide-active) img {
    filter: blur(2px);
}

/* 活动幻灯片 */
.heroSwiper .swiper-slide-active {
    z-index: 10;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}

.heroSwiper .swiper-slide-active img {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* 文字说明 */
.heroSwiper .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    font-size: 1.1rem;
    text-align: center;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.heroSwiper .swiper-slide-active .slide-caption {
    opacity: 1;
}

.slide-caption span {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
    font-size: 20px;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.6;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
}

h4,
h5 {
    font-weight: bold;
}

.border-bottom {
    border-bottom: 0px solid #eee !important;
}

/* 时事聚焦新闻卡片样式 */
.news-section {
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    border: 1px solid #d0e0f0;
    padding: 20px;
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.news-card h5 a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card h5 a:hover {
    color: #1e3d6f;
}

.news-card .news-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.news-card .news-date {
    color: #2c5aa0;
}

.news-card .news-source {
    color: #2c5aa0;
    font-weight: 500;
}

/* 板块标题样式 */
.section-title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.section-title h5 {
    color: #2c5aa0;
    /* font-weight: bold; */
    /* font-size: 1.3rem; */
    font-size: 16px;
    font-weight: 700;
    font-family: 'microsoft YaHei';
    position: relative;
    display: inline-block;
    margin: 0;
}

.section-title h5::after {
    content: ' ▼';
    font-size: 0.8rem;
}

.section-title h5 a.section-title-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.section-title h5 a.section-title-link:hover {
    opacity: 0.8;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #2c5aa0 120px, #e0e8f5 120px);
}

.focus-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.focus-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.focus-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 15px 10px;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.4;
}


.focus-title-overlay span {
    display: block;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 文章信息样式 */
.article-info {
    text-align: left;
}

.article-info .article-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

.article-info .article-title a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-info .article-title a:hover {
    color: #1e3d6f;
}

.article-info .article-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 10px;
}


.bg-light-blue {
    background-color: #d6e9ff;
    color: #2c5aa0;
}

.sub-items {
    margin-top: 8px;
}

.sub-items .row {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 0;
}

.sub-items img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
}

ul.list-unstyled li {
    font-size: 0.9rem;
    line-height: 1.2;
    color: #333;
    position: relative;
    padding-left: 15px;
    overflow: hidden;
}

.three-column-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    width: 1200px;
    margin: 0 auto;
}

.three-column-row .col-custom {
    width: 390px;
    flex-shrink: 0;
    border: 1px solid #d0e0f0 !important;
    padding: 20px 20px 0px;
    background: #fff;
}

ul.list-unstyled li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

/* 列表项链接样式 */
a.list-link {
    color: #555;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.list-link:hover {
    color: #2c5aa0;
}

/* 文艺名人模块样式 */
.celebrity-grid .celebrity-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.celebrity-grid .celebrity-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.celebrity-grid .celebrity-item:hover img {
    transform: scale(1.05);
}

.celebrity-grid .celebrity-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 90, 160, 0.9));
    color: white;
    text-align: center;
    padding: 8px 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.pagination-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dots .dot.active {
    background-color: #2c5aa0;
}

.celebrity-list {
    border-top: 1px dashed #ddd;
    padding-top: 15px;
}

.celebrity-list span {
    display: block;
    color: #555;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.celebrity-list span:hover {
    color: #2c5aa0;
}

.refresh-btn {
    display: inline-block;
    background-color: #2c5aa0;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.refresh-btn:hover {
    background-color: #1e3d6f;
}

.refresh-btn i {
    font-size: 0.8rem;
}

/* 文艺名人轮播分页点 */
.celebrity-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding-bottom: 10px;
}

.celebrity-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d0d0d0;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.celebrity-pagination .swiper-pagination-bullet-active {
    background-color: #2c5aa0;
    width: 12px;
    height: 12px;
}

/* 信息公告样式 */
.info-notice-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #d0e0f0 !important;
    padding: 5px 5px;
    background: #fff;
}

.info-label {
    background-color: #2c5aa0;
    color: white;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.notice-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.notice-items {
    display: flex;
    gap: 30px;
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
}

.notice-item {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.notice-item:hover {
    color: #2c5aa0;
}

.notice-item .bullet {
    color: #2c5aa0;
    font-size: 1.2rem;
    line-height: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* 焦点图链接样式 */
.focus-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.focus-link:hover {
    opacity: 0.9;
}

/* 子项目图片链接样式 */
.sub-item-link {
    display: block;
    text-decoration: none;
}

.sub-item-link img {
    transition: transform 0.3s ease;
}

.sub-item-link:hover img {
    transform: scale(1.05);
}



.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

/* 专题专栏样式 */
.special-topic-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.special-topic-title h4 {
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.topic-slider {
    position: relative;
    overflow: hidden;
}

.topic-items {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.topic-slide {
    flex: 1;
    max-width: 390px;
    border-radius: 0px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.topic-slide:hover {
    transform: scale(1.02);
}

.topic-slide img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border:#d0e0f0  solid 1px;
}

.topic-slide a {
    display: block;
    text-decoration: none;
}



.slider-dots {
    display: none;
    /* display: flex; */
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #2c5aa0;
}

.mb-3 {
    margin-bottom: 0.5rem !important;
}

.g-2, .gy-2 {
    --bs-gutter-y: 0;
}

.ztzl {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.xxgk-title {
    color: #ffffff;
    text-decoration: none;
}

.wymr-name {
    color: #555;
    text-decoration: none;
}

