.main-header {
    /* border-bottom: 1px solid #e0e0e0; */
    height: 50px;
    background-color: var(--color-theme-c);
}
.main-header ul {
    list-style: none;
    display: inline-block;
    height: 50px;
}
.main-header ul:nth-child(2) {
    float: right;
}
.main-header ul > li {
    display: inline-block;
    vertical-align: middle;
}
.main-header ul > li > a {
    display: inline-block;
    color: var(--color-text-theme-lighter);
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    margin: 0 8px;
}
.main-header ul > li > a[data-type="logo"] {
    margin-right: 12px;
}
.main-header ul > li > a[data-type="logo"] > img {
    height: 40px;
    vertical-align: middle;
}
.main-header ul > li > a[data-type="main"] {
    color: var(--color-text-theme);
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
}
.main-header ul > li > a:hover {
    color: var(--color-text-theme);
}
.main-header ul > li > a.active {
    color: var(--color-text-theme);
    font-weight: 700;
}
.btn.main-header-mobile-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    padding: 0;
    line-height: 50px;
}
.btn.main-header-mobile-btn img {
    height: 24px;
}
.main-body {
    min-height: calc(100% - 100px);
}
.main-footer {
    padding: 16px 0;
    color: #505060;
    background-color: #eaeaee;
    height: 50px;
    box-sizing: border-box;
}
.main-footer .container > div:first-child {
    float: right;
    font-size: 0.8rem;
}
.main-footer .container > div:nth-child(2) {
    height: 16px;
    font-size: 0.8rem;
}
.main-footer .container > div:nth-child(2) a {
    color: #505060;
}

@media only screen and (min-width: 992px) {
    .btn.main-header-mobile-btn { display: none; }
}
@media only screen and (min-width: 601px) and (max-width: 991px) {

}
@media only screen and (max-width: 600px) {
 
}
@media only screen and (max-width: 991px) {
    .main-body {
        min-height: calc(100% - 50px);
    }
    .main-header {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 250px;
        height: 100%;
        z-index: 100;
        background-color: #ffffff;
        /* border-right: 1px solid #39456e; */
        box-shadow: 8px 0 16px rgba(0, 0, 0, 0.08);
    }
    .main-header.active {
        display: block;
    }
    .main-header .container {
        padding: 0;
        width: unset;
        max-width: unset;
    }
    .main-header ul:nth-child(2) {
        float: none;
        margin-top: 32px;
        width: 100%;
    }
    .main-header ul > li {
        display: block;
    }
    .main-header ul > li > a {
        display: block;
        padding: 16px 16px;
        width: 100%;
        height: auto;
        line-height: 1.0rem;
        box-sizing: border-box;
        margin-left: 0;
        font-weight: 600;
    }
    .main-header ul > li > a.active {
        color: #ffffff;
        background-color: var(--color-text-theme);
        font-weight: 700;
    }
    .main-header ul > li > a[data-type="logo"] {
        text-align: center;
    }
    .main-header ul > li > a[data-type="logo"] > img {
        width: 50%;
        height: auto;
        aspect-ratio: 1/1;
    }
    .main-header ul > li > a[data-type="main"] {
        text-align: center;
    }
}