/* 基础样式重置SourceHanSansSC-VF.ttf.woff2 */
@import url('fonts.css');
/* @font-face { */
  /* font-family: "SourceHanSansCN-Regular"; */
  /* src: url("font/SourceHanSans-Regular.woff2") format("woff2"), */
       /* url("font/SourceHanSans-Regular.woff") format("woff"), */
       /* url("font/SourceHanSans-Regular.ttf") format("truetype"); */
  /* font-display: swap; */
  /* font-weight: normal; */
  /* font-style: normal; */
/* } */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: SourceHanSansCN-Regular,-apple-system,  BlinkMacSystemFont, PingFang SC, "Microsoft YaHei", "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
    line-height: 1.4;
    color: #333;
    background-color: #f5f5f5;
	zoom:1.1;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 0 15px;*/
}

a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

a:hover {
    color: #2057a0;
}

ul {
    list-style: none;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.section-header h3 {
    font-size: 18px;
    color: #2057a0;
    display: flex;
    align-items: center;
    margin: 0;
}

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

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

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

.more-link:hover {
    color: #2057a0;
}

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

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
    font-size: 28px;
    color: #2057a0;
    padding-bottom: 15px;
}

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

/* 顶部信息栏 */
.top-bar {
    background-color: #ffffff;
    color: #333;
    padding: 8px 0;
    font-size: 14px;
	border-bottom: 1px dotted #dcdcdc;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: #333;
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: #eaeaea;
}

.social-links span{
	display: flex;
    align-items: center;
    justify-items: center;	
}

.social-links span i{
	padding-top: 3px;	
}

/* 网站头部 */
.site-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: auto;
    margin-right: 15px;
    height:90px;
}

.site-title h1 {
    font-size: 24px;
    color: #2057a0;
    margin-bottom: 5px;
}

.site-title p {
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    background: #2057a0;
    color: #fff;
    border: none;
    height: 100%;
    width: 40px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* 搜索框样式优化 - 增加强调效果 */
.search-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 380px;
}

.search-container {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e6ed;
}

.search-container:hover, .search-container:focus-within {
    box-shadow: 0 5px 15px rgba(32, 87, 160, 0.15);
    border-color: #2057a0;
    transform: translateY(-2px);
}

.search-tabs {
    display: flex;
    background-color: #f5f7fa;
    border-bottom: 1px solid #eaedf2;
}

.search-tab {
    flex: 1;
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.search-tab:hover {
    color: #2057a0;
    background-color: rgba(32, 87, 160, 0.05);
}

.search-tab.active {
    color: #2057a0;
    font-weight: 500;
    background-color: #fff;
}

.search-tab.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background-color: #2057a0;
    border-radius: 3px 3px 0 0;
}

.search-content {
    position: relative;
}

.search-form {
    display: none;
    position: relative;
}

.search-form.active {
    display: flex;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: none;
    font-size: 14px;
    outline: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.search-form input[type="text"]:focus {
    background-color: #f9fafc;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background: none;
    border: none;
    color: #2057a0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-form button:hover {
    background-color: rgba(32, 87, 160, 0.1);
}

.search-form button i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.search-form button:hover i {
    transform: scale(1.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .search-box {
        width: 100%;
        margin-top: 15px;
    }
}

/* 返回顶部按钮样式 */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #2057a0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1a4580;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top i {
        font-size: 16px;
    }
}

/* 主导航栏 */
.main-nav {
    background-color: #2057a0;
}

.nav-menu {
    display: flex;
    position: relative;
	justify-content: space-between;
}

.nav-menu > li {
    position: relative;
    flex: 1;
    text-align: center;    
}

.nav-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a {
    background-color: #173e78;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 100;
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #2057a0;
}

/* 页面标题区域样式 */
.page-title-area {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.page-title {
    font-size: 24px;
    color: #333;
    margin: 0 0 10px 0;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
	padding:10px;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}

.breadcrumb a {
    color: #666;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2057a0;
}

.breadcrumb i {
    margin: 0 8px;
    color: #999;
}

/* 网站底部 */
.site-footer {
    background-color: #173e78;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-top {
    display: flex;
    gap: 80px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
	width: 395px;
}

.footer-logo img {
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 20px;
    color: #fff;
}
.footer-contact{
	flex:1;
}
.footer-contact h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: #ffffff;
}

.footer-qrcode {
    display: flex;
    justify-content: space-around;
	gap:20px;
}

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

.qrcode-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
    background-color: #fff;
    padding: 5px;
}

