* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 0.5vw;
	scroll-behavior: smooth;
}

body {
	font-family: "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
	color: #333;
	background: #fff;
	min-width: 1366px;
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

img {
	max-width: 100%;
	display: block;
}

ul,
ol {
	list-style: none;
}

.w_1300 {
	width: 130rem;
	margin: 0 auto;
}

.w_1600 {
	width: 160rem;
	margin: 0 auto;
}

/* ========== 头部导航样式 ========== */
.header {
	position: relative;
	height: 20rem;
}

.headbar {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 20rem;
	z-index: 999;
	background-color: #992077;
	background-image: url('../images/header_bg.png');
	background-size: 100% 100%;
}

/* 滚动后导航吸顶 */
.header-nav {
	height: 6rem;
	transition: all 0.3s ease;
}

.header-nav.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 6rem;
	z-index: 999;
	background-color: #992077;
	background-image: url('../images/header_bg.png');
	background-size: 100% 100%;
	box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.25);
}

/* 吸顶状态下，导航需要居中 */
.header-nav.is-sticky .headnav {
	max-width: 130rem;
	margin: 0 auto;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 14rem;
	padding: 2.5rem 0;
	box-sizing: border-box;
}

.header-logos {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 3;
}

.header-logos img {
	height: 6rem;
}

.header-logos img+img {
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.header-logos::after {
	position: absolute;
	content: '';
	left: 100%;
	top: 50%;
	margin-top: -5rem;
	margin-left: 6rem;
	display: block;
	width: 27rem;
	height: 10rem;
	background-size: 100% 100%;
	background-image: url('../images/slogan.png');
}

.header-tools {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header-tools>*+* {
	margin-left: 1.6rem;
}

.header-searchbox {
	display: flex;
	align-items: center;
}

.header-search-row {
	display: flex;
	align-items: center;
	width: 25rem;
	height: 4.6rem;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 6rem;
	overflow: hidden;
}

.header-search-input {
	flex: 1;
	width: 100%;
	height: 100%;
	padding: 0 0.4rem 0 2rem;
	border: none;
	outline: none;
	background-color: transparent;
	font-size: 1.4rem;
	color: #333;
}

.header-search-submit {
	flex-shrink: 0;
	width: 5.4rem;
	height: 4.4rem;
	border: none;
	background: transparent url("../images/icon/search2.png") no-repeat center;
	background-size: 2rem;
	cursor: pointer;
}

/* 主导航 */
.header-nav {
	height: 6rem;
}

.headnav {
	display: flex;
	align-items: center;
	height: 6rem;
}

.headnav_item {
	position: relative;
	flex: 1;
	text-align: center;
}

.headnav_th,
.headnav_th:link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6rem;
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 3rem;
	color: #fff;
	padding: 0 0.8rem;
	cursor: pointer;
	position: relative;
	transition: color 0.3s;
	text-decoration: none;
}

.headnav_item.selected .headnav_th,
.headnav_item.has-selected-child .headnav_th,
.headnav_item:hover .headnav_th {
	color: #fff;
}

.headnav_item.selected .headnav_th::after,
.headnav_item.has-selected-child .headnav_th::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 6rem;
	height: 0.35rem;
	background: #f0c040;
	border-radius: 0.3rem 0.3rem 0 0;
}

.headnav_td {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 18rem;
	margin-top: -0.2rem;
	background: #fff;
	border-radius: 0 0 0.6rem 0.6rem;
	box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.16);
	overflow: hidden;
	z-index: 10;
	display: none;
}

.headnav_item:hover .headnav_td {
	display: block;
}

.headnav_a,
.headnav_a:link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4.2rem;
	font-size: 1.5rem;
	color: #333;
	transition: background 0.2s, color 0.2s;
	text-decoration: none;
}

.headnav_a:hover,
.headnav_a.selected {
	background: #f8f0f6;
	color: #992077;
}


.hero-banner {
	position: relative;
	overflow: hidden;
}
.hero-banner::before{
	position: absolute;
	content: '';
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, #a9488c,rgba(0,0,0,0) 50%);
}

.hero-banner .w_1600{
	height: 62rem;
	position: relative;
	overflow: hidden;
	z-index: 3;
}

