/**
*在Position属性值为absolute的同时，
*如果有一级父对象（无论是父对象还是祖父对象，或者再高的辈分，一样）
*的Position属性值为Relative时，则上述的相对浏览器窗口定位将会变成相对父对象定位，
*这对精确定位是很有帮助的。
*/
*{
    margin: 0;
    padding: 0;
}
/*nav导航盒子*/
nav{
	margin-top:6px;
/*    width: 1000px;*/
    height: 34px;
    line-height: 34px;
    /*导航位置*/
    text-align: center;
    font-size: 12px;
    position: relative;
}
/*nav-main*/
.nav-main{
    width: 60%;
    height: 100%;
    list-style-type: none;
}
.nav-main span{
    display: inline-block;
    margin-left: 8px;
    width: 7px;
    height: 7px;
    background: url('/caiwuchu/images/down-icon.png') no-repeat;
}
/*图标向上旋转*/
.hover-up{
    transition-duration: .5s;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}
/*图标向下旋转*/
.hover-down{
    transition-duration: .5s;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

.nav-main li a {
  color: #333333;
  padding: 0 5px;
  font-size: 14px;
}
.nav-main li a:hover {
  color: #69C;
}

/*导航条设置*/
.nav-main>li{
    width: 70px;
    height: 30px;
    display: block;
    float: left;
    color: #333333;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    margin-right: 6px;
}
.nav-main>li:hover{
	color: #428bca;
}
/*隐藏盒子设置*/
.hidden-box{ width: 98px; position: absolute; display: none; top: 40px; background-color: #FFF; border: 1px solid #EFEFEF; z-index:3;}
.hidden-box>ul{ list-style-type: none; color: #666666; cursor: pointer; 
}
.hidden-box li:hover{ background-color: #F2F2F2; }
/*隐藏盒子位置设置*/
.hidden-loc-1{
    left: 690px;
}
.hidden-loc-2{
    left: 842px;
}

