/* 轮播图 */
.slider-wrapper {
	border-radius: 10px;
    overflow: hidden;	
    position: relative;
    width: 100%;
    height: 400px; /* 可以根据需要调整高度 */	
}
.slide.active {
    opacity: 1;
    display: block;
}
.slide-contentd{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 60px;
    max-width:1200px
}
.slide-content {
    bottom: 50px;
    left: 50px;
    max-width: 800px;
    background-color: rgba(0,0,0,0.6);
    padding: 20px;
    color: #fff;
    border-radius: 5px;
}
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    padding: 0 30px;
	max-width: 1200px;
	box-sizing:border-box;
}
.hero-section {
    margin-bottom: 20px;
}
.hero-slider {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
}
/* 左侧滚动图片新闻样式 */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-contentd {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    padding: 20px;
    color: #fff;
}
.slide-content .bptitle {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: 600;
}
.slide-content .bptitle a{
    color:#ffffff;
}
.slide-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}
.slider-prev, .slider-next {
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}
.slider-prev:hover, .slider-next:hover {
    background-color: #fff;
}
.slider-dots {
    display: flex;
    margin: 0 10px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background-color: #fff;
}

/* 荣誉榜 */
.honor-list {
    padding: 20px;
}

.honor-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.honor-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.honor-item i {
    font-size: 24px;
    color: #f57c00;
    margin-right: 15px;
}



/* 响应式设计 */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .slider-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) { 
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-container,
    .news-grid,
    .grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
        
    .slider-wrapper {
        height: 300px;
    }
    
    .slide-content {
        left: 20px;
        bottom: 20px;
        max-width: calc(100% - 40px);
    }
    
    .slide-content h2 {
        font-size: 22px;
    }
	.content-section {
		padding: 10px;
	}	
	.notice-content {
		padding: 0px;
	}	
}

