@charset "utf-8";
body {
	margin: 0;
	padding: 0
}
.bg {
	width: 100%;
	height: auto;
	margin: 0px auto;
	min-height: 100vh;
	padding-bottom: 120px;
}
.news {
	width: 95%;
	height: 10px;
	line-height: 40px;
	margin: 0px auto;
	padding: 20px 0px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.nws_tb {
	width: 35px;
	padding-left: 10px;
	flex-shrink: 0;
}
.nws_tb img {
	width: 30px;
}
.nws_js {
	flex: 1;
	color: #fff;
	font-size: 16px;
	line-height: 40px;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	height: 40px;
}
.nws_js .scroll-text {
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
}
.content {
	width: 750px;
	background: rgba(255, 255, 255, 0.5);
	margin: 0px auto;
	border-radius: 10px;
	margin-top: 100%;
	padding: 10px;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) and (min-width: 320px){
	
	.content {
	width: 90%;
	background: rgba(255, 255, 255, 0.5);
	margin: 0px auto;
	border-radius: 10px;
	margin-top: 100%;
	padding: 10px;
	box-sizing: border-box;
}
}




/* 步骤 */
.step-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 15px;
	box-sizing: border-box;
	position: relative;
}
/* 进度线：步骤之间的连线 */
.step-container::before {
	content: '';
	position: absolute;
	top: 45px;
	left: 40px;
	right: 40px;
	height: 10px;
	background: #e1efff;
	z-index: 1;
}
/* 单个步骤样式 */
.step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2; /* 盖在进度线上 */
}
/* 步骤圆形数字 */
.step-number {
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
	background: inherit;
	color: #000;
	padding-top: 5px;
	padding-left: 5px;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.step-number-bg {
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
	background: #e5e7eb;
	transition: all 0.3s ease;
}
/*步骤（第一步） */
.step-item.active .step-number .step-number-bg {
	background: #2b6fee;
	color: #fff;
}
/* 激活步骤（第一步） */
.step-item.active .step-number {
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	text-align: center;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 8px;
	background: #e1efff;
	color: #000;
	padding-top: 10px;
	padding-left: 10px;
	box-sizing: border-box;
	transition: all 0.3s ease;
}
.step-item.active .step-number-bg {
	width: 50px;
	height: 50px;
	line-height: 50px;
	border-radius: 50%;
	text-align: center;
	font-weight: bold;
	background: #e5e7eb;
	margin-bottom: 8px;
	transition: all 0.3s ease;
}
/* 步骤文字 */
.step-text {
	font-size: 16px;
	color: #000; /* 默认文字色 */
}
/* 激活步骤的文字 */
.step-item.active .step-text {
	color: #2563eb; /* 激活文字色 */
	font-weight: 500;
}
/* 表单 */

.xform {
	width: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 20px 15px;
	box-sizing: border-box;
	margin-top: 15px;
}
.form-container {
	width: 100%;
	margin: 0 auto;
	background: #ffffff;
}
.form-group {
	margin-bottom: 24px;
}
.form-label {
	display: block;
	font-size: 16px;
	color: #333333;
	margin-bottom: 10px;
	font-weight: 500;
}
.form-label .required {
	color: #ff4d4f;
	margin-left: 4px;
}
/* 单选按钮组样式 —— 一行3个 */
.radio-group {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	align-items: center;
}
.radio-item {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	color: #333;
}
/* 自定义单选框：蓝色背景 + 白色对勾 */
.radio-item input[type="radio"] {
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid #d9d9d9;
	margin-right: 8px;
	position: relative;
	outline: none;
}
.radio-item input[type="radio"]:checked {
	background-color: #1677ff;
	border-color: #1677ff;
}
.radio-item input[type="radio"]:checked::after {
	content: "✓";
	color: white;
	font-size: 14px;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* 输入框样式 */
.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}
.form-input {
	width: 100%;
	height: 56px;
	padding: 0 10px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	font-size: 16px;
	color: #333;
	transition: all 0.3s ease;
	box-sizing: border-box;
}
 .form-input::placeholder {
 color: #bfbfbf;
}
.form-input:focus {
	outline: none;
	border-color: #1677ff;
	box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.1);
}
.quick-query-btn {
	position: absolute;
	right: 8px;
	height: 40px;
	padding: 0 10px;
	background: #1677ff;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s;
}
.quick-query-btn:hover {
	background: #4096ff;
}
/* 协议勾选样式 */
.xieyi {
	display: flex;
	align-items: center;
	margin: 20px 0 30px;
	cursor: pointer;
}
.xieyi input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	accent-color: #1677ff;
}
.agreement-text {
	font-size: 16px;
	color: #333;
}
.agreement-text a {
	color: #1677ff;
	text-decoration: none;
}
.agreement-text a:hover {
	text-decoration: underline;
}
/* 下一步按钮 */
.submit-btn {
	width: 100%;
	height: 60px;
	background: linear-gradient(135deg, #1677ff 0%, #4096ff 100%);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-size: 24px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}
.submit-btn:hover {
	background: linear-gradient(135deg, #4096ff 0%, #69b1ff 100%);
	transform: translateY(-2px);
}
.submit-btn:active {
	transform: translateY(0);
}
/*优势*/

.youshi {
	width: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 20px 15px;
	box-sizing: border-box;
	margin-top: 15px;
	text-align: center;
}
/* 标题样式 */
.youshi_title {
	font-size: 22px;
	color: #2258df;
	font-weight: 600;
	margin-bottom: 50px;
	position: relative;
	display: inline-block;
	text-align: center;
}
/* 理由列表 - Flex自适应布局 */
.youshi-list {
	width: 100%;
	margin: 0px auto;
	display: flow-root;
}
/* 单个理由项样式 */
.youshi-item {
	width: 50%;
	float: left;
	padding: 10px;
	box-sizing: border-box;
}
/* 图标容器 - 蓝色背景+圆角 */
.icon-wrapper {
	width: 100%;
	height: 80px;
	margin-bottom: 20px;
}
.icon-wrapper img {
	width: 80px;
	height: 80px;
	object-fit: contain;
}
/* 理由描述样式 */
.youshi-desc {
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	font-weight: 500;
}
/*底部*/

.dibu {
	background: #fff;
	height: 50px;
	position: fixed;
	bottom: 0px;
	width: 100%;
	padding: 5px 0px 10px;
}
.dibu .items {
	width: 50%;
	float: left;
	display: flow-root;
	text-align: center;
	text-decoration: none;
}
.dibu .items img {
	width: 30px;
	height: 30px;
}
.dibu .items p {
	font-size: 14px;
	color: #ccc;
	margin-top: 0px;
}
.dibu .items.xz p {
	color: #000;
}
/*表单*/

.step-content {
	display: none;
}
.step-content.active {
	display: block;
}
.return-btn {
	width: 48%;
	background: #e6edff;
	color: #000;
	height: 50px;
	border: 0px;
	border-radius: 10px;
	font-size: 20px;
}
.queren-btn {
	width: 48%;
	background: #316bf1;
	color: #fff;
	height: 50px;
	border: 0px;
	border-radius: 10px;
	font-size: 20px;
	margin-left: 2%;
}
.form-group p {
	font-size: 20px;
}
.zgc {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 999;
}
#fwxieyi {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: auto;
	background: white;
	border-radius: 8px;
	z-index: 1000;
	padding: 20px 0px;
	box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.15);
}
#ysxieyi {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50%;
	height: auto;
	background: white;
	border-radius: 8px;
	z-index: 1000;
	padding: 20px 0px;
}


@media screen and (max-width: 768px) and (min-width: 320px){
	
	#fwxieyi {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 50%;
	background: white;
	border-radius: 8px;
	z-index: 1000;
	    padding: 20px 0px;
}
#ysxieyi {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 50%;
	background: white;
	border-radius: 8px;
	z-index: 1000;
	padding: 20px 0px;
}
	
	
}






.xieyicon {
	padding: 0px 20px;
	height:320px;
	overflow-y:auto;
	margin-bottom: 20px;
}

#agreeServiceBtn,#agreePrivacyBtn{
    padding: 10px 30px;
    background: #316bf1;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 90%;
    margin: 0px auto;
    display: block;	
	font-size:20px;
	
}
