.idle_banner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1rem;
	width: 100%;
	margin: 0 auto;
	background-image: url('../img/idle_banner_bg.png');
	background-size: auto 100%;
	background-position: center top;
	background-repeat: no-repeat;
}

.idle_banner_content {
	display: flex;
	flex-wrap: nowrap;
	gap: 3rem;
	justify-content: space-between;
	width: 100%;
	padding: 30px 52px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.idle_banner_text {
	display: flex;
	flex-direction: column;
}

.idle_banner_logo {
	width: 108px;
	height: auto;
	margin-bottom: 1.5rem;
}

.idle_banner_title {
/*            font-size: 2.8rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 1rem;
	line-height: 1.3; */
	display: inline-block;
	width: fit-content;
	font-family: PingFang SC;
	color: #1f2329;
	font-size: 40px;
	font-weight: 600;
	line-height: 60px;
	margin: 18px 0 23px;
	white-space: pre-wrap;
}

.idle_banner_description {
/*            font-size: 1.1rem;
	color: #4a4a4a;
	margin-bottom: 2rem;
	line-height: 1.7;
	max-width: 500px; */
	width: 427px;
	font-family: PingFang SC;
	color: #51565d;
	font-feature-settings: 'clig' off, 'liga' off;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 57px;
}

.idle_banner_buttons {
	display: flex;
	gap: 1.2rem;
	flex-wrap: wrap;
}


.idle_banner_buttons a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 24px;
	border-radius: 100px;
	background: linear-gradient(90deg, #5083fb 0, #336df4 34.38%, #6f77ec 69.27%, #bc98f9 100%);
	color: #fff;
	font-family: PingFang SC;
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	position: relative;
	overflow: hidden;
}

.idle_banner_button {
	display: inline-flex;
	align-items: center;
	padding: 0.9rem 2rem;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.idle_banner_button-primary {
	background-color: #4752e6;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(71, 82, 230, 0.3);
}

.idle_banner_button-primary:hover {
	background-color: #3a45c5;
	transform: translateY(-2px);
}

.idle_banner_button-secondary {
	background-color: #ffffff;
	color: #333333;
	border: 1px solid #e0e0e0;
}

.idle_banner_button-secondary:hover {
	background-color: #f5f5f5;
	transform: translateY(-2px);
}

.idle_banner_button_icon {
	width: 24px;
	height: 24px;
	margin-left: 0.6rem;
}

.idle_banner_image_container {
	min-width: 812px;
	max-width: 812px;
	/* margin-top: 58px; */
	position: relative;
	z-index: 3;
}

.idle_banner_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.idle_banner_image:hover {
	transform: scale(1.05);
}



.process_mian{
	/* background: linear-gradient(rgb(241 231 253) -5%, rgb(255, 255, 255) 79%); */
	width: 100%;
	margin-top: 40px;
}

.process_flow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem;
	border-radius: 12px;
	position: relative;
}

.process_flow_step {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	position: relative;
	z-index: 1;
}

.process_flow_icon {
	width: 108px;
	height: 108px;
	margin-bottom: 1.2rem;
	background: linear-gradient(90deg, #5598ff 0, #336df4 34.38%, #6f77ec 69.27%, #bc98f9 100%);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process_flow_step:hover .process_flow_icon {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process_flow_icon svg {
	width: 38px;
	height: 38px;
}

.process_flow_text {
	font-size: 1.15rem;
	font-weight: 600;
	color: #2d3748;
	text-align: center;
	letter-spacing: 0.5px;
}


.process_flow_icon img{
	width: 68px;
	height: 68px;
}

.process_flow_step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 52px;
    left: 78%;
    width: 40%;
	height: 3px;
	background: repeating-linear-gradient(
		to right,
		#a3bffa 0,
		#a3bffa 8px,
		transparent 8px,
		transparent 16px
	);
	z-index: 0;
	transition: background 0.3s ease;
}

.process_flow_step:hover:not(:last-child)::after {
	background: repeating-linear-gradient(
		to right,
		#7f9cf5 0,
		#7f9cf5 8px,
		transparent 8px,
		transparent 16px
	);
}

@media (max-width: 768px) {
	.process_flow {
		flex-direction: column;
		gap: 2.5rem;
		padding: 2rem;
	}

	.process_flow_step {
		flex: none;
	}

	.process_flow_step:not(:last-child)::after {
		display: none;
	}
}