.hero-banner .swiper-slide {
	height: 62rem;
}

.hero-banner .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.swiper-pagination-box {
	position: absolute;
	right: 50%;
	transform: translateX(76rem);
	bottom: 3rem;
	display: flex;
	align-items: end;
	flex-direction: row;
	z-index: 10;
}

.swiper-pagination-new {
	display: flex;
	flex-direction: row;
	z-index: 10;
}

.swiper-pagination-bullet-new {
	width: 4.2rem;
	height: 4.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding-top: 1.2rem;
	font-size: 1.6rem;
	background: transparent;
	background-size: 100% 100%;
	cursor: pointer;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.swiper-pagination-bullet-new:not(:last-child) {
	margin-right: 1.5rem;
}

.swiper-pagination-bullet-new.active {
	color: #992777;
	background-image: url('../images/swiper_bg.png');
}

.swiper-pagination-more {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8rem;
	color: #992777;
	margin-left: 2rem;
}

.swiper-pagination-more::after {
	display: inline-block;
	content: '';
	width: 3.1rem;
	height: 1.9rem;
	background-size: 100% 100%;
	background-image: url('../images/icon/arrow.png');
	vertical-align: middle;
	margin: -3px 0 0 0.8rem;
}

.home-section-1 {
	padding: 6rem 0;
	background: url('../images/section1_bg.jpg');
}

.home-row {
	padding: 6rem 0;
	display: flex;
}

.home-col:not(:last-child) {
	margin-right: 8rem;
}

.home-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	position: relative;
}


.home-title-main::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	width: 17rem;
	height: 8.2rem;
	background-size: 100% 100%;
	background-image: url('../images/title_bg.png');
	opacity: 0.2;

}

.home-title-main {
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 5.4rem;
	color: #992777;
	font-family: "SimSun", "Songti SC", serif;
	display: block;
	position: relative;
	z-index: 3;
}

.home-title-sub {
	font-size: 1.4rem;
	font-weight: 200;
	line-height: 2rem;
	color: #555555;
	text-transform: capitalize;
	font-family: "SimSun", "Songti SC", serif;
	display: block;
}

.home-title-sub::before {
	display: inline-block;
	content: '';
	width: 2.6rem;
	height: 1px;
	background-color: currentColor;
	vertical-align: middle;
	margin: -4px 0.5rem 0 0;
}

.home-more {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 2rem;
	font-family: "SimSun", "Songti SC", serif;
	color: #868686;
	position: relative;
	z-index: 3;
}

.home-more::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 15.3rem;
	height: 3.8rem;
	background-image: url('../images/more_bg.png');
	background-size: 100% 100%;
	z-index: -1;
}

.home-more:hover {
	color: #992077;
}

.home-col-notice {
	flex-shrink: 0;
	width: calc((100% - 8rem)/2);
}

.home-notice-list {
	display: flex;
	flex-direction: column;
}

.home-notice-item {
	display: flex;
	align-items: stretch;
	height: 15rem;
	background-color: #fff;
	transition: all 0.3s ease;
	cursor: pointer;
}

.home-notice-item:not(:last-child) {
	margin-bottom: 1.8rem;
}

.home-notice-item:hover {
	background: #faf5f9;
}

.home-notice-item:hover .home-notice-title,
.home-notice-item:hover .home-notice-text {
	color: #992777;
}

.home-notice-date {
	flex-shrink: 0;
	width: 15rem;
	height: 15rem;
	background-color: #EBE4E8;
	background-image: url('../images/notice_bg.png');
	background-size: 100% 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	box-shadow: 0 0 0 0.5rem #fff inset;
	color: #992777;
	font-family: "SimSun", "Songti SC", serif;
	border-right: 1px solid #eee;
}

.home-notice-day {
	font-size: 4.2rem;
	font-weight: 900;
	letter-spacing: 0px;
	line-height: 6rem;
	color: currentColor;
	line-height: 1;
}

.home-notice-month {
	font-size: 2rem;
	font-weight: 700;
	line-height: 2.8rem;
	color: currentColor;
	margin-top: 0.5rem;
}

