.hero {
	height: 100vh;
	background: url('/img/software/background.jpg') center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-top: 100px;
	color: #fff;
}

/* 专业部分样式 */
.program-section {
	padding: 40px 120px 120px 120px;
}

.program-item {
	border: 1px solid #003782;
	border-radius: 8px;
	margin-bottom: 20px;
	overflow: hidden;
}

.program-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: rgba(0, 55, 130, 1);
	cursor: pointer;
}

.program-title {
	flex: 1;
	color: white;
	text-align: left;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0px;
	line-height: 1.5;
}

.toggle-icon {
	font-size: 28px;
	color: white;
}

.program-content {
	padding: 20px;
	font-size: 18px;
	color: rgba(0, 55, 130, 1);
	line-height: 1.5;
}

.bullet-paragraph {
	display: flex;
	/* align-items: center; */
	margin: 15px 0;
	padding-left: 50px;
}

.bullet-point {
	width: 23px;
	height: 23px;
	opacity: 1;
	background: rgba(0, 55, 130, 1);
	border-radius: 50%;
	margin-right: 20px;
	margin-top: 2px;
	/* 微调垂直对齐 */
	flex-shrink: 0;
	/* 防止被压缩 */
}

.program-img {
	width: 100%;
	max-height: 440px;
}

.program-from p {
	font-size: 30px;
	padding: 0 20px;
	font-weight: 700;
}

.program-title2 {
	text-align: center;
	margin: 50px 0;
	font-size: 24px;
	font-weight: 500;
}

.num {
	padding-left: 100px;
}

@media (max-width: 768px) {
	.program-title {
		font-size: 16px;
		line-height: 1.5;
	}

	.bullet-paragraph {
		padding-left: 20px;
	}

	.program-img {
		max-width: 400px;
		height: auto;
	}

	.num {
		padding-left: 40px;
	}

	.mum2 {
		font-size: 18px;
	}
}


.form-container {
	background-color: #e5e5e5;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
	text-align: center;
	color: #003782;
	margin-bottom: 25px;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}

.form-group {
	width: calc(50% - 10px);
	margin-bottom: 15px;
}

/* 新增的白色盒子样式 */
.form-group .input-wrap {
	background-color: white;
	box-shadow: 14px 3px 12px rgba(0, 0, 0, 0.16);
	border-radius: 4px;
	overflow: hidden;
}

.form-group label {
	display: block;
	padding: 8px 12px;
	font-size: 14px;
	color: #003782;
}

.form-group span {
	color: red;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
	width: 100%;
	padding: 8px 12px;
	border: none;
	outline: none;
	font-size: 14px;
}

.consent-group {
	font-size: 16px;
	margin-bottom: 20px;
}

.consent-group input[type="checkbox"] {
	margin-right: 10px;
}

.consent-group label {
	color: #666;
	line-height: 1.5;
}

.consent-group a {
	color: #003782;
	text-decoration: underline;
}

.submit-btn {
	background-color: #003782;
	color: rgba(254, 204, 72, 1);
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.submit-btn img {
	width: 40px;
	height: 30px;
}


@media (max-width: 576px) {
	.form-group {
		width: 100%;
	}
}