/**
*在Position属性值为absolute的同时，
*如果有一级父对象（无论是父对象还是祖父对象，或者再高的辈分，一样）
*的Position属性值为Relative时，则上述的相对浏览器窗口定位将会变成相对父对象定位，
*这对精确定位是很有帮助的。
*/
*{
    margin: 0;
    padding: 0;
}

nav a:link {
 color:#fff;
 text-decoration:none;
 }
nav a:visited{
 color:#fff;
 text-decoration:none;
 }

/*nav导航盒子*/
nav{
	width: 1300px;
	height: 40px;
	line-height: 40px;
	/*导航位置*/
    margin: 0px auto;
	text-align: center;
	font-size: 14px;
	position: relative;
	background: #0b5899;
}
/*nav-main*/
.nav-main{
    width: 100%;
    height: 100%;
    list-style-type: none;
	background-color:#0b5899;
}

.nav-main span{
    display: inline-block;
    margin-left: 18px;
    width: 7px;
    height: 7px;
    background: url('../img/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: 170px;
    height: 100%;
    display: block;
    float: left;
    background: #0b5899;
    color: #fff;
    margin-right: 1px;
    cursor: pointer;
}

.nav-main>li:hover{
    background: #00CCCC;
}
/*隐藏盒子设置*/
.hidden-box{
    width: 170px;
    border: 1px solid #00CCCC;
    border-top: 0;
    position: absolute;
    display: none;
    top: 40px;
	background: #00CCCC;
}
.hidden-box>ul{
    list-style-type: none;
    color: #3399FF;
    cursor: pointer;
}
.hidden-box li:hover{
    background: #3399FF;
    color: #fff;
}
/*隐藏盒子位置设置*/
.hidden-loc-index{
    left: 170px;
}
.hidden-loc-us{
    left: 341px;
}
.hidden-loc-info{
    left: 512px;
}
.hidden-loc-lx{
    left: 1025px;
}
.tdx {
	border: 1px dashed #E4E4E4;
}

