/**
*在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: 100%;
    height: 100%;
    list-style-type: none;
    margin-left: 120px;
}
.nav-main span{
    display: inline-block;
    margin-left: 8px;
    width: 7px;
    height: 7px;
    background: url('/kjxy/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{
    width: 120px;
    height: 100%;
    display: block;
    float: left;
    color: #fff;
    margin-right: 1px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
}
.nav-main>li:hover{
	color: #FF0;
}
/*隐藏盒子设置*/
.hidden-box{ width: 98px; position: absolute; display: none; top: 30px; 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: 248px;
}
.hidden-loc-2{
    left: 368px;
}
.hidden-loc-3{
    left: 488px;
}
.hidden-loc-4{
    left: 404px;
}
.hidden-loc-5{
    left: 505px;
}
.hidden-loc-6{
    left: 606px;
}
.hidden-loc-7{
    left: 707px;
}