.home-notice-content {
	flex: 1;
	overflow: hidden;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.home-notice-title {
	width: 100%;
	font-size: 2rem;
	font-weight: 400;
	line-height: 2.8rem;
	color: #000000;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: all 0.3s ease;
}

.home-notice-text {
	width: 100%;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 2rem;
	color: #888888;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.3s ease;
}

.home-col-qinglian {
	flex: 1;
}

.home-qinglian-list {
	display: flex;
	align-items: stretch;
}

.home-qinglian-item:not(:last-child) {
	margin-right: 4.5rem;
}

.home-qinglian-item {
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
}

.home-qinglian-item:nth-child(even) {
	flex-direction: column-reverse;
}

.home-qinglian-item:hover {
	transform: translateY(-0.3rem);
	box-shadow: 0 0.6rem 2rem rgba(153, 32, 119, 0.15);
}

.home-qinglian-img {
	flex-shrink: 0;
	width: 100%;
	height: 22rem;
	overflow: hidden;
}

.home-qinglian-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.home-qinglian-item:hover .home-qinglian-img img {
	transform: scale(1.05);
}

.home-qinglian-content {
	padding: 2.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.home-qinglian-title {
	font-size: 2rem;
	font-weight: 400;
	line-height: 2.6rem;
	color: #000000;
	margin-bottom: 1.2rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-qinglian-meta {
	margin-bottom: 2.5rem;
}

.home-qinglian-date {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8rem;
	color: #888888;
}

.home-qinglian-date::before {
	display: inline-block;
	content: '';
	width: 1em;
	height: 1em;
	background-size: 1em auto;
	background-image: url('../images/icon/date.png');
	vertical-align: middle;
	margin: -3px 0.8rem 0 0;
	font-size: 1.6rem;
}

.home-qinglian-desc {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 2.2rem;
	color: #888888;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 1.5rem;
}


.home-qinglian-link {
	font-size: 1.4rem;
	color: #992077;
	text-align: right;
}

.home-col-xuncha {
	width: 98rem;
}

.home-xuncha-main {}

.home-xuncha-img {
	position: relative;
	overflow: hidden;
	height: 56rem;
	display: block;
}

.home-xuncha-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-xuncha-img .content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
	color: #fff;
	font-size: 1.6rem;
	font-weight: 600;
}

.home-xuncha-img .title {
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.6rem;
	color: #FFFFFF;
	margin-bottom: 3rem;
}

.home-xuncha-img .desc {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8rem;
	color: #FFFFFF;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.home-xuncha-list {
	display: flex;
	flex-wrap: wrap;
}

.home-xuncha-item:nth-child(odd) {
	margin-right: 6rem;
}

.home-xuncha-item {
	margin-top: 4.2rem;
	padding-bottom: 2.6rem;
	border-bottom: 1px solid #E8E8E8;
	width: calc((100% - 6rem) / 2);
	cursor: pointer;
}

.home-xuncha-item .date {
	flex-shrink: 0;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2.2rem;
	color: #992777;
	margin-bottom: 1.2rem;
}

.home-xuncha-item .title {
	font-size: 2rem;
	font-weight: 400;
	line-height: 3.2rem;
	height: 6.4rem;
	color: #000000;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-xuncha-item:hover .title {
	color: #992077;
}

.home-col-study {
	flex: 1;
}

.home-study-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.home-study-item {
	display: flex;
	align-items: stretch;
	background: #fff;
	height: 11rem;
	box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	cursor: pointer;
}

.home-study-item:hover {
	transform: translateY(-0.3rem);
	box-shadow: 0 0.4rem 1.5rem rgba(153, 32, 119, 0.12);
}

.home-study-item:hover .home-study-text {
	color: #992777;
}

.home-study-tag {
	flex-shrink: 0;
	height: 11rem;
	width: 18rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #EBE4E8;
	background-image: url('../images/park_bg.png');
	background-size: 100% auto;
	background-position: bottom;
	background-repeat: no-repeat;
	box-sizing: border-box;
	font-family: "SimSun", "Songti SC", serif;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 3.7rem;
	color: #85577B;
	box-shadow: 0 0 0 0.5rem #fff inset;
	border-right: 1px solid #eee
}



.home-study-text {
	display: flex;
	align-items: center;
	flex: 1;
	padding: 0 2.4rem;
	font-size: 2rem;
	font-weight: 400;
	line-height: 3rem;
	color: #000000;
}

.column-banner {
	width: 100%;
	height: 32rem;
	position: relative;
	overflow: hidden;
}

.column-banner-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.column-banner-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.column-banner-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	align-items: center;
}

.column-banner-column {
	display: flex;
	flex-direction: column;
	padding-left: 11.5rem;
}

.column-banner-column .title {
	font-size: 4.2rem;
	font-weight: 700;
	line-height: 6rem;
	color: #FFFFFF;
	font-family: "SimSun", "Songti SC", serif;
	text-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 3;
}

.column-banner-column .title::before {
	width: 28.6rem;
	height: 7.7rem;
	content: '';
	display: block;
	position: absolute;
	left: -11.5rem;
	bottom: 0;
	background-size: 100% 100%;
	background-image: url('../images/more_white_bg.png');
}

.column-banner-column .subtitle {
	font-size: 2rem;
	font-weight: 200;
	color: #FFFFFF;
	font-family: Georgia, serif;
}

.column-banner-column .subtitle::before {
	content: '';
	display: inline-block;
	width: 2.6rem;
	height: 1px;
	background-color: currentColor;
	vertical-align: middle;
	margin: -5px 0.8rem 0 0;
}

.column-banner-content .breadcrumb {
	position: absolute;
	bottom: 3rem;
	left: 0;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-size: 1.6rem;
	color: rgba(255, 255, 255, 0.9);
}

.breadcrumb::before {
	content: "";
	width: 1.6rem;
	height: 1.6rem;
	background: url("../images/icon/home.png") no-repeat center;
	background-size: contain;
	margin-right: 0.4rem;
	opacity: 0.9;
}

.breadcrumb .itm {
	color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a.itm:hover {
	color: #fff;
	text-decoration: underline;
}

.tab-nav {
	background: #FAF3EB;
}

.tab-nav-inner {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
}

.tab-item {
	display: flex;
	align-items: center;
	flex: none;
	height: 10rem;
	padding: 0 0.5rem;
	font-size: 2rem;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "SimSun", "Songti SC", serif;
	margin-right: 5rem;
	position: relative;
}


.tab-item:hover {
	color: #992077;
}

.tab-item.selected {
	color: #992077;
}

.tab-item.selected::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.4rem;
	content: '';
	background-color: currentColor;
	display: block;
}

.list-section {
	padding: 6rem 0 10rem;
	background: #fff;
	overflow: hidden;
}

.list-group {
	display: flex;
	flex-direction: column;
}

.list-item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #D9D9D9;
	transition: all 0.3s ease;
	height: 10rem;
	padding: 0 2.6rem;
	cursor: pointer;
	position: relative;
	z-index: 3;
}

