/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
  font-family: "阿里妈妈数黑体 Bold";font-weight: 700;src: url("//at.alicdn.com/wf/webfont/iU7h4qi2eXGE/37qRLIt2Fzhl.woff2") format("woff2"),
  url("//at.alicdn.com/wf/webfont/iU7h4qi2eXGE/woainKScjMXB.woff") format("woff");font-variation-settings: normal;font-display: swap;
}

.webfont {
  font-family: "阿里妈妈数黑体 Bold";font-variation-settings: normal; /* Chrome 140 以下版本需要 */}
@font-face {
font-family: 'Alibaba PuHuiTi 2.0';
src: url('/assets/fonts/Alibaba_PuHuiTi_2.0_45_Light_45_Light.ttf') format('truetype');
font-weight: 100;
font-style: normal;
}

@font-face {
font-family: 'Alibaba PuHuiTi 2.0';
src: url('/assets/fonts/Alibaba_PuHuiTi_2.0_55_Regular_55_Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Alibaba PuHuiTi 2.0';
src: url('/assets/fonts/Alibaba_PuHuiTi_2.0_65_Medium_65_Medium.ttf') format('truetype');
font-weight: 700; 
font-style: normal;
}
@font-face {
font-family: 'Alibaba PuHuiTi 2.0';
src: url('/assets/fonts/Alibaba_PuHuiTi_2.0_95_ExtraBold_95_ExtraBold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}
/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: "Alibaba PuHuiTi 2.0", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
	font-weight: 400;
    line-height: 1.6;
    color: #333;
	font-size: 16px;
}
ul,li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #333;
}
.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2%;
}

/* 顶部导航 */
.navbar {
    background: #fff;
    box-shadow: 0 0.2vh 1vh rgba(0,0,0,0.1);
    /* position: fixed;
    top: 0;
    left: 0;
    right: 0; */
    z-index: 1000;
    height: 7vh;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    /* gap: 1.5%; */
}



.logo {
    height: 6vh;
    width: auto;
	padding-right: 10px;
}

.brand-text {
    font-size: 1.125rem;
    font-weight: bold;
    color: #2c5aa0;
}

/* 在1024px到1300px之间隐藏公司名称 */
@media (min-width: 1024px) and (max-width: 1500px) {
    .navbar-brand > div {
        display: none;
    }
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 3%;
}

.navbar-nav {
    display: flex;
    gap: 5vw;
    /* min-width: 40vw; */
}

/* 导航项容器 */
.nav-item {
    position: relative;
}

/* 主导航链接 */
.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    padding: 1vh 0;
    transition: all 0.3s ease;
    border-bottom: 0.2vh solid transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #2c5aa0;
    border-bottom-color: #2c5aa0;
}

/* 下拉菜单箭头 */
.dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform 0.3s ease;
}

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

/* 下拉菜单容器 */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
    margin-top: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* 显示下拉菜单 */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 下拉菜单项 */
.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(44, 90, 160, 0.1) 0%, rgba(44, 90, 160, 0.05) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover {
    color: #2c5aa0;
    background: rgba(44, 90, 160, 0.05);
    border-left-color: #2c5aa0;
    transform: translateX(5px);
}

.dropdown-item:hover::before {
    width: 100%;
}

/* 下拉菜单分隔线 */
.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

/* 下拉菜单动画效果 */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

/* 搜索框样式 */
.search-box {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    position: relative;
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    border-color: #2c5aa0;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

/* 搜索选择器样式 */
.search-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(44, 90, 160, 0.05);
    border-right: 1px solid #e1e5e9;
    min-width: 100px;
}

.search-selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    padding: 12px 30px 12px 15px;
    font-size: 13px;
    color: #2c5aa0;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    min-width: 85px;
    position: relative;
    z-index: 2;
}

.search-selector:hover {
    background: rgba(44, 90, 160, 0.08);
}

.search-selector:focus {
    background: rgba(44, 90, 160, 0.1);
}

.search-selector option {
    background: white;
    color: #333;
    padding: 8px 12px;
    font-size: 14px;
}

.search-selector-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #2c5aa0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.search-selector:focus + .search-selector-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.search-input {
    flex: 1;
    height: 40px;
    padding: 0 45px 0 15px;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #999;
    font-size: 13px;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: #2c5aa0;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.search-btn:hover {
    background: #1e3f73;
    transform: translateY(-50%) scale(1.05);
}

.search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.search-btn svg {
    width: 14px;
    height: 14px;
}

/* 主横幅 */
.hero-banner {
    position: relative;
    height: 80vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 轮播图容器 */
.heroBannerSwiper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.heroBannerSwiper .swiper-wrapper {
    height: 100%;
}

.heroBannerSwiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroBannerSwiper .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 轮播图分页器样式 */
.hero-pagination {
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    z-index: 1000 !important;
    position: absolute !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    pointer-events: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    display: inline-block !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #fff !important;
    transform: scale(1.2) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    border-color: #fff !important;
}

/* Swiper slide 中的主横幅调整 */
.swiper-slide.hero-banner {
    justify-content: center;
    align-items: center;
    padding-top: 0; /* 重置padding-top */
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/banner.png') no-repeat;
    background-size: 100% 100%;

}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    pointer-events: none; /* 防止文字内容阻挡分页器点击 */
	padding-bottom: 60px;
}

.hero-title {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* 公司概况 */
.company-overview {
    position: relative;
}
.company-building {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 30vw;
    object-fit: cover;
}
/* Swiper slide 中的公司概况调整 */
.swiper-slide.company-overview {
    justify-content: flex-start;
    align-items: stretch;
    /* padding: 10vh 0 5vh 0; */
}
.company-container {
    padding: 0 2.5vw;
    width: 100%;
}
.overview-content {
    display: flex;
}
.overview-text {
    flex: 50vw;
    padding: 5vw 10vw;
}
.overview-icons {
    flex: 60vw;
    padding: 2vw 0;
}
.overview-text h2 {

font-weight: bold;
font-size: 40px;
color: #1C1C1C;
letter-spacing: 5px;
font-style: normal;
text-transform: none;
}

.overview-text h3 {

font-weight: 300;
font-size: 15px;
color: #1C1C1C;
letter-spacing: 1px;
font-style: normal;
text-transform: none;
}

.overview-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.overview-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 6vw 0;
}

.overview-icons-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 5vw;
    /* align-items: center; */
}
.overview-icons-title {

font-weight: bold;
font-size: 24px;
color: #1C1C1C;
letter-spacing: 3px;
font-style: normal;
text-transform: none;
}
.overview-icons-article {
    padding-top: 5vw;
    

font-weight: 300;
font-size: 20px;
color: #1C1C1C;
line-height: 36px;
letter-spacing: 1px;
text-align: justified;
font-style: normal;
text-transform: none;
text-indent: 2em;
}
.overview-icons-item a{
    text-align: center;
    width: 200px;
}
.overview-icons-graph{
    display: flex;
    justify-content: space-between;
}
.overview-icons-graph-item{
    display: flex;
    align-items: center;
    gap: 20px;
}
.overview-icons-graph-img{
    display: flex;
    align-items: center;
}
.overview-icons-graph-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.overview-icons-graph-text-title{

font-weight: bold;
font-size: 16px;
color: #233043;
line-height: 27px;
letter-spacing: 1px;
text-align: justified;
font-style: normal;
text-transform: none;
}
.overview-icons-graph-text-content{

font-weight: 300;
font-size: 14px;
color: #000000;
line-height: 27px;
letter-spacing: 1px;
text-align: justified;
font-style: normal;
text-transform: none;
}

/* 数据统计 */
.statistics {
    background: #233043;
    color: white;
    height: calc(100vh - 7vh);
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistics-container {
    width: 100%;
}

.stats-grid {
   display: flex;
   justify-content: space-between;
   align-items: center;
   
}

.stat-item {
    padding: 0 5vw;
    width: 33.3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-right: 1px solid #FFFFFF;
}

.stat-number {

font-weight: bold;
font-size: 36px;
color: #FFFFFF;
letter-spacing: 4px;
text-align: center;
font-style: normal;
text-transform: none;
}
.stat-number span {
    font-size: 16px;
}
.stat-label {

font-weight: bold;
font-size: 20px;
color: #FFFFFF;
letter-spacing: 2px;
text-align: center;
font-style: normal;
text-transform: none;
}

/* 新闻资讯 */
.news-section {
    background: white;
    padding: 0;
}

/* Swiper slide 中的新闻资讯调整 */
.swiper-slide.news-section {
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
}

/* 新闻容器 */
.news-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* 左侧导航菜单 */
.news-sidebar {
    width: 200px;
    background: white;
    padding: 60px 0;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.news-nav-item {
    margin-bottom: 8px;
}

.news-nav-link {
    display: block;
    padding: 15px 30px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.news-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(44, 90, 160, 0.1) 0%, rgba(44, 90, 160, 0.05) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.news-nav-link:hover {
    color: #333;
    transform: translateX(5px);
}

.news-nav-link:hover::before {
    width: 100%;
}

.news-nav-item.active .news-nav-link {
    color: #2c5aa0;
    background: linear-gradient(90deg, rgba(44, 90, 160, 0.15) 0%, rgba(44, 90, 160, 0.08) 100%);
    border-left-color: #2c5aa0;
    font-weight: 600;
    transform: translateX(8px);
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

/* 右侧主内容区域 */
.news-main {
    flex: 1;
    padding: 60px 80px 60px 280px; /* 增加左侧padding为悬浮导航留出空间 */
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 新闻标题区域 */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.news-title-section {
    flex: 1;
}

.news-subtitle {
    font-size: 16px;
    color: #999;
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.news-main-title {
    font-size: 48px;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 2px;
}

.news-more-btn {
    background: #2c3e50;
    color: white;
    padding: 15px 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.news-more-btn:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

/* 新闻内容区域 */
.news-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 新闻网格 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* 新闻卡片 */
.news-card {
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 25vw;
}

.news-card:hover {
    transform: translateY(-8px);
}

/* 新闻图片 */
.news-image {
    width: 100%;
    height: 60%;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.05);
}

/* 新闻信息 */
.news-info {
    padding: 30px 25px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 底部导航 */
.news-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: auto;
    padding-top: 40px;
}

.news-nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.news-nav-btn:hover {
    border-color: #2c5aa0;
    color: #2c5aa0;
    transform: scale(1.1);
}

.news-nav-btn:active {
    transform: scale(0.95);
}

/* 进度条 */
.news-nav-progress {
    flex: 1;
    max-width: calc(100% - 160px);
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.news-progress-bar {
    width: 33.33%;
    height: 100%;
    background: linear-gradient(90deg, #2c5aa0 0%, #3498db 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* 党群建设 */
.party-building {
    background: #f8f9fa;
}

/* Swiper slide 中的党群建设调整 */
.swiper-slide.party-building {
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
}

/* 新的党群建设布局 */
.party-container-new {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    gap: 0;
    padding: 60px 80px;
}

/* Title 区域 */
.party-title-section {
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main 区域：左右两块 */
.party-main-section {
    display: flex;
    gap: 30px;
    flex: 1;
    min-height: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 左侧轮播图区域 */
.party-carousel-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.party-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.party-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    transform: translateY(0);
}

.party-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.party-carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.party-carousel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.party-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.party-carousel-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-end;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out 0.3s, transform 1s ease-in-out 0.3s;
}

.party-carousel-slide.active .party-carousel-content {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease-in-out 0.3s, transform 1s ease-in-out 0.3s;
}

.party-carousel-year {

    font-weight: 400;
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.party-carousel-title {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.party-title-white {

    font-weight: bold;
    font-size: 72px;
    color: #FFFFFF;
    letter-spacing: 8px;
    line-height: 1.2;
}

.party-title-red {

    font-weight: bold;
    font-size: 72px;
    color: #E74C3C;
    letter-spacing: 8px;
    line-height: 1.2;
}

.party-carousel-news {
    margin-top: auto;
    width: 100%;
    padding: 0;
}

.party-carousel-news-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.party-carousel-news-box:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.party-carousel-news-date {

    font-weight: 400;
    font-size: 14px;
    color: #333;
    letter-spacing: 1px;
}

.party-carousel-news-tag {

    font-weight: 400;
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

.party-carousel-news-title {

    font-weight: 500;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.party-carousel-news-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #333;
    transition: transform 0.3s ease;
}

.party-carousel-news-box:hover .party-carousel-news-arrow {
    transform: translateX(4px);
}

/* 新的轮播新闻栏样式 - 图片样式 */
.party-carousel-news-bar {
    background: rgba(74, 74, 74, 0.7);
    width: 100%;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 0;
}

.party-carousel-news-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.party-carousel-news-title-white {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    transition: color 0.3s ease;
    max-width: calc(100% - 200px);
}

.party-carousel-news-title-white:hover {
    color: rgba(255, 255, 255, 0.8);
}

.party-carousel-news-date-red {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.party-carousel-news-indicators-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.party-indicator-inline {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #000000;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.party-indicator-inline.active {
    background: #E74C3C;
    color: #FFFFFF;
    border-color: #E74C3C;
    transform: scale(1.1);
}

.party-indicator-inline:hover {
    background: #333333;
    transform: scale(1.05);
}

.party-indicator-inline.active:hover {
    background: #C0392B;
}

/* 轮播图指示器 */
.party-carousel-indicators {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.party-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.party-indicator.active {
    background: #FFFFFF;
    border-color: #FFFFFF;
    transform: scale(1.2);
}

/* 右侧新闻列表区域 */
.party-news-section {
    flex: 1;
    background: #FFFFFF;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 0;
    position: relative;
}

.party-news-lists {
    flex: 1;
    display: flex;
    position: relative;
}

.party-news-main-title {

    font-weight: bold;
    font-size: 36px;
    color: #1C1C1C;
    letter-spacing: 3px;
    margin: 0;
}

/* 新的标签页导航 */
.party-tabs-new {
    display: flex;
    gap: 0;
    /* border-bottom: 2px solid #E98920; */
    margin-bottom: 30px;
}

.party-tab-btn-new {
    padding: 15px 30px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    white-space: nowrap;
}

.party-tab-btn-new:hover {
    color: #E98920;
}

.party-tab-btn-new.active {
    color: #E98920;
    border-bottom-color: #E98920;
    font-weight: 600;
}

/* 新的新闻列表 */
.party-news-list-new {
    display: none;
    flex-direction: column;
    gap: 0;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 110px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.party-news-list-new.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.party-news-list-new.fading-out {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.party-news-list-new::-webkit-scrollbar {
    display: none;
}

.party-news-empty {
    padding: 40px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
    letter-spacing: 1px;
}

.party-news-more {
    margin-top: 30px;
    text-align: right;
}

.party-news-more-fixed {
    position: absolute;
    right: 40px;
    bottom: 30px;
    margin-top: 0;
    width: auto;
    display: inline-flex;
    justify-content: flex-end;
    z-index: 2;
}

.party-news-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #E98920;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.party-news-more-link svg {
    transition: transform 0.3s ease;
}

.party-news-more-link:hover svg {
    transform: translateX(4px);
}

.party-news-item-new {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
}

.party-news-list-new.active .party-news-item-new {
    animation: fadeInUp 0.5s ease forwards;
}

.party-news-list-new.active .party-news-item-new:nth-child(1) {
    animation-delay: 0.1s;
}

.party-news-list-new.active .party-news-item-new:nth-child(2) {
    animation-delay: 0.15s;
}

.party-news-list-new.active .party-news-item-new:nth-child(3) {
    animation-delay: 0.2s;
}

.party-news-list-new.active .party-news-item-new:nth-child(4) {
    animation-delay: 0.25s;
}

.party-news-list-new.active .party-news-item-new:nth-child(5) {
    animation-delay: 0.3s;
}

.party-news-list-new.active .party-news-item-new:nth-child(6) {
    animation-delay: 0.35s;
}

.party-news-list-new.active .party-news-item-new:nth-child(n+7) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.party-news-item-new:hover {
    background: rgba(233, 137, 32, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 8px;
}

.party-news-item-date {

    font-weight: 400;
    font-size: 14px;
    color: #1C1C1C;
    letter-spacing: 1px;
    white-space: nowrap;
    min-width: 110px;
}

.party-news-item-tag {

    font-weight: 400;
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
    white-space: nowrap;
}

.party-news-item-title {
    flex: 1;

    font-weight: 400;
    font-size: 16px;
    color: #1C1C1C;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.party-news-item-new:hover .party-news-item-title {
    color: #E98920;
}

.party-news-item-arrow {
    flex-shrink: 0;
    color: #333;
    transition: all 0.3s ease;
}

.party-news-item-new:hover .party-news-item-arrow {
    color: #E98920;
    transform: translateX(4px);
}

/* 第一项新闻特殊样式 */
.party-news-item-featured {
    align-items: flex-start !important;
}

.party-news-item-date-featured {
    background: rgba(28, 28, 28, 0.05);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    min-width: 91px;
    max-width: 91px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.party-date-day {

    font-weight: bold;
    font-size: 36px;
    color: #E98920;
    line-height: 1;
    margin-bottom: 5px;
}

.party-date-month {

    font-weight: 400;
    font-size: 12px;
    color: #666;
    line-height: 1;
}

.party-news-item-content-featured {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-left: 20px;
}

.party-news-item-title-featured {

    font-weight: 500;
    font-size: 18px;
    color: #1C1C1C;
    line-height: 1.6;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.party-news-item-featured:hover .party-news-item-title-featured {
    color: #E98920;
}

/* 党群建设容器 */
.party-container {
    display: flex;
    width: 100%;
    height: 100vh;
}
.party-left {
    flex: 15vw;
    padding: 60px 80px 60px 280px;
}
.party-right {
    flex: 85vw;
    padding: 5vw 0;
    padding-right: 5vw;
}
/* 左侧导航 */
.party-sidebar {
    width: 200px;
    background: white;
    padding: 60px 0;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.party-nav-item {
    margin-bottom: 8px;
}

.party-nav-link {
    display: block;
    padding: 15px 30px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.party-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(44, 90, 160, 0.1) 0%, rgba(44, 90, 160, 0.05) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.party-nav-link:hover {
    color: #333;
    transform: translateX(5px);
}

.party-nav-link:hover::before {
    width: 100%;
}

.party-nav-item.active .party-nav-link {
    color: #2c5aa0;
    background: linear-gradient(90deg, rgba(44, 90, 160, 0.15) 0%, rgba(44, 90, 160, 0.08) 100%);
    border-left-color: #2c5aa0;
    font-weight: 600;
    transform: translateX(8px);
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

/* 主要内容区域 */
.party-main {
    margin-top: 2vw;
    flex: 1;
    display: flex;
    gap: 30px;
}
.party-text {
    display: flex; 
    align-items: flex-end;
}
.party-text h3 {

font-weight: 300;
font-size: 15px;
color: #1C1C1C;
line-height: 49px;
letter-spacing: 1px;
text-align: left;
font-style: normal;
text-transform: none;
}
.party-text h2 {

font-weight: bold;
font-size: 40px;
color: #1C1C1C;
letter-spacing: 5px;
text-align: left;
font-style: normal;
text-transform: none;
}
/* 主要新闻卡片 */
.party-featured-news {
    background: white;
    /* border-radius: 16px; */
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 70vh;
    flex: 1;
}

.party-featured-image {
    height: 60%;
    overflow: hidden;
}

.party-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.party-featured-news:hover .party-featured-image img {
    transform: scale(1.05);
}

.party-featured-content {

    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.party-featured-tag {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 20px;
}

.party-featured-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}

.party-featured-desc {

font-weight: 400;
font-size: 15px;
color: #000000;
line-height: 28px;
letter-spacing: 1px;
text-align: left;
font-style: normal;
text-transform: none;
margin-top: 20px;
}

.party-featured-date {

font-weight: 300;
font-size: 15px;
color: #000000;
line-height: 32px;
letter-spacing: 1px;
text-align: left;
font-style: normal;
text-transform: none;
}

/* 右侧内容 */
.party-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    height: 70vh;
    flex: 1;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.party-news {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.party-news h2 {
    font-size: 48px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 2px;
}

.party-subtitle {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 标签页导航 */
.party-tabs {
    margin-top: 20px;
}

.party-tab-nav {
    display: flex;
    border-bottom: 1px solid #000;
    padding: 0 20px;
}

.party-tab-btn {
    padding: 20px 40px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.party-tab-btn:hover {
    color: #333;
    /* background: rgba(44, 90, 160, 0.05); */
}

.party-tab-btn.active {
    color: #E98920;
    /* border-bottom-color: #2c5aa0; */
    /* background: rgba(44, 90, 160, 0.08); */
    font-weight: 600;
}

/* 新闻列表 */
.party-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.party-news-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: white;
    padding: 20px 40px;
    border-bottom: 1px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
}
.party-news-tag-empty {
    width: 132px;
    height: 132px;
}
.party-news-item img {
    width: 132px;
    height: 132px;
    object-fit: cover;
}
.party-news-item:hover {
    background: rgba(44, 90, 160, 0.02);
}

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

.party-news-tag {
    width: auto;
    height: 32px;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 4px;
    object-fit: contain;
}

.party-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    height: 100%;
    
}

.party-news-content h4 {

font-weight: 400;
font-size: 16px;
color: #1C1C1C;
line-height: 29px;
letter-spacing: 2px;
text-align: left;
font-style: normal;
text-transform: none;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.party-news-date {

font-weight: 400;
font-size: 12px;
color: #1C1C1C;
line-height: 29px;
letter-spacing: 1px;
text-align: right;
font-style: normal;
text-transform: none;
}

/* 查看更多 */
.party-more {
    text-align: right;
    padding: 20px;

}

.party-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2c5aa0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.party-more-link:hover {
    color: #1e3f73;
    transform: translateX(4px);
}

.party-more-link svg {
    transition: transform 0.3s ease;
}

.party-more-link:hover svg {
    transform: translateX(2px);
}

/* 全部咨询按钮 */
.party-consultation-btn-wrapper {
    margin-top: 30px;
    text-align: right;
}

.party-consultation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #1e3f73;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.party-consultation-btn svg {
    transition: transform 0.3s ease;
}

.party-consultation-btn:hover {
    background: #1e3f73;
    border-color: #1e3f73;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
    color: white;
}

.party-consultation-btn:hover svg {
    transform: translateX(4px);
}

.party-consultation-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.3);
}

/* Swiper 轮播样式 */
.mySwiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.swiper-wrapper {
    height: 100%;
}

.swiper-slide {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-y: auto;
}

/* 确保每个slide占满整个视口 */
.swiper-slide.hero-banner,
.swiper-slide.company-overview,
.swiper-slide.statistics,
.swiper-slide.news-section,
.swiper-slide.party-building {
    min-height: 100vh;
     /*padding-top: 7vh; 为导航栏留出空间 */
    box-sizing: border-box;
}

/* 分页器样式 */
.swiper-pagination {
    right: 2rem !important;
    left: auto !important;
    width: auto !important;
    top: 50% !important;
    transform: translateY(-50%);
}

/* 首页轮播图分页器样式覆盖 */
.heroBannerSwiper .swiper-pagination {
    bottom: 30px !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    z-index: 1000 !important;
    position: absolute !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    pointer-events: auto !important;
}

.swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0.5rem 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #2c5aa0;
    transform: scale(1.2);
}

/* 首页轮播图分页器子元素样式 */
.heroBannerSwiper .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    display: inline-block !important;
}

.heroBannerSwiper .swiper-pagination-bullet-active {
    background: #fff !important;
    transform: scale(1.2) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    border-color: #fff !important;
}






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

/* 滑动动画效果 */
.swiper-slide {
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.swiper-slide-active,
.swiper-slide.slide-active {
    opacity: 1;
    transform: scale(1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .swiper-pagination {
        right: 1rem !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 2.5rem;
        height: 2.5rem;
        right: 1rem;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 0.8rem;
    }
    
    .swiper-slide.hero-banner,
    .swiper-slide.company-overview,
    .swiper-slide.statistics,
    .swiper-slide.news-section,
    .swiper-slide.party-building {
        padding-top: 7vh;
    }
}

@media (max-width: 480px) {
    .swiper-pagination {
        display: none; /* 在小屏幕上隐藏分页器 */
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 2rem;
        height: 2rem;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 0.7rem;
    }
}

/* 固定左侧导航栏 */
.fixed-sidebar {
    position: fixed;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 60px 0;
}

.fixed-sidebar.show {
    opacity: 1;
    visibility: visible;
}

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

.fixed-nav-item {
    margin-bottom: 8px;
}

.fixed-nav-link {
    display: block;
    padding: 15px 30px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.fixed-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(44, 90, 160, 0.1) 0%, rgba(44, 90, 160, 0.05) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.fixed-nav-link:hover {
    color: #333;
    transform: translateX(5px);
}

.fixed-nav-link:hover::before {
    width: 100%;
}

.fixed-nav-item.active .fixed-nav-link {
    color: #2c5aa0;
    background: linear-gradient(90deg, rgba(44, 90, 160, 0.15) 0%, rgba(44, 90, 160, 0.08) 100%);
    border-left-color: #2c5aa0;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.2);
}

/* 公示公告模块 */
.notice-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.swiper-slide.notice-section {
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.notice-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.notice-header {
    text-align: center;
    margin-bottom: 60px;
}

.notice-main-title {

    font-weight: bold;
    font-size: 48px;
    color: #1C1C1C;
    letter-spacing: 3px;
    margin: 0;
}

.notice-content {
    display: flex;
    gap: 0;
    margin-bottom: 60px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.notice-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.notice-card {
    flex: 1;
    background: transparent;
    border-radius: 0;
    padding: 50px 40px;
    box-shadow: none;
    transition: none;
    position: relative;
    min-height: 400px;
}

.notice-card:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: #f0f0f0;
}

.notice-card:hover {
    transform: none;
    box-shadow: none;
}

.notice-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.notice-card-title {

    font-weight: bold;
    font-size: 24px;
    color: #E98920;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
}

.notice-card-title::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 100px;
    height: 2px;
    background: #E98920;
}

.notice-more-link {

    font-weight: 400;
    font-size: 16px;
    color: #1C1C1C;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notice-more-link:hover {
    color: #666;
}

.notice-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.count-number {

    font-weight: bold;
    font-size: 36px;
    color: #E98920;
    line-height: 1;
}

.count-date {

    font-weight: 400;
    font-size: 14px;
    color: #666;
    letter-spacing: 1px;
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.notice-item:hover {
    background: rgba(233, 137, 32, 0.05);
    margin: 0 -20px;
    padding: 15px 20px;
    border-radius: 8px;
}

.notice-date {

font-weight: 400;
font-size: 14px;
color: #1C1C1C;
letter-spacing: 1px;
text-align: left;
font-style: normal;
text-transform: none;
}

.notice-title {

font-weight: 400;
font-size: 20px;
color: #1C1C1C;
letter-spacing: 2px;
text-align: left;
font-style: normal;
text-transform: none;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.notice-item:hover .notice-title {
    color: #E98920;
}

/* 第一行公告特殊样式 */
.notice-item-featured {
    padding: 25px 0 !important;
    border-bottom: 1px solid #f5f5f5 !important;
    align-items: flex-start !important;
}

.notice-item-featured .notice-date {
    background: rgba(28,28,28,0.05);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px 15px;
    min-width: 91px;
    max-width: 91px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.notice-item-featured .notice-date .date-day {
    font-size: 36px;
    font-weight: bold;
    color: #E98920;
    line-height: 1;
    margin-bottom: 5px;
}

.notice-item-featured .notice-date .date-month {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    line-height: 1;
}

.notice-item-featured .notice-title {
    
    line-height: 1.6;
    margin: 0;
    flex: 1;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-left: 20px;
}

.notice-item-featured .notice-number {
    display: none; /* 隐藏第一行的序号 */
}

.notice-number {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
}

.notice-arrow {
    width: 16px;
    height: 16px;
    fill: #333;
    transition: all 0.3s ease;
}

.notice-item:hover .notice-arrow {
    fill: #E98920;
    transform: translateX(2px);
}

.notice-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.notice-nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.notice-nav-btn:hover {
    border-color: #E98920;
    color: #E98920;
    transform: scale(1.05);
}

.notice-nav-btn:active {
    transform: scale(0.95);
}

.notice-pagination {
    display: flex;
    gap: 12px;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #E98920;
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: #E98920;
    opacity: 0.7;
}

/* Vue动画效果 - Vue 2语法 */
/* 页面切换动画 */
.fade-enter-active, .fade-leave-active {
    transition: all 0.4s ease;
}

.fade-enter {
    opacity: 0;
    transform: translateY(20px);
}

.fade-leave-to {
    opacity: 0;
    transform: translateY(-20px);
}

/* 列表项动画 */
.list-enter-active {
    transition: all 0.3s ease;
}

.list-leave-active {
    transition: all 0.3s ease;
    position: absolute;
}

.list-enter {
    opacity: 0;
    transform: translateX(30px);
}

.list-leave-to {
    opacity: 0;
    transform: translateX(-30px);
}

.list-move {
    transition: transform 0.3s ease;
}

/* 滚动条隐藏 */
.swiper-slide::-webkit-scrollbar {
    display: none;
}

.swiper-slide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Footer Section */
.footer-section {
    background: #f8f9fa;
}

.swiper-slide.footer-section {
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
}

.footer-banner-container {
    height: 40vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.footer-banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-banner-text {	
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #FFFFFF;
	width: 100%;
}

.footer-banner-main {
	font-family: "阿里妈妈数黑体 Bold", sans-serif;
	font-variation-settings: normal;
	font-weight: 700;
    font-size: 3rem;
    color: #FFFFFF;
    letter-spacing: 4px;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.footer-banner-sub {
	font-family: "阿里妈妈数黑体 Bold", sans-serif;
	font-variation-settings: normal;
	font-weight: 700;
    font-size: 30px;
    color: #FFFFFF;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

/* 底部 */
.footer {
    color: white;
    position: relative;
    display: flex;
    align-items: center;
}

/* 移动端底部 */
.mobile-footer {
    color: white;
}

.footer-content {
    width: 100%;
    position: relative;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    background: #233043;
}

/* 底部导航 */
.footer-nav {
    background: #233043;
    position: relative;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 15px 0;
}

.footer-nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-nav-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

.footer-nav-link:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -20px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}
.company-info img{
    width: 120px;
    height: 119px;
}

.company-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.company-name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.company-name-cn {

    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 1px;
}

.company-name-en {

    font-weight: 300;
    font-size: 10px !important;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.company-info h3 {
    font-size: 24px;
    margin-bottom: 1px;
    font-weight: bold;
}

.company-info p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}
/* 统一处理底部联系方式图标 */
.company-info p .mobile-contact-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
}

.qr-code p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.footer-bottom {
    background-color: rgba(35,48,67,0.8) !important;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==================== 响应式显示控制 ==================== */

/* 默认显示桌面版导航，隐藏移动版导航 */
.navbar {
    display: block;
}

.mobile-header {
    display: none;
}

.mobile-body {
    display: none;
}

.desktop-content {
    display: block;
}

/* 默认显示桌面版footer，隐藏移动版footer */
.footer {
    display: flex;
}

.mobile-footer {
    display: none;
}

/* 确保桌面版在大屏幕下正常显示 */
@media (min-width: 1025px) {
    .navbar {
        display: block !important;
    }
    
    .mobile-header {
        display: none !important;
    }
    
    .mobile-body {
        display: none !important;
    }
    
    .desktop-content {
        display: block !important;
    }
    
    /* 显示桌面版footer，隐藏移动版footer */
    .footer {
        display: flex !important;
    }
    
    .mobile-footer {
        display: none !important;
    }
    
    /* 隐藏移动端导航相关元素 */
    .mobile-header,
    .mobile-menu,
    .mobile-menu-overlay,
    .mobile-menu-btn {
        display: none !important;
    }
}

/* 当屏幕宽度小于1024px时，显示移动版导航，隐藏桌面版导航 */
@media (max-width: 1024px) {
    .party-news-more-fixed{
        bottom: 2px;
        right: 20px;
    }
    .navbar {
        display: none !important;
    }
    
    .mobile-header {
        display: block !important;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 10px 0;
        width: 100%;
    }
    
    /* 确保移动端导航元素在小屏幕下可见 */
    .mobile-menu-btn {
        display: flex !important;
    }
    
    /* 移动端导航菜单样式 */
    .mobile-menu,
    .mobile-menu-overlay {
        display: block !important;
    }
    
    
    /* 显示移动版footer，隐藏桌面版footer */
    .footer {
        display: none !important;
    }
    
    .mobile-footer {
        display: block !important;
    }
    
    /* 确保移动端页面占满整个视口 */
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    /* 隐藏桌面版的固定导航和其他元素 */
    .fixed-sidebar,
    .mySwiper,
    .swiper-pagination,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

/* ==================== 移动端样式 ==================== */

/* 移动端基础样式 */
.mobile-body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

/* 新的移动端导航样式 */
.mobile-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.mobile-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.mobile-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-logo-img {
    height: 40px;
    width: auto;
	padding-right: 5px;
}

/* 汉堡菜单按钮 */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
    position: relative;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    pointer-events: none;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 遮罩层 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 移动端菜单 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
}

/* 菜单头部 */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.mobile-menu-logo {
    height: 35px;
    width: auto;
}

.mobile-menu-close {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* 菜单列表 */
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover {
    background: #f8f9fa;
    color: #2c5aa0;
}

/* 子菜单箭头 */
.submenu-arrow {
    font-size: 18px;
    font-weight: bold;
    color: #999;
    transition: all 0.3s ease;
}

/* 子菜单 */
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    display: none !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* 子菜单展开状态 */
.mobile-submenu.show {
    display: block !important;
    opacity: 1;
    max-height: 500px;
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-submenu a::before {
    content: '•';
    position: absolute;
    left: 25px;
    color: #999;
}

.mobile-submenu a:hover {
    background: rgba(44, 90, 160, 0.1);
    color: #2c5aa0;
}

/* 移动端菜单搜索区域 */
.mobile-menu-search {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    margin-top: auto;
}

.mobile-search-box {
    position: relative;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    position: relative;
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-search-form:focus-within {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

/* 移动端搜索选择器样式 */
.mobile-search-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(44, 90, 160, 0.05);
    border-right: 1px solid #e1e5e9;
    min-width: 90px;
}

.mobile-search-selector {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    padding: 12px 25px 12px 12px;
    font-size: 12px;
    color: #2c5aa0;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    min-width: 75px;
    position: relative;
    z-index: 2;
}

.mobile-search-selector:hover {
    background: rgba(44, 90, 160, 0.08);
}

.mobile-search-selector:focus {
    background: rgba(44, 90, 160, 0.1);
}

.mobile-search-selector option {
    background: white;
    color: #333;
    padding: 8px 12px;
    font-size: 13px;
}

.mobile-search-selector-arrow {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #2c5aa0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.mobile-search-selector:focus + .mobile-search-selector-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-search-input {
    flex: 1;
    height: 38px;
    padding: 0 40px 0 12px;
    border: none;
    background: transparent;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}

.mobile-search-input::placeholder {
    color: #999;
    font-size: 12px;
}

.mobile-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    background: #2c5aa0;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-search-btn:hover {
    background: #1e3f73;
    transform: translateY(-50%) scale(1.05);
}

.mobile-search-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.mobile-search-btn svg {
    width: 12px;
    height: 12px;
}

/* 联系信息 */
.mobile-menu-contact {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    margin-top: auto;
}

.mobile-menu-contact p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.mobile-menu-contact p:last-child {
    margin-bottom: 0;
}

/* 防止背景滚动 */
body.menu-open {
    overflow: hidden;
}

/* 滚动条样式 */
.mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 移动端主横幅 */
.mobile-hero {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mobile-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;

    font-weight: bold;
    font-size: 15px;
    color: #233043;
    padding: 0 20px;
}
.mobile-hero-content p {

font-weight: 300;
font-size: 9px;
color: #233043;
}
.mobile-hero-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* 移动端轮播图样式 */
.mobile-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mobile-carousel-container {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.mobile-carousel-slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 轮播图指示器 */
.mobile-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.mobile-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-carousel-dot.active {
    background: #E98920;
    transform: scale(1.2);
}

/* 轮播图导航按钮 */
.mobile-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.mobile-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.mobile-carousel-nav svg {
    width: 20px;
    height: 20px;
    color: #333;
}

.mobile-carousel-prev {
    left: 15px;
}

.mobile-carousel-next {
    right: 15px;
}

/* 移动端通用模块样式 */
.mobile-section {
    padding: 20px;
    background: white;
    margin-bottom: 10px;
}

.mobile-section-header {
    text-align: left;
    margin-bottom: 10px;
}
/* .mobile-section-header-news {
    text-align: left;
    margin-bottom: 10px;
} */
.mobile-section-title {

font-weight: bold;
font-size: 16px;
color: #1C1C1C;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}
.mobile-section-title-news{
    width: 130px;

    font-weight: bold;
    font-size: 16px;
    color: #1C1C1C;
    letter-spacing: 2px;
}
.mobile-section-subtitle {

font-weight: bold;
font-size: 12px;
color: #1C1C1C;
    margin: 0;
    letter-spacing: 1px;
}

/* 移动端公司概况 */
.mobile-company {
    background: #f8f9fa;
    border-bottom: 10px solid #233043;
    padding-bottom: 30px;
}

.mobile-company-desc {

font-weight: 300;
font-size: 10px;
color: #1C1C1C;
line-height: 17px;
letter-spacing: 1px;
    text-indent: 2em;
    margin-bottom: 20px;
}

.mobile-company-stats {
    display: flex;
    justify-content: space-around;
    background: white;
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.mobile-stat-item {
    text-align: center;
    flex: 1;
}

.mobile-stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 8px;
}

.mobile-stat-number span {
    font-size: 16px;
}

.mobile-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* 移动端公司概况操作按钮区域 */
.mobile-company-actions {
    text-align: right;
    border-radius: 8px;
    padding: 15px 20px;
    position: relative;
    margin-top: 15px;
}

.mobile-company-action-text {
    flex: 1;
}

.mobile-action-title {

font-weight: bold;
font-size: 10px;
color: #233043;
line-height: 17px;
letter-spacing: 1px;
    margin: 0;
}

.mobile-company-inquiry-btn {
    background: #233043;
border-radius: 3px 3px 3px 3px;
    color: white;
    border: none;
    padding: 10px 10px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(35, 48, 67, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 60px;
}

.mobile-company-inquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.mobile-company-inquiry-btn:hover::before {
    left: 100%;
}

.mobile-company-inquiry-btn:hover {
    background: #1a252f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(35, 48, 67, 0.3);
}

.mobile-company-inquiry-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(35, 48, 67, 0.3);
}

.mobile-company-inquiry-btn a {
    position: relative;
    z-index: 1;
    color: white;
}

/* 移动端新闻资讯 */
.mobile-news {
    background: white;
}

.mobile-news-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* 左侧主要新闻 */
.mobile-news-featured {
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mobile-news-image {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.mobile-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-news-info {
    padding: 12px;
}

.mobile-news-title {

    font-weight: 400;
    font-size: 12px;
    color: #1C1C1C;
    line-height: 18px;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-news-desc {

    font-weight: 300;
    font-size: 10px;
    color: #666;
    line-height: 15px;
    letter-spacing: 0.5px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 右侧新闻列表容器 */
.mobile-news-list {
    flex: 1;
    position: relative;
}

/* 水平滚动容器 */
.mobile-news-scroll-container {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    /* 隐藏默认滚动条 */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* 限制容器宽度，只显示两个新闻项 */
    width: calc(2 * 200px + 18px); /* 两个新闻项宽度 + 一个间距 */
}

.mobile-news-scroll-container::-webkit-scrollbar {
    display: none;
}

.mobile-news-item {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 200px;
}

.mobile-news-item-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.mobile-news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-news-item-content {
    padding: 15px 18px;
}

.mobile-news-item-title {

    font-weight: 400;
    font-size: 14px;
    color: #1C1C1C;
    line-height: 20px;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-news-item-desc {

    font-weight: 300;
    font-size: 12px;
    color: #666;
    line-height: 18px;
    letter-spacing: 0.5px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 自定义水平滚动条 */
.mobile-news-scrollbar {
    position: relative;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.mobile-news-scrollbar-thumb {
    height: 100%;
    background: #233043;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 30%;
    position: absolute;
    left: 0;
}

/* 滚动条动画效果 */
.mobile-news-scroll-container:hover + .mobile-news-scrollbar .mobile-news-scrollbar-thumb {
    background: #1a252f;
}

/* 移动端党群建设 */
.mobile-party {
    background: #f8f9fa;
}

.mobile-party-featured {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.mobile-party-image {
    height: 180px;
    overflow: hidden;
}

.mobile-party-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-party-info {
    padding: 20px;
    background: #fff;
}

.mobile-party-tag {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.mobile-party-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.mobile-party-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.mobile-party-date {
    font-size: 13px;
    color: #999;
}

.mobile-party-tabs {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* margin-top: 30px; */
}

.mobile-tab-nav {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-tab-btn {
    flex: 1;
    padding: 15px 10px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 137, 32, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-tab-btn:hover::before {
    left: 100%;
}

.mobile-tab-btn:hover {
    color: #E98920;
    background: rgba(233, 137, 32, 0.05);
}

.mobile-tab-btn.active {
    color: #E98920;
    border-bottom-color: #E98920;
    font-weight: 600;
    background: rgba(233, 137, 32, 0.08);
}

.mobile-tab-btn:active {
    transform: scale(0.98);
}

.mobile-party-list {
    padding: 0;
}

/* 标签页内容切换 */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 标签页内容项动画 */
.tab-content.active .mobile-party-item {
    animation: slideInUp 0.5s ease forwards;
}

.tab-content.active .mobile-party-item:nth-child(1) {
    animation-delay: 0.1s;
}

.tab-content.active .mobile-party-item:nth-child(2) {
    animation-delay: 0.2s;
}

.tab-content.active .mobile-party-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-party-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
}

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

.mobile-party-item-tag {
    width: 132px;
    height: 132px;
    flex-shrink: 0;
}

.mobile-party-item-tag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-party-item-content {
    flex: 1;
}

.mobile-party-item-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-party-item-date {
    font-size: 12px;
    color: #999;
}

/* 移动端公示公告 */
.mobile-notice {
    background: white;
}

/* 只在1024px以下显示移动端公示公告 */
@media (min-width: 1025px) {
    .mobile-notice {
        display: none;
    }
}

.mobile-notice-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px 20px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.mobile-notice-title {
    font-size: 20px;
    font-weight: bold;
    color: #E98920;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
}

.mobile-notice-title::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #E98920;
}

.mobile-notice-more {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.mobile-notice-featured {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-notice-date-card {
    background: rgba(28,28,28,0.05);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 15px 12px;
    min-width: 70px;
    max-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
}

.mobile-date-day {
    font-size: 24px;
    font-weight: bold;
    color: #E98920;
    line-height: 1;
    margin-bottom: 3px;
}

.mobile-date-month {
    font-size: 11px;
    color: #666;
    line-height: 1;
}

.mobile-notice-info {
    flex: 1;
}

.mobile-notice-item-title {
    font-size: 16px;
    font-weight: 500;
    color: #1C1C1C;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 1px;
}

.mobile-notice-list {
    padding: 0;
}

.mobile-notice-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

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

.mobile-notice-item:active {
    background: rgba(233, 137, 32, 0.05);
}

.mobile-notice-item-date {
    font-size: 13px;
    color: #1C1C1C;
    white-space: nowrap;
    min-width: 75px;
    letter-spacing: 1px;
}

.mobile-notice-item .mobile-notice-item-title {
    font-size: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-notice-arrow {
    width: 16px;
    height: 16px;
    color: #333;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mobile-notice-item:active .mobile-notice-arrow {
    color: #E98920;
    transform: translateX(2px);
}

/* 移动端底部 */
.mobile-footer {
    
    color: white;
}

.mobile-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #233043;
}

.mobile-footer-info {
    flex: 1;
}

/* 公司信息区域 */
.mobile-footer-company {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-footer-logo {
    flex-shrink: 0;
}

.mobile-logo-circle {
    width: 60px;
    height: 60px;
}
.mobile-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.mobile-company-name {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-company-name-cn {
    margin: 0;

    font-weight: bold;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.mobile-company-name-en {
    margin: 0;

    font-weight: 300;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    letter-spacing: 0.3px;
   
}

.mobile-company-name p {
    margin: 0;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
}

/* 联系信息 */
.mobile-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-contact-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    filter: brightness(1.1);
}

/* 二维码区域 */
.mobile-footer-qr {
    flex-shrink: 0;
    text-align: center;
}

.mobile-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-qr-code {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-qr-text {
    font-size: 11px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    text-align: center;
}

/* 底部版权信息 */
.mobile-footer-bottom {
    background: rgba(35,48,67,0.8);
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-footer-copyright {
    font-size: 11px;
    margin: 0 0 5px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.mobile-footer-icp {
    font-size: 11px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* 移动端搜索框响应式调整 */
@media (max-width: 480px) {
    .mobile-search-form {
        border-radius: 20px;
    }
    
    .mobile-search-selector-wrapper {
        min-width: 75px;
    }
    
    .mobile-search-selector {
        padding: 10px 20px 10px 10px;
        font-size: 11px;
        min-width: 65px;
    }
    
    .mobile-search-selector-arrow {
        right: 4px;
    }
    
    .mobile-search-selector-arrow svg {
        width: 10px;
        height: 10px;
    }
    
    .mobile-search-input {
        height: 34px;
        font-size: 12px;
        padding: 0 35px 0 10px;
    }
    
    .mobile-search-input::placeholder {
        font-size: 11px;
    }
    
    .mobile-search-btn {
        width: 26px;
        height: 26px;
        right: 3px;
    }
    
    .mobile-search-btn svg {
        width: 10px;
        height: 10px;
    }
}

/* 屏幕宽度小于350px时调整公司名称样式 */
@media (max-width: 350px) {
    .mobile-company-name-cn {
        font-size: 10px;
    }
    
    .mobile-company-name-en {
        font-size: 6px;
    }
}

/* 移动端响应式调整 */
@media (max-width: 480px) {
    .mobile-hero {
        height: 200px;
    }
    
    .mobile-hero-title {
        font-size: 20px;
    }
    
    .mobile-section {
        padding: 30px 0;
    }
    
    .mobile-section-title {
        font-size: 20px;
    }
    
    .mobile-company-stats {
        padding: 20px 10px;
    }
    
    .mobile-stat-number {
        font-size: 24px;
    }
    
    /* 移动端公司概况操作按钮响应式 */
    .mobile-company-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        text-align: center;
        padding: 15px;
    }
    
    .mobile-action-title {
        font-size: 13px;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .mobile-company-inquiry-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 6px;
        min-width: auto;
    }
    
    /* 移动端新闻资讯响应式 */
    .mobile-news-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-news-featured {
        order: 1;
    }
    
    .mobile-news-list {
        order: 2;
    }
    
    .mobile-news-image {
        height: 140px;
    }
    
    .mobile-news-item {
        width: 180px;
    }
    
    .mobile-news-scroll-container {
        width: calc(2 * 180px + 18px); /* 小屏幕下两个新闻项宽度 + 一个间距 */
    }
    
    .mobile-news-item-image {
        height: 110px;
    }
    
    .mobile-news-item-content {
        padding: 12px 15px;
    }
    
    .mobile-news-item-title {
        font-size: 13px;
        line-height: 18px;
    }
    
    .mobile-news-item-desc {
        font-size: 11px;
        line-height: 16px;
    }
    
    .mobile-party-image {
        height: 160px;
    }
    
    .mobile-footer-content {
        gap: 20px;
        text-align: left;
    }
    
    .mobile-footer-info {
        order: 1;
    }
    
    .mobile-footer-qr {
        order: 2;
        align-self: center;
    }
    
    .mobile-footer-company {
        justify-content: flex-start;
        text-align: left;
    }
    
    .mobile-company-name-cn {
        font-size: 11px;
    }
    
    .mobile-company-name-en {
        font-size: 7px;
    }
    
    .mobile-contact-item {
        font-size: 12px;
    }
    
    .mobile-qr-code {
        width: 70px;
        height: 70px;
    }
    
    .mobile-qr-text {
        font-size: 10px;
    }
}

/* 新的党群建设布局响应式 */
@media (max-width: 1024px) {
    .party-container-new {
        padding: 40px 40px;
    }
    
    .party-main-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .party-carousel-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .party-title-white,
    .party-title-red {
        font-size: 48px;
    }
    
    .party-news-section {
        padding: 30px 30px;
    }
}

@media (max-width: 768px) {
    .party-container-new {
        padding: 30px 20px;
    }
    
    .party-title-section {
        margin-bottom: 30px;
    }
    
    .party-carousel-overlay {
        padding: 40px 30px;
    }
    
    .party-carousel-content {
        max-width: 100%;
    }
    
    .party-title-white,
    .party-title-red {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .party-carousel-year {
        font-size: 16px;
    }
    
    .party-carousel-news-box {
        padding: 15px 20px;
    }
    
    .party-carousel-news-bar {
        padding: 12px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .party-carousel-news-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    
    .party-carousel-news-title-white {
        font-size: 14px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .party-carousel-news-date-red {
        font-size: 14px;
    }
    
    .party-carousel-news-indicators-inline {
        gap: 6px;
    }
    
    .party-indicator-inline {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .party-news-section {
        padding: 25px 20px;
    }
    
    .party-news-main-title {
        font-size: 28px;
    }
    
    .party-tab-btn-new {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .party-news-item-new {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .party-news-item-date {
        min-width: 90px;
        font-size: 12px;
    }
    
    .party-news-item-tag {
        font-size: 12px;
    }
    
    .party-news-item-title {
        font-size: 14px;
        width: 100%;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar-right {
        gap: 15px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    /* 移动端隐藏下拉菜单 */
    .dropdown-menu {
        display: none;
    }
}

/* 平板设备响应式 */
@media (max-width: 1024px) {
    .navbar-nav {
        gap: 4vw;
    }
    
    .dropdown-menu {
        min-width: 180px;
    }
    
    .dropdown-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .search-form {
        border-radius: 20px;
    }
    
    .search-selector-wrapper {
        min-width: 80px;
    }
    
    .search-selector {
        padding: 10px 25px 10px 12px;
        font-size: 12px;
        min-width: 70px;
    }
    
    .search-selector-arrow {
        right: 6px;
    }
    
    .search-selector-arrow svg {
        width: 10px;
        height: 10px;
    }
    
    .search-input {
        height: 36px;
        font-size: 13px;
        padding: 0 40px 0 12px;
    }
    
    .search-input::placeholder {
        font-size: 12px;
    }
    
    .search-btn {
        width: 28px;
        height: 28px;
        right: 4px;
    }
    
    .search-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* 党群建设响应式 */
    .party-container {
        flex-direction: column;
        height: auto;
    }
    
    .party-sidebar {
        width: 100%;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        padding: 20px 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
    }
    
    .party-nav-list {
        display: flex;
        overflow-x: auto;
        padding: 0 20px;
    }
    
    .party-nav-item {
        margin-bottom: 0;
        margin-right: 20px;
        white-space: nowrap;
    }
    
    .party-nav-link {
        padding: 10px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .party-nav-link::before {
        display: none;
    }
    
    .party-nav-link:hover {
        transform: none;
        background: rgba(44, 90, 160, 0.05);
    }
    
    .party-nav-item.active .party-nav-link {
        border-left: none;
        border-bottom-color: #2c5aa0;
        background: rgba(44, 90, 160, 0.1);
        transform: none !important;
        box-shadow: none !important;
    }
    
    .party-main {
        padding: 40px 20px;
    }
    
    .party-featured-news {
        flex-direction: column;
        min-height: auto;
    }
    
    .party-featured-image {
        flex: none;
        height: 200px;
    }
    
    .party-featured-content {
        padding: 30px 25px;
    }
    
    .party-featured-title {
        font-size: 20px;
    }
    
    .party-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .party-tab-nav {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .party-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    /* 底部导航响应式 */
    .footer-navigation {
        flex-wrap: wrap;
        gap: 20px;
        padding: 10px 0;
    }
    
    .footer-nav-link {
        font-size: 13px;
    }
    
    .footer-nav-link:not(:last-child)::after {
        right: -10px;
    }
    
    .overview-icons {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .icon-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* 新闻资讯响应式 */
    .news-container {
        flex-direction: column;
        height: auto;
    }
    
    .news-sidebar {
        width: 100%;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        padding: 20px 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
    }
    
    .news-nav-list {
        display: flex;
        overflow-x: auto;
        padding: 0 20px;
    }
    
    .news-nav-item {
        margin-bottom: 0;
        margin-right: 20px;
        white-space: nowrap;
    }
    
    .news-nav-link {
        padding: 10px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
        transform: none !important;
        box-shadow: none !important;
    }
    
    .news-nav-link::before {
        display: none;
    }
    
    .news-nav-link:hover {
        transform: none;
        background: rgba(44, 90, 160, 0.05);
    }
    
    .news-nav-item.active .news-nav-link {
        border-left: none;
        border-bottom-color: #2c5aa0;
        background: rgba(44, 90, 160, 0.1);
        transform: none !important;
        box-shadow: none !important;
    }
    
    .news-main {
        padding: 40px 20px;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .news-main-title {
        font-size: 32px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .news-navigation {
        gap: 20px;
        padding-top: 30px;
    }
    
    .news-nav-progress {
        width: 200px;
    }
    
    /* Footer banner 文字响应式 - 768px */
    .footer-banner-main {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .footer-banner-sub {
        font-size: 24px;
        letter-spacing: 1.5px;
    }
    
    /* 公示公告响应式 - 768px */
    .notice-section {
        padding: 60px 0;
    }
    
    .swiper-slide.notice-section {
        padding: 60px 0;
    }
    
    .notice-container {
        padding: 0 20px;
    }
    
    .notice-header {
        margin-bottom: 40px;
    }
    
    .notice-main-title {
        font-size: 36px;
    }
    
    .notice-content {
        flex-direction: column;
        gap: 0;
        margin-bottom: 50px;
    }
    
    .notice-card {
        padding: 40px 25px;
        min-height: 350px;
    }
    
    .notice-card:first-child::after {
        right: auto;
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 0;
        width: auto;
        height: 1px;
    }
    
    .notice-card-title {
        font-size: 22px;
    }
    
    .count-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar-brand .brand-text {
        display: none;
    }
    
    .search-form {
        border-radius: 18px;
        max-width: 200px;
    }
    
    .search-selector-wrapper {
        min-width: 65px;
    }
    
    .search-selector {
        padding: 8px 20px 8px 10px;
        font-size: 11px;
        min-width: 55px;
    }
    
    .search-selector-arrow {
        right: 4px;
    }
    
    .search-selector-arrow svg {
        width: 8px;
        height: 8px;
    }
    
    .search-input {
        height: 32px;
        font-size: 12px;
        padding: 0 35px 0 10px;
    }
    
    .search-input::placeholder {
        font-size: 11px;
    }
    
    .search-btn {
        width: 24px;
        height: 24px;
        right: 4px;
    }
    
    .search-btn svg {
        width: 10px;
        height: 10px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2,
    .overview-text h2,
    .party-news h2 {
        font-size: 24px;
    }
    
    .news-list-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .news-tag {
        align-self: flex-start;
    }
    
    /* 新闻资讯小屏幕响应式 */
    .news-main {
        padding: 30px 15px;
    }
    
    .news-main-title {
        font-size: 24px;
    }
    
    .news-subtitle {
        font-size: 14px;
    }
    
    .news-more-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .news-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .news-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .news-nav-progress {
        flex: 1;
        max-width: 150px;
    }
    
    .news-card-title {
        font-size: 16px;
    }
    
    .news-card-desc {
        font-size: 13px;
    }
    
    .news-info {
        padding: 20px 18px;
    }
    
    /* 党群建设小屏幕响应式 */
    .party-main {
        padding: 30px 15px;
    }
    
    .party-featured-title {
        font-size: 18px;
    }
    
    .party-featured-desc {
        font-size: 14px;
    }
    
    .party-featured-content {
        padding: 25px 20px;
    }
    
    .party-news h2 {
        font-size: 24px;
    }
    
    .party-subtitle {
        font-size: 14px;
    }
    
    /* 全部咨询按钮响应式 */
    .party-consultation-btn-wrapper {
        margin-top: 20px;
        text-align: center;
    }
    
    .party-consultation-btn {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    /* 公示公告响应式 - 480px */
    .notice-container {
        padding: 0 15px;
    }
    
    .notice-main-title {
        font-size: 24px;
    }
    
    .notice-content {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .notice-card {
        padding: 35px 15px;
        min-height: 300px;
    }
    
    .notice-card-title {
        font-size: 18px;
    }
    
    .count-number {
        font-size: 24px;
    }
    
    .notice-title {
        font-size: 14px;
    }
    
    .notice-date {
        font-size: 12px;
        min-width: 65px;
    }
    
    .notice-navigation {
        gap: 15px;
    }
    
    .notice-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .notice-nav-btn svg {
        width: 14px;
        height: 14px;
    }
    
    /* Footer banner 文字响应式 */
    .footer-banner-main {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .footer-banner-sub {
        font-size: 20px;
        letter-spacing: 1px;
    }
}
.index-logo-title{
	font-size: 0.9rem !important;
}
