@font-face {
	font-family: "iconfont"; /* Project id 4935866 */
	src:
		url("//at.alicdn.com/t/c/font_4935866_jxq414m66xq.woff2?t=1778576119529")
			format("woff2"),
		url("//at.alicdn.com/t/c/font_4935866_jxq414m66xq.woff?t=1778576119529")
			format("woff"),
		url("//at.alicdn.com/t/c/font_4935866_jxq414m66xq.ttf?t=1778576119529")
			format("truetype");
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*user-select: none;*/
	-webkit-user-drag: none;
	position: relative;
}
/* 滚动条样式 */
::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}
::-webkit-scrollbar-thumb {
	background: #b81c20;
	border-radius: 1.25rem;
	width: 2px;
	height: 4px !important;
}

::-webkit-scrollbar-track {
	background: black;
}
/* input 表单类 */
input,
select,
textarea {
	outline: none;
	border: none;
}

a {
	text-decoration: none;
	color: inherit;
}
button {
	border: none;
	color: inherit;
	font-size: inherit;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
button[icon]:after {
	content: "\e640";
	margin-left: 1rem;
	font-family: "iconfont";
	font-size: 1.875rem;
}
button:hover {
	transform: translateY(-5px);
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
}
:root {
	font-size: clamp(14px, 0.83333vw, 16px);
	color: #222;
	/* --tab-x: 0%; */
	width: 100%;
	--px: max(calc((100vw - 1400px) / 2), 2.5rem);
}
@media (max-width: 767px) {
    :root {
	    font-size: clamp(12px, 0.83333vw, 16px);
    }
}
body {
	overflow-x: hidden;
}
section {
	overflow-x: hidden;
}

.lrPadding {
	padding-left: var(--px);
	padding-right: var(--px);
}
h1 {
	font-size: 3.125rem;
	color: white;
}
h2 {
	font-size: 3rem;
	font-weight: 800;
	color: #222;
	max-width: 100%;
}
h2 > span {
	position: absolute;
	inset: 0;
}
h2::before {
	content: "";
	color: #222;
	opacity: 0.05;
	font-size: 10rem;
	position: relative;
	white-space: nowrap;
	line-height: 1;
}

/* 导航栏 */
#nav {
	background: white;
}
#navButton {
	color: #222;
}
#navList {
	display: flex;
	height: 100%;
	transform: translateX(0);
	color: #222;
}
#navList > div > a {
	width: 8.75rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}
#navList > div {
	display: flex;
	flex-direction: column;
}
#navList > div > div {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 0;
	left: 0;
    width: 150%;
	
	background: white;
	transform: translateY(100%) translateX(-17%);
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s;
}
#navList > div:hover > div,
#navList > div:active > div {
	max-height: 100vh;
}
#navList > div > div > a {
	width: 100%;
	height: 3.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	cursor: pointer;
	padding: 0 1rem;
	text-align: center;
}
.mobile {
	display: none !important;
}
@media (max-width: 767px) {
	#navList {
		position: fixed;
		top: 6.25rem;
		right: 0;
		flex-direction: column;
		width: 18.75rem;
		height: 100vh;
		background: rgba(255, 255, 255, 1);
		color: black;
		transition: all 0.36s;
		transform: translateX(100%);
		box-shadow: -3px 3px 10px -3px rgba(0, 0, 0, 0.1);
	}
	#navList > div > a {
		width: 100%;
		height: 6.25rem;
	}
	h2::before {
		content: "";
		font-size: 7.5rem;
	}
	#navList > div > div {
		display: flex;
		flex-direction: column;
		position: absolute;
		left: 0;
		top: 0;
		/* bottom: 0; */
		width: calc(100vw -  18.75rem);
		height: max-content;
		background: white;
		transform: translateX(-100%);
	}
	.mobile {
		display: flex !important;
	}
	.pc {
		display: none !important;
	}
}

#navList a:hover,.active {
	background: #b81c20;
	color: white;
}

