
* {
    margin: 0;
    padding: 0;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 199;
    background: #080808;
}

.header-top {
    display: flex;
    height: 100px;
    z-index: 99;
}

.header-move1 {
    height: 72px;
    transition: height .8s ease-in-out;
    box-shadow: 0 10px 40px 0 rgba(50, 50, 50, 0.08);
}

.header-move2 {
    height: 100px;
    transition: height .8s ease-in-out;
}

.header .header-top .h-left {
    display: flex;
    flex-basis: 0;
    justify-content: flex-start;
    align-items: center;
    flex-grow: 1;
}

.header .header-top .h-left a {
    margin-left: 18px;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .header-top .h-left a img {
    height: 100px;
}

.header .header-top .h-right {
    display: flex;
    flex-basis: 0;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}

@media screen and (min-width:600px) {
    .header .header-top .h-right-close {
        display: none;
    }
}

@media screen and (max-width:600px) {
    .header .header-top .h-right {
        display: none;
    }

    .header .header-top .h-right-close {
        display: flex;
        flex-basis: 0;
        justify-content: flex-end;
        align-items: center;
        flex-grow: 1;
        margin-right: 1em;
    }

    .header .header-top .h-right-close svg {
        cursor: pointer;
        width: 2em;
        height: 2em;
    }
}

.header .header-top .h-right ul {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    list-style: none;
}

.header .header-top .h-right ul li {
    padding: 0 18px;
    white-space: nowrap
}

.header .header-top .h-right ul li a {
    color: #898fa0;
    text-decoration: none;
}

.header .header-top .h-right ul li a:hover {
    color: #77ff00;
}

.header .header-top .h-right ul li .dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: relative;
    top: -12px;
    left: 2px;
}

.header .header-top .h-right .select a {
    color: white;
}

.header .header-top .h-right .select .dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #006AFF;
    position: relative;
    top: -12px;
    left: 2px;
}
