/* 选项卡容器样式 */
.tab-container {
	display: flex;
	justify-content: center;
	position: relative;
}

/* 去除默认下划线 */
.tab-container a {
	text-decoration: none !important;
}

/* 单个选项卡样式 */
.tab {
	padding: 10px 20px;
	text-decoration: none;
	color: #333;
	cursor: pointer;
	transition: color 0.3s ease;
}

/* 激活状态的选项卡样式 */
.tab.active {
	color: #002c5b;
}

/* 下划线样式 */
.underline {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	background-color: #c71e13;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	.tab {
		padding: 10px 15px;
		
	}
	/* 选项卡容器样式 */
	.tab-container {
		
	}
}