/* 手机版*/

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;
    border-bottom: 3px solid #b9d601;
}

.m-logo {
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
}

.m-logo img {
    height: 40px;
}

.m-top .btn {
    position: absolute;
    z-index: 100;
    top: 19px;
    right: 10px;
    text-align: center;
}

.m-top .btn span {
    display: block;
    width: 30px;
    height: 4px;
    background: #000;
    -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: #fff;
        border-bottom: 6px solid #b9d601;
    }

    .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 1200px;
        height: 90px;
        margin: 0 auto;
    }

    .nav ul {
        display: flex;
    }

    .head ul li {
        padding: 0 15px;
    }

    .head ul a {
        display: block;
        padding: 30px 0;
        font: 400 14px/30px '微软雅黑';
        color: #000;
        background: no-repeat center 8px;
        transition: 0.6s;
    }

    .head ul a:hover {
        color: #e56f15;
        background-image: url(../images/nav_li_bg.png);
        transform: translate3d(0, -10px, 0);
    }


    .slide {
        position: fixed;
        z-index: 3;
        left: 1%;
        bottom: 5%;
    }

    .fixed-slide {
        position: fixed;
        z-index: 10;
        right: 1%;
        bottom: 5%;
    }

    .fixed-line {
        position: relative;
        padding: 10px 0;
    }

    .fixed-line i {
        position: relative;
        z-index: 10;
    }

    .fixed-line p {
        position: absolute;
        right: 0;
        bottom: 10px;
        z-index: 1;
        width: auto;
        padding: 0 60px 0 25px;
        font: 400 16px/45px '微软雅黑';
        color: #fff;
        background: #e47018;
        border-radius: 30px;
        opacity: 0;
        transform: translate3d(110%, 0, 0);
        transition: 0.6s;
    }

    .fixed-line:nth-child(2) p {
        width: 360px;
    }

    .fixed-line:nth-child(3) p {
        background: none;
        transform: rotate(90deg) translate3d(0, 0, 0);
        transform-origin: right bottom;
    }

    .fixed-line:hover p {
        opacity: 1;
        transform: translate3d(-5px, 0, 0);
    }

    .fixed-line:nth-child(3):hover p {
        transform: rotate(0);
    }

}