/* CSS Document */
#tab {
	/* width: 412px; */
	/* height: 216px; */
	height: 100%;
	min-height: 260px;
	position: relative;
	margin: 40px auto 0 auto;
}

/*设置容器高宽等*/
html>body #tab {
	/* width: 412px; */
}

/*兼容IE6:IE6下宽度不够*/
#tab div {
	position: absolute;
	top: 30px;
	left: 0;
	/* width: 412px; */
	height: 300px;
}

/*设置容器高宽等*/
#tab div {
	display: none;
}

/*设置容器默认隐藏:不用ID是因为下面将利用class来控制容器显示,而class优先级低于id选择器*/
#tab .block {
	display: block;
}

/*选中的容器*/
#tab h3 {
	float: left;
	min-width:150px;
	height: 30px;
	line-height: 30px;
	margin: 0 0 0 0;
	font-size: 25px;
	cursor: pointer;
	background-color: #c5c5c5;
	text-align: center;
	color: #5a5a5a;
	font-family: "Noto Sans SC";
	font-weight: normal;
}

/*默认标题样式*/
#tab .up {
	color: black;
	background: none;
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	padding-left: 10px;
	font-family: "Noto Sans SC";
}
/*  */
/*选中的标题样式*/
/*修饰列表内容*/
#tab ul {
	list-style: none;
	padding: 0;
	height: 186px;
	margin-top: 0px;
}

#tab li {
	margin-left: 10px;
	margin-right: 10px;
	border-bottom: 1px dotted #c6c6c6;
	height: 60px;
	padding-top: 23px;
	overflow: hidden;
	font-size: 16px;
	font-family: "Noto Sans SC";
	font-weight: normal;
	color: #000000;
}

#tab li a {
	display: inline;
	font-size: 15px;
	text-decoration: none;
	text-indent: 10px;
	margin-right: 10px;
}

#tab li span {
	display: block;
	font-family: "Noto Sans SC";
	font-weight: normal;
	float: right;
	padding-left: 80px;
	/* margin-right: 5px; */
	color: #bdacb3;
	font-size: 14px;
}

a.tab_title:link {
	color: #5a5a5a;
	text-decoration: none;
}

a.tab_title:visited {
	/* color: #5a5a5a; */
	color: black;
	text-decoration: none;
}

a.tab_title:hover {
	color: #aa0000;
	text-decoration: none;
}

a.tab_title:active {
	color: #5a5a5a;
	text-decoration: none;
}

a.tab_menu:link {
	color: #6464d5;
	text-decoration: none;
}

a.tab_menu:hover {
	color: #8888e0;
	text-decoration: underline;
}
