.header {
    height: 1rem;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(139, 139, 139, 0.16);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header_logo {
    width: 0.74rem;
    height: 0.8rem;
}

.header_content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.header_content ul {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    height: 100%;
}

.header_content ul li {
    height: 100%;
}

.header_nav {
    height: 100%;
    font-family: kr;
    font-size: 0.2rem;
    color: #313131;
    text-align: center;
    white-space: nowrap;
    line-height: 1rem;
    position: relative;
    /* padding: 0 0.1rem; */
}

.header_nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0.02rem;
    background: var(--c1);
    transition: 0.3s;
}

.header_nav:hover,
.header_nav.active {
    color: var(--c1)
}

.header_nav:hover::after,
.header_nav.active::after {
    width: 100%;
}

.login {
    width: fit-content;
    padding: 0 0.18rem;
    height: 0.34rem;
    background: var(--c1);
    border-radius: 0.17rem;
    display: flex;
    align-items: center;
    gap: 0.08rem;
}

.login img {
    width: 0.2rem;
    height: 0.2rem;
    object-fit: contain;
}

.login p {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
}

.login_out {
    width: fit-content;
    padding: 0 0.18rem;
    height: 0.34rem;
    background: var(--c1);
    border-radius: 0.17rem;
    display: flex;
    align-items: center;
    gap: 0.08rem;
}

.login_out img {
    width: 0.2rem;
    height: 0.2rem;
    object-fit: contain;
}

.login_out p {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
}
.Search {
    width: fit-content;
    padding: 0 0.18rem;
    height: 0.34rem;
    background: var(--c1);
    border-radius: 0.17rem;
    display: flex;
    align-items: center;
    gap: 0.08rem;
}

.Search img {
    width: 0.2rem;
    height: 0.2rem;
    object-fit: contain;
}

.Search p {
    font-family: Arial, Arial;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
}