/* 手机版*/

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

.m-top {
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #e6fefd;
    border-top: 3px solid #3cb8b6;
}

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

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

.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: #333;
    -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: #e6fefd;
        border-top: 4px solid #3cb8b6;
    }
    .logo{
        position: absolute;
        left: 50%;
        top: 20px;
        margin-left: -96px;
    }

    .head {
        display: flex;
        justify-content: center;
        width: 1200px;
        margin: 0 auto;
    }

    .nav ul {
        display: flex;
    }

    .nav ul li {
        padding: 10px 20px;
    }

    .nav ul li:nth-child(4) {
        margin-right: 230px;
    }

    .nav ul li a {
        display: block;
        font: 400 16px/60px '微软雅黑';
        color: #333;
        background: url(../images/nav_li.png) no-repeat center bottom/0 2px;
        transition: 0.3s;
    }
    .nav ul li a:hover{
        color: #0b783d;
        background-size: 15px 2px;
    }

    footer {
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        z-index: 10;
        left: 1%;
        bottom: 2%;
       /* width: 500px; */
        padding-left: 35px;
        font: 400 14px/24px '微软雅黑';
        color: #fff;
        background: url(../images/foot_line.png) no-repeat 0 12px;
    }

    footer p {
        padding-right: 5px;
    }

    .slide-fix{
        position: fixed;
        z-index: 60;
        right: -210px;
        bottom: 10;
        z-index: 10;
    }

    .slide-fix ul li{
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: 0.6s;
    }
    .slide-fix-icon{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 96px;
        height: 96px;
        background: rgba(255, 255, 255, 0.75);
    }
    .slide-fix-p{
        width: 210px;
        padding: 28px 30px 28px 0;
        font: 400 16px/20px '微软雅黑';
        color: #fff;
        background: rgba(255, 255, 255, 0.75);
    }
    .slide-fix ul li:hover{
        transform: translate3d(-210px,0,0);
    }
    .slide-fix ul li:hover .slide-fix-icon img{
        opacity: 0;
    }
    .slide-fix ul li:nth-child(1):hover .slide-fix-icon{
        background: rgba(0, 0, 0, 0.6) url(../images/fix_tel_w.png) no-repeat center center;
    }
    .slide-fix ul li:nth-child(2):hover .slide-fix-icon {
        background: rgba(0, 0, 0, 0.6) url(../images/fix_loc_w.png) no-repeat center center;
    }
    .slide-fix ul li:hover .slide-fix-p{
        background: rgba(0, 0, 0, 0.6);
    }
}