[animate-enter] {
	animation: enter 1.4s ease-in-out paused forwards;
	transform: translateX(10vw);
	opacity: 0;
}
[animate-enter-left] {
	transform: translateX(-10vw);
	opacity: 0;
	animation: enter2 1.4s ease-in-out paused forwards;
}
@keyframes enter {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes enter2 {
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* 底部 */

footer {
	background-color: #eee;
}

footer > div:first-child {
	display: flex;
	flex-direction: column;
	gap: 3.75rem;
	padding-top: 5.125rem;
	justify-content: space-evenly;
	color: rgba(0, 0, 0, 0.6);
	font-size: 1rem;
}

footer > div:first-child > * {
	flex-grow: 1;
}

@media (min-width: 768px) {
	footer > div:first-child {
		flex-direction: row;
		gap: 0;
	}
}

footer > div:first-child > div:first-child {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

footer > div:first-child > div:first-child img {
	width: 16rem;
	object-fit: contain;
}

footer > div:first-child > div:nth-child(2) {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}
@media (max-width:767px){
    footer > div:first-child > div:nth-child(2){
        display: none;
    }
}

footer > div:first-child > div:nth-child(2) > span:first-child {
	font-size: 1.375rem;
	font-weight: bold;
}

@media (min-width: 768px) {
	footer > div:first-child > div:nth-child(2) > span:first-child {
		margin-bottom: 3.25rem;
	}
}

footer > div:first-child > div:nth-child(2) > span:first-child {
	color: #000;
}

footer > div:first-child > div:nth-child(3) {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	flex-grow: 0.2;
}

footer > div:first-child > div:nth-child(3) > span:first-child {
	font-size: 1.375rem;
	font-weight: bold;
}

@media (min-width: 768px) {
	footer > div:first-child > div:nth-child(3) > span:first-child {
		margin-bottom: 3.25rem;
	}
}

footer > div:first-child > div:nth-child(3) > span:first-child {
	color: #000;
}

footer > div:first-child > div:nth-child(3) > div:nth-child(2),
footer > div:first-child > div:nth-child(3) > div:nth-child(3),
footer > div:first-child > div:nth-child(3) > div:nth-child(4) {
	display: flex;
	gap: 0.875rem;
	align-items: center;
}

footer > div:first-child > div:nth-child(3) > div:nth-child(2) img,
footer > div:first-child > div:nth-child(3) > div:nth-child(3) img,
footer > div:first-child > div:nth-child(3) > div:nth-child(4) img {
	width: 1.125rem;
	object-fit: contain;
}

footer > div:first-child > div:nth-child(3) > div:last-child {
	display: flex;
	margin-top: 3.4375rem;
	align-items: center;
	gap: 1.25rem;
}

footer > div:first-child > div:nth-child(3) > div:last-child  a {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 2.5rem;
	background-color: #d9d9d9;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem;
}

footer > div:first-child > div:nth-child(3) > div:last-child  a img {
	width: 100%;
}

footer > div:nth-child(2) {
	padding-top: 2.25rem;
	padding-bottom: 2.25rem;
	margin-top: 5.9375rem;
	border-top: 1px solid #d2d2d2;
	text-align: center;
}
@media (max-width:767px){
    footer>div:nth-child(2){
        margin-top:0rem;
    }
    footer>div:first-of-type{
        padding-top:3rem;
        gap:2rem
    }
}
footer > div:nth-child(2) > span {
	margin-bottom: 1.25rem;
	font-size: 1rem;
	color: #666;
}

#wechart {
	position: absolute;
	top: -15rem;
	left: 0;
	width: 15rem;
	height: 15rem;
	visibility: hidden;
}

@media (min-width: 768px) {
	#make:hover ~ #wechart {
		visibility: visible;
	}
}
@media (max-width: 767px) {
	#make:checked ~ #wechart {
		visibility: visible;
	}
}
#wechart label {
	display: inline-block;
	width: 100%;
	height: 100%;
}
#wechart img {
	width: 100%;
	object-fit: contain;
}
/* end */

/* pageHader */
.pageHader {
	width: 100%;
	position: relative;
	overflow: hidden;
	position: sticky;
	top: 0;
}

@media (min-width: 768px) {
	.pageHader {
		aspect-ratio: 1920 / 600;
	}
}

.pageHader img {
	width: 100%;
	height: 25rem;
	object-fit: cover;
	display: block;
}

@media (min-width: 768px) {
	.pageHader img {
		height: 100%;
	}
}

.pageHader > div {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding-left: var(--px);
	padding-right: var(--px);
}

.pageHader > div > div:first-child {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.pageHader h1 {
	color: #222;
	font-weight: bold;
	margin: 0;
}

.pageHader > div > div:first-child span {
	font-size: 1.125rem;
	color: #222;
	margin-top: 1.4375rem;
}

.pageHader > div > div:last-child {
	position: absolute;
	bottom: 2.125rem;
	font-size: 1rem;
	color: #222;
	align-self: flex-start;
}

.pageHader a {
	color: #222;
	text-decoration: none;
}

.pageHader > div > div:last-child span {
	margin-left: 2px;
	margin-right: 2px;
}
/* end */
.scale {
	transition: all 1s ease-in-out;
}
.scale:hover {
	transform: scale(1.2);
}
.customA {
	transition: all 1s ease-in-out;
}
.customA:after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	height: 1px;
	width: 0%;
	background: #b81c20;
	display: block;
	transition: all 1s ease-in-out;
}
.customA:hover:after {
	content: "";
	width: 100%;
}
/* 新闻部分 */
.news_container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 5rem;
	gap: 5rem;
}

.news_container > a {
	display: grid;
	grid-template-columns: auto 1fr;
	flex-shrink: 1;
	flex-grow: 1;
	/* flex-basis: 46%; */
	gap: 2.625rem 6.25rem;
	justify-items: start;
	text-decoration: none;
}
@media (max-width: 767px) {
	.news_container {
		grid-template-columns: repeat(1, 1fr);
		gap: 2.5rem;
	}
	.news_container > a {
		gap: 1.5rem 2.5rem;
	}
}
.news_container > a > div:first-child {
	overflow: hidden;
	grid-column: span 2;
	grid-row: span 1;
}

.news_container > a > div:first-child img {
	width: 100%;
	height: 100%;
	aspect-ratio: 660/300;
	object-fit: cover;
	scale: 1;
}

.news_container > a > div:nth-child(2) {
	display: flex;
	flex-direction: column;
	grid-column: span 1;
	grid-row: span 2;
	align-items: center;
}

.news_container > a > div:nth-child(2) span:first-child {
	font-size: 4.5rem;
	color: #222;
	line-height: 1;
}

.news_container > a > div:nth-child(2) span:last-child {
	font-size: 1rem;
	color: #888;
}

.news_container > a > span:nth-of-type(1) {
	color: #333;
	font-size: 1.125rem;
	grid-column: span 1;
	grid-row: span 1;
}

.news_container > a > span:nth-of-type(2) {
	font-size: 0.875rem;
	color: #b81c20;
	grid-column: span 1;
	grid-row: span 1;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.news_container > a > span:nth-of-type(2) span {
	font-family: "iconfont";
	font-size: 1.125rem;
	font-weight: bold;
}
