@charset"utf-8";
/* CSS Document */
/****************************
 * version:1.0
 * By:landry
 * Date:2015-03-06
 *
 */
/*大体架构
 ----------*/

body,
html {
	font-family: 'Helvetica', 'Microsoft YaHei';
	width: 100%;
	font-size: 0;
}

/*颜色?
 --------------*/

.orange {
	color: #ffbd97;
}
.blue {
	color: #87cbff;
}
/*层级*/

.z-index {
	z-index: 9;
}
/*清除浮动
 --------------*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}

/**头部**/

.header {
	position: absolute;
	z-index: 201;
	top: 84;
	right: 19%;
	padding: 0 0px;
	z-index: 201;
}

.header ul {
	float: right;
}
.header .nav li {
	position: relative;
	display: inline-block;
	*display: inline;
	_display: inline;
}
.header .nav .name {
	/*font-weight: bold;*/
	
	font-size: 14px;
	line-height: 38px;
	padding: 0 31px;
	display: block;
	color: #fff;
	position: relative;
	z-index: 1;
	background: #C73A4A;
	font-weight: bold;
	text-decoration: none;
}
.subnav {
	position: absolute;
	top: -0px;
	left: -80;
	width: 600px;
	padding: 0px 0px 8px 0px;
	background: #C73A4A;
	transition: all 0.5s ease 0s;
	-webkit-transform: all 0.5s ease 0s;
	text-align: left;
	z-index: -1;
}
li:hover .subnav {
	top: 38px;
}
.subnav .cont {
	float: left;
	width: 120px;
}
.subnav .cont a {
	font-size: 12px;
	padding: 0 0 0 30px;
	font-weight: bold;
	display: block;
	color: #fff;
	line-height: 24px;
	margin: 6px 0 0;
	text-decoration: none;
}

