


/* 表单 */

.forms {
	padding: 10px;
}

.forms h3 {
	border-bottom: 2px solid #1b80d2;
	padding: 10px;
}

.forms h3 b {
	display: inline-block;
	background: url(/material/images/q.png) 0 50% no-repeat;
	padding-left: 50px;
	line-height: 2;
	font-size: 18px;
	color: #2980b9;
	border-left: 0px;
}

.forms ul {
	background-color: #fff;
	padding: 0 10px;
	overflow: hidden;
	box-shadow: 0 0 3px rgba(0, 0, 0, .15);
}

.forms ul+ul {
	margin-top: 10px;
}

.forms li {
	border-top: 1px dotted #ddd;
	margin-top: -1px;
	padding: 10px;
	text-align: center;
}

.forms label {
	display: inline-block;
	min-width: 6em;
	padding: 0 1em 0 0;
	line-height: 40px;
	text-align: right;
	color: #058;
}

.forms .inp {
	width: 280px;
	border: 1px solid #ccc;
	padding: 9px;
	line-height: 20px;
	color: #aaa;
	-webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .05);
	-moz-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .05);
	vertical-align: middle;
}

.btn {
	display: inline-block;
	width: 120px;
	border: none;
	outline: none;
	margin: 0 5px;
	padding: 0 10px;
	cursor: pointer;
	font: bold 14px/3 microsoft yahei, simhei;
	text-align: center;
	background-color: #2980b9;
	color: #fff;
	vertical-align: middle;
	box-shadow: 0 2px 0 rgba(0, 0, 0, .1);
}

.btn-gray {
	background-color: #bbb;
}


/* 列表 */

.list {
	margin: 0 10px;
}

.list table {
	width: 100%;
	margin: 0 0 10px;
}

.list table th,
.list table td {
	border-bottom: 1px solid #ccc;
	padding: 10px;
	line-height: 1.5;
	text-align: center;
	min-width: 3em;
}

.list thead th {
	border: 1px solid #ccc;
	border-bottom: 2px solid #2980b9;
	background-color: #e9e9e9;
	white-space: nowrap;
	word-break: keep-all;
}

.list tbody td p {
	text-align: left;
}

.list tbody tr:nth-child(even) {
	background-color: #f0f6fc;
}

.list tbody tr:hover td {
	background-color: #def;
}


