.header {
    position: fixed;
    width: 100vw;
    height: 65px;
    z-index: 1;
}
.header .header-inner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header-inner .logo-box {
    height: 100%;
    display: flex;
    align-items: center;
}
.logo-box .logo {
    width: 180px;
    height: 47px;
    background-image: url('../image/index/logo.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.header-inner .header-btn {
    display: flex;
    align-items: center;
}
.header-btn .menu-inner {
    
    width: 27px;
    height: 20px;
    position: relative;
    cursor: pointer;
    margin-right: 15px;
    margin-bottom: 5px;
    transition: 1s;
}
.menu-inner span {
    height: 2px;
    width: 100%;
    background-color: #fff;
    display: block;
    position: absolute;
}

.menu-inner span:nth-child(1) {
    top: 0;
}
.menu-inner span:nth-child(2) {
    top: 50%;
}
.menu-inner span:nth-child(3) {
    top: 100%;
}





.white.header {
    border-bottom: 1px solid #dedede;
    background-color: #fff;
}

.white .logo-box .logo {
    background-image: url('../image/index/blue-logo.png');
}
.white .menu-inner span {
    background-color: #222;
}



.header .header-menu {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    right: -100%;
    transition: 0.5s;    
}
.open.header-menu {
    right: 0;
    transition: 0.5s;
}

.header-menu-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.open .header-menu-inner {}

.header-menu-inner .header-menu-opa  {
    width: 100%;
    height: 100%;
    background-color: #222;
    opacity: 0.3;
}

.header-menu-inner .menu-list-box {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    overflow-y: auto;
    background-color: #fff;
}

/* Tablet */
@media all and (min-width: 720px) {
    .header-menu-inner .menu-list-box {
        width: 40%;
    }
}

/* PC */
@media all and (min-width: 1024px) {
    .header-menu-inner .menu-list-box {
        width: 30%;
    }
}





.menu-list-box .menu-top-box {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    align-items: center;
}

.menu-top-box .top-title-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;

}
.top-title-box img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.top-title-box .top-title {
    color: #222;
    font-size: 17px;
    font-weight: 400;
}

.menu-top-box .top-close-box {
    padding-right: 15px;
}
.top-close-box img {
    width: 25px;
    height: 25px;
}

.menu-list-box .menu-title-box {
    padding-left: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dedede;
}

.menu-title-box .menu-title {
    font-weight: 700;
    font-size: 22px;
    color: #222;
}
.menu-list-box .menu-link-box {
    
}
.menu-link-box .link-list {
    
}
.link-list .link-item {
    width: 100%;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 48px;
    padding-right: 25px;
    border-bottom: 1px solid #dedede;
}
.link-list > li:nth-child(1),
.link-item:nth-child(5), 
.link-item:nth-child(8) {
    padding-left: 30px;
}
.link-item a {
    width: 100%;
    height: 100%;
}
.link-item .link-item-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.link-item .link-title {
    font-size: 17px;
    color: #222;
    font-weight: 400;
    padding-right: 48px;
}
.link-item img {
    width: 20px;
    height: 20px;
}


