body {
	font-family: Microsoft YaHei, Microsoft YaHei-Normal;
}

a {
	text-decoration: none;
	color: #000;
}

html {
	overflow-y: scroll;
	/* 保持页面可滚动 */
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE/Edge */
}

html::-webkit-scrollbar {
	display: none;
	/* Chrome/Safari/Edge */
}
header {
	width: 100%;
	background-image: url('../img/head_bg.png');
	background-size: 100% 120%;
	z-index: 999;
	position: fixed;
}
header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ab1b1b;
	clip-path: inset(0 0 100% 0);
	transition: clip-path 0.6s ease-in-out;
	z-index: -1;
}

header.scrolled::before {
	clip-path: inset(0 0 0 0);
}
.top-container {}

.top-container .top {}

.top-container .top>div {
	padding: 0.27rem 10%;
	height: 1rem;
	display: flex;
	justify-content: space-between;
}

.top-container .top .logo {
	width: 2.9rem;
	height: 0.7rem;
}

.top-container .top .logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.top-container .top .top_r {
	gap: 0.2rem;
	align-items: center;
}

.top-container .top .top_r .language {
	display: flex;
	gap: 0.2rem;
}

.top-container .top .top_r .language a {
	color: #BEB5A2;
	line-height: 0.22rem;
	letter-spacing: 0.01rem;
	font-weight: bold;
}

.top-container .top .top_r .search {
	position: relative;
}

.top-container .top .top_r .search .search-input {
	width: 2.6rem;
	height: 0.3rem;
	border: none;
	border-radius: 0.5rem;
	padding: 0 .12rem;
	font-size: .16rem;
}
.top-container .top .top_r .search .search-input:focus{
	box-shadow: 0 0 0 0.04rem rgba(13,110,253,.25);
}
.top .top_r .search input::placeholder {
	color: #f2f2f2;
	font-size: 0.12rem;
}

/* 兼容不同浏览器的写法 */
.top .top_r .search input::-webkit-input-placeholder {
	/* Chrome/Safari/Opera */
	color: #aaaaaa;
	font-size: 0.14rem;
}

.top .top_r .search input::-moz-placeholder {
	/* Firefox */
	color: #aaaaaa;
	font-size: 0.14rem;
}

.top .top_r .search input:-ms-input-placeholder {
	/* IE/Edge */
	color: #aaaaaa;
	font-size: 0.14rem;
}

.top .top_r .search .search-icon {
	width: 0.25rem;
	height: 0.25rem;
	position: absolute;
	top: 0.03rem;
	right: 0.1rem;
}

/* 导航栏 */
.navbar {
	padding: 0 10%;
	height: 0.5rem;
}

.navbar .navbar-nav {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.navbar .navbar-nav .nav-item {
	flex: 1;
	min-width: 0;
	height: 0.6rem;
	text-align: center;
	position: relative;
}

.navbar .navbar-nav .nav-item .nav-link {
	color: #ffffff;
	font-size: 0.2rem;
	line-height: 0.6rem;
	position: relative;
	padding-left: 0;
	padding-right: 0;
	padding: 0;
}

.navbar .navbar-nav .nav-item:hover {
	cursor: pointer;
}

.navbar-nav .nav-item .nav-link.active {}

/* 下拉菜单 */
.dropdown-toggle::after {
	/* display: none; */
}

.nav-item:hover .dropdown-menu {
	margin-top: 0;
	transform: scaleY(1);
	pointer-events: auto;
}

.dropdown-menu {
	font-size: .16rem;
	position: absolute;
	min-width: 0;
	width: 100%;
	border-radius: 0;
	opacity: 1;
	border: none;
	left: 0;
	top: 100%;
	display: block;
	transform: scaleY(0);
	transform-origin: top center;
	transition: transform 0.3s ease-in-out;
	pointer-events: none;
	text-align: center;
	padding: 0rem 0;
	background-color: #ddae88;

}

.dropdown-menu::after {
	content: '';
	position: absolute;
	background: url('../img/border_bg.png') no-repeat;
	background-size: 100% 100%;
	bottom: -0.05rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% + 0.24rem);
	height: 0.1rem;
	pointer-events: none;
}

