@charset "UTF-8";
/*头部样式开始*/
.Header {
    width: 100%;
    height: 70px;
    background: white;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    -o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
}
.Header_transparent {
    width: 100%;
    height: 70px;
    background: transparent;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;

}
#Header .PcMenu {
    width: 85%;
    margin: 0 auto;
    height: 100%;
}
.Logo a {
    font: bolder 25px 'Microsoft Yahei';
    color: black;
    letter-spacing: 2px;
    color: #864036;

    text-shadow: 3px 1px 1px white;
}

.MenuItem {
    width: 60%;
    font: 14px 'Microsoft Yahei';
    color: #333333;
}
.PhoneMenuBtn {
    display: none;
    cursor: pointer;
}
.PhoneMenu {
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    top: 0;
    right: 0;
    position: fixed;
    display: none;
    /*界面图层设置z-index不要超过50（从0开始），浮动框包括菜单从100开始，这样永远不会乱*/
    z-index: 100;


}
.PhoneMenu>div {
    width: 90%;
    height: 100vh;
    background: white;
    top: 0;
    right: 0;
    position: fixed;

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;

    -webkit-transform: translate(100%, 0);
    -moz-transform: translate(100%, 0);
    -ms-transform: translate(100%, 0);
    -o-transform: translate(100%, 0);
    transform: translate(100%, 0);
}
#CloseBtn {
    width: 100%;
    height: 50px;
    position: absolute;
    cursor: pointer;
    transition: none;
}
#CloseBtn img {
    width: 15px;
    height: 15px;
    right: 5%;
    position: absolute;
}
.PhoneMenuUl li {
    height: 52px;
    line-height: 52px;
    font-size: 14px;

}
.PhoneMenuUl li a {
    display: inline-block;
    width: 80%;
}
.PhoneMenuUl>li:nth-child(even) {
    background: #EDEFF2;
}
.PhoneMenuLeft {
    background: #864036;

}
.PhoneMenuLeft p {
    width: 500px;
    height: 30px;
    line-height: 30px;
    font-weight: bolder;
    font-size: 14px;
    color: white;
    letter-spacing: 1px;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transform: rotate(90deg) translate(285px, 230px);
    -moz-transform: rotate(90deg) translate(285px, 230px);
    -ms-transform: rotate(90deg) translate(285px, 230px);
    -o-transform: rotate(90deg) translate(285px, 230px);
    transform: rotate(90deg) translate(285px, 230px);
}
.PhoneMenuRight {

}
/*头部样式结束*/
.logo_img {
    width: 50px;
    height: 50px;
}


/*自适应样式============================================*/

/*-0---------------------------------------------------*/

@media (max-width: 479px) {
    .Header_transparent {
        background-color: white;
    }
    /*头部样式开始*/
    #Header {
        height: 50px;
    }
    #Header .PcMenu {
        width: 92%;
        margin: 0 auto;
        height: 100%;
    }
    .MenuItem {
        display: none;
    }

    .PhoneMenuBtn {
        display: block !important;
    }
    .Logo a {
        font: bolder 14px 'Microsoft Yahei';
        color: black;
        letter-spacing: 2px;
        color: #864036;
    }
    /*头部样式结束*/
    .logo_img {
        width: 25px;
        height: 25px;
    }
}

/*-1---------------------------------------------------*/

@media (min-width: 480px) and (max-width: 767px) {
    .Header_transparent {
        background-color: white;
    }
    /*头部样式开始*/
    #Header {
        height: 50px;
    }
    #Header .PcMenu {
        width: 92%;
        margin: 0 auto;
        height: 100%;
    }
    .MenuItem {
        display: none;
    }
    .PhoneMenuBtn {
        display: block !important;
    }
    .Logo a {
        font: bolder 14px 'Microsoft Yahei';
        letter-spacing: 2px;
    }
    /*头部样式结束*/
    .logo_img {
        width: 30px;
        height: 30px;
    }
}

/*-2---------------------------------------------------*/

@media (min-width: 768px) and (max-width: 991px) {
    /*头部样式开始*/
    #Header .PcMenu {
        width: 95%;
        margin: 0 auto;
        height: 100%;
    }
    /*头部样式结束*/
    .logo_img {
        width: 35px;
        height: 35px;
    }
    .MenuItem>li span {
        font-size: 12px;
    }
    .Logo a {
        font-size: 20px;
    }
}

/*-3---------------------------------------------------*/

@media (min-width: 992px) and (max-width: 1199px) {
    /*头部样式开始*/
    #Header .PcMenu {
        width: 90%;
        margin: 0 auto;
        height: 100%;
    }
    /*头部样式结束*/
    .logo_img {
        width: 40px;
        height: 40px;
    }
    .MenuItem>li span {
        font-size: 12px;
    }
    .Logo a {
        font-size: 20px;
    }
}


/*-4---------------------------------------------------*/

@media (min-width: 1200px) and (max-width: 1399px) {
    /*头部样式开始*/
    #Header>div {
        width: 90%;
        margin: 0 auto;
        height: 100%;
    }
    /*头部样式结束*/
    .logo_img {
        width: 45px;
        height: 45px;
    }

}

/*-5---------------------------------------------------*/

@media (min-width: 1400px) {

}