@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-size: 14px;
	font-family: "Microsoft YaHei", "微软雅黑";
	background-color: #f0f0f0;
}

h1 {
	font-size: 1.4em;
	line-height: 2.4em;
	text-align: center;
}

h2 {
	font-size: 1.2em;
	line-height: 2.2em;
	text-align: center;
}

table {
	width: 100%;
}

td, th {
	text-align: left;
	padding: 1px;
}

th.title {
	width: 3.4em;
}

th.title_center {
	text-align: center;
}

ul {
	padding-left: 2em;
}

a {
	color: blue;
	text-decoration: none;
}

a:hover {
	color: darkblue;
}

hr {
	height: 0;
	border: none;
	margin: 5px auto;
	border-top: 1px dashed #ccc;
}

.main {
	margin: 0 auto;
	width: 80%;
	min-width: 365px;
	max-width: 500px;
}

.row {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-top: 5px;
	background-color: #fff;
}

.field {
	width: 100%;
	font-family: inherit;
	font-size: inherit;
	border-radius: 3px;
	padding: 3px 6px;
	border: 1px solid #ccc;
}

.b {
	background-color: #eeeeff;
}

.h {
	background-color: #ffeeee;
}

.x {
	background-color: #ffffee;
}

.d {
	background-color: #eeffee;
}

.btn {
	font-family: inherit;
	font-size: 14px;
	border-radius: 3px;
	padding: 7px 25px;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
	background-color: #5cb85c;
	border: 1px solid #4cae4c;
}

.btn:hover {
	background-color: #449d44;
	border-color: #398439;
}

.btn:active {
	background-color: #398439;
	border-color: #255625;
}

#r_show {
	color: #ED310C;
	font-weight: bold;
	font-size: 1.4em;
	text-shadow: 1px 1px 2px #FADC07;
}

#r_show_c {
	color: #BA22D9;
	font-weight: bold;
	font-size: 1.4em;
	padding-left: 1em;
	text-shadow: 1px 1px 2px #FADC07;
}

#r_show2 {
	color: #ED310C;
	font-weight: bold;
	font-size: 2em;
	text-shadow: 2px 2px 4px #FADC07;
}

#r_show2_c {
	color: #BA22D9;
	font-weight: bold;
	font-size: 2em;
	padding-left: 1em;
	text-shadow: 2px 2px 4px #FADC07;
}

.code {
	font-family: monospace;
	border: 1px solid #ccc;
	background-color: #eee;
	border-radius: 3px;
	padding: 0 3px;
	margin: 0 3px;
}

.footer {
	line-height: 1.6em;
	margin-bottom: 5px;
}