@charset "utf8";
/*
 *一、整体样式
 */
body {
	font-family: "宋体";
	text-align: center;
	margin: 0;
	padding: 0;
	min-width:1200px;
	/*background:url(../img/view.jpg) top center no-repeat;*/
	background-color:#FFFCF5;
 -webkit-text-size-adjust: 100% !important;
}
/* 超链接正常和被访问 */
a:link, a:visited {
	text-decoration: none;
	color:#333;
}
/* 菜单栏-超链接鼠标悬浮和激活 */
a:hover, a:active {
	color: #99212a;
}

ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
/*
 *二、页眉部分
 */
/*页眉*/
header {
	width: 100%;
	height: 346px;
	background:url(../img/banner/header_bg.png) top center repeat-x;
}
/* 中间区域 */
#header_main{
	width:1200px;
	height:100%;
	margin:0 auto;
        position: relative;
}
/* logo图片 */
img#logo{
	float: left;
	width: 608px;
	height: 85px;
	margin-top:50px;
}
/* 院训图片 */
img#slogan{
	float: right;
	width: 129px;
	height: 216px;
	margin-top:100px;
	margin-right:125px;
}
/*搜索框*/
#header_main #search_area{
	background: url("../img/banner/search_panel.png") no-repeat;
	width: 252px;
	height: 38px;
	position: absolute;
	top: 23px;
	right: 6px;
}
#header_main #search_area form{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
}
#header_main #search_area input[type="text"]{
	width: 187px;
	height: 36px;
	line-height: 36px;
	float: left;
	margin-left: 20px;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 16.5px;
	color:#553629;
}
#header_main #search_area input.submit_btn{
	width: 24px;
	height: 36px;
	margin-top: 5px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	background: url("../img/banner/icon_search.png") no-repeat;
}
/* 谷歌 */

input::-webkit-input-placeholder{
	font-size: 16.5px;
    color:#553629;
}
/* 火狐 */
input::-moz-placeholder{
	font-size: 16.5px;
    color:#553629;
}

/* ie */
input:-ms-input-placeholder{
	font-size: 16.5px;
    color:#553629;
}
/*
 *三、菜单部分
 */
/*菜单导航栏*/
nav {
	width: 100%;
	height: 50px;
	background-color:rgb(255,252,245);
}
/* 菜单整体区域 */
#menu {
	width: 1200px;
	height: 100%;
	margin: 0 auto;
	border-bottom:2px solid rgb(174,133,20);
}
/* 菜单栏区域 */
#menu>ul {
	float: left;
	width:1200px;
}
/* 菜单栏-列表项 */
#menu>ul>li {
	float: left;
	font-size: 21px;
	color: #333;
	font-weight:400;
	white-space:nowrap;
	line-height: 50px;
}
/* 菜单栏-超链接 */
#menu>ul a {
	display: block;
	padding: 0 26px;
}
/* 菜单栏-超链接正常和被访问 */
#menu a:link, #menu a:visited {
	color:#333;
}
/* 菜单栏-超链接鼠标悬浮和激活 */
#menu a:hover, #menu a:active {
	color: #99212a;
}
.menu-item{
	position:relative;
}
.menu-item>ul {
    display: none;
    z-index: 999;
    position: absolute;
    top: 50px;
    left: 0px;
    text-align: center;
	background-color:rgba(230,218,188,0.7);
}

.menu-item>ul>li {
    min-width: 120px;
    height: 35px;
	line-height:35px;
    margin: 10px 0;
	font-size:17px;
}

/*
 *四、主体部分
 */
/* 主体容器 */
#container {
	width: 1200px;
	margin: 0 auto;
	overflow-x:hidden;
}

/*
 *五、页脚部分
 */
footer {
	width: 100%;
	border-top:14px solid rgb(229,218,188);
}

#footer_main{
	width:1200px;
	height:212px;
	margin:0 auto;
	
}