* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
	color: #333;
	line-height: 1.6;
	min-height: 100vh;
}
a{text-decoration: none;}
.container {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.test-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 5px;
	padding: 10px;
	background: #f8fdff;
}

.test-item {
	background: white;
	border-radius: 10px;
	padding: 15px 10px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #d1e7ff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	cursor: pointer;
}

.test-item:hover {
	transform: translateY(-5px);
	border-color: #7eaafc;
}

.test-item.active {
	background: #f0f4fc;
	border-color: #7eaafc;
}

.test-item strong {
	display: block;
	font-size: 16px;
	margin-bottom: 8px;
	color: #6f9ffa;
}

.test-item span {
	font-size: 14px;
	color: #666;
	display: block;
	padding: 3px;
	border-radius: 4px;
}

.section-title {
	background: linear-gradient(135deg, #7eaafc, #6f9ffa);
	color: white;
	padding: 15px 20px;
	font-size: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-title i {
	font-size: 24px;
}

.question-group {
	padding: 20px;
	background: white;
}

.question {
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.question:last-child {
	border-bottom: none;
}

.question dt {
	font-weight: 600;
	margin-bottom: 15px;
	color: #0a3d62;
	font-size: 17px;
	display: flex;
	align-items: flex-start;
}

.question-number {
	background: #7eaafc;
	color: white;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	flex-shrink: 0;
}

.options {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.option {
	display: flex;
	align-items: center;
	background: #f8fdff;
	padding: 10px 15px;
	border-radius: 10px;
	border: 1px solid #d1e7ff;
	transition: all 0.2s ease;
}

.option:hover {
	background: #f0f4fc;
	border-color: #7eaafc;
}

.option input {
	margin-right: 8px;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.option label {
	font-size: 15px;
	cursor: pointer;
}

.form-group {
	padding: 20px;
	background: white;
}

.form-row {
	margin-bottom: 20px;
}

.form-row label {
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
	color: #0a3d62;
	display: flex;
	align-items: center;
}

.form-row label span.required {
	color: #e53935;
	margin-left: 5px;
}

.form-input {
	width: 100%;
	padding: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s;
}

.form-input:focus {
	border-color: #7eaafc;
	outline: none;
	box-shadow: 0 0 0 3px rgba(27, 187, 187, 0.2);
}

textarea.form-input {
	min-height: 120px;
	resize: vertical;
}

.radio-group {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.radio-option {
	display: flex;
	align-items: center;
	background: #f8fdff;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid #d1e7ff;
}

.radio-option input {
	margin-right: 8px;
}

.submit-btn {
	display: block;
	width: 100%;
	padding: 16px;
	background: linear-gradient(135deg, #7eaafc, #6f9ffa);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #6f9ffa, #7eaafc);
	transform: translateY(-3px);
}

.submit-btn:active {
	transform: translateY(1px);
}

.tip {
	font-size: 15px;
	color: #666;
	margin-top: 20px;
	line-height: 1.6;
	padding: 15px;
	background: #f0f8ff;
	border-radius: 8px;
	border-left: 4px solid #7eaafc;
}

.hospital-info {
	padding: 25px;
	background: linear-gradient(135deg, #7eaafc, #6f9ffa);
	color: white;
	margin-top: 20px;
	border-radius: 0 0 15px 15px;
}

.hospital-info p {
	margin-bottom: 12px;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hospital-info i {
	font-size: 20px;
	width: 25px;
	text-align: center;
}

.footer {
	text-align: center;
	padding: 25px 0 15px;
	color: #666;
	font-size: 14px;
}

@media (max-width: 768px) {
	.test-grid {
		grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	}
	
	.options {
		gap: 10px;
	}
	
	.option {
		padding: 8px 12px;
		font-size: 14px;
	}
	
	.banner h2 {
		font-size: 24px;
	}
	
	.banner p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.test-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.test-item{
		padding:10px 1px;
	}
	.test-item strong{
		display: block;
		font-size: 14px;
	}
	
	.radio-group {
		flex-direction: column;
		gap: 5px;
	}
	
	.question dt {
		font-size: 16px;
	}
	
	.section-title {
		font-size: 18px;
		padding: 12px 15px;
	}
}