/**
*在Position属性值为absolute的同时，
*如果有一级父对象（无论是父对象还是祖父对象，或者再高的辈分，一样）
*的Position属性值为Relative时，则上述的相对浏览器窗口定位将会变成相对父对象定位，
*这对精确定位是很有帮助的。
*/
*{
    margin: 0;
    padding: 0;
	list-style-type:none;
}
/*nav导航盒子*/
div.nav{
    width: 100%;
    height:46px;
    background: #A6337B;
	
}
.nav_bar{ display:block; width:1185px; margin:0 auto; padding-left:35px;position: relative;}
/*nav-main*/
ul.nav-main{
    width: 100%;
    height: 100%;
    list-style-type: none;
	display:block;
}
ul.nav-main span{
    display: inline-block;
    margin-left: 18px;
    width: 7px;
    height: 7px;
    background: url(../images/down-icon.png) center center  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);
}
/*导航条设置*/
ul.nav-main>li{
    width: 142px;
    height: 100%;
    display: block;
    float: left;
    background: #A6337B; color:#fff; font-size:14px;
    cursor: pointer;
	height:46px; line-height:46px; text-align:center; 
}
ul.nav-main li a{color: #fff; font-size:14px;}
ul.nav-main>li:hover{
    background: #6C0A3B;
}
ul.nav-main li.gre{
    background: #6C0A3B;
}
/*隐藏盒子设置*/
div.hidden-box{
    width: 140px;

    border-top: 0;
    position: absolute;
    display:none;
	background:#fff;
    top: 46px;
	z-index:99;
}
.hidden-box>ul{
    list-style-type: none;
    color: #A6337B;
    cursor: pointer;
}
.hidden-box li{
    width: 140px;
    height: 100%;
    display: block;
    float: left;
    background: #A6337B;
	color:#fff; font-size:16px;
    cursor: pointer;
	height:46px; line-height:46px; text-align:center;
}
.hidden-box li a{ color:#fff; font-size:14px;}
.hidden-box li:hover{
    background: #6C0A3B;
}
/*隐藏盒子位置设置*/
.hidden-loc-index{
    left: 177px;
}
.hidden-loc-us{
    left: 319px;
}
.hidden-loc-info{
    left: 745px;
}
.box04{
	left:887px;
}
.box05{
	left:1029px;
}