body{
	margin: unset !important;
}

.content-bg1 {
	margin: 0 auto;
	padding-top: 40px;
	padding-bottom: 103px;
	max-width: 1296px;
	cursor: default;
}

.content-bg1 .page-one-img {
	display: inline-block;
}

.page_two {
	width: 100%;
	padding: 85px 0;
	text-align: center;
	max-width: 1600px;
	margin: 0 auto;
	cursor: default;
}

.page_three_bg {
	background: #0F172A;
	width: 100%;
	cursor: default;
}

.page_three {
	background: #0F172A;
	display: flex;
	height: 600px;
	max-width: 1500px;
	margin: 0 auto;
}

.page_four {
	width: 100%;
	display: flex;
	height: 600px;
	justify-content: center;
	max-width: 1500px;
	margin: 0 auto;
	cursor: default;
}

.page_five_bg {
	background: #F3F9FD;
	width: 100%;
	cursor: default;
}

.page_five {
	height: 1084px;
	text-align: center;
	padding: 100px 0;
	box-sizing: border-box;
	max-width: 1296px;
	margin: 0 auto;
}

.page_six_bg {
	background: #2563EB;
	width: 100%;
	cursor: default;
}

.page_six {
	padding: 100px 0;
	text-align: center;
	max-width: 1296px;
	margin: 0 auto;
}

.imgstar :nth-child(n+2) {
	margin-left: 2px;
}

.button {
	background: #2563EB;
	border-radius: 10px;
	padding: 15px 50px;
	font-size: 16px;
	font-weight: 600;
	color: #FFFFFF;
	border: unset;
	cursor: pointer;
}

.line_center {
	background: #E4E4E7;
	width: 277px;
	height: 1px;
	margin: 86px auto 80px;
	border-radius: 25px;
	display: block;
}

.submit {
	position: absolute;
	border-radius: 10px;
	background: #FFC947;
	width: 163px;
	padding: 15px;
	right: 6px;
	color: #383120;
	top: 50%;
	transform: translate(0, -50%);
}

input:focus {
	outline: none;
	box-shadow: none;
}

textarea:focus {
	outline: none;
	box-shadow: none;
}

/* 初始：略微下移 + 透明 */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 进入视口后：归位 + 显示 */
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 想让多个块出现时有一点“依次浮现的感觉”可以加个小延迟 */
.reveal[data-delay="1"] {
	transition-delay: 0.2s;
}

.reveal[data-delay="2"] {
	transition-delay: 0.2s;
}

.reveal[data-delay="3"] {
	transition-delay: 0.2s;
}

.reveal[data-delay="4"] {
	transition-delay: 0.2s;
}

.reveal[data-delay="5"] {
	transition-delay: 0.2s;
}

.hover_left {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	background: #0F172A80;
	border: 1px solid #0F172A66;
	backdrop-filter: blur(8px);
	box-shadow: 2px 8px 22px 0px #0F172A1F;
	border-radius: 8px;
	position: absolute;
	left: 50%;
	bottom: 50px;
	width: max-content;
	cursor: pointer;
}

.hover_right {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	background: #0F172A80;
	border: 1px solid #0F172A66;
	backdrop-filter: blur(8px);
	box-shadow: 2px 8px 22px 0px #0F172A1F;
	border-radius: 8px;
	position: absolute;
	right: 50%;
	bottom: 50px;
	width: max-content;
	cursor: pointer;
}

.five_ele {
	text-align: center;
	border-radius: 10px;
	background: #FFFFFF;
	padding: 50px 34px 40px;
	width: 372px;
	box-sizing: border-box;
}

.five_ele:hover {
	box-shadow: 0px 34px 104px 0px #12161C1A;
}

.loop-wrap {
	width: 60%;
	margin: 0 auto;
	overflow: hidden;
}

.loop-track {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	/* 整条轨道做动画：从 0 滚到 -50% */
	animation: logo-loop 10s linear infinite;
}

/* 每一项 */
.loop-track .item {
	flex: 0 0 auto;
	padding: 0 40px;
	/* 项目之间的间距，可调 */
}

/* hover 放大一点点即可，比 scale(2) 自然很多 */
.loop-track .item img:hover {
	opacity: 1;
	transform: scale(1.2);
}

/* 无限滚动的关键帧：从 0 移到 -50% */
@keyframes logo-loop {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* 悬停暂停动画（类名改对） */
.loop-wrap:hover .loop-track {
	animation-play-state: paused;
}

.msg_leave {
	display: none;
}

.msg_move {
	display: block;
}

#getMessage::-webkit-scrollbar{
	width: 2px !important;
}

/* 滑道（轨道） */
#getMessage::-webkit-scrollbar-track{
	background: transparent;    /* 或 rgba(0,0,0,.05) */
	border-radius: 8px;
}

/* Chrome / Safari / 新版 Edge */
.showbibilist::-webkit-scrollbar {
	display: none !important;
}

/* Firefox */
.showbibilist {
  scrollbar-width: none; /* 隐藏滚动条 */
}

/* 旧版 IE / Edge */
.showbibilist {
  -ms-overflow-style: none;
}