.list-item:hover {
	transform: translateY(-1rem);
	box-shadow: 0 0.5rem 0.8rem rgba(153, 39, 119, 0.3);
}

.list-item:hover::after {
	transform: scaleY(1);
	transform-origin: top;
}

.list-item::after {
	background: #992777;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.2s linear;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.list-item:hover .list-item-date,
.list-item:hover .list-item-date::after,
.list-item:hover .list-item-main {
	color: #fff;
}

.list-item-date {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 2.6rem;
	color: #333333;
	font-family: "SimSun", "Songti SC", serif;
	transition: all 0.3s ease;
}

.list-item-date::after {
	height: 2.2rem;
	width: 3px;
	content: '';
	color: #992777;
	background-color: currentColor;
	display: inline-block;
	vertical-align: middle;
	margin: -5px 2.8rem 0;
	transition: all 0.3s ease;
}


.list-item-main {
	flex: 1;
	font-size: 2rem;
	font-weight: 400;
	color: #000000;
	transition: all 0.3s ease;
}


/* 列表页分页（行高 4rem、底 #F5F5F5、字 1.3rem #87898C） */
.list_pagination,.wp_paging {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.2rem;
	margin-top: 7rem;
	font-size: 1.3rem;
	line-height: 1;
	font-family: inherit;
	color: #87898C;
}
.list_pagination >div,.wp_paging >li{
	display: inline-flex!important;
	min-height: 4rem;
	height: 4rem;
}
.wp_paging >li>span,.wp_paging >li>a{
	margin: 0;
}
.pagination_info,.pages_count {
	display: inline-flex;
	align-items: center;
	box-sizing: border-box;
	min-height: 4rem;
	height: 4rem;
	padding: 0 1.6rem;
	background: #F5F5F5;
	border-radius: 0.3rem;
	color: #87898C;
	white-space: nowrap;
}

.pagination_page_ratio {
	margin-left: 0.35em;
	color: #87898C;
}

.pagination_cur_num {
	color: #992077;
	font-weight: 500;
}

.pagination_nums,.wp_paging .page_nav {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.2rem;
}

.list_pagination .pagination_num,
.wp_paging .page_nav a,
.list_pagination .pagination_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 2.8rem;
	min-height: 4rem;
	height: 4rem;
	padding: 0 1.6rem;
	background: #F5F5F5;
	border-radius: 0.3rem;
	color: #87898C;
	text-decoration: none;
	border: none;
	font-size: 1.3rem;
	line-height: 1;
	transition: background 0.15s, color 0.15s;
}
.wp_paging  .page_nav a,
.list_pagination .pagination_btn {
	padding: 0 1.6rem;
	min-width: auto;
}

