#header{
    width: calc(100% - 80px);
    height: 80px;
    position: fixed;
    top: 0;
    left: 80px;
    background: #020001;
    min-width: 1000px;
    z-index: 99;
}

#header .logo{
    width: 80px;
    position: absolute;
    top: 3px;
    left: 30px;
}

#header .menu{
    text-align: center;
    line-height: 80px;
}

#header .menu ul{
    display: flex;
    justify-content: center;
}

#header .menu ul li{
    margin-right: 6.4em;
}

#header .menu ul li:last-child{
    margin-right: 0;
}

#header .menu ul li a{
    font-size: 1.6em;
    color: #fff;
    font-weight: 500;
}

#header .menu .sub_menu{
    position: absolute;
    top: 64px;
    left: 0;
    text-align: left;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #000;
    z-index: 999;
    display: none;
}

#header .menu .sub_menu.on{
    display: flex;
}

#header .menu .sub_menu li{
    margin-right: 4em;
}

#header .menu .sub_menu li a{
    font-size: 1.4em;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    display: block;
}

#header .menu .sub_menu li a.on{
    color: #fff;
    position: relative;
}

#header .menu .sub_menu li a.on::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 12px;
}

#header .top_menu{
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0,-50%);
}

#header .top_menu .login{
    float: left;
    margin-right: 40px;
    line-height: 40px;
}

#header .top_menu .login ul li{
    float: left;
    margin-right: 23px;
    position: relative;
}

#header .top_menu .login ul li:last-child{
    margin-right: 0;
}

#header .top_menu .login ul li::after{
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translate(0,-50%);
}

#header .top_menu .login ul li:last-child::after{
    display: none;
}

#header .top_menu .login ul li a{
    font-size: 13px;
    font-weight: 500;
    color: #C4C4C4;
}

#header .top_menu .search{
    width: 40px;
    height: 40px;
    background: url(/PETC/assets/images/common/search.png) center no-repeat;
    cursor: pointer;
    border: none;
    display: block;
    float: left;
}
#header .btn_area {
    display: none;
}



@media (max-width: 500px){
    .pc{
        display: none;
    }
    #leftMenu{
        display: none;
    }
    #header{
        width: 100%;
        /* max-width: 500px;*/
        max-width: 1024px;
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: #020001;
        z-index: 99;
        border-bottom:1px solid rgba(75, 75, 75, 0.5);
        box-sizing: border-box;
        min-width: unset;
    }
    #header .inner {
        padding:21px 20px;
        display: flex;
        align-items: center;
    }
    #header .logo{
        /* width: 60px; */
        
    }
    #header .btn_area {
        display: flex;
        margin-left:auto;
    }
    #header .btn_area button{
        width: 24px;
        height: 24px;
        display: block;
        margin-left:10px;
    }
    #header .btn_area .search.hide{
        display: none;
    }
    #header .btn_area .menu{
        width: 24px;
        height: 24px;
        display: block;
        margin-left:10px;
        background: url(/image/menu.svg) center no-repeat;
        background-size: 100%;
    }
    #header .btn_area .menu.open{ 
        background: url(/image/menu_close.svg) center no-repeat;
        background-size: 100%;
    }
}