/* 手机版*/

body {
    position: relative;
    overflow-x: hidden;
    background: #333;
}

.m-top {
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    box-shadow: 0 0 10px 1px #999;
}

.m-logo {
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
}

.m-logo img {
    height: 40px;
}

.m-top .btn {
    position: absolute;
    z-index: 100;
    top: 20px;
    right: 10px;
    text-align: center;
}

.m-top .btn span {
    display: block;
    width: 30px;
    height: 4px;
    background: #380900;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.m-top .btn span:nth-child(2) {
    margin: 5px 0;
}

.cross span:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}

.cross span:nth-of-type(2) {
    opacity: 0;
}

.cross span:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.m-nav {
    position: absolute;
    z-index: 99;
    right: -150px;
    top: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    padding-top: 86px;
    background: #333;
}

.m-nav li a {
    display: block;
    font: 400 16px/36px "微软雅黑";
    color: #fff;
    text-align: center;
}

.m-menu {
    margin: 0 auto;
}

.m-menu li {
    float: left;
    width: 33.3%;
    padding: 5px;
}

.m-menu li a {
    display: block;
    font: 400 14px/36px "Microsft yahei";
    color: #1a1a1a;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
}

.wrapper {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #fff;
}

header {
    display: none;
}

@media (min-width: 1200px) {
    header {
        display: block;
        position: absolute;
        z-index: 99;
        left: 0;
        top: 0;
        width: 100%;
        background: url(../images/head_bg.jpg) no-repeat center bottom;
    }

    .top {
        background: #500d00;
    }

    .top-box {
        display: flex;
        justify-content: space-between;
        width: 1200px;
        margin: 0 auto;
        font: 400 14px/36px '微软雅黑';
        color: #fff;
    }

    .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 1200px;
        height: 75px;
        margin: 0 auto;
        padding: 0 0 0 15px;
        border-left: 1px solid #9f9f9f;
        border-right: 1px solid #9f9f9f;
    }

    .head::before {
        content: '';
        position: absolute;
        z-index: 99;
        left: -5px;
        bottom: -4px;
        width: 9px;
        height: 9px;
        background: url(../images/head_circle.png) no-repeat 0 0;
    }

    .head::after {
        content: '';
        position: absolute;
        z-index: 99;
        right: -4px;
        bottom: -4px;
        width: 9px;
        height: 9px;
        background: url(../images/head_circle.png) no-repeat 0 0;
    }

    .logo img {
        height: 60px;
    }

    .nav ul {
        display: flex;
        padding: 0 30px;
        background: url(../images/nav_ul_bg.png) no-repeat 10px bottom;
        transition: 0.3s;
    }

    .nav ul li {
        padding: 13px 8px 12px;
    }

    .nav ul li a {
        display: block;
        width: 85px;
        font: 400 14px/48px '微软雅黑';
        color: #500d00;
        text-align: center;
        background: url(../images/nav_li_bg.png) no-repeat center bottom/0;
        transition: 0.3s;
    }

    .nav ul li a:hover {
        background-size: 85px;
    }
}

@media (min-width: 1480px) {
    .top-box {
        font: 400 14px/36px '微软雅黑';
    }

    .head {
        height: 95px;
    }

    .nav ul li {
        padding: 20px 8px 19px;
    }

    .nav ul li a {
        width: 85px;
        font: 400 14px/56px '微软雅黑';
    }

}