.list_pagination .pagination_num:hover,
.wp_paging .page_nav a:hover,
.list_pagination .pagination_btn:hover {
	color: #992077;
	background: #ebebeb;
}

.list_pagination .pagination_num.selected {
	background: #992077;
	color: #ffffff;
	font-weight: 500;
}

.list_pagination .pagination_num.selected:hover {
	background: #992077;
	color: #ffffff;
}

.pagination_jump {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.2rem;
	margin-left: 0;
}

.pagination_jump_box,.wp_paging .page_jump {
	display: inline-flex;
	align-items: center;
	box-sizing: border-box;
	gap: 0.2rem;
	min-height: 4rem;
	height: 4rem;
	padding: 0 ;
	background: #F5F5F5;
	border-radius: 0.3rem;
	color: #87898C;
	white-space: nowrap;
}
.wp_paging .page_jump .pages{
	padding: 0 1.2rem;
}
.wp_paging .page_jump a{
	margin: 0;
}
.pagination_input,.wp_paging .page_jump .pageNum {
	width: 4.6rem;
	height: 3.8rem;
	padding: 0 0.4rem;
	margin: 0 1.2rem;
	box-sizing: border-box;
	background: #ffffff;
	border: none;
	border-radius: 0.25rem;
	color: #333333;
	font-size: 1.3rem;
	text-align: center;
	outline: none;
	-moz-appearance: textfield;
}

.pagination_input::-webkit-outer-spin-button,
.pagination_input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.pagination_ok ,.wp_paging .page_jump .pagingJump{
	box-sizing: border-box;
	min-height: 4rem;
	height: 4rem;
	line-height: 4rem;
	padding: 0 1.6rem;
	background: #fff0fa;
	border: none;
	border-radius: 0.3rem;
	color: #992077;
	font-size: 1.3rem;
	cursor: pointer;
	transition: background 0.15s;
}

.pagination_ok:hover,.wp_paging .page_jump .pagingJump:hover {
	background: #d4e5f5;
}

.pagination-new {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 5rem;
	padding-top: 3rem;
	border-top: 1px solid #e5e5e5;
	flex-wrap: wrap;
}

.pagination-new-prev,
.pagination-new-next {
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 0.4rem;
	background: #fff;
	transition: all 0.3s ease;
	cursor: pointer;
}

.pagination-new-prev::before {
	content: "";
	width: 0.8rem;
	height: 0.8rem;
	border-left: 2px solid #999;
	border-bottom: 2px solid #999;
	transform: rotate(45deg);
}

.pagination-new-next::before {
	content: "";
	width: 0.8rem;
	height: 0.8rem;
	border-right: 2px solid #999;
	border-top: 2px solid #999;
	transform: rotate(45deg);
}

