/*左侧导航*/
/*html{font-size: 80px}*/
@media screen and (max-width: 1024px){
    /*html{ font-size: 50px;}*/
}
*{padding: 0;margin: 0;}
ul,li,ol{list-style: none;}

.ovfHiden {
    overflow: hidden;
}
.head_nav_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left:0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index:999;
}
.head_bg {
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0,0,0,.8);
    display: none;
}
.head_nav {
    width:60%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #2059ac;
    padding: 25px 10px 15px 6%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.btn_click .head_nav {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.btn_click .head_bg {
    display: block;
    animation: fadeIn .4s linear forwards;
    -webkit-animation: fadeIn .4s linear forwards;
}
.nav_list>li {
    color: #666666;
}
.nav_list>li>a {
    color: #ffffff;
    display: block;
    height:40px;
    line-height:40px;
    font-size:18px;
}
.nav_list>li>a p {
    line-height:40px;
    font-size:18px;

}
.nav_list>li>a {
    color: #ffffff;
    line-height:40px;
    font-size:18px;
    height:40px;
    margin-bottom: 0;
}
.nav_list>li>p.on {
    color: #ffffff;
}

/*子导航*/
.ul_nei_nav {
    display: none;
}
.ul_nei_nav li {
   /* height: .6rem;*/
    line-height:30px;
}
.nav_list>li a.on a,
.ul_nei_nav li.curr a {
    font-size:16px;
    color: #f6dab1;
}
.ul_nei_nav>li>a {
    color: #ffffff;
    color: rgba(255,255,255,.8);
    display: inherit;
    font-size:16px;
}
.ul_nei_nav>li>ul>li{ line-height: 30px;  margin-left: 40px;}
.ul_nei_nav>li>ul>li>a{ color: #eee;font-size: .2rem;}
.head_nav_btn {
    width: 30px;
    height:30px;
    position: absolute;
    top:50px;
    right:20px;
    cursor: pointer;
    z-index: 9999;
}
.head_nav_btn span {
    display: inline-block;
    width:30px;
    height: 2px;
    background-color: #dd0004;
    position: absolute;
    top:20px;
    left: 0;
    right: 0;
    margin: auto;
    transition: background-color 0.3s ease-out 0.1s;
    -webkit-transition: background-color 0.3s ease-out 0.1s;
}
.head_nav_btn span:after {
    content:'';
    display: inline-block;
    width:30px;
    height: 2px;
    background-color: #dd0004;
    position: absolute;
    top:10px;
    left: 0;
    transition: transform 0.3s ease-out,top 0.5s ease 0.4s;
    transform: rotate(0deg);
}
.head_nav_btn span:before {
    content:'';
    display: inline-block;
    width:30px;
    height: 2px;
    background-color: #dd0004;
    position: absolute;
    top:-10px;
    left: 0;
    transition: transform 0.3s ease-out,top 0.5s ease 0.4s;
    transform: rotate(0deg);
}
.btn_click .head_nav_btn span {
    background-color: transparent;
}
.btn_click .head_nav_btn span:after {
    background-color: #fff;
    transition: top 0.5s ease, transform 0.3s ease-out 0.4s;
    transform: rotate(-45deg);top: 0;
}
.btn_click .head_nav_btn span:before{
    background-color: #fff;
    transition: top 0.5s ease, transform 0.3s ease-out 0.4s;
    transform: rotate(45deg);top: 0;
}
.btn_click .head_nav_bg {
    opacity: 1;
    visibility: inherit;
    pointer-events: auto;
}
.head_nav .slogan {
    font-size:22px;
    color: #ded7cd;
    font-weight: lighter;
    line-height:30px;
    /* font-weight: bold; */
    padding-bottom:15px;
    margin-bottom:15px;
    border-bottom:1px solid rgba(255,255,255,.2);
}
.head_nav .head_call h3 {
    font-family: 'RAJDHANI_BOLD';
    font-size: .56rem;
    color: #fff;
    line-height: 1;
    padding: .62rem 0 .12rem;
    border-top: .02rem solid rgba(255,255,255,.2);
    margin-top: .2rem;
}
.head_nav .head_call p {
    font-size: .2rem;
    color: #ded7cd;
    color: rgba(222, 215, 205, .5);
    line-height: .36rem;
    /* font-weight: bold; */
}

@media screen and (max-width:500px)
{
.head_nav_btn {top:10px;}

}