@media (max-width: 576px) {
    .top-bar .container {
        flex-direction: column;
    }
   
    .site-title h1 {
        font-size: 20px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
        
    .slider-wrapper {
        height: 250px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
}

/* 首页通知公告区域样式 */
.home-notices {
    padding: 0 0 40px 0;
    background-color: #f5f5f5;
}

.home-notices .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.home-notices .section-header h2 {
    font-size: 24px;
    color: #2057a0;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.home-notices .section-header h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background-color: #2057a0;
}


.notices-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* 最新通知样式 */
.latest-notice {
    grid-column: 1;
}

.notice-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
	height:100%;
    border-left: 4px solid #2057a0;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.notice-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: #eaeaea;
    color: #666;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 15px;
}

.notice-tag.important {
    background-color: #f57c00;
    color: #fff;
	font-size: 16px;
    font-weight: 600;	
}

.notice-card .notice-title {
    font-size: 18px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.notice-card .notice-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice-card .notice-title a:hover {
    color: #2057a0;
}

.notice-card .notice-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notice-card .notice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #999;
}

.notice-meta span i {
    margin-right: 5px;
    color: #666;
}

.notice-card .read-more {
    display: inline-block;
    color: #2057a0;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notice-card .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.notice-card .read-more:hover i {
    transform: translateX(3px);
}

/* 其他通知列表样式 */
.notice-list-compact {
    grid-column: 2;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 20px 25px;
}

.notice-list-compact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-list-compact li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

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

.notice-list-compact .notice-category {
    background-color: #eaeaea;
    color: #666;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    margin-right: 15px;
}

.notice-list-compact .notice-title {
    flex: 1;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.notice-list-compact .notice-title:hover {
    color: #2057a0;
}

.notice-list-compact .notice-date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 15px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .notices-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .notices-container {
        grid-template-columns: 1fr;
    }
    
    .latest-notice, .notice-list-compact {
        grid-column: 1;
    }
    
    .latest-notice {
        margin-bottom: 20px;
    }
}

/* 通知公告选项卡样式 */
.notice-tabs {
    margin-top: 25px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.tab-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f5f9fd;
    border-bottom: 1px solid #e5e5e5;
}

.tab-item {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.tab-item:hover {
    background-color: #e9f2fc;
    color: #2057a0;
}

.tab-item.active {
    color: #2057a0;
    background-color: #fff;
    border-bottom: 3px solid #2057a0;
}

.tab-item.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
}

.tab-content {
    padding: 15px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* 响应式调整 */
@media (max-width: 768px) {
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-item {
        flex: 1 1 auto;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }
} 

/* 重点工作动态区域样式 */
.key-work-news {
    padding: 40px 0;
    background-color: #f9f9f9;
	margin-bottom: 30px;
}

.key-work-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.key-work-column {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #2057a0;
    color: #fff;
}

.column-header h3 {
    font-size: 18px;
    margin: 0;
    display: flex;
    align-items: center;
}

.column-header h3 i {
    margin-right: 8px;
}

.column-header .more-link {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.column-header .more-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.column-header .more-link:hover i {
    transform: translateX(3px);
}

.key-work-list {
    padding: 15px;
}

.key-work-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

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

.item-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.item-title a {
    color: #333;
    transition: color 0.3s ease;
}

.item-title a:hover {
    color: #2057a0;
}

.item-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-meta {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.item-date {
    display: flex;
    align-items: center;
}

.item-date i {
    margin-right: 5px;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .key-work-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .key-work-container {
        grid-template-columns: 1fr;
    }
}

/* 荣誉榜日期样式 */
.honor-date {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 5px;
}

.honor-date i {
    margin-right: 5px;
}

/* 调整荣誉内容的间距 */
.honor-content h4 {
    margin-bottom: 5px;
	color: #2057a0;
}

.honor-content p {
    margin-bottom: 5px;
}


/* 专题专栏区域样式 */
.special-columns {
    padding: 50px 0;
    background-color: #f9f9f9;
}

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

.special-column-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.column-image {
    height: 200px;
    overflow: hidden;
}

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

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

.column-info {
    padding: 20px;
    text-align: center;
    border-top: 3px solid #2057a0;
}

.column-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.column-link {
    display: inline-flex;
    align-items: center;
    color: #2057a0;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.column-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.column-link:hover {
    color: #153b6d;
}

.column-link:hover i {
    transform: translateX(3px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .special-columns-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .special-columns-container {
        grid-template-columns: 1fr;
    }
}








/* 顶部图片新闻和头条新闻布局 */
.top-news-section {
    padding: 20px 0;
}

.top-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: 400px;
}



/* 右侧头条新闻样式 */
.headline-news {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.headline-header h3 {
    font-size: 18px;
    color: #2057a0;
    display: flex;
    align-items: center;
    margin: 0;
}

.headline-header h3 i {
    margin-right: 8px;
    color: #e74c3c;
}

.headline-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 15px;
    overflow-y: auto;
}

.headline-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 15px;
}

.headline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.headline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background-color: #2057a0;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}

.date-day {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 14px;
    margin-top: 5px;
}

.headline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.headline-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.headline-title a {
    color: #333;
    transition: color 0.3s ease;
}

.headline-title a:hover {
    color: #2057a0;
}

.headline-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .top-news-grid {
        grid-template-columns: 1fr;
        height: auto;
    }  
}

/* 通知公告TAB栏目样式 */
.notice-tabs-section {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.notice-tabs-container {
    padding: 0;
}

.notice-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.notice-tab {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    border-bottom: 2px solid transparent;
}

.notice-tab:hover {
    color: #2057a0;
}

.notice-tab.active {
    color: #2057a0;
    border-bottom: 2px solid #2057a0;
    background-color: #fff;
}

.notice-content {
    padding: 15px;
}

.notice-pane {
    display: none;
}

.notice-pane.active {
    display: block;
}

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

.notice-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

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

.notice-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice-list li a:hover {
    color: #2057a0;
}

.notice-list .notice-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 15px;
    position: relative;
	max-width: 600px;
}

.notice-list .notice-title:before {
    content: "•";
    color: #2057a0;
    margin-right: 8px;
}

.notice-list .notice-date {
    color: #666;
    font-size: 13px;
    white-space: nowrap;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .notice-tabs {
        flex-wrap: wrap;
    }
    
    .notice-tab {
        flex: 0 0 50%;
    }
	.notice-list .notice-title {
		white-space: wrap;
	}		
}

@media (max-width: 576px) {
    .notice-list li a {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .notice-list .notice-date {
        margin-top: 5px;
        margin-left: 15px;
    }
}

/* 新闻动态TAB栏目样式 */
.news-tabs-section {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.news-tabs-container {
    padding: 0;
}

.news-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.news-tab {
    padding: 12px 15px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    border-bottom: 2px solid transparent;
}

.news-tab:hover {
    color: #2057a0;
}

.news-tab.active {
    color: #2057a0;
    border-bottom: 2px solid #2057a0;
    background-color: #fff;
}

.news-content {
    padding: 15px;
}

.news-pane {
    display: none;
}

.news-pane.active {
    display: block;
}

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

.news-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

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

.news-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-list li a:hover {
    color: #2057a0;
}

.news-list .news-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 15px;
    position: relative;
	max-width: 600px;
}

.news-list .news-title:before {
    content: "•";
    color: #2057a0;
    margin-right: 8px;
}

.news-list .news-date {
    color: #666;
    font-size: 13px;
    white-space: nowrap;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-tabs {
        flex-wrap: wrap;
    }
    
    .news-tab {
        flex: 0 0 50%;
    }
	.news-list .news-title {
		white-space: wrap;
	}		
}

@media (max-width: 576px) {
    .news-list li a {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-list .news-date {
        margin-top: 5px;
        margin-left: 15px;
    }
}






/* 头条新闻样式调整 */
.headline-section {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    padding: 0 0 15px 0;
}

.headline-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.headline-section .section-header h3 {
    font-size: 18px;
    color: #2057a0;
    display: flex;
    align-items: center;
    margin: 0;
}

.headline-section .section-header h3 i {
    margin-right: 8px;
    color: #e74c3c;
}

.headline-container {
    padding: 15px;
}

.headline-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px dashed #eee;
}

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

.headline-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background-color: #2057a0;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}

.date-day {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 14px;
    margin-top: 2px;
}

.headline-content {
    flex: 1;
}

.headline-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.headline-title a {
    color: #333;
    transition: color 0.3s ease;
}

.headline-title a:hover {
    color: #2057a0;
}

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

/* 响应式调整 */
@media (max-width: 768px) {
    .slider-wrapper {
        height: 300px;
    }
    
    .headline-item {
        flex-direction: column;
    }
    
    .headline-date {
        width: 80px;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .slider-wrapper {
        height: 250px;
    }
}

/* 新闻列表通用样式 */
.news-list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    display: flex;
    justify-content: space-between;
	padding: 0 15px 10px 15px;
    border-bottom: 1px dashed #eee;
}

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

.news-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

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

/* 专题专栏样式 */
.special-columns-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.special-column-card {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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



/* 律师之家样式调整 */
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-item {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #f0f7ff;
}

.service-icon {
    font-size: 24px;
    color: #2057a0;
    margin-bottom: 10px;
}

.service-info {
    text-align: center;
    width: 100%;
}

.service-title {
    font-size: 16px;
    margin-bottom: 8px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.service-link {
    display: inline-block;
    padding: 4px 10px;
    background-color: #2057a0;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    width: 80%;
}

.service-link:hover {
    background-color: #173e78;
    color: #fff;
}

/* 荣誉榜样式 */
.honor-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.honor-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.honor-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.honor-icon {
    color: #f57c00;
    font-size: 18px;
    margin-top: 2px;
}

.honor-content {
    flex: 1;
}

.honor-title {
    margin-bottom: 5px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.honor-item:hover .honor-title {
    color: #333;
    cursor: pointer;
}

.honor-date {
    font-size: 13px;
    color: #666;
    display: inline-block;
    transition: all 0.3s ease;
}
.honor-date:before {
    content: '\f073';
    font-family: 'font_icons';
    margin-right: 5px;    
}
.honor-item:hover .honor-date {
    color: #666;
}

.honor-item:hover .honor-date:before {
    font-weight: 400;
}



/* 友情链接样式 */
.links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.link-item {
    background-color: #f9f9f9;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.link-item:hover {
    background-color: #2057a0;
    color: #fff;
}

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

@media (max-width: 768px) {
    .special-columns-container {
        grid-template-columns: 1fr;
    }
}

/* 党建工作 - 水平布局新闻列表 */
.news-horizontal-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.news-horizontal-item {
    display: flex;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-horizontal-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.news-horizontal-image {
    flex: 0 0 40%;
    height: 195px;
    overflow: hidden;
}

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

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

.news-horizontal-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.news-horizontal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.6;
	min-height: 35px;
	font-family: 微软雅黑;
}

.news-horizontal-title a {
    color: #333;
    transition: color 0.3s ease;
}

.news-horizontal-title a:hover {
    color: #2057a0;
}

.news-horizontal-excerpt {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    flex: 1;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;	
	line-height:1.6;
}

.news-horizontal-date {
    font-size: 13px;
    color: #777;
}

.news-horizontal-date i {
    margin-right: 5px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .news-horizontal-item {
        flex-direction: column;
    }
    
    /* .news-horizontal-image { */
        /* flex: 0 0 auto; */
        /* height: 180px; */
        /* width: 100%; */
    /* } */
}



/* 专题报道大图版样式 */
.special-reports-large-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.special-report-large-item {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.special-report-large-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.report-large-image {
    width: 100%;
    height: 165px;
    overflow: hidden;
}

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

.special-report-large-item:hover .report-large-image img {
    transform: scale(1.05);
    cursor: pointer;
}

.report-large-info {
    padding: 12px;
    text-align: center;
    /* border-top: 2px solid #2057a0; */
    background-color: #f9f9f9;
}

.report-large-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: #333;
}

.article-large-count {
    font-size: 12px;
    color: #555;
    display: inline-block;
}

.article-large-count:before {
    content: '\e926';
    font-family: 'font_icons';
    margin-right: 5px;
    font-size: 10px;
}

@media (max-width: 768px) {
    .special-reports-large-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .report-large-image {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .special-reports-large-list {
        grid-template-columns: 1fr;
    }
    
    .report-large-image {
        height: 160px;
    }
}

/* 法律法规栏目样式 */
.legal-regulations-list {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.legal-item {
    padding: 10px 0;
    color: #000;
    text-decoration: none;
    border-bottom: 1px dashed #eee;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

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

.legal-item:before {
    content: "•";
    color: #2057a0;
    position: absolute;
    left: 0;
}

.legal-item:hover {
    color: #2057a0;
}

/* 文章详情页样式 */
.article-detail {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 25px;
}

.article-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.article-title {
    font-size: 24px;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #888;
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
}

.article-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.article-image {
    margin-bottom: 20px;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.article-content ol, .article-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-tags {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tag-label {
    font-weight: 500;
    margin-right: 10px;
    color: #666;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: #f0f0f0;
    color: #666;
    border-radius: 3px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #2057a0;
    color: #fff;
}

.article-actions {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.article-share {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.article-share span {
    margin-right: 10px;
    color: #666;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn i {
    font-size: 16px;
}

.share-btn:hover i.fa-weixin {
    color: #07c160;
}

.share-btn:hover i.fa-weibo {
    color: #e6162d;
}

.share-btn:hover i.fa-qq {
    color: #12b7f5;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.prev-article, .next-article {
    color: #666;
    transition: color 0.3s ease;
    max-width: 48%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prev-article:hover, .next-article:hover {
    color: #2057a0;
}

.prev-article i, .next-article i {
    margin: 0 5px;
}

/* 相关阅读样式 */
.related-articles {
    margin-top: 30px;
}

.related-articles .section-header {
    margin-bottom: 20px;
}

.item_one{margin-bottom:25px}
.friendly-links{
	max-width:1200px;margin:0 auto;background-color: #fff;padding: 20px;border-radius: 5px;	
}

@media (max-width: 768px) {
    .article-title {
        font-size: 20px;
    }
    
    .article-meta {
        gap: 10px;
    }
    
    .article-nav {
        flex-direction: column;
    }
    
    .prev-article, .next-article {
        max-width: 100%;
    }
	
	.news-item {
		flex-direction: column;
	}
	
	.news-title {
		white-space: wrap;
		padding-right: 0px;
	}
	.notice-list .notice-title {
		padding-right: 0px;
	}	
	.main-column .section-header {
		padding: 5px 15px 12px 15px;
	}
	.slide-content .bptitle {
		font-size: 18px;
	}	
	.item_one{margin-bottom:15px}	
}
	
@media (max-width: 1440px) {
	.notice-list .notice-title {
		white-space: wrap;
	}
}
@media (max-width: 576px) {
    .article-detail {
        padding: 15px;
    }
    
    .article-title {
        font-size: 18px;
    }
    
    .article-content {
        font-size: 15px;
    }
}









