/*html{min-width: 1200px;}*/
/*body{min-width: 1200px;height:100%;}*/
*{margin:0;padding:0;touch-action: pan-y;}
html{}
a{text-decoration: none}
ul li{list-style: none}
.clear{clear: both;}
.main{
    width:1200px;
    margin:0px auto;
    font-size: 0;
    position: relative;
    animation:myfirst 1s;
    -moz-animation:myfirst 1s; /* Firefox */
    -webkit-animation:myfirst 1s; /* Safari and Chrome */
    -o-animation:myfirst 1s; /* Opera */
    display: flex;
    display:-webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    justify-content: space-between;
}
@keyframes myfirst
{
    from {top:3%;}

    to {top:0%;}
}
.logo{
    display: table-cell;
    line-height: 122px;
    vertical-align: middle;
    float: left;
}
.logo img{
    vertical-align: middle;
    width:100%;
}
header{

    overflow: hidden;

}
header .main .nav{
    font-size: 0;

}
header .main .nav li{
    height: 122px;
    float: left;
    color:white;
    font-size: 15px;
    line-height: 122px;
    margin-right: 65px;
}
header .main .nav li:hover p{
    display: block;
}

header .nav li:last-child{
    margin-right: 0px;
}
header .main .nav li a{
    display: inline-block;
    color:white;
}
header .main .nav li p{
    width: 20px;
    height: 2px;
    background: white;
    margin: 0px auto;
    margin-top: -45px;
    display: none;
}
header .main .nav .nav_active p{
    display: block !important;
}
.glide{
    position: absolute;
    left:49%;
    bottom:30%;
    width:28px;
    height: 42px;
    border-radius: 14px;
    border:2px solid #fff;
}
.glide i{
    width: 2px;
    height: 15px;
    display: block;
    border-radius: 2px;
    background: white;
    margin: 5px auto auto;
    animation: glide 1s infinite alternate;
    -moz-animation: glide 1s infinite alternate;
    -webkit-animation: glide 1s infinite alternate;
    -o-animation: glide 1s infinite alternate;
    position: absolute;
    left: 46%;
    top:2%;
}
@keyframes glide
{
    from {top:0px;}
    to {top:8px;}
}
.bottom{
    width:100%;
    background: url("../image/bottom.png")no-repeat center;
    background-size: cover;
    color:white;
    height: 535px;
    text-align: center;
    font-size: 0;
}
.bottom ul{
    padding-top:320px;

    text-align: center;
    display: inline-block;
}
.bottom ul li{
    float: left;
    font-size: 14px;

}
.bottom ul li a{
    padding:0px 8px;
    color:white;
    font-size: 12px;
    display: inline-block;

}
.bottom p{
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 40px;
    padding-bottom: 8%;
}
@media screen and (max-width: 750px) {
    body, html {
        max-width: 750px;
        min-width: 320px;
    }

    .main {
        width: 100%;
        font-size: 0;
        height: 60px;
    }

    .logo {
        width: 27%;
        float: none;
        font-size: 0;
        margin-left: 1%;
        line-height: 60px;
        margin-right: 4%;

    }

    .logo img {
        width: 100%;

    }
    .ul{
        flex:1
    }
    .glide{
        display: none;
    }
    header .main .nav li{
        height: 60px;
        line-height: 60px;
        margin-right: 3%;
        font-size: 10px;
    }
    header .main .nav li p{
        margin-top: -22px;
        height: 1px;
    }
    header .nav li:last-child{
        margin-right: 0px;
    }

    .ul {
        flex: 1
    }
    .bottom{
        height: 200px;
    }
    .bottom ul{
        padding-top: 25%;
    }
    .bottom p{
        padding-bottom:0%;
    }
}