@charset "utf-8";

.maxWidthWrap {
    max-width:1400px;
    margin:0 auto;
    position: relative;
    padding-right: 10px !important;
    padding-left: 10px !important;
}

/* header */
header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.05);
    transition-duration:var(--duration);
}

header .logo {
    display: inline-block;
    width:155px;
    height: 20px;
    background: url(../img/logo_white.png) 50% /contain no-repeat;
}

header:hover {
    background: rgba(0,0,0,.85);
}
header:hover nav>a {
    padding:0 25px;
    margin:0;
    font-size:20px;
}

header h1 {
    z-index: 1;
    position: absolute;
    left:30px;
    top:20px;
}
header h1 a {
    display: block;
}
header h1 a img{
    height:25px;
}

/* nav */
nav {
    position: relative;
    width:100%;
    height:70px;
    text-align: center;
}
nav>a {
    color:#fff !important;
    font-size:18px;
    margin:0 15px;
    display: inline-block;
    height: 70px;
    line-height: 75px;
    position: relative;
}
nav>a:before {
    content:'';
    display: inline-block;
    width:1px;
    background: rgba(255,255,255, 0.5);
    position: absolute;
    bottom:0;
    left:50%;
    height:30%;
    top:40%;
    opacity: 0;
}
nav>a.active:before,
nav>a:hover:before {
    opacity: 1;
    top:70%;
    transition-duration:var(--duration);
}
nav>a:hover+ul {
    display: flex;
    transition-duration:var(--duration);
    /* border-top: 1px solid var(--point-color); */
}
nav>ul {
    display: none;
    position: absolute;
    top:70px;
    left: 0;
    width: 100%;
    height: 80px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.95));
    border-top: 1px solid rgba(255,255,255, 0.1);
}
nav>ul:hover {
    display: flex;
}
nav>ul>li>a {
    display: block;
    font-size:17px;
    color:#fff !important;
    padding:0 30px;
    font-weight: 400;
    height: 80px;
    line-height: 80px;
    position: relative;
}
nav>ul>li>a.active:before,
nav>ul>li>a:hover:before {
    content:'';
    display: inline-block;
    width:1px;
    height: 20%;
    position: absolute;
    top: 0;
    left:50%;
    background: rgba(255,255,255, 0.5);
}
.nav-btn {
    display: none;
}
.navBg{
    display: none;
}


@media screen and (max-width:1200px){
    nav {
        display: none;
    }
    header h1 {
        top: 17px;
    }
    .header_nav_pc {
        display: none;
    }
    header .logo {
        width: 170px;
    }
    header {
        height: 60px;
    }
    header:hover nav>a {
        margin:0 15px;
    }
    header nav>a.active,
    header nav>a:hover {
        text-decoration: underline !important;
    }
    nav>a.active:before,
    nav>a:hover:before {
        content:none;
    }
    nav>ul>li>a{
        padding: 0 20px;
    }
    nav>ul>li>a.active:before,
    nav>ul>li>a:hover:before {
        content:none;
    }
    nav ul {
        position: relative;
        top: 0;
        display: flex;
        justify-content: flex-start;
        transition-duration:.2s;
        height: 0;
        opacity: 0;
        background: #111;
    }
    nav {
        position: fixed;
        right:-100%;
        top:0;
        height:100vh;
        background: #000;
        width: 80%;
        display: block;
        z-index: 998;
        padding-top: 60px;
        transition-duration:.2s;
        overflow-y: auto;
    }
    nav.active {
        right:0;
    }
    nav>a {
        display: block;
        color:#333;
        font-size:34px !important;
        text-align: left;
        padding-left: 15px;
        height:80px;
        line-height: 80px;
        background: ;
    }
    nav>a.active+ul,
    nav>a:hover+ul {
        opacity: 1;
        height: 80px;
    }
    .navBg {
        z-index: 997;
        position: fixed;
        right:100%;
        top:0;
        height:100vh;
        background: rgba(0,0,0,0.25);
        width: 100%;
        display: block;
        transition-duration:.2s;
    }
    .navBg.active {
        right:0;
    }

    /* footer */
    #footer {
        padding: 0 20px;
    }
}


@media screen and (max-width:767px){
    nav>a {
        font-size:20px !important;
        height: 50px;
        line-height: 50px;
    }
    nav ul {
        display: none;
    }
    nav>a.active+ul, 
    nav>a:hover+ul {
        height: auto;
        display: block;
        text-align: left;
    }
    nav>ul>li>a {
        height: 50px;
        line-height: 50px;
        font-size:14px;
        position: relative;
        padding-left: 15px;
        margin-left: 40px;
    }
    nav>ul>li>a:before {
        content:'';
        display: inline-block;
        width: 2px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 22px;
    }
    #footer {
        padding:20px !important;
        text-align: center;
    }
    #footer * {
        font-size:11px;
    }
    .footer-menu .footer-logo {
        margin:0 auto;
        float:none !important;
    }
    .footer-menu .menu {
        float:none !important;
    }
    .footer-info .info span.pc_view{
        display: block;
        opacity: 0;
        height:0;
    }
    .footer-info .info {
        padding:20px 0;
    }
}