.dropdown-menu::before {
	content: '';
	position: absolute;
	background: url('../img/border_bg.png') no-repeat;
	background-size: 100% 100%;
	top: -0.05rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% + 0.24rem);
	height: 0.1rem;
	pointer-events: none;
}

.dropdown-menu li {
	height: 0.5rem;
	border-bottom: 0.01rem dashed #a11919;
	line-height: 0.5rem;
}

.dropdown-menu li:last-child {
	border-bottom: none;
}

.dropdown-item {
	padding: 0;
	color: #a11919;
}

.dropdown-item:hover {
	background: #a11919;
}

.dropdown-item li:hover {
	border-bottom: 0.01rem dashed #fcac54;
	background-color: #a11919;
}

.dropdown-menu li:hover a {
	color: #ffc498;
}

/* 轮播图 */
.banner {
	position: relative;
}

.banner .swiper {
	width: 100%;
	height: 6.4rem;
}

.banner .swiper-wrapper {
	width: 100%;
}

.banner .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
}

.banner .swiper-button-prev::after:hover,
.banner .swiper-button-next:hover {
	opacity: 1;
}

.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
	font-size: 0.24rem;
	font-weight: bold;
	color: #ffffff;
}

.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.5);
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.banner .swiper:hover .swiper-button-prev,
.banner .swiper:hover .swiper-button-next {
	opacity: 1;
	visibility: visible;
}

/* 分页器 */
.banner .swiper-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-bullets.swiper-pagination-horizontal,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
	bottom: 0.15rem;
}

.banner .swiper-pagination-bullet {
	width: 0.44rem;
	height: 0.04rem;
	border-radius: 0rem;
	background-color: #a3a3a3;
	opacity: 1;
	position: relative;
}

.banner .swiper-pagination-bullet-active {
	background-color: #ffffff;
}

.banner .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 0.06rem;
}

.com_container {
	padding: 0 10%;
}

