.page-contact {
	min-width: 19.2rem;
}

.hero {
	width: 100%;
	margin: auto;
	height: 6.5rem;
	min-height: 6.5rem;
	max-height: 6.5rem;
	position: relative;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	min-height: 100%;
	z-index: 0;
	background-color: #141418;
}

.hero-bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-content {
	padding-top: 2.02rem;
	position: relative;
	z-index: 1;
}

.hero-title {
	font-weight: 300;
	font-size: 0.6rem;
	color: #FFFFFF;
	line-height: 0.9rem;
}

.hero-desc {
	font-weight: 300;
	font-size: 0.36rem;
	color: #FFFFFF;
	margin-top: 0.35rem;
}


.contact-content .contact-content-title {
	font-weight: 300;
	font-size: 0.6rem;
	color: #000000;
	line-height: 0.9rem;
	margin-top: 0.9rem;
}

.contact-content .contact-content-card {
	width: 17.2rem;
	height: 4rem;
	background: #FFFFFF;
	border: 0.01rem solid #D7D7D7;
	margin-top: 0.9rem;
	display: flex;
	align-items: center;
}

.contact-content .contact-content-card .icon-list {
	flex: 1;
	padding: 0 0.84rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
}

.contact-content .contact-content-card .icon-list .icon-item img{
	display: block;
	width: 0.66rem;
	height: 0.66rem;
	/* 图标与下方标签间距：原注释中 0.3rem 的一半 */
	margin-bottom: 0.25rem;
}

.contact-content .contact-content-card .icon-list .icon-item .label{
	font-weight: 400;
	font-size: 0.18rem;
	color: #666666;
}

.contact-content .contact-content-card .icon-list .icon-item .value{
	font-weight: 400;
	font-size: 0.26rem;
	color: #000000;
	margin-top: 0.16rem;
}

.contact-content .contact-content-card .code-text{
	height: 1.7rem;
	border-left: 0.01rem solid #D7D7D7;
	padding-left: 1.36rem;
	padding-right: 0.84rem;
	text-align: center;
	font-weight: 400;
	font-size: 0.18rem;
	color: #666666;
	margin-left: 0;
}

.contact-content .contact-content-card .code-text img{
	width: 1.5rem;
	height: 1.5rem;
	display: block;
}

.scheme {
	width: 100%;
	height: 5rem;
	border-top: 0.01rem solid #E6E6E6;
	border-bottom: 0.01rem solid #E6E6E6;
	margin: auto;
	margin-top: 1.27rem;
}

.scheme .scheme-title {
	font-weight: 300;
	font-size: 0.64rem;
	color: #000000;
	margin-top: 1.2rem;
}

.scheme .scheme-desc {
	font-weight: 300;
	font-size: 0.24rem;
	color: #333333;
	line-height: 0.3rem;
	margin-top: 0.25rem;
}

.scheme .scheme-btns {
	display: flex;
	align-items: center;
	margin-top: 0.25rem;
}

.scheme .scheme-btns .btn1 {
	width: 2.45rem;
	height: 0.5rem;
	background: #FE0000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	font-size: 0.17rem;
	color: #FFFFFF;
	cursor: pointer;
	transition: background-color 250ms ease, border-color 250ms ease, color 250ms ease;
}

.scheme .scheme-btns .btn2 {
	width: 2.45rem;
	height: 0.5rem;
	border: 0.01rem solid #E6E6E6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	font-size: 0.17rem;
	color: #000000;
	margin-left: 0.2rem;
	cursor: pointer;
	transition: background-color 250ms ease, border-color 250ms ease, color 250ms ease;
}

.scheme .scheme-btns .btn1:hover {
	background: transparent;
	border: 0.01rem solid #E6E6E6;
	color: #000000;
}

.scheme .scheme-btns .btn2:hover {
	background: #FE0000;
	border: 0.01rem solid transparent;
	color: #FFFFFF;
}

.scheme .scheme-btns .btn1 .scheme-arrow {
	width: 0.2rem;
	margin-left: 0.6rem;
}

.scheme .scheme-btns .btn2 .scheme-arrow {
	width: 0.2rem;
	margin-left: 0.6rem;
}

/* scheme 按钮：移入/移出切换不同箭头 */
.scheme .scheme-btns .btn1:hover .scheme-arrow {
	content: url("https://junhe.oss-cn-beijing.aliyuncs.com/new_web/img/pc-index/hei-arrow.png");
}

.scheme .scheme-btns .btn2:hover .scheme-arrow {
	content: url("https://junhe.oss-cn-beijing.aliyuncs.com/new_web/img/pc-index/btn-arrow.png");
}

/* Reveal 动效：禁止首帧透明，避免首屏空屏 */
.reveal {
	opacity: 1;
	transform: translateY(0.14rem);
	transition: transform 600ms ease;
	will-change: transform;
}

.reveal.is-visible {
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		transition: none;
		transform: none;
	}
}