/* 手机版适配：宽度 <= 960px */
@media (max-width: 960px) {

	/* 整体内容左右留一点内边距，别紧贴边缘 */
	body {
		margin: 0;
	}

	.content-bg1,
	.page_two,
	.page_three,
	.page_four,
	.page_five,
	.page_six {
		padding-left: 16px;
		padding-right: 16px;
		box-sizing: border-box;
	}

	/* 顶部第一屏：高度交给内容，标题缩小，左右改上下 */
	.content-bg1 {
		padding-top: 24px;
		padding-bottom: 40px;
	}
	
	.content-bg1 .page-one-img {
		display: none;
	}

	/* 第一屏里那块左右排的 flex 容器（你是写行内 style 的），这里强制改成竖排 */
	.content-bg1>div[style*="display: flex"] {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	/* 大标题 80px 改小一点 */
	.content-bg1 span[style*="font-size: 80px"] {
		font-size: 32px !important;
		line-height: 1.2 !important;
	}

	.content-bg1 span[style*="font-size: 20px"] {
		font-size: 16px !important;
	}

	/* 第二屏：上下间距减小，logo 滚动条铺满全宽，“优势”从两列改一列 */
	.page_two {
		padding: 40px 16px;
	}

	.line_center {
		margin: 40px auto 40px;
		width: 180px;
	}

	.page_two>span[style*="font-size: 42px"] {
		font-size: 26px !important;
	}

	.loop-wrap {
		width: 100%;
		margin-top: 24px;
	}

	/* 优势区那块：padding: 0 293px;太大，手机去掉并改竖排 */
	.page_two>div[style*="margin-top: 80px"] {
		padding: 0 !important;
		margin-top: 40px !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 32px;
	}

	.page_two>div[style*="margin-top: 80px"]>div {
		width: 100% !important;
	}

	/* 第三屏：改成上图下文，高度自适应 */
	.page_three {
		flex-direction: column;
		height: auto;
		padding: 40px 16px;
	}

	.page_three>div {
		width: 100% !important;
	}

	.page_three img[src*="page_three_left.png"] {
		display: none;
		width: 100% !important;
		height: auto !important;
	}

	.page_three span[style*="font-size: 42px"] {
		font-size: 26px !important;
	}

	.page_three span[style*="font-size: 18px"] {
		font-size: 14px !important;
		max-width: 100% !important;
	}

	/* 第四屏：左文右图 → 上文下图，高度自适应 */
	.page_four {
		flex-direction: column-reverse;
		height: auto;
		padding: 40px 16px;
	}

	.page_four>div {
		width: 100% !important;
	}

	.page_four img[src*="page_four_right.png"] {
		display: none;
		position: static !important;
		width: 100% !important;
		height: auto !important;
	}
	
	.page-four-box {
		display: block !important;
		width: 100%;
	}
	
	.page-four-div {
		max-width: unset !important;
	}

	.page_four span[style*="font-size:42px"] {
		font-size: 26px !important;
	}

	.page_four span[style*="font-size:18px"] {
		font-size: 14px !important;
	}

	/* 第五屏：三张评价卡片变成一列，高度自适应 */
	.page_five {
		height: auto;
		padding: 60px 16px;
	}

	.page_five>div[style*="justify-content: center"] {
		flex-direction: column;
		align-items: stretch;
		margin-top: 40px !important;
		gap: 24px;
	}

	.five_ele {
		width: 100%;
		max-width: 100%;
		margin: 0 !important;
	}

	.page_five span[style*="font-size: 42px"] {
		font-size: 26px !important;
	}

	.page_five span[style*="font-size: 36px"] {
		font-size: 22px !important;
	}

	/* 第六屏：输入框铺满，按钮在右侧叠在里面，底部数字改竖排 */
	.page_six {
		padding: 60px 16px;
	}

	.page_six>div[style*="width: 578px"] {
		width: 100% !important;
	}

	.page_six input[type="text"] {
		width: 100% !important;
		box-sizing: border-box;
		padding-right: 120px !important;
	}

	.submit {
		width: auto;
		padding: 10px 16px;
		right: 8px;
	}

	.page_six>div[style*="width: 500px"] {
		width: 100% !important;
		margin-top: 32px !important;
		/* flex-direction: column; */
		align-items: flex-start;
		justify-content: space-around !important;
		gap: 16px;
	}

	.page_six>div[style*="width: 500px"]>div[style*="height: 53px"] {
		display: none;
		/* 中间那条竖线在手机上隐藏 */
	}

	/* LOGO 滚动稍微慢一点，手机看不那么晕 */
	.loop-track {
		animation-duration: 16s;
	}

	/* 全局按钮在手机上可以略宽一点 */
	.button {
		padding: 12px 24px;
		font-size: 14px;
	}

	/* 右下角悬浮客服按钮位置往里缩一点 */
	#msg_bg {
		right: 16px !important;
		bottom: 24px !important;
	}
	
	#msg_bg_w {
		right: 16px !important;
		bottom: 24px !important;
	}
	
	/* 初始：略微下移 + 透明 */
	.reveal {
		opacity: 0;
		transform: translateY(20px);
		transition: opacity 0.6s ease, transform 0.6s ease;
	}
	
	/* hover 放大一点点即可，比 scale(2) 自然很多 */
	.loop-track .item img:hover {
		opacity: 1;
		transform: unset;
	}
	
	/* 悬停暂停动画（类名改对） */
	.loop-wrap:hover .loop-track {
		animation-play-state: unset;
	}
	
	.dialog1 {
		right: unset !important;
		width: 100%;
		/* margin: 0 auto; */
	}
	
	.header {
		display: none;
	}
	
	.email-bg {
		margin-right: unset !important;
	}
	
	.email-bg div {
		margin-left: 0px !important;
	}
	
	.dialog-bg{
		width: 90% !important;
		margin: 0 auto;
	}
	
	.close-img {
		right: 5% !important
	}
}