/* 学院新闻 */
.xy_news {
	height: auto;
	background: url('../img/news_bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 0.6rem;
	padding-bottom: 0.5rem;
	font-family: SiYuanHei;
}

.news_title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.xy_news .news_title .nt_l span {
	color: #d8001b;
}

.nt_l {
	width: 5rem;
	height: 1.1rem;
	font-size: 0.4rem;
	line-height: 0.6rem;
	font-weight: bold;
	color: #333333;
	letter-spacing: 0.04rem;
	background-image: url('../img/title_bg.png');
	background-repeat: no-repeat;
	background-size: contain;
	text-align: center;
}

.more {
	width: 1.2rem;
	height: 0.4rem;
	background-color: #901601;
	border: 0.01rem solid #8d3e0b;
	border-radius: 0.08rem;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0.3rem;
}

.more a {
	display: block;
	color: #ffffff;
	font-size: 0.2rem;
	line-height: 0.2rem;
	padding: 0.1rem 0;
}

.xy_news .new_content {
	padding-top: 0.4rem;
}

.xy_news .new_content .new_top {
	display: flex;
	justify-content: space-between;
	gap: 0.7rem;
}

.xy_news .new_content .new_top .new_t_item {
	flex: 1;
	min-width: 0;
	min-height: 5.3rem;
	height: auto;
	padding: 0.57rem 0.35rem 0.28rem 0.35rem;
	background-color: #fff;
	margin-left: 0.35rem;
	border: 0.02rem solid #C89973;
	border-left: none;
	background-image:
		linear-gradient(to bottom, #C89973 5%, transparent 5%, transparent 20%, #C89973 20%);
	background-size: 0.02rem 100%;
	background-repeat: no-repeat;
	background-position: 0rem 0;
	position: relative;
	transition: color 0.3s ease, border 0.3s ease, background-color 0.3s ease;
}

.xy_news .new_content .new_top .new_t_item::before,
.xy_news .new_content .new_top .new_t_item::after {
	content: "";
	position: absolute;
	width: 0.1rem;
	height: 0.1rem;
	background-color: #C89973;
	border-radius: 50%;
	left: -0.04rem;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.xy_news .new_content .new_top .new_t_item::before {
	top: 0.25rem;
}

.xy_news .new_content .new_top .new_t_item::after {
	top: 0.96rem;
}

.xy_news .new_content .new_top .new_t_item .new_date {
	color: #BC2308;
	padding-bottom: 0.29rem;
	font-weight: bold;
	position: relative;
}

.xy_news .new_content .new_top .new_t_item .new_date span:first-child {
	font-size: 0.48rem;
	position: absolute;
	transform: translateX(-110%);
	top: -50%;
}

.xy_news .new_content .new_top .new_t_item .new_title {
	font-size: 0.24rem;
	line-height: 0.3rem;
	font-weight: bold;
	margin-bottom: 0.1rem;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xy_news .new_content .new_top .new_t_item .new_abstract {
	font-size: 0.14rem;
	line-height: 0.25rem;
	color: #C89973;
	margin-bottom: 0.32rem;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xy_news .new_content .new_top .new_t_item .new_pic {
	width: 100%;
	height: 2.4rem;
	overflow: hidden;
}

.xy_news .new_content .new_top .new_t_item .new_pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.xy_news .new_content .new_top .new_t_item:hover {
	cursor: pointer;
	border: 0.02rem solid #bc2308;
	border-left: none;
	background-image:
		linear-gradient(to bottom, #bc2308 5%, transparent 5%, transparent 20%, #bc2308 20%);
	background-size: 0.02rem 100%;
	background-repeat: no-repeat;
	background-position: 0rem 0;
}

.xy_news .new_content .new_top .new_t_item:hover::before,
.xy_news .new_content .new_top .new_t_item:hover::after {
	content: "";
	position: absolute;
	transform: scale(1.2);
	background-color: #bc2308;
	border-radius: 50%;
	left: -0.04rem;
}

.xy_news .new_content .new_top .new_t_item:hover .new_date {
	color: #BC2308;
}

.xy_news .new_content .new_top .new_t_item:hover .new_title {
	color: #bc2308;
}

.xy_news .new_content .new_top .new_t_item:hover .new_pic img {
	transform: scale(1.1);
}

.xy_news .new_content .new_bottom {
	padding-top: 0.5rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.7rem;
}

.xy_news .new_content .new_bottom .new_b_item {
	flex: 1;
	min-width: 0;
	height: 1.4rem;
	display: flex;
	justify-content: center;
	gap: 0.3rem;
	padding: 0.2rem 0.2rem 0.13rem 0.5rem;
	background-color: #fff;
	margin-left: 0.35rem;
	position: relative;
	border: 0.02rem solid #C89973;
	border-left: none;
	background-image:
		linear-gradient(to bottom, #C89973 20%, transparent 20%, transparent 85%, #C89973 85%);
	background-size: 0.02rem 100%;
	background-repeat: no-repeat;
	background-position: 0rem 0;
	position: relative;
	transition: all 0.3s ease;
}

.xy_news .new_content .new_bottom .new_b_item::before,
.xy_news .new_content .new_bottom .new_b_item::after {
	content: "";
	position: absolute;
	width: 0.1rem;
	height: 0.1rem;
	background-color: #C89973;
	border-radius: 50%;
	left: -0.04rem;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.xy_news .new_content .new_bottom .new_b_item::before {
	top: 0.19rem;
}

.xy_news .new_content .new_bottom .new_b_item::after {
	bottom: 0.15rem;
}

.xy_news .new_content .new_bottom .new_b_item .new_b_date {
	width: 0.8rem;
	height: 0.8rem;
	background: linear-gradient(143deg, #c3604f 0%, #901601 69%);
	border-radius: 0.05rem;
	color: #ffffff;
	font-size: 0.18rem;
	line-height: 0.2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0.3rem;
	left: -0.4rem;
	transition: all 0.3s ease;
}

.xy_news .new_content .new_bottom .new_b_item .new_b_date span:first-child {
	font-size: 0.4rem;
	line-height: 0.4rem;
	letter-spacing: 0.05rem;
}

.xy_news .new_content .new_bottom .new_b_item .new_b_title {
	max-width: 100%;
	font-size:0.18rem;
	line-height: 0.3rem;
	font-weight: bold;
	margin-bottom: 0.05rem;
	text-align: left;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xy_news .new_content .new_bottom .new_b_item .new_b_abstract {
	font-size: 0.12rem;
	line-height: 0.2rem;
	color: #7A7A7A;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.xy_news .new_content .new_bottom .new_b_item:hover {
	cursor: pointer;
	border: 0.02rem solid #bc2308;
	border-left: none;
	background-image:
		linear-gradient(to bottom, #bc2308 20%, transparent 20%, transparent 85%, #bc2308 85%);
	background-size: 0.02rem 100%;
	background-repeat: no-repeat;
	background-position: 0rem 0;
}

.xy_news .new_content .new_bottom .new_b_item:hover::before,
.xy_news .new_content .new_bottom .new_b_item:hover::after {
	content: "";
	position: absolute;
	transform: scale(1.2);
	background-color: #bc2308;
	border-radius: 50%;
	left: -0.04rem;
}

.xy_news .new_content .new_bottom .new_b_item:hover .new_b_date {
	color: #b32f00;
	background: linear-gradient(143.13deg, rgb(251, 234, 220) -45.3571%, rgb(200, 153, 115) 67.7381%);
}

.xy_news .new_content .new_bottom .new_b_item:hover .new_b_title {
	color: #b32f00;
}

.xy_news .new_content .new_bottom .new_b_item:hover .new_b_abstract {
	color: #b32f00;
}

/* 通知公告 */
.tzgg {
	height: auto;
	background: url('../img/tzgg_bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 1rem;
	padding-bottom: 1.15rem;
}

.tzgg .news_title {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.tzgg .news_title .nt_l {
	color: #C89973;
}

.tzgg .news_title .nt_l span {
	color: #ffffff;
}

.tzgg .news_title .more {
	background-color: #C89973;
}

.tzgg .tzgg_content {
	padding-top: 0.4rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.tzgg .tzgg_content .tzgg_item {
	max-width: 4.5rem;
	height: 1.4rem;
	display: flex;
	justify-content: center;
	gap: 0.3rem;
	padding: 0.27rem 0.2rem 0.12rem 0.7rem;
	background-color: #B20303;
	margin-left: 0.35rem;
	border: 0.02rem solid #C89973;
	border-left: none;
	background-image:
		linear-gradient(to bottom, #C89973 20%, transparent 20%, transparent 85%, #C89973 85%);
	background-size: 0.02rem 100%;
	background-repeat: no-repeat;
	background-position: 0rem 0;
	position: relative;
	transition: all 0.3s ease;
}

.tzgg .tzgg_content .tzgg_item::before,
.tzgg .tzgg_content .tzgg_item::after {
	content: "";
	position: absolute;
	width: 0.1rem;
	height: 0.1rem;
	background-color: #C89973;
	border-radius: 50%;
	left: -0.04rem;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tzgg .tzgg_content .tzgg_item::before {
	top: 0.19rem;
}

.tzgg .tzgg_content .tzgg_item::after {
	bottom: 0.15rem;
}

.tzgg .tzgg_content .tzgg_item .tzgg_item_date {
	width: 0.8rem;
	height: 0.8rem;
	background: #ffffff;
	border-radius: 0.05rem;
	color: #901601;
	font-size: 0.18rem;
	line-height: 0.2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0.3rem;
	left: -0.4rem;
	transition: all 0.3s ease;
}

.tzgg .tzgg_content .tzgg_item .tzgg_item_date span:first-child {
	font-size: 0.4rem;
	line-height: 0.4rem;
	letter-spacing: 0.05rem;
}

.tzgg .tzgg_content .tzgg_item .tzgg_item_title {
	font-size: 0.18rem;
	line-height: 0.3rem;
	font-weight: bold;
	margin-bottom: 0.11rem;
	text-align: center;
	color: #ffffff;
	transition: transform 0.3s ease;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.tzgg .tzgg_content .tzgg_item .tzgg_item_abstract {
	font-size: 0.14rem;
	line-height: 0.2rem;
	color: #C89973;
	overflow: hidden;
	word-wrap: break-word;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.tzgg .tzgg_content .tzgg_item:hover {
	cursor: pointer;
	background-image:
		linear-gradient(to bottom, #C89973 20%, transparent 20%, transparent 85%, #C89973 85%),
		linear-gradient(#ce9837, #CE9837);
	background-size: 0.02rem 100%, 100% 100%;
}

.tzgg .tzgg_content .tzgg_item:hover .tzgg_item_date {
	color: #f2f2f2;
	background: #C89973;
}

.tzgg .tzgg_content .tzgg_item:hover .tzgg_item_title {
	transform: scale(1.1);
}

.tzgg .tzgg_content .tzgg_item:hover .tzgg_item_abstract {
	color: #f7eacd;
}

/* 学术讲座 */
.two_model {
	position: relative;
}

.two_model::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: url('../img/news_bg.png') no-repeat;
	background-size: 100% 100%;
	opacity: 0.39;
	z-index: -1;
}

.two_model::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: url('../img/two_model_bg.png') no-repeat;
	background-size: cover;
	background-position: 0.15rem 80%;
	z-index: -2;
}

.xsjz {
	padding-top: 0.85rem;
	display: flex;
	justify-content: space-between;
	gap: 0.5rem;
	align-items: flex-start;
}

.xsjz .xsjz_l {
	display: grid;
	gap: 0.3rem;
	max-width: 6.5rem;
	width: 44%;
	grid-template-columns: repeat(2, 1fr);
}

.xsjz .xsjz_l .xsjz_l_item {
	width: 100%;
	height: 2.7rem;
	color: #ffffff;
	overflow: hidden;
	position: relative;
}

.xsjz .xsjz_l .xsjz_l_item .xsjz_l_img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	transition: transform 0.3s ease;
}

.xsjz .xsjz_l .xsjz_l_item:hover {
	cursor: pointer;
}

.xsjz .xsjz_l .xsjz_l_item:hover .xsjz_l_img {
	transform: scale(1.1);
}

.xsjz_l_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-left: 0.3rem;
}

.xsjz_l_one {
	background-color: rgba(144, 22, 1, 0.8);
}

.xsjz_l_two {
	background-color: rgba(171, 100, 69, 0.8);
}

.xsjz_l_three {
	background-color: rgba(123, 67, 47, 0.8);
}

.xsjz_l_four {
	background-color: rgba(193, 141, 115, 0.8);
}

.xsjz_l_title {
	padding-top: 1.4rem;
	font-size: 0.2rem;
	line-height: 0.3rem;
	padding-bottom: 0.12rem;
}

.xsjz_l_line {
	width: 0.2rem;
	height: 0.04rem;
	background-color: #fff;
}

.xsjz_l_more {
	padding-top: 0.12rem;
	font-size: 0.14rem;
	line-height: 0.2rem;
	letter-spacing: 0.02rem;
}

.arrow {
	width: 0.15rem;
	height: 0.15rem;
	position: relative;
	top: -0.24rem;
	left: 0.86rem;
}

.arrow>img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.xsjz_r {
	width: 56%;
	max-width: 8.3rem;
	height: auto;
	background: url('../img/xsjz_bg.png') no-repeat;
	background-size: 100% 100%;
	padding: 0 0.3rem;
}

.xsjz_r_title {
	color: #952D00;
	font-size: 0.28rem;
	line-height: 0.4rem;
	padding-top: 0.6rem;
	padding-bottom: 0.05rem;
	letter-spacing: 0.02rem;
	font-weight: bold;
}

.xsjz_r_line {
	width: 0.6rem;
	height: 0.04rem;
	background-color: #fff;
}

.xsjz_r_content {
	padding-top: 0.1rem;
}

.xsjz_r_item {
	padding: 0.15rem 0;
	display: flex;
	align-items: center;
	border-bottom: 0.01rem dashed #a56c41;
}

.xsjz_r_item .item_icon {
	width: 0.14rem;
	height: 0.14rem;
	background: #F8E8D0;
	border-radius: 50%;
}

.xsjz_r_item .item_title {
	padding-left: 0.32rem;
	font-size: 0.2rem;
	line-height: 0.3rem;
	color: #333333;
}

.xsjz_r_item .item_date {
	margin-left: auto;
	width: 1.1rem;
	height: 0.3rem;
	font-size: 0.14rem;
	line-height: 0.3rem;
	color: #B4855C;
	letter-spacing: 0.01rem;
	background: url('../img/date_bg.png') no-repeat;
	background-size: 100% 100%;
	text-align: center;
	flex-shrink: 0;
}

.xsjz_r_item:last-child {
	border-bottom: none;
}

.xsjz_r_item:hover {
	cursor: pointer;
}

.xsjz_r_item:hover .item_title {
	color: #ad1d04;
}

.xsjz_r_more {
	display: block;
	margin-top: 0.05rem;
	width: 1.2rem;
	height: 0.4rem;
	background: #901601;
	border-radius: 0.08rem;
	font-size: 0.2rem;
	color: #ffffff;
	text-align: center;
	padding: 0.05rem 0;
	margin-bottom: 0.42rem;
}

.xsjz_r_more:hover {
	text-decoration: underline;
}

/* 特色专题 */
.tszt {
	padding-top: 0.5rem;
	padding-bottom: 0.45rem;
}

.tszt .news_title {
	padding-bottom: 0.43rem;
}

.tszt .news_title .nt_l span {
	color: #d8001b;
}

.tszt .tszt_content {
	padding: 0 10%;
}

.tszt_content .swiper {
	width: 100%;
	height: 100%;
}

.tszt_content .swiper .swiper-slide {
	width: 3.6rem;
	height: 1.6rem;
	text-align: center;
	font-size: 0.18rem;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tszt_content .swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.tszt_content .swiper-button-prev::after,
.tszt_content .swiper-button-next::after {
	font-size: 0.2rem;
	color: #ffffff;
}

.tszt_content .swiper-button-prev,
.tszt_content .swiper-button-next {
	width: 0.4rem;
	height: 1.6rem;
	background: rgba(0, 0, 0, 0.35);
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0.22rem;
}

.tszt_content .swiper-button-prev {
	left: 0;
}

.tszt_content .swiper-button-next {
	right: 0;
}

/* 底部 */
.footer-container {
	padding: 0.4rem 2rem 0.3rem 2rem;
	height: auto;
	background: url('../img/footer_bg.png') no-repeat;
	background-size: 100% 100%;
}

.footer-container>div {
	display: flex;
}

.contact .f_logo {
        width: 3.4rem;
	height: 0.8rem;
	margin-bottom: 0.6rem;
}

.contact .f_logo img {
	width: 100%;
	height: 100%;
	object-fit: fill;
}

.contact .contact_text {
	color: #dfc39c;
	font-size: 0.14rem;
	line-height: 0.2rem;
}

.footer_r {
	margin-left: auto;
	margin-top: 0.2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.footer_r .link{
	width: 3.2rem;
	height: 0.4rem;
	border: 0.01rem solid #dfc39c;
	position: relative;
}

.footer_r .link p{
	color: #dfc39c;
	padding-left: 0.2rem;
	font-size: 0.14rem;
	line-height: 0.4rem;
	margin-bottom: 0;
	position: relative;
}

.footer_r .link p::after {
	content: "";
	position: absolute;
	top: -0.01rem;
	right: -0.01rem;
	width: 0.7rem;
	height: 100%;
	background: #b58465 url('../img/down.png') no-repeat;
	background-position: center center;
	background-size: 0.2rem auto;
	overflow: hidden;
}
.footer_r .link .link-item{
	position: absolute;
	left: 0rem;
	right: 0rem;
	background: #fff;
	padding: 0.15rem 0;
	display: none;
	max-height: 60vh;
	overflow-y: auto;
	bottom: 100%;
}
.footer_r .link .link-item a{
	display: block;
	color: #333333;
	line-height: 0.36rem;
	font-size: 0.16rem;
	padding: 0rem 0.1rem;
	transition: all 0.3s ease;
}
.footer_r .link:hover{
	cursor: pointer;
}
.footer_r .link:hover .link-item{
	display: block;
	box-shadow: rgba(0, 0, 0, 0.2) 0rem 0rem 0.13rem;
}
.footer_r .link .link-item a:hover{
	color: #fff;
	background: #901601;
}
    
.footer_r .code {
	margin-top: 0.3rem;
	width: 1.25rem;
	height: 1.25rem;
}

.footer_r .code img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-container .copyright {
	color: #dfc39c;
	font-size: 0.14rem;
	line-height: 0.2rem;
}

@media (min-width: 1200px) and (max-width: 1440px) {
	.top-container .top>div {
		padding: 0.27rem 5%;
	}

	.navbar {
		padding: 0 5%;
	}

	.link {
		height: auto;
	}

	.link .list-group {
		display: flex;
		flex-wrap: wrap;
	}

	.link .list-group-item {
		padding: 0.15rem 0.1rem;
	}

}

@media (max-width: 1199px) {

	header {
		position: fixed;
		width: 100%;
		z-index: 999;
	}

	.top-container .top>div {
		padding: 0.1rem 5%;
		height: 0.7rem;
	}

	.top-container .top .logo {
		width: 2.6rem;
		height: auto;
		margin: 0;
	}

	.navbar {
		padding: 0;
		border: none;
		position: relative;
		height: 0;
	}

	.navbar::after {
		background-image: none;
	}

	.navbar-toggler {
		border: none;
		background: transparent;
		padding: 0.1rem;
		outline: none !important;
		box-shadow: none !important;
		cursor: pointer;
		position: absolute;
		top: -0.6rem;
		right: 0;
	}

	.toggler-line {
		display: block;
		width: 0.25rem;
		height: 0.02rem;
		background-color: #fff;
		margin: 0.06rem 0;
		border-radius: 0.03rem;
		transition: all 0.3s ease-in-out;
		transform-origin: center;
	}

	.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
		transform: translateY(0.08rem) rotate(45deg);
	}

	.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
		opacity: 0;
		transform: translateX(-0.1rem);
	}

	.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
		transform: translateY(-0.08rem) rotate(-45deg);
	}

	.navbar-collapse {
		position: fixed;
		top: 0.68rem;
		right: 0;
		bottom: 0;
		width: 100%;
		height: calc(100vh - 0.68rem);
		background-color: #ab1b1b;
		z-index: 998;
		padding: 0.2rem;
		overflow-y: auto;
		box-shadow: -0.05rem 0 0.15rem rgba(0, 0, 0, 0.2);

		transform: translateX(100%);
		transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);

		max-height: none;
		border-top: 0.01rem solid #f7f7ff;
		margin-top: 0;
	}

	.navbar-collapse.show {
		transform: translateX(0);
	}

	.d-lg-none>form {
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}

	.d-lg-none .form-control {
		width: 80%;
		background-color: rgba(255, 255, 255, 1);
		border: 0.01rem solid rgba(255, 255, 255, 0.3);
		color: #fff;
		font-size: 0.16rem;
		padding: 0.1rem;
	}

	.d-lg-none .form-control::placeholder {
		color: rgba(0, 0, 0, 0.6);
	}
	.d-lg-none .form-control:focus{
		box-shadow: 0 0 0 0.04rem rgba(13,110,253,.25);
	}
	.my-3{
		margin-top: 0.16rem !important;
		margin-bottom: 0.16rem !important;
	}

	.search-icon {
		width: 0.3rem;
		height: 0.3rem;
		position: absolute;
		right: 10%;
	}


	.navbar .navbar-nav .nav-item {
		display: block !important;
		border-bottom: 0.01rem solid rgba(255, 255, 255, 0.1);
		max-width: 100%;
		position: relative;
		text-align: left;
	}

	.navbar .navbar-nav {
		gap: 0rem !important;
	}

	.navbar-nav .dropdown-menu.show {
		max-height: 5rem;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.navbar-nav .dropdown-menu .dropdown-item {
		text-align: left;
		color: #d7d7d7;
	}

	.navbar-nav .dropdown-menu li {
		border-bottom: none;
	}

	.navbar-nav .dropdown-menu {
		position: static !important;
		float: none !important;
		transform: none !important;
		width: 100% !important;
		max-width: 100% !important;
		flex-basis: 100%;
		padding: 0 0 0 0.1rem !important;
		background-color: #B20303;
		border: none !important;
		border-radius: 0 !important;
		filter: drop-shadow(rgba(0, 0, 0, 0.15) 0px 18.75px 37.5px);
		display: block !important;
		max-height: 0;
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s;
	}

	.navbar-nav .dropdown-menu.show {
		max-height: 5rem;
		opacity: 1;
		visibility: visible;
	}

	.mobile-accordion-btn {
		background: transparent;
		border: none;
		cursor: pointer;
		outline: none;
		position: absolute;
		top: 0;
		right: 0;
		padding: 0.2rem;
		z-index: 10;
	}

	.arrow-icon img {
		display: block;
		width: 0.2rem;
		height: 0.2rem;
		transition: transform 0.3s ease;
		transform-origin: center center;
	}

	.mobile-accordion-btn[aria-expanded="true"] .arrow-icon {
		display: inline-block;
		transform: rotate(90deg);
	}

	.dropdown-menu::before {
		background: none;
	}

	.dropdown-menu::after {
		background: none;
	}

	.navbar .navbar-nav .nav-item:nth-child(4) {
		margin-right: 0;
	}

	.language {
		padding-top: 0.2rem;
		display: flex;
		gap: 0.2rem;
	}

	.language a {
		color: #BEB5A2;
		line-height: 0.22rem;
		letter-spacing: 0.01rem;
		font-weight: bold;
	}
	.banner .swiper {
		height: 2.3rem;
	}

	.com_container {
		padding: 0 5%;
	}

	.nt_l {
		font-size: 0.22rem;
		width: 3.5rem;
		height: 0.8rem;
	}

	.more {
		width: 0.8rem;
		height: 0.3rem;
		top: 0.6rem;
	}

	.more a {
		font-size: 0.18rem;
		padding: 0.04rem 0;
	}

	.xy_news .new_content .new_top {
		flex-direction: column;
	}

	.xy_news .new_content .new_bottom {
		grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
	}

	.tzgg {
		padding-top: 0.5rem;
	}

	.tzgg .tzgg_content {
		flex-direction: column;
	}

	.xsjz {
		flex-direction: column;
		align-items: center;
	}

	.xsjz .xsjz_l {
		width: 100%;
	}

	.xsjz .xsjz_l .xsjz_l_item {
		width: 100%;
	}

	.xsjz_r {
		width: 100%;
		padding: 0 0.1rem;
	}

	.xsjz_r_title {
		font-size: 0.22rem;
		padding-top: 0.3rem;
	}

	.xsjz_r_item .item_title {
		padding-left: 0.16rem;
	}

	.footer-container {
		padding: 0.4rem 5% 0.2rem 5%;
		background-size: cover;
	}

	.footer-container>div {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0.2rem;
	}

	.footer_l {
		text-align: center;
	}

	.contact {
		text-align: center;
		padding-top: 0.5rem;
	}

	.contact .f_logo {
		margin: 0 auto;
		margin-bottom: 0.3rem;
	}

	.footer_r {
		margin-left: 0;
		padding-top: 0.1rem;
		align-items: center;
	}

	.footer-container .copyright {
		align-items: center;
	}

	.tzgg .tzgg_content {
		grid-template-columns: repeat(auto-fit, minmax(2.5rem, 1fr));
	}
}

@media (max-width: 768px) {
	.xsjz .xsjz_l {
		width: 100%;
		grid-template-columns: 1fr;
	}
}