.header .top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .top .right .text {
	font-size: 16px;
	color: #fff;
	display: flex;
	justify-content: right;
	margin-bottom: 20px;
}

.header .top .right .text em {
	margin: 0 10px;
}

.header .top .right .text a {
	color: #fff;
}

.header .top .right .text a:hover {
	text-decoration: underline;
}

.header .top .right .text .search {
	margin-left: 20px;
}

.header .top .right .nav ul {
	display: flex;
}

.header .top .right .nav ul li {
	margin-right: 30px;
	position: relative;
}

.header .top .right .nav ul li:last-child {
	margin-right: 0;
}

.header .top .right .nav ul li>a {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}

.header .top .right .nav ul li dl {
	position: absolute;
	min-width: 100%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	white-space: nowrap;
	padding-top: 20px;
	display: none;
}

.header .top .right .nav ul li dl dd a {
	font-size: 16px;
	color: #555;
	padding: 15px 30px;
	display: block;
	background-color: #eee;
}

.header .top .right .nav ul li:hover dl {
	display: block;
}

.header .top .right .nav ul li dl dd a:hover {
	background-color: #1f43a3;
	color: #fff;
}

/* Swiper轮播图样式 */
.banner .swiper-container {
	width: 100%;
	position: relative;
}

.banner .swiper-slide {
	text-align: center;
	position: relative;
	padding-bottom: 42.18%;
}

.banner .swiper-slide img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
}

.banner .swiper-pagination-bullet {
	width: 18px;
	height: 18px;
	background-color: rgba(255, 255, 255, .4);
	opacity: 1;
}

.banner .swiper-pagination-bullet-active {
	background: #fff;
	width: 50px;
	height: 18px;
	border-radius: 20px;
}

/* 导航覆盖样式 */
.header {
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: background-color 0.3s ease, top 0.3s ease;
	padding: 20px 0;
}

/* 滚动后的导航样式 */
.header.scrolled {
	background-color: rgba(31, 67, 163, 0.95);
	top: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px 0;
}

.banner {
	position: relative;
	margin-top: 0 !important;
}

/* 全屏搜索界面样式 */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(31, 67, 163, 0.98);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	/* 初始状态：隐藏在顶部上方 */
	transform: translateY(-100%);
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

/* 激活状态：从顶部滑下 */
.search-overlay.active {
	transform: translateY(0);
	opacity: 1;
}

.search-overlay-content {
	width: 100%;
	max-width: 800px;
	padding: 0 20px;
	position: relative;
	/* 添加内容的延迟动画 */
	transform: translateY(-30px);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.4s ease 0.2s;
}

.search-overlay.active .search-overlay-content {
	transform: translateY(0);
	opacity: 1;
}

.search-close {
	position: absolute;
	top: -60px;
	right: 20px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.search-close:hover {
	transform: rotate(90deg);
	background-color: rgba(255, 255, 255, 0.2);
}

.search-close span {
	font-size: 40px;
	color: #fff;
	line-height: 1;
}

.search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 5px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: border-color 0.3s ease;
}

.search-input-wrapper:focus-within {
	border-color: rgba(255, 255, 255, 0.6);
}

.search-input {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	padding: 20px 30px;
	font-size: 20px;
	color: #fff;
}

.search-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.search-button {
	background-color: #fff;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin-right: 20px;
}

