*{
	margin: 0;
	padding: 0;
}


/*定义内容尺寸大小*/
#content{
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: 0px;
	z-index: 33;
}

/*定义顶部文字 （早上好管理员）*/
#header{
	width: 1200px;
	margin-left: 50%;
	left: -600px;
	top:0px;
	background-color: white;
	position: relative;
	z-index: 100;
}

#header .nav_top{
	width: 1200px;
	background-color: #F6F6F6;
	color: black;
	height: 38px;
	font-weight: bold;
	font-size: 12px;
	position: fixed;
	margin-left: 50%;
	top: 0px;
	left: -600px;
	z-index: 100;
}

#header .nav_top p{
	line-height: 38px;
	margin-left: 120px;
}


#header .nav_top ul{
	list-style: none;
	position: absolute;
	height: 38px;
	top: 0;
	right: 320px;
}


#header .nav_top ul li{
	line-height: 38px;
	display: inline-block;
}

#header .nav_top ul li a{
	text-decoration: none;
	color: black;
	/*cursor: pointer;*/
}

#header .nav_top ul li a:hover{
	color: red;
}

/*定义logo和搜索*/
#header > .logo{
	margin-top: 0px;
	width:100%;
	height: 107px;
	margin-left: 0px;
	position: relative;
	margin-bottom: 63px;
	/*background-color: green;*/
}
/*logo图片*/
#header .logo .logo_image{
	left: 100px;
	top: 12px;
	width: 271px;
	height: 82px;
	position: absolute;
}

/*搜索框*/

/*搜索框*/
#search{
	margin: 0px;
	border: 0px;
	padding: 0px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	top: 25px;
	right: 0px;
	width:  270px;
	height: 35px;
	position: absolute;
}

#search input{
	border: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	margin: 0px;
	margin-top:3px;
	width: 224px;
	border-top:    1px solid black;
	border-left:   1px solid black;
	border-bottom: 1px solid black;
	border-right: none;
	height: 30px;
	float: left;
	text-indent: 6px;
}

#search input:focus{
	outline: none;
}
#search #searchBg{
	margin-top:3px;
	width: 45px;
	height: 32px;
	float: right;
	background-color: red;
	position: relative;
}

#search #searchBg input[type="submit"]{
	margin: 0px;
	padding: 0px;
	border: none;
	width: 45px;
	font-size: 14px;
	height: 32px;
	text-align: center;
	color: white;
	line-height: 30px;
	display: block;
	background-color: transparent;
	cursor: pointer;
}

/*导航条*/
#header .nav{
	width: 1200px;
	height: 46px;
	background-color: red;
	margin-bottom: 17px;
	top: 164px;
	margin-left: 50%;
	left: -600px;
	position: fixed;
	z-index: 100;
}

#header .nav ul{
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	/*margin-left: 80px;*/
}
#header .nav ul li{
	float: left;
	position: relative;
}
#header .nav ul li a{
	display: inline-block;
	text-decoration: none;
	text-align: center;
	color: white;
	font-weight: bold;
	height: 46px;
	/*width: 147px;*/
	/*width: 171.43px;*/
	width: 200px;
	line-height: 46px;
}

#header .nav ul li a{
	color: white;
}
#header .nav ul li:hover a{
	background-color: #DA0303;
	color: white;
}
#header .nav ul li a.navselect{
	background-color: #DA0303;
}
#header .nav ul li ul{
	display: none;
}

#header .nav ul li:hover ul{
	display: block;
	margin: 0px;
	padding: 0px;
	position: absolute;
	top: 46px;
	left: 0px;
	width: 147px;
}

#header .nav ul li:hover ul li a{
	display: block; 
	background: red; 
	color: white;
}

#header .nav ul li:hover ul li a:hover{
	background: #DA0303; 
	color: white;
}

/*定义底部*/
#footer{
	background-color: rgb(44,44,44);
	width: 100%;
	height: 120px;
	text-align: center;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}
#footer > p{
	/*line-height: 120px;*/
	color:white;
}

.clear_float{
	clear: both;
}

/*首页加入协会*/
div.home_xuanfu_container {
    position: fixed;
    height: 198px;
    width: 40px;
    top: 250px;
    right: 0px;
    z-index: 99999999;
}

div.home_xuanfu_container:hover{
    animation:heart_beat 0.5s ease-in-out;
	-moz-animation:heart_beat 0.5s ease-in-out; /* Firefox */
	-webkit-animation:heart_beat 0.5s ease-in-out; /* Safari and Chrome */
	-o-animation:heart_beat 0.5s ease-in-out; /* Opera */
}

/*就把它当做放大镜吧*/
@keyframes heart_beat {
	0% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-moz-transform: scale(1.50);
		-ms-transform: scale(1.50);
		-webkit-transform: scale(1.50);
		transform: scale(1.50);
	}

	50% {
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	75% {
		-moz-transform: scale(1.15);
		-ms-transform: scale(1.15);
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}	
}

@-moz-keyframes heart_beat {
	0% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-moz-transform: scale(1.50);
		-ms-transform: scale(1.50);
		-webkit-transform: scale(1.50);
		transform: scale(1.50);
	}

	50% {
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	75% {
		-moz-transform: scale(1.15);
		-ms-transform: scale(1.15);
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-ms-keyframes  heart_beat {
	0% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-moz-transform: scale(1.50);
		-ms-transform: scale(1.50);
		-webkit-transform: scale(1.50);
		transform: scale(1.50);
	}

	50% {
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	75% {
		-moz-transform: scale(1.15);
		-ms-transform: scale(1.15);
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}


@-webkit-keyframes heart_beat {
	0% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-moz-transform: scale(1.50);
		-ms-transform: scale(1.50);
		-webkit-transform: scale(1.50);
		transform: scale(1.50);
	}

	50% {
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	75% {
		-moz-transform: scale(1.15);
		-ms-transform: scale(1.15);
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-o-keyframes heart_beat{
	0% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	25% {
		-moz-transform: scale(1.50);
		-ms-transform: scale(1.50);
		-webkit-transform: scale(1.50);
		transform: scale(1.50);
	}

	50% {
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	75% {
		-moz-transform: scale(1.15);
		-ms-transform: scale(1.15);
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

