/**
*在Position属性值为absolute的同时，
*如果有一级父对象（无论是父对象还是祖父对象，或者再高的辈分，一样）
*的Position属性值为Relative时，则上述的相对浏览器窗口定位将会变成相对父对象定位，
*这对精确定位是很有帮助的。
*/
*{
    margin: 0;
    padding: 0;
}
/*nav导航盒子*/
nav{
    
}
/*nav-main*/

.nav-main span{
    display: inline-block;
   margin-left: 4px;
   height:3px;
border-left: solid 6px #fdf7de;
border-right: solid 6px #fdf7de;
border-top: solid 6px #DAAB93;
}
/*图标向上旋转*/
span.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{
	font-size: 16px;
	font-weight: bold;
    width: 164px;
	height:44px; line-height:44px;
    display: block;
    float: left;
    background: url(../images/nav_bg.png)no-repeat right center;
    color:#86582E;
    margin-right: 1px;
    cursor: pointer;
	position:relative;
}


.nav-main>li:hover{
    color: #000;
}
#box-1,#box-2 { background:#fdf7de;padding: 16px 6px 8px; z-index:999;position: absolute;width: 155px;top:44px; left:-12px;}
.nav-main>li a { color:#86582E; display:block;}
/*隐藏盒子设置*/
.hidden-box{
    width: 118px;
    border: 1px solid #ff3e3e;
    border-top: 0;
    position: absolute;
    display: none;
    top: 30px;
}
.hidden-box>ul{
    list-style-type: none;
    color: #ff3e3e;
    cursor: pointer;
}
.hidden-box li:hover{
    background: #ff3e3e;
    color: #fff;
}
/*隐藏盒子位置设置*/
.hidden-loc-index{
    left: 121px;
}
.hidden-loc-us{
    left: 242px;
}
.hidden-loc-info{
    left: 363px;
}