.search-button:hover {
	transform: scale(1.1);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.search-button img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.index-title {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.index-title .name {
	color: #222222;
	font-size: 36px;
	font-weight: bold;
	position: relative;
	padding-bottom: 20px;
}

.index-title2 .name {
	color: #fff;
}

.index-title .name:before {
	content: "";
	width: 60px;
	height: 3px;
	background-color: #c59a58;
	display: inline-block;
	position: absolute;
	left: 0;
	bottom: 0;
}

.index-title .more a {
	color: #1f43a3;
	font-size: 16px;
	font-weight: bold;
}

.index-title2 .more a {
	color: #fff;
}

.index-title .more a:hover {
	text-decoration: underline;
}

.index-box {
	background: url(../img/bg1.png) center no-repeat;
	padding: 60px 0;
	background-size: cover;
}

.index-box .box {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}

.index-box .box .left {
	width: 72.91%;
}

.index-box .box .left .swiper-slide a {
	display: flex;
	flex-wrap: wrap;
}

.index-box .box .left .swiper-slide .image {
	width: 70.95%;
}

.index-box .box .left .swiper-slide .image .img {
	position: relative;
	padding-bottom: 68.45%;
}

.index-box .box .left .swiper-slide .image .img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.index-box .box .left .swiper-slide .text {
	flex: 1;
	background: url(../img/pic2.png) center no-repeat;
	padding: 60px 25px;
	background-size: cover;
	color: #fff;
}

.index-box .box .left .swiper-slide .text .t {
	font-size: 18px;
}

.index-box .box .left .swiper-slide .text .t2 {
	font-size: 20px;
	font-weight: bold;
	margin: 25px 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.index-box .box .left .swiper-slide .text .t3 {
	font-size: 14px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.index-box .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, .4);
	opacity: 1;
}

.index-box .swiper-pagination-bullet-active {
	background: #fff;
	width: 34px;
	height: 12px;
	border-radius: 20px;
}

.index-box .swiper-pagination {
	text-align: right;
	box-sizing: border-box;
	padding: 0 30px;
}

.index-box .box .left .swiper-button-prev,
.index-box .box .left .swiper-button-next {
	background-size: 13px;
	background-color: rgba(0, 0, 0, .3);
	width: 60px;
	height: 60px;
}
.index-box .box .left .swiper-button-next{
	right: 0;
}

.index-box .box .left .swiper-button-prev{
	left: 0;
}

.index-box .box .left .swiper-button-next:hover,
.index-box .box .left .swiper-button-prev:hover{
	background-color: rgba(0, 0, 0, .5);
}

.index-box .right {
	flex: 1;
	margin-left: 40px;
}

.index-box .right ul li {
	background-color: #f8f8f8;
	box-sizing: border-box;
	padding: 20.5px 25px;
	margin-bottom: 10px;
	height: 120px;
}

.index-box .right ul li:last-child {
	margin-bottom: 0;
}

.index-box .right ul li .t {
	display: flex;
	justify-content: space-between;
	color: #004ca0;
	font-size: 14px;
	align-items: end;
}

.index-box .right ul li .t2 {
	font-size: 16px;
	color: #222;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.index-box2 {
	background: linear-gradient(to right, #f8f8f8 0%, #f8f8f8 50%, #e5ebf1 50%, #e5ebf1 100%);
	padding: 60px 0;
}

.index-box2 .w {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.index-box2 .box {
	width: 47.22%;
}

.index-box2 .hot {
	margin-top: 40px;
}

.index-box2 .hot a {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding: 20px;
	background-color: #fff;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.index-box2 .hot .date {
	margin: 0 20px;
}

.index-box2 .hot .date .t {
	color: #004ca0;
	font-size: 24px;
	font-weight: bold;
	position: relative;
}

.index-box2 .hot .date .t:before {
	content: "";
	position: absolute;
	width: 15px;
	height: 1px;
	background-color: #ddd;
	bottom: 0;
	left: 0;
}

.index-box2 .hot .date .t2 {
	color: #004ca0;
	font-size: 14px;
	margin-top: 10px;
}

.index-box2 .hot .text {
	flex: 1;
	border-left: 1px solid #ddd;
	padding-left: 20px;
}

.index-box2 .hot .text .t {
	font-size: 16px;
	color: #222;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.index-box2 .hot .text .t2 {
	font-size: 16px;
	color: #999;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.index-box2 .hot a:hover {
	background-color: #1f43a3;
}

.index-box2 .hot a:hover .date .t,
.index-box2 .hot a:hover .date .t2,
.index-box2 .hot a:hover .text .t,
.index-box2 .hot a:hover .text .t2 {
	color: #fff;
}

.index-box2 ul {
	margin-top: 10px;
}

.index-box2 ul li {
	padding: 15px 20px;
	background-color: #fff;
}

.index-box2 ul li a {
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
}

.index-box2 ul li .date {
	color: #bbbbbb;
	width: 100px;
	text-align: right;
}

.index-box2 ul li .text {
	flex: 1;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.index-box2 ul li .text img {
	margin-right: 10px;
}

.index-box3 {
	background: linear-gradient(to bottom, transparent 0%, transparent 57.9%, #e5ebf1 57.9%, #e5ebf1 100%),
		url(../img/bg2.png) top center no-repeat;
	background-size: auto, cover;
	padding: 60px 0 60px;
}

.index-box3 .box {
	margin-top: 50px;
}

.index-box3 .swiper-slide a {
	display: block;
	background-color: #fff;
	position: relative;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.index-box3 .swiper-slide a:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.index-box3 .swiper-slide .img {
	position: relative;
	padding-bottom: 66.22%;
	overflow: hidden;
}

.index-box3 .swiper-slide .img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	top: 0;
}

.index-box3 .swiper-slide .text {
	padding: 20px;
}

.index-box3 .swiper-slide .date {
	display: inline-block;
	margin-bottom: 10px;
}

.index-box3 .swiper-slide .date .t {
	color: #1f43a3;
	font-size: 30px;
	font-weight: bold;
	line-height: 1;
	display: inline;
}

.index-box3 .swiper-slide .date .t2 {
	color: #1f43a3;
	font-size: 16px;
	display: inline;
	margin-left: 5px;
}

.index-box3 .swiper-slide .text .title {
	font-size: 16px;
	color: #222;
	font-weight: bold;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: 48px;
	margin-bottom: 10px;
}

.index-box3 .swiper-slide .text .t2 {
	font-size: 18px;
	color: #1f43a3;
	margin-top: 15px;
	font-weight: bold;
}

.index-box3 .swiper-slide .text .t3 {
	font-size: 14px;
	color: #999;
	margin-top: 10px;
	display: flex;
	align-items: center;
}

.index-box3 .swiper-slide .text .t3 img {
	margin-right: 8px;
	width: 13px;
	height: 15px;
}

.index-box3 .swiper-slide .text .t4 img {
	width: 14px;
	height: 14px;
}

.index-box3 .swiper-pagination {
	margin-top: 40px;
	position: relative;
	bottom: auto;
}

.index-box3 .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(31, 67, 163, .3);
	opacity: 1;
}

.index-box3 .swiper-pagination-bullet-active {
	background: #1f43a3;
	width: 34px;
	height: 12px;
	border-radius: 20px;
}

/* Footer样式 */
.footer {
	background-color: #fff;
}

.footer-top {
	background: url(../img/footer-bg.png) center no-repeat;
	background-size: cover;
	padding: 60px 0 0;
}

.footer-nav {
	display: flex;
	justify-content: space-between;
	color: #fff;
	margin-bottom: 50px;
}

.footer-nav dl {
	flex: 1;
	margin-right: 40px;
}

.footer-nav dl:last-of-type {
	margin-right: 0;
}

.footer-nav dt {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #fff;
	padding-bottom: 12px;
	position: relative;
}

.footer-nav dt:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.8);
}

.footer-nav dd {
	margin-bottom: 12px;
}

.footer-nav dd:last-child {
	margin-bottom: 0;
}

.footer-nav dd a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}

.footer-nav dd a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-qrcode {
	text-align: center;
	margin-left: 90px;
}

.footer-qrcode img {
	width: 120px;
	height: 120px;
	margin-bottom: 15px;
	border: 3px solid #fff;
	background-color: #fff;
}

.footer-qrcode p {
	font-size: 14px;
	color: #fff;
}

.footer-bottom {
	background-color: rgba(0, 0, 0, 0.3);
	padding: 25px 0;
	text-align: center;
	margin-left: calc(50% - 50vw);
	box-sizing: border-box;
}

.footer-bottom p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
}

/* 回到顶部按钮样式 */
.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 50px;
	height: 50px;
	background-color: #1f43a3;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(31, 67, 163, 0.3);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: #163582;
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(31, 67, 163, 0.4);
}