.qrcode-item p {
    font-size: 14px;
}

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

.footer-middle h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    border-left: 3px solid #f57c00;
    padding-left: 10px;
}

.city-links {
    display: flex;
    flex-wrap: wrap;
}

.city-links a {
    color: #ccc;
    margin-right: 15px;
    margin-bottom: 10px;
    font-size: 14px;
}

.city-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom p > span >a,.footer-nav a {
    color: #ccc;
    margin-left: 15px;
    font-size: 14px;
}

.footer-bottom p > span > a:hover,.footer-nav a:hover {
    color: #fff;
}

/* 左侧主要内容列 */
.main-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-content {
    padding: 0 0 20px 0;
    background-color: #f5f5f5;
}
/* 右侧边栏 */
.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 内容区块通用样式 */
.content-section, .sidebar-section {
    padding: 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}


/* 响应式调整 */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 内容区块通用样式 */
.content-section {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
}
.sidebar-section {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 20px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.section-header h3 {
    font-size: 18px;
    color: #2057a0;
    display: flex;
    align-items: center;
    margin: 0;
}

.section-header h3 i {
    margin-right: 8px;
	padding-top: 1px;
}

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

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

.more-link:hover {
    color: #2057a0;
}

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


/* 资讯页面网格布局 */
.news-page-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 20px;
	margin-top:20px;
}

/* 资讯主栏 */
.news-main-column {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
	max-width: 842.84px;
}
.news-main-column-pics {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
}
.container .notitle{
	padding:0px 20px 10px 20px;
}
.alignc{
	text-align:center;
}
/* 响应式调整 */
@media (max-width: 992px) {
    .news-page-grid {
        grid-template-columns: 1fr;
    }
    
    .news-sidebar-column {
        order: 2;
    }
    
    .special-topics-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
	.top-bar {
		padding: 8px 10px;
	}	
    .site-header .container {
        flex-direction: column;
    }  
	.site-header {
		padding: 20px 10px;
	}	
    .logo {
        margin-bottom: 20px;
    }
	.logo img {
		height: auto;
	} 
    
    .search-box {
        width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }	
	
    .news-tabs {
        flex-wrap: wrap;
    }
    
    .news-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
    .special-topics-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-item-meta {
        gap: 5px;
    }
	.social-links{
		display: none;
	}
	.footer-top{
		display: none;
	}	
	.footer-nav{
		display: none;
	}
	.footer-bottom {
		padding: 15px;
	}
	.footer-bottom p > span {
		display: none;
	}	
	.footer-bottom p {
		margin: 0 auto;
	}	
	.site-footer {
		padding: 0px;	
	}
	.main-content {
		padding: 0 0 15px 0;
	}	
	
}
@media (max-width: 576px) {
    .special-topics-list {
        grid-template-columns: 1fr;
    }
}

/* 快捷图标栏样式 */
.quick-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-icon-item {
    position: relative;	
}

.quick-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b61907;
    font-size: 30px;
	display: flex;
    flex-direction: column;	
	align-items: center;
    justify-content: center;
	gap:8px;
	border-radius: 5px;
}
.quick-icon .blue{
	color: #2057a0;
}
.quick-icon-item .title{
	font-size:14px;
}
.quick-icon:hover {
    background-color: #2057a0;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quick-popup {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    padding: 15px;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.quick-popup:after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.quick-icon-item:hover .quick-popup {
    opacity: 1;
    visibility: visible;
    right: 60px;
    pointer-events: auto;
}

.popup-content {
    text-align: center;
}

.popup-content h4 {
    margin: 0 0 10px 0;
    color: #2057a0;
    font-size: 16px;
}

.popup-content p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

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

.back-top-container {
    display: none;
}

.back-top-container.visible {
    display: block;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .quick-icons {
        right: 10px;
    }
    
    .quick-icon {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }
    
    .quick-popup {
        width: 180px;
        padding: 10px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
	.quick-icon-item .title{
		display:none;
	}
}

@media (max-width: 480px) {
    .quick-icons {
        bottom: 10px;
        top: auto;
        right: 0.5rem;
        flex-direction: column;
        gap: 15px;
    }
    
    .quick-popup {
        bottom: 60px;
        top: auto;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .quick-popup:after {
        top: auto;
        right: auto;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #fff;
        border-bottom: none;
    }
    
    .quick-icon-item:hover .quick-popup {
        right: auto;
        bottom: 65px;
    }
    
    .quick-icon {
        width: 45px;
        height: 45px;
    }
	.quick-icon-item .title{
		display:none;
	}	
}