/* 全局样式 */
* {
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", sans-serif;
}

body {
	background-color: #f8f8f8;
	color: #333;
	line-height: 1.6;
}

/* 页面容器 */
.container {
	max-width: 100%;
	margin: 0 auto;
	background: white;
	padding-bottom: 80px;
}

/* 顶部横幅 */
.header-banner {
	width: 100%;
	height: auto;
	display: block;
}

/* 表单区域 */
.form-wrapper {
	padding: 25px 15px;
	margin: 20px 15px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-title {
	color: #e6322e;
	text-align: center;
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: bold;
}

.form-group {
	margin-bottom: 15px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
	color: #333;
}

.form-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 16px;
	background: #f9f9f9;
}

.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.radio-option {
	flex: 1;
	min-width: 100px;
}

.radio-btn {
	display: none;
}

.radio-label {
	display: block;
	padding: 10px 15px;
	background: #f5f5f5;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
}

.radio-btn:checked+.radio-label {
	background: #e6322e;
	color: white;
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: #e6322e;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
	cursor: pointer;
	transition: all 0.3s;
}

.submit-btn:hover {
	background: #c40704;
}

/* 内容图片 */
.content-img {
	width: 100%;
	height: auto;
	display: block;
	margin: 5px 0;
}

/* 轮播报名成功信息 */
.success-slider {
	margin: 20px 15px;
	background: #fff5f5;
	border-radius: 10px;
	padding: 15px;
	border: 1px solid #ffe0e0;
}

.slider-title {
	text-align: center;
	color: #e6322e;
	margin-bottom: 15px;
	font-size: 18px;
}

.slider-container {
	overflow: hidden;
	position: relative;
	height: 130px;
}

.slider-item {
	padding: 10px;
	text-align: center;
	position: absolute;
	width: 100%;
	transition: all 0.5s ease;
	opacity: 0;
}

.slider-item.active {
	opacity: 1;
}

.user-info {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
	background: #e6322e;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.user-name {
	font-weight: bold;
	margin-left: 0;
}

.success-text {
	color: #666;
	font-size: 14px;
}

.success-time {
	color: #999;
	font-size: 12px;
	margin-top: 5px;
}

/* 电话咨询模块 - 根据您提供的模板样式 */
.phone-consult {
	background-color: #f8f8f8;
	border-radius: 8px;
	padding: 20px;
	margin: 20px 15px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid #eee;
}

.phone-consult-title {
	font-size: 18px;
	color: #333;
	margin-bottom: 15px;
	font-weight: bold;
}

.phone-consult-btn {
	display: inline-block;
	background-color: #e6322e;
	color: white;
	padding: 12px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
	width: 80%;
	max-width: 200px;
}

.phone-consult-btn:hover {
	background-color: #c40704;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(230, 50, 46, 0.3);
}

.phone-consult-btn:active {
	transform: translateY(0);
}

.phone-icon {
	display: inline-block;
	margin-right: 8px;
	vertical-align: middle;
}

/* 底部固定按钮 */
.fixed-bottom-btn {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #e6322e;
	color: white;
	text-align: center;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	z-index: 100;
	border-radius: 1.375rem;
}

/* 页脚 */
.footer {
	text-align: center;
	padding: 20px 15px;
	background: #f5f5f5;
	color: #666;
	font-size: 12px;
	line-height: 1.5;
}

/* 弹窗样式 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-content {
	background: white;
	padding: 25px;
	border-radius: 10px;
	width: 90%;
	max-width: 350px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-title {
	font-size: 20px;
	color: #e6322e;
	margin-bottom: 15px;
	font-weight: bold;
}

.modal-subtitle {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
}

.phone-number {
	font-size: 24px;
	font-weight: bold;
	margin: 15px 0;
	color: #333;
	letter-spacing: 1px;
}

.countdown {
	font-size: 16px;
	color: #e6322e;
	margin-bottom: 20px;
}

.countdown span {
	display: inline-block;
	min-width: 20px;
	text-align: center;
}

.modal-buttons {
	display: flex;
	gap: 10px;
}

.modal-btn {
	flex: 1;
	padding: 12px;
	border: none;
	border-radius: 25px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-call {
	background: #e6322e;
	color: white;
}

.btn-call:hover {
	background: #c40704;
}

.btn-wechat {
	background: #f0f0f0;
	color: #333;
}

.btn-wechat:hover {
	background: #e0e0e0;
}

/* 页面内容样式 */
.container {
	max-width: 100%;
	margin: 0 auto;
	padding: 20px;
}

.signup-btn {
	display: block;
	width: 100%;
	padding: 15px;
	background: #e6322e;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
	cursor: pointer;
}

.wt-three {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 0.96240942rem;
	height: 3.50996377rem;
	background-color: #fff;
	box-shadow: 0 -10px 20px 0 rgba(0, 0, 0, 0.06);
}

.wt-three .wt-style-content {
	box-sizing: border-box;
	flex: 1;
}

.wt-three .wt-style-btn {
	box-sizing: border-box;
	text-align: center;
	font-size: 1rem;
	color: #fff;
	background-color: red;
	border-radius: 1.35869565rem !important;
	padding: 0 1.01902174rem;
	width: 6.79347826rem;
	height: 2.7173913rem;
	line-height: 2.7173913rem;
}

.wt-three .mip-sjh-text-class {
	display: inline-block;
	font-weight: 700;
}

.wt-one {
	width: 90%;
	height: 2.6875em;
	position: absolute;
	font-size: 1rem;
}

.wt-two .wt-style-btn.fix-middle-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.wt-two .wt-style-btn {
	box-sizing: border-box;
	text-align: center;
	width: 100%;
	font-size: 1rem;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-overflow: clip;
	white-space: nowrap;
	overflow: hidden;
}