* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
}

body {
	background-color: #fff;
	color: #333;
	line-height: 1.6;
}

.container {
	max-width: 900px;
	margin: 0 auto;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

header {
	background: linear-gradient(to right, #1a5fad, #2a7cd6);
	color: white;
	padding: 25px 30px;
	text-align: center;
}

h1 {
	font-size: 26px;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.subtitle {
	font-size: 16px;
	opacity: 0.9;
	margin-top: 5px;
}

.form-container {
	padding: 30px;
}

.form-section {
	margin-bottom: 30px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
	border-bottom: none;
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #444;
}

.required::after {
	content: "*";
	color: #e74c3c;
	margin-left: 4px;
}

input[type="text"], input[type="tel"], textarea, select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #d1d9e6;
	border-radius: 5px;
	font-size: 15px;
	transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
	border-color: #2a7cd6;
	outline: none;
	box-shadow: 0 0 0 2px rgba(42, 124, 214, 0.2);
}

textarea {
	resize: vertical;
	min-height: 120px;
	font-family: inherit;
}

.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin-top: 8px;
}

.radio-option {
	display: flex;
	align-items: center;
}

.radio-option input[type="radio"] {
	margin-right: 8px;
	width: 18px;
	height: 18px;
}

.radio-error {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
	display: none;
}

.radio-error.show {
	display: block;
}

.verification {
	display: flex;
	align-items: center;
	gap: 15px;
}

.verification-code {
	width: 200px;
}

.verification-img {
	height: 46px;
	background-color: #f8f9fa;
	border: 1px solid #d1d9e6;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-weight: bold;
	letter-spacing: 3px;
	font-size: 18px;
	padding: 0 15px;
	user-select: none;
	cursor: pointer;
}

.button-group {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.btn {
	padding: 14px 40px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-submit {
	background-color: #2a7cd6;
	color: white;
}

.btn-submit:hover {
	background-color: #1a5fad;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(26, 95, 173, 0.3);
}

.btn-reset {
	background-color: #f8f9fa;
	color: #555;
	border: 1px solid #d1d9e6;
}

.btn-reset:hover {
	background-color: #e9ecef;
}

.note {
	background-color: #f8f9fa;
	border-left: 4px solid #2a7cd6;
	padding: 15px;
	margin-top: 10px;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.char-count {
	text-align: right;
	font-size: 14px;
	color: #888;
	margin-top: 5px;
}

footer {
	text-align: center;
	padding: 20px;
	color: #666;
	font-size: 14px;
	border-top: 1px solid #eee;
	background-color: #f9fbfd;
}

/* 移动端适配样式 */
@media (max-width: 768px) {
	body {
		padding: 10px;
		overflow-x: hidden;
	}
	
	.container {
		width: 100%;
		margin: 0 auto 20px;
		border-radius: 8px;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	}
	
	header {
		padding: 20px 15px !important;
	}
	
	h1 {
		font-size: 22px;
		line-height: 1.3;
	}
	
	.subtitle {
		font-size: 14px;
		line-height: 1.4;
		margin-top: 8px;
	}
	
	.form-container {
		padding: 20px;
	}
	
	.form-section {
		margin-bottom: 25px;
		padding-bottom: 20px;
	}
	
	.form-group {
		margin-bottom: 15px;
	}
	
	input[type="text"], 
	input[type="tel"], 
	textarea, 
	select {
		padding: 10px 12px;
		font-size: 14px;
	}
	
	textarea {
		min-height: 100px;
	}
	
	.radio-group {
		gap: 15px;
	}
	
	.radio-option {
		width: calc(50% - 8px);
	}
	
	.radio-option input[type="radio"] {
		width: 16px;
		height: 16px;
	}
	
	.verification {
		flex-wrap: wrap;
	}
	
	.verification-code {
		width: 100%;
		margin-bottom: 10px;
	}
	
	.verification-img {
		height: 44px;
		font-size: 16px;
		padding: 0 12px;
	}
	
	.button-group {
		flex-direction: column;
		gap: 15px;
		margin-top: 25px;
	}
	
	.btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 15px;
		margin-bottom: 0;
	}
	
	.note {
		padding: 12px;
		font-size: 13px;
		line-height: 1.4;
	}
	
	.char-count {
		font-size: 13px;
	}
	
	/* 头尾适配样式 */
	.banner {
		overflow: hidden !important;
		max-width: 100vw !important;
		margin-left: -10px !important;
		margin-right: -10px !important;
		width: calc(100% + 20px) !important;
		height: 420px;
	}
	
	.banner > div:nth-child(1) {
		width: 100% !important;
		height: auto !important;
		min-height: 150px !important;
		max-height: 200px !important;
		background-position: center !important;
		background-size: cover !important;
	}
	
	.nav {
		width: 100% !important;
		max-width: 100vw !important;
		padding-top: 0;
		background: #162953;
		height: 80px;
		line-height: 30px;
		margin-top: 157px;
	}
	
	.nav-wz {
		width: 100% !important;
		padding: 10px !important;
		margin: 0 !important;
	}
	
	.nav-wz ul {
		width: 100% !important;
		flex-wrap: wrap !important;
		justify-content: center !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.nav-wz ul li {
		width: 33% !important;
		text-align: center !important;
		margin: 0px 0 !important;
		padding: 0px !important;
		list-style: none !important;
		box-sizing: border-box !important;
	}
	
	.nav-wz ul li a {
		font-size: 14px !important;
		padding: 0px 5px !important;
		display: block !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		text-decoration: none !important;
		border-radius: 4px !important;
		color: #fff !important;
	}
	.inp-wrap{display: none;}
	
	/* 页脚适配 */
	.foot-wz {
		width: 100% !important;
		padding: 15px 10px !important;
		margin: 0 !important;
		max-width: 100vw !important;
	}
	
	.bqwz {
		width: 100% !important;
		padding: 15px 10px !important;
		box-sizing: border-box !important;
	}
	
	.bqwz .row {
		display: block !important;
		text-align: center !important;
		margin: 0 !important;
	}
	
	.bqwz .row > div {
		width: 100% !important;
		margin-bottom: 15px !important;
		padding: 0 !important;
		float: none !important;
	}
	
	.bqwz p {
		font-size: 12px !important;
		line-height: 1.5 !important;
		margin: 5px 0 !important;
	}
	
	.bqwz a {
		font-size: 12px !important;
		margin: 0 5px !important;
		padding: 3px 8px !important;
		display: inline-block !important;
		text-decoration: none !important;
	}
	
	/* 确保外部引入的内容不会破坏布局 */
	.nav-wz, .foot-wz, .bqwz {
		max-width: 100% !important;
		overflow: hidden !important;
	}
	
	
}

/* 超小屏幕适配 */
@media (max-width: 400px) {
	.nav-wz ul li {
		width: 100% !important;
	}
	
	.radio-option {
		width: 100%;
	}
	
	h1 {
		font-size: 20px;
	}
	
	.subtitle {
		font-size: 13px;
	}
	
	.btn {
		padding: 10px 15px;
		font-size: 14px;
	}
}

/* 横屏适配 */
@media (max-width: 768px) and (orientation: landscape) {
	.nav-wz ul li {
		width: 33.33% !important;
	}
	
	.banner > div:nth-child(1) {
		min-height: 120px !important;
		max-height: 150px !important;
	}
}