/*关于我们头部样式*/
.header {
	position: absolute;
	z-index: 99;
	width: 100%;
	min-width: 1170px;
	line-height: 60px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.header-content {
	width: 1170px;
	height: 60px;
	margin: 0 auto;
}
.logo {
	width: 118px;
	padding: 18px 0;
}
.logo-img {
	width: 118px;
	height: 24px;
	background-image: url('../img/logodefault.png');
	background-repeat: no-repeat;
	cursor: pointer;
}
/*head部分的导航列表*/
.nav-list {
	position: relative;
	float: left;
}
.nav-item {
	box-sizing:border-box;
	width: 60px;
	height: 58px;
	font-size: 16px;
	text-align: center;
	line-height: 60px;
}
.decorate {
	position: absolute;
    top: 0;
    top: 3px\9;
    left: 0;
    margin: 0;
    height: 2px;
    background-color: #fdcf3a;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.nav-item:hover {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	border-color: #fdcf3a;
	color: #fdcf3a;
}

.nav-item:hover .link {
	color: #fdcf3a;
}
.college-item {
	width: 60px;
	padding: 0;
}
.link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 14px;
}
.link .new {
	position: absolute;
	top: 3px;
	left: 31px;
	color: #fc7d51;
	font-size: 45px;
}
.link .college {
	position: absolute;
	top: 1px;
	left: -1px;
	font-size: 44px;
}
.nav-item-active {
	border-color: #fdcf3a;
	color: #fdcf3a;
}
.nav-item-active .link {
	color: #fdcf3a;
}
.nav-item-buttons {
	width: 137px;
	margin-left: 10px;
	overflow: hidden;
	height: 58px;
	font-size: 16px;
	text-align: center;
	line-height: 60px;
}
.nav-item-buttons:hover {
	border-color: transparent;
}
/*注册button*/
.button-light {
	display: inline-block;
	width: 55px;
	height: 26px;
	color: #262930;
	font-size: 14px;
	text-align: center;
	background-color: #fdcf3a;
	border-radius: 2px;
	line-height: 26px;
	margin-left: 10px;
}
.button-light:hover {
	transition: all 0.5s;
	-moz-transition: all 0.5s; /* Firefox 4 */
	-webkit-transition: all 0.5s; /* Safari 和 Chrome */
	-o-transition: all 0.5s; /* Opera */
	background-color: #fcda78;
}
.register-btn1 {
	transition: all 0.5s;
	-moz-transition: all 0.5s; /* Firefox 4 */
	-webkit-transition: all 0.5s; /* Safari 和 Chrome */
	-o-transition: all 0.5s; /* Opera */
	background-color: #fdcf3a;
	vertical-align: middle;
}
/*登录button*/
.button-default {
	display: inline-block;
	width: 55px;
	height: 26px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 2px;
	line-height: 26px;
}
.button-default:hover {
	transition: all 0.5s;
	-moz-transition: all 0.5s; /* Firefox 4 */
	-webkit-transition: all 0.5s; /* Safari 和 Chrome */
	-o-transition: all 0.5s; /* Opera */
	color: #262930;
	background-color: #fff;
}
.login-btn {
	transition: all 0.5s;
	-moz-transition: all 0.5s; /* Firefox 4 */
	-webkit-transition: all 0.5s; /* Safari 和 Chrome */
	-o-transition: all 0.5s; /* Opera */
	color: #fff;
	vertical-align: middle;
}
/*顶部导航跟随之后的样式*/
.header-nav {
	position: fixed;
	left:0;
	top: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	background-color: #fff;
	background-color: rgba(255,255,255,0.98);
	-webkit-box-shadow: 0 0 16px 1px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 0 16px 1px rgba(0,0,0,0.1);
	box-shadow: 0 0 16px 1px rgba(0,0,0,0.1);
	z-index: 999;
}
.header-nav .logo-img {
	background-image: url('../img/logofollow.png');
}
.header-nav .link {
	color: #333333;
}
.header-nav .link:hover {
	color: #f9be00;
}
.header-nav .button-light {
	background-color: #f9be00;
}
.header-nav .button-light:hover {
	transition: all 0.5s;
	-moz-transition: all 0.5s; /* Firefox 4 */
	-webkit-transition: all 0.5s; /* Safari 和 Chrome */
	-o-transition: all 0.5s; /* Opera */
	background-color: #fcda78;
}
.header-nav .button-default {
	color: #333333;
	border-color: #dddddd;
	background-color: #f5f5f5;
}
.header-nav .button-default:hover {
	transition: all 0.5s;
	-moz-transition: all 0.5s; /* Firefox 4 */
	-webkit-transition: all 0.5s; /* Safari 和 Chrome */
	-o-transition: all 0.5s; /* Opera */
	color: #262930;
	background-color: #fff;
}
.header-nav .nav-item-active .link {
	color: #f9be00;
}
.site-nav{
	position: relative;
}
/*最后添加的登录以后的状态记得提取到每个website里都有的navflow.css,因为不是两个项目都有所以不需要放在static下的common*/
div.logined{
	float: right;
	position: relative;
	height:60px;
}
div.logined>div.active-hover{
	/*和超再确定这个地方的透明度*/
	background-color:rgba(53,53,53,0.95);
	/*background:transparent\9;/*/
	/* filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66363535,endColorstr=#66363535);
	zoom:1\8;
	background: rgba(0,0,0,0.4);   */
}
@media \0screen\,screen\9 {/* 只支持IE6、7、8 */
  div.active-hover{
    background-color:#353535;
    filter:Alpha(opacity=95);
    /*position:static;*/ /* IE6、7、8只能设置position:static(默认属性) ，否则会导致子元素继承Alpha值 */
    *zoom:1; /* 激活IE6、7的haslayout属性，让它读懂Alpha */
  }
  /*.list-cover .alert-text a,.list-cover .alert-text .text-top{*/
    /*position: relative;*//* 设置子元素为相对定位，可让子元素不继承Alpha值 */
  /*} */ 
}
.logined-show{
	width:74px;
	height:60px;
	line-height: 60px;
	padding-left: 17px;
	cursor: pointer;
	position: relative;
	/*border:1px solid blue;*/
}
.logined-show>em{
	display: inline-block;
	width:13px;
	height:14px;
	background: #f00;
	text-align: center;
	line-height:14px;
	border-radius: 2px;
	font-size:12px;
	position: absolute;
	left:28px;
	top:12px;
	color:#fff;
}
.logined-show>span{
	display: inline-block;
	width:25px;
	height:25px;
	background: url(../img/sprite2.png) no-repeat -394px -25px;
	vertical-align: middle;
}
.logined-show>i{
	color:#FFC800;
	font-size: 18px;
}
.logined-hide{
	width:150px;
	position: absolute;
	top:60px;
	right:0px;
	padding-top: 6px;
	z-index: 30;
	/*和超再确定这个地方的透明度*/
	background-color: rgba(53,53,53,0.95);
}
@media \0screen\,screen\9 {/* 只支持IE6、7、8 */
  .logined-hide{
    background-color:#353535;
    filter:Alpha(opacity=95);
    /*position:static;*/ /* IE6、7、8只能设置position:static(默认属性) ，否则会导致子元素继承Alpha值 */
    *zoom:1; /* 激活IE6、7的haslayout属性，让它读懂Alpha */
  }
  /*.list-cover .alert-text a,.list-cover .alert-text .text-top{*/
    /*position: relative;*//* 设置子元素为相对定位，可让子元素不继承Alpha值 */
  /*} */ 
}
.logined-hide li{
	width:100%;
	height:24px;
	font-size:12px;
	line-height: 24px;
	margin-bottom:8px;
}
.logined-hide li.li-division{
	width:100%;
	background: #555;
	box-shadow: 0px 2px 1px 0px #333;
	height:1px;
}
.logined-hide li:first-child{
	margin-top:5px;
}
.logined-hide li>a{
	width:100%;
	height:24px;
	display:block;
	color:#fff;
	line-height: 24px;
}
.logined-hide li>a>em{
	display: inline-block;
	width:17px;
	height:17px;
	background: #675943;
	line-height: 17px;
	text-align: center;
	border-radius: 2px;
	margin-left: 20px;
}
.logined-hide li>a:hover{
	background: #FDCF39;
}
.logined-hide li>a:hover span{
	color:#000;
}
.logined-hide li>a:hover i{
	color:#333;
}
.logined-hide li>a>span{
	margin:0px 14px 0px 14px;
}
.logined-hide li>a>span.dingdan{
	font-size: 15px;
}
.logined-hide li>a>i{
}
/*头部样式追加的*/
#afterAdd{
}
