@charset "UTF-8";
body{
	background: #F6F6F6;
}
a{
	text-decoration: none;
	color: #1E1E1E;
    line-height: 1em;
}
legend>img{
	width: 170px;
}
.aimg1{
    width: 100%;
}
.diva1{
    width: 96%;
    max-width: 528px;
    margin: 0 auto;
}
fieldset{
	width: 90%;
	max-width: 500px;
	margin: 5px auto;
	margin-top: 35px;
}
.h2h3{
	text-align: left;
    /*line-height: 3em;*/
}
h2,h3{
	text-align: center;
    line-height: 3em;
}
a:hover{
    background: #F7D316;
    color: red;
}
.sjhb{
    text-align: center;
}
.sjhb img{
    width: 170px;
}
.p1{
    color: red;
    /*margin-left: 8%;*/
}

/* 按钮容器样式 - 移除默认间隙 */
		.tabs {
			display: flex;
			margin: 15px 0;
			border-bottom: 1px solid #ccc; /* 底部公共边框 */
		}
		
		/* 按钮样式 */
		.tab-btn {
			padding: 5px 10px;
			background-color: #f0f0f0;
			border: 1px solid #ccc;
			border-bottom: none; /* 移除底部边框 */
			cursor: pointer;
			font-size: 16px;
			/* 消除按钮间间隙 */
			margin: 0;
			border-radius: 4px 4px 0 0; /* 只保留上圆角 */
		}
		
		/* 相邻按钮左边框合并 */
		.tab-btn + .tab-btn {
			border-left: none;
		}
		
		/* 激活状态样式 */
		.tab-btn.active {
			background-color: #03DE6C;
			color: #000;
			border-top: 2px solid #FFB400; /* 顶部高亮边框 */
			border-right: 1px solid #ccc;
			border-left: 1px solid #ccc;
			/* 调整位置抵消边框变化 */
			margin-top: -1px;
			padding-top: 9px;
		}
		
		/* 内容区域样式 */
		.tab-content {
			display: none;
		}
		
		.tab-content.active {
			display: block;
		}