.pagination-new-prev:hover,
.pagination-new-next:hover {
	border-color: #992077;
	background: #f8f0f6;
}

.pagination-new-prev:hover::before,
.pagination-new-next:hover::before {
	border-color: #992077;
}

.pagination-new-page {
	min-width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ddd;
	border-radius: 0.4rem;
	background: #fff;
	color: #333;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.pagination-new-page:hover {
	border-color: #992077;
	background: #f8f0f6;
	color: #992077;
}

.pagination-new-page.active {
	border-color: #992077;
	background: #992077;
	color: #fff;
}

.pagination-new-more {
	color: #666;
	font-size: 1.5rem;
	padding: 0 0.5rem;
}

.pagination-new-go {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-left: 2rem;
	font-size: 1.4rem;
	color: #666;
}

.pagination-new-select {
	position: relative;
	min-width: 6rem;
	height: 4rem;
	border: 1px solid #ddd;
	border-radius: 0.4rem;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2.5rem 0 1.5rem;
	cursor: pointer;
}

.pagination-new-select::after {
	content: "";
	position: absolute;
	right: 1rem;
	top: 50%;
	width: 0.6rem;
	height: 0.6rem;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	transform: translateY(-50%) rotate(45deg);
}

.pagination-new-gobtn {
	padding: 0.8rem 2rem;
	border: 1px solid #992077;
	border-radius: 0.4rem;
	background: #992077;
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pagination-new-gobtn:hover {
	background: #801a62;
}

.article-section {
	padding: 6rem 0 10rem;
	background: #FAF3EB;
	overflow: hidden;
}

.article-content {
	background: #fff;
	border-radius: 3rem;
	padding: 7rem 5rem;
	box-shadow: 0 0.2rem 1.5rem rgba(0, 0, 0, 0.06);
}

.article-header-new {
	text-align: center;
	padding-bottom: 3.6rem;
	border-bottom: 1px solid #DFE1E6;
	margin-bottom: 7.5rem;
}

.article-title-new {
	font-size: 3.6rem;
	font-weight: 500;
	line-height: 5.2rem;
	color: #333333;
	margin-bottom: 2.8rem;
}

.article-meta-new {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 2rem;
	color: #999999;
}
.article-meta-item:not(:last-child){
	margin-right: 4rem;
}


.article-body-new {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 3rem;
	color: #333333;
}
.article-body-new img{
	margin: auto;
}



.site-footer {
	position: relative;
	background-color: #992077;
	background-image: url('../images/footer_bg.png');
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	color: #fff;
	padding: 7rem 0 0;
	overflow: hidden;
	border-top: 3px solid #BFA161;
}


.footer-inner {
	position: relative;
	z-index: 1;
}

.footer-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 7.5rem;
}

.footer-logos img {
	height: 6rem;
}

.footer-logos img+img {
	padding-left: 1rem;
	margin-left: 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-bottom: 7rem;
}

.footer-slogan {
	height: 3.8rem;
	display: block;
	margin-bottom: 2rem;
}

.footer-contact .footer-info-row {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.footer-info-label,
.footer-info-content .text {
	flex-shrink: 0;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 3rem;
	color: #FFFFFF;
}

.footer-qr-items {
	display: flex;
}

.footer-qr-item {
	text-align: center;
	margin-left: 5.6rem;
}

.footer-qr-item .img {
	width: 11rem;
	height: 11rem;
	background: #fff;
	margin-bottom: 1rem;
}

.footer-qr-item span {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8rem;
	color: #FFFFFF;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 2rem 0 3.5rem;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 2.4rem;
	color: #FFFFFF;
	position: relative;
	z-index: 1;
}

.footer-bottom p {
	margin-bottom: 0.6rem;
}

.float-sidebar {
	position: fixed;
	right: 3rem;
	bottom: 5rem;
	z-index: 998;
}

.sidebar-top-new {
	width: 6rem;
	height: 6rem;
	background-color: transparent;
	background-image: url('../images/icon/gotop.png');
	background-size: 100% 100%;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sidebar-top-new {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.sidebar-top-new.is-visible {
	opacity: 1;
	visibility: visible;
}

.sidebar-top-new:hover {
	transform: translateY(-0.3rem);
}