@charset "UTF-8";


/**
 * #content
 */
#content .btns {
	margin:6em 0 2em 0;
}

#content th {
	color:#333;
}

#content table.widthtype1 tr th:last-child,
#content table.widthtype2 tr th:last-child { border-right: none;}

#content table.widthtype1 tbody tr th { width: 50%; }

#content table.widthtype2 tbody tr th:first-child { width: 40%;}
#content table.widthtype2 tbody tr th:nth-child(2) { width: 30%;}
#content table.widthtype2 tbody tr th:nth-child(3) { width: 30%;}

div.note {
	width: 100%;
	margin-top: 10px;
}

div.note ol {
	list-style-type: none;
	list-style-position: outside;
	counter-reset: item;
}

div.note ol li {
	position: relative;
	padding-left: 22px;
}

div.note ol li::before {
	content: "*" counter(item) ": ";
	counter-increment: item; /* 每个 li 元素递增计数器 */
	position: absolute;
	left: 0;
}

@media only screen and (max-width:767px) {
	#content .btns {
		margin:40px 0 50px 0;
	}
	#content th {
		width:35%;
		white-space:normal;
	}
}