@font-face {
	font-family: SSZhiZunShuFaTi;
	src: url('/material/font/SSZhiZunShuFaTi.woff2') format('woff2'),
		/* 优先现代浏览器 */
		/* 兜底 */
		url('/material/font/SSZhiZunShuFaTi.ttf') format('truetype');
	font-weight: normal;
	font-display: swap;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a[href^="tel"],
a[href^="sms"],
a[x-apple-data-detectors],
span[x-apple-data-detectors] {
	color: inherit !important;
	text-decoration: none !important;
	font-size: inherit !important;
	font-family: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	display: inline !important;
	white-space: inherit !important;
	word-break: break-all !important;
	overflow-wrap: anywhere !important;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB",
		"Microsoft YaHei", sans-serif;
	color: #333333;
	line-height: 1.6;
	max-width: 7.5rem;
	margin: 0 auto;
	background-color: #fff;
	font-size: 0.32rem;
}

.header {
	width: 100%;
	background: rgba(0, 70, 131, 1);
	position: fixed;
	top: 0;
	z-index: 1000;
}

.header-content {
	width: 6rem;
	display: flex;
}

.header-wrapper {
	padding: 0.45rem 0.23rem 0.48rem 0.23rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-title {
	margin-left: 0.22rem;
	font-size: 0.24rem;
	color: #ffffff;
	line-height: 0.32rem;
	text-align: left;
	font-style: normal;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

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

.logo-image {
	width: 3.44rem;
	height: 0.81rem;
}

.toggle-icon {
	width: 0.46rem;
	height: 0.37rem;
	background: url(../images/m/icon-more.png) center center no-repeat;
	background-size: 100% auto;
}

.toggle-icon.active {
	width: 0.35rem;
	height: 0.35rem;
	background: url(../images/m/icon-close.png) center center no-repeat;
	background-size: 100% auto;
}

.nav-menu-dropdown {
	position: fixed;
	top: 1.74rem;
	left: 0;
	right: 0;
	max-height: 0;
	overflow: scroll;
	transition:
		max-height 0.35s ease,
		opacity 0.35s ease;
	opacity: 0;
	background: rgba(0, 70, 131, 1);
	z-index: 999;
}

.nav-menu-dropdown.active {
	max-height: 68vh;
	opacity: 1;
}

.nav-overlay {
	position: fixed;
	top: 1.75rem;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.nav-overlay.active {
	opacity: 1;
	visibility: visible;
}

.nav-list {
	list-style: none;
	padding: 0;
}

.nav-list>li {
	background: rgba(0, 70, 131, 1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-list>li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-list>li>a,
.nav-list>li .submenu-toggle {
	display: block;
	padding: 0.45rem 0.64rem;
	color: #fff;
	text-decoration: none;
	font-size: 0.46rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.submenu-toggle-icon {
	display: inline-block;
	width: 0.6rem;
	height: 0.8rem;
	position: relative;
}

.has-submenu .submenu-toggle .submenu-toggle-icon:after {
	content: '';
	display: inline-block;
	width: 0.31rem;
	height: 0.18rem;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: url(../images/m/icon-collaspe.png) center center no-repeat;
	background-size: 100% auto;
	box-sizing: content-box;
}

.has-submenu.active .submenu-toggle .submenu-toggle-icon {
	transform: rotate(180deg);
}

.submenu {
	list-style: none;
	padding: 0;
	margin-left: 0.62rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.submenu.open {
	max-height: 500px;
}

.submenu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.submenu li a {
	display: block;
	padding: 0.35rem 0.52rem 0.35rem 0.52rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 0.34rem;
}

.m-main {
	margin-top: 1.74rem;
	padding-bottom: 0.8rem;
	position: relative;
}

.curpage {
	padding: 0.24rem;
	font-size: 0.24rem;
	color: #aaaaaa;
	display: flex;
	align-items: center;
	/* margin-top: .24rem; */
}

.curpage a {
	display: inline-block;
	width: auto;
	color: #aaaaaa;
}

.curpage .home-icon {
	display: inline-block;
	width: 0.25rem;
	height: 0.3rem;
	background: url(../images/m/home.png) no-repeat center;
	background-size: 100% auto;
	margin-right: 0.1rem;
}

/* 通用重置样式 */
ul,
ol,
li {
	list-style: none;
}

a {
	display: block;
	text-decoration: none;
	color: #000;
	width: 100%;
	height: 100%;
}

img {
	display: inline-block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.one-line-ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.two-line-ellipsis {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.three-line-ellipsis {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 尾部 */
/* 尾部 */
.m-footer {
	width: 100%;
	height: 4.08rem;
	background: url(../images/m/footerbg.png) no-repeat center;
	background-size: 100% auto;
	overflow: hidden;
}

.m-footer .f-container {
	display: flex;
	justify-content: center;
	margin-top: 1.2rem;
	align-items: center;
}

.m-footer .f-container .logo img {
	width: 3.6rem;
	height: auto;
	margin-bottom: 0.3rem;
}

.m-footer .f-container .name {
	color: #fff;
	font-size: 0.24rem;
	color: #ffffff;
	line-height: 0.32rem;
}

.m-footer .copyright {
	width: 100%;
	text-align: center;
	font-weight: 400;
	font-size: 0.22rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 0.34rem;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	padding-top: 0.3rem;
}

.m-footer .copyright p {
	padding-bottom: 0.1rem;
}

.m-footer .copyright span {
	padding-left: 0.4rem;
}

.pagination {
	margin: 10px 0;
	text-align: center;
}

.pagination a {
	display: inline-block !important;
	width: auto;
	height: auto;
	color: #333;
}

.pagination .pn {
	display: inline-block;
	border: 1px solid #a7a7a7;
	border-radius: 4px;
	text-align: center;
	font-size: 14px;
	padding-left: 7px;
	padding-right: 7px;
	color: #434343;
	background-color: #fff;
	height: 28px;
	line-height: 28px;
	margin: 0 5px;
}

.pagination .btns a {
	display: inline-block;
	border: 1px solid #a7a7a7;
	border-radius: 4px;
	text-align: center;
	font-size: 14px;
	color: #434343;
	background-color: #fff;
	padding: 0 12px;
	font-weight: 400;
	margin: 0 5px;
	height: 28px;
	line-height: 28px;
}

.pagination .btns a.active {
	border: 1px solid #004582;
}

.pagination a.dian {
	display: inline-block;
	margin: 0 5px;
	background-color: #f4f4f5;
	color: #606266;
	min-width: 30px;
	border-radius: 2px;
}

.pagination input {
	width: 50px;
	border: 1px solid #a7a7a7;
	border-radius: 4px;
	height: 28px;
	line-height: 28px;
	margin: 0 5px;
	text-align: center;
}

.pagination .first {
	margin-right: 10px;
}

.pagination .next {
	margin: 0 10px;
}