.back-to-top span {
	color: #fff;
	font-size: 24px;
	line-height: 1;
	display: block;
}

.banner-n {
	padding-bottom: 23.43%;
}

.view-content {
	margin-top: 60px;
	min-height: 600px;
	margin-bottom: 60px;
}

.view-content .w {
	display: flex;
	flex-wrap: wrap;
}

.menu {
	width: 280px;
}

.menu span {
	display: block;
	padding: 30px;
	font-weight: bold;
	font-size: 36px;
	color: #fff;
	background-color: #004ca0;
}

.menu ul {
	background: url(../img/menu.png) bottom no-repeat;
	padding-bottom: 197px;
}

.menu ul li a {
	display: block;
	background-color: #f3f8fb;
	line-height: 80px;
	box-sizing: border-box;
	padding-left: 40px;
	color: #333333;
	font-size: 22px;
	border-left: 4px solid #f3f8fb;
	border-bottom: 1px dashed #ddd;
}

.menu ul li.active a {
	border-left: 4px solid #004ca0;
	color: #004ca0;
}

.menu ul li a:hover {
	border-left: 4px solid #004ca0;
	color: #004ca0;
}

.view-content .box {
	flex: 1;
	margin-left: 60px;
}

.view-content .index-title {
	border-bottom: 1px solid #ddd;
	align-items: center;
}

.view-content .index-title .more {
	color: #999;
	font-size: 14px;
}

.view-content .index-title .more span {
	color: #004ca0;
}

.news-list ul {
	margin-top: 40px;
}

.news-list ul li {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px dashed #ddd;
}

.news-list ul li a {
	display: flex;
	flex-wrap: wrap;
}

.news-list ul li .date {
	width: 100px;
	text-align: right;
	color: #999999;
}

.news-list ul li .text {
	flex: 1;
	color: #333333;
	font-size: 16px;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.news-list ul li a:hover .text {
	transform: translateX(10px);
	color: #004ca0;
}

.news-list ul li .text img {
	vertical-align: -2px;
}

.view-content .content {
	margin-top: 60px;
}

.view-content .content .title {
	text-align: center;
}

.view-content .content .title .t {
	color: #222222;
	font-size: 30px;
	font-weight: bold;
}

.view-content .content .title .t2 {
	color: #999999;
	font-size: 16px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px dashed #ddd;
}

.view-content .content .text {
	color: #222222;
	font-size: 18px;
	margin-top: 50px;
	line-height: 2;
}

/* 人员列表样式 */
.personnel-list {
	margin-top: 40px;
}

.personnel-section {
	margin-bottom: 40px;
	background-color: #f3f8fb;
	padding: 40px;
	overflow: hidden;
}

.personnel-title {
	border-bottom: 1px solid #004ca0;
}

.personnel-title span {
	background-color: #004ca0;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 12px 25px;
	position: relative;
	display: inline-block;
	/* 梯形效果 */
	clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
}

.personnel-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	background-color: #ffffff;
	padding: 40px;
	margin-top: 40px;
}

.personnel-name {
	color: #333333;
	font-size: 16px;
	padding: 12px 20px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: left;
	display: block;
}

.personnel-name:hover {
	color: #004ca0;
	text-decoration: underline;
}