/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    background-color: #f5f5f5;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1153px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶部导航 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 370px;
    height: 83px;
}

.school-name h1 {
    font-size: 24px;
    color: #0440B9;
    font-weight: bold;
    letter-spacing: 2px;
}

.school-name p {
    font-size: 12px;
    color: #666;
    letter-spacing: 1px;
}

.motto {
    padding-left: 20px;
    border-left: 1px solid #ddd;
    margin-left: 10px;
}

.motto p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.search-box {
    display: flex;
    align-items: center;
	flex-direction: column;
}

.search-box input {
    width: 200px;
    height: 32px;
    border: 1px solid #0440B9;
    border-right: none;
    padding: 0 10px;
    outline: none;
}

.search-box button {
    width: 40px;
    height: 32px;
    background-color: #0440B9;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* 主导航 */
.main-nav {
    background-color: #0440B9;
}

.nav-menu {
    display: flex;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 12px 30px;
    color: #fff;
    font-size: 15px;
    transition: background-color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #008000;
}

/* Banner轮播 */
.party_swiper {
	
	width: 1200px;
    margin: 0 auto;
    position: relative;
	
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.party_swiper-slider {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

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

/* 新闻中心 */
.news-section {
    padding: 20px 0;
    background-color: #F4F6F8;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* 左侧轮播 */
.news-slider {
    position: relative;
}

.slider-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.slider-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: #fff;
}

.slider-caption .label {
    display: inline-block;
    background-color: #0440B9;
    padding: 2px 10px;
    font-size: 12px;
    margin-bottom: 8px;
}

.slider-caption p {
    font-size: 14px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background-color: #fff;
}

/* 右侧新闻列表 */
.news-list {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0440B9;

    background-image: url(/template/1/default/images/sub_nav.png);
    background-repeat: no-repeat;
}

.section-header h3 {
    font-size: 18px;
    color: #333;
}

.title-cn {
    color: #0440B9;
    font-weight: bold;
}

.title-en {
    color: #ccc;
    font-size: 12px;
    margin-left: 5px;
}

.more {
    color: #07A354;
    font-size: 14px;
    font-weight: bold;
}

.featured-news {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.featured-news h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.news-date {
    color: #999;
    font-size: 12px;
    margin-bottom: 8px;
}

.news-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px dotted #eee;
}

.news-items li::before {
    content: "•";
    color: #0440B9;
    margin-right: 8px;
}

.news-items a {
    flex: 1;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    max-width: 400px;
}

.news-items a:hover {
    color: #0440B9;
}

.news-items .date {
    color: #999;
    font-size: 12px;
}

/* 学校党建 */
.party-building {
    background-image: url(/template/1/default/images/patBuil_bg.png);
    padding: 50px 0;
    color: #fff;
	
	display: block;
    height: 360px;
}

.party-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.party-text h3 {
    font-size: 20px;
    margin-bottom: 25px;

    background-image: url(/template/1/default/images/sub_nav.png);
    background-repeat: no-repeat;

}

.party-text .title-cn {
    color: #fff;
}

.party-text .title-en {
    color: rgba(255, 255, 255, 0.7);
}

.party-article h4 {
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.party-article h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 14px;
    background-color: #fff;
}

.party-article p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn-more {
    display: inline-block;
    padding: 8px 25px;
    background-color: #fff;
    color: #1976D2;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.3s;
}

.btn-more:hover {
    background-color: #f0f0f0;
}

.party-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}

/* 三栏内容区 */
.three-columns {
    padding: 40px 0;
    background-color: #F4F6F8;
}

.columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.column {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    max-width: 346px;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;

    background-image: url(/template/1/default/images/sub_nav.png);
    background-repeat: no-repeat;
}

.column-header h4 {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dot-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #0440B9;
    border-radius: 50%;
}

.column-header .title-en {
    font-size: 11px;
}

.column-header .more {
    font-size: 12px;
}

.column-image {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.column-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.column-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px dotted #eee;

    max-width: 380px;
}

.column-list li::before {
    content: "•";
    color: #ccc;
    margin-right: 8px;
}

.column-list a {
    flex: 1;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    align-items: center;
    gap: 5px;
}

.column-list .arrow {
    color: #ccc;
    font-size: 10px;
}

.column-list a:hover {
    color: #0440B9;
}

.column-list .date {
    color: #999;
    font-size: 12px;
}

/* 页脚 */
.footer {
    background-color: #256BD8;
    padding: 30px 0px 0px 0px;
    color: #fff;
}

.footer .container {
    width: 100%;

}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item .icon {
    font-size: 20px;
    color: #fff;
}

.contact-item p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.qr-codes {
    display: flex;
    gap: 20px;
}

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

.qr-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    background-color: #fff;
}

.qr-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.copyright {
    text-align: center;
    background-color: #0440b9;
    height: 50px;
    line-height: 50px;
}

.copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}


