@CHARSET "UTF-8";

html, body {
	height: 100%;
}

body, div, ul, li, p, td {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #444;
	background: url(../images/defaultbg.jpg);
	background-size: cover;
	background-attachment: fixed;
}

a {
	color: #444;
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	color: red;
	text-decoration: none;
}

ul, li {
	list-style: none;
}

table {
	border-collapse: collapse;
}

html {
	overflow-y: scroll;
}

header {
	width: 90%;
	max-width: 1260px;
	margin: 40px auto 20px;
	color: #fff;
}

header a {
	display: block;
	width:35%;
	height: 60px;
	float: left;
}
header img{
	max-height:100%;
}

header #title {
	width:30%;
	font-size: 32px;
	text-align: center;
	text-shadow: 5px 5px 5px #000;
	float: left;
}

header #dt {
	width: 35%;
	float: right;
	text-align: right;
	padding-top:25px;
}

.clr {
	clear: both;
}

#navhead {
	width: 100%;
	max-width: 1280px;
	height: 40px;
	background: #0688d3;
	margin: 0 auto 5px;
	font-size: 16px;
}

ul#menu {
	width: 100%;
	margin: auto;
	display: flex;
	text-align: left;
	font-weight: bold;
}

ul#menu li {
	flex: 1; /**宽度相等**/
	height: 40px;
	line-height: 40px;
	position: relative;
	text-align: center;
}

ul#menu li:hover {
	background: #ffc862;
}

#navhead ul a {
	width: 100%;
	height: 100%;
	color: #fff;
	display: block;
	white-space: nowrap;
	text-transform: none;
}

ul#menu a:hover {
	color: #ff0000;
}

ul#menu li:hover>ul {
	display: block;
}
/***************************** Sub-menu ********************************/
ul#menu ul {
	display: none;
	position: absolute;
	width: 100%;
	top: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9;
}

ul#menu ul li {
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 3px 0;
	font-size: 14px;
	text-align: center;
	display: block;
	background: #e6e6e6;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #c0c0c0;
}

ul#menu ul li a {
	color: #666;
}

ul#menu ul li a:hover {
	color: #ff0000;
}

ul#menu ul li:hover {
	background: #f5f5f5 url(/images_pub/arr_r.png) left center no-repeat;
	border-bottom: 4px solid #ff0000;
}

.smallmenu li:nth-child(1):before {
	content: '';
	position: absolute;
	left: 30px;
	top: -8px;
	width: 0;
	height: 0;
	/**三角**/
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 8px solid #fff;
}

/** Clear floated elements **/
ul#menu:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: "";
	clear: both;
	height: 0;
}

article {
	width: 90%;
	height: cacl(100% - 1px);
	max-width: 1280px;
	background: #f2f2f2;
	padding-bottom: 120px;
	margin: auto;
}

.gradeName {
	padding: 40px 0 20px;
	font-weight: bold;
	text-align: center;
}

table {
	width: 98%;
	margin: auto;
	color: #444;
	background: #fff;
	font-size: 18px;
	font-weight: bold;
}

table tr:first-child {
	font-weight: bold;
}

td {
	border: 1px solid #c0c0c0;
	padding: 10px 0;
	text-align: center;
	width: 16.667%;
}

td p {
	font-size: 12px;
	font-weight: normal;
}

footer {
	width: 100%;
	height:32px;
	line-height:32px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	background: #737373;
	position: fixed;
	bottom: 0;
	color: #fff;
}

footer a {
	color: #fff;
}

footer p:first-child {
	margin-bottom: 15px;
}