/* 手机版*/

body {
    position: relative;
    overflow-x: hidden;
    background: #333;
}

.m-top {
    position: absolute;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #009944;
}

.m-logo {
    display: block;
    position: absolute;
    left: 10px;
    top: 12px;
}

.m-logo img {
    height: 36px;
}

.m-top .btn {
    position: absolute;
    z-index: 100;
    top: 15px;
    right: 10px;
    text-align: center;
}

.m-top .btn img {
    height: 30px;
}

.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%;
        padding: 0 20px;
        border-top: 8px solid #f3cc2b;
    }

    .head {
        display: flex;
        justify-content: space-between;
        position: relative;
        z-index: 50;
        padding: 20px 0 0;
    }

    .logo {
        display: block;
    }

    .nav-btn {
        cursor: pointer;
    }

    .nav-btn span {
        display: block;
        width: 30px;
        height: 4px;
        background: #fff;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .nav-btn span:nth-child(2) {
        margin: 5px 0;
    }

    .nav-btn.cross span:nth-of-type(1) {
        transform: translateY(9px) rotate(-45deg);
    }

    .nav-btn.cross span:nth-of-type(2) {
        opacity: 0;
    }

    .nav-btn.cross span:nth-of-type(3) {
        transform: translateY(-9px) rotate(45deg);
    }

    .nav {
        display: none;
        position: fixed;
        z-index: 10;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
    }

    .nav-box {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
        padding: 10% 0;
    }

    .nav-img {
        display: none;
    }

    .nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .nav ul li {
        display: flex;
        align-items: center;
        width: 100%;
        height: 10%;
        padding: 1px 0;
    }

    .nav ul li a {
        display: block;
        width: 100%;
        font: bold 18px/30px '微软雅黑';
        text-align: center;
        color: #fff;
        transition: 0.3s;
    }

    .nav ul li:hover {
        background: #000;
    }
}



/* 侧边悬浮 */
.fix-slide {
    display: flex;
    align-items: flex-end;
    position: fixed;
    z-index: 50;
    left: 15px;
    top: 35%;
    width: 55px;
    padding: 0 0 30px;
    background: url(../images/fixed_line.png) no-repeat 14px 200px;
}

.fix-slide ul li {
    padding: 0 0 20px;

}

.fix-slide ul li div {
    perspective: 1000px;
    display: flex;
    position: relative;

    cursor: pointer;
}

.fix-slide ul li i {
    display: block;
    position: relative;
    z-index: 10;
    width: 55px;
    height: 55px;
    text-align: center;
    background: #014d7e;
}

.fix-slide ul li p {
    position: absolute;
    left: 55px;
    top: 0;
    z-index: 1;
    overflow: hidden;
    margin: 0 0 0 1px;
    padding: 0 10px;
    font: 400 18px/55px '微软雅黑';
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: rotateY(90deg);
    transform-origin: 0 center;
    opacity: 0;
    transition: 0.3s;
}

.fix-slide ul li p img {
    width: 88px;
    padding: 10px 0;
}

.fix-slide ul li:hover i {
    background: #006934;
}

.fix-slide ul li:hover p {
    opacity: 1;
    background: #006934;
    transform: rotateY(0);
}

/* 波浪 */
.wave {
    display: none;
}

.fix-slide{
    display: none;
}
@media (min-width: 1200px) {
    .wave {
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 300%;
        height: 232px;
    }

    .wave1 {
        z-index: 10;
        background: url(../images/wave1.png) repeat-x 0 0;
        animation: wave 21s linear infinite;
    }

    .wave2 {
        z-index: 8;
        background: url(../images/wave2.png) repeat-x 0 0;
        animation: wave 25s linear infinite;
    }

    .wave3 {
        z-index: 6;
        background: url(../images/wave3.png) repeat-x 0 0;
        animation: wave 29s linear infinite;
    }

    @keyframes wave {
        0% {
            background-position: 100% 0;
        }

        100% {
            background-position: 0 0;
        }
    }
}