/************************** 列表页面  *****************************/

.page-container{
    background-color: #FFF;
}

.channel-box{
    display: flex;
}

.channel-nav {
    flex: 1;
	display:none;
}

.channel-nav ul {
    text-align: center;
}

.channel-nav ul li{
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.channel-nav ul li.active{
    border-inline-start-color: #057B05;
}

.channel-nav a{
    font-weight: bold;
}

.channel-nav a:hover {
    color: #008000;
}

.channel-list {
    flex: 4;
}

.channel-list .channle-name{
    font-weight: bold;
    background-color: #0440b9;
    color: white;
    padding: 10px 20px;
    margin: 10px;
}

.channel-list>ul{
    padding: 0px 20px;
}

.channel-list li {
    display: flex;
    justify-content: flex-start;
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

.channel-list li::before {
    content: "•";
    color: #0440B9;
    margin-right: 8px;
}

.channel-list a {
    flex: 1;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 976px;
}

.channel-list a:hover {
    color: #0440B9;
}

.channel-list .date {
    color: #999;
    font-size: 12px;
}

.channel-list .yema{
    text-align: center;
    padding: 20px;
}

/************************** 搜索页面  *****************************/
.search-page-list a{
    max-width: 1240px;
}


.search-page-list {
    flex: 4;
}

.search-page-list .channle-name{
    font-weight: bold;
    background-color: #0440b9;
    color: white;
    padding: 10px 20px;
    margin: 10px;
}

.search-page-list>ul{
    padding: 0px 20px;
}

.search-page-list li {
    display: flex;
    justify-content: flex-start;
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

.search-page-list li::before {
    content: "•";
    color: #0440B9;
    margin-right: 8px;
}

.search-page-list a {
    flex: 1;
    color: #666;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 976px;
}

.search-page-list a:hover {
    color: #0440B9;
}

.search-page-list .date {
    color: #999;
    font-size: 12px;
}

.search-page-list .yema{
    text-align: center;
    padding: 20px;
}


/************************** 详情页面  *****************************/

.artile .article-title {
    font-size: 2rem;
    color: #666;
    line-height: 1.6;
    max-width: 1100px;
    text-align: center;
    margin: auto;
}

.artile .article-shorttitle {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.artile .article-meta-box {
    text-align: center;
    margin: 10px 0px;
}


/* 文章正文段落 */
.news-section .breadcrumb{
    margin: 10px 0px 10px 20px;
    padding-top: 20px;
}

.news-section .breadcrumb .current{
    color: #E87C46;
}

.artile .article-content-box {
    max-width: 1100px; /* 限制宽度，避免行太长影响阅读 */
    margin: 30px auto; /* 上下间距，左右居中 */
    padding: 20px 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* 轻微阴影，提升层次感 */
}

.artile .article-content-box p {
    margin-bottom: 20px;
    text-align: justify; /* 两端对齐，排版更整齐 */
}

.article .articleUpDown {
    margin: 40px 0px;
}

.article .articleUpDown p {
    margin: 40px 0px;
}


.party_swiper {
    padding-top:0px;
}
.party_swiper h1 {
    font-size:36px;
    text-align:center;
    font-weight:normal;
}
.party_swiper h2 {
    font-size:18px;
    color:#535353;
    text-align:center;
    font-weight:normal;
    margin:20px 0 60px;
}
.party_swiper .swiper {
    width:700px;
    margin:0 auto;
    position:relative;
}
.current-swiper {
    width:420px;
    height:256px;
    border-radius:10px;
    margin:0 auto;
    box-shadow:0 0 20px rgba(0,0,0,0.05);
    position:relative;
    z-index:99;
}
.left-swiper {
	position: absolute;
    left: 0px;
    top: 20px;
    z-index: 1;
}
.right-swiper {
    position:absolute;
    right: 0px;
    left:auto;
    top:20px;
    z-index:1;
}

.swiper-wrapper .swiper-slide{
	background-size: cover !important;
}

.nocurrent-swiper {
    width:279px;
    height:200px;
    border-radius:8px;
    box-shadow:0 0 20px rgba(0,0,0,0.05);
}
.nocurrent-swiper:before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(237,240,240,0.4);
    z-index:99;
}

.swiper-button-prev {
    width:46px;
    height:46px;
    background:url(/template/1/default/images/curr_prev.png) no-repeat center center;
}
.swiper-button-next {
    width:46px;
    height:46px;
    background-size:auto;
    background-image:url(../images/curr_next.png);
}


.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{display: none}



.text-swiper  .swiper-slide{
	font-size: 16px;
}