header {

    height: 64px;
    position: fixed;
    background: #FFF;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, .09);
    top: 0px;
    width: 100%;
    transition: all 0.3s;
    z-index: 5;
}

header.active {
    background: #FFF;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, .09);
}

header~.main {
    margin-top: 80px;
}

header.open-menu~.main,
.deviation {
    transform: translateX(180px);
}

header.menu-off .menu-lt {
    transform: translateX(0px);
}



header.active .sh-b {
    top: 11px;
    height: 2.5rem;
    width: 30%;
    min-width: 250px;
    right: 10px;
    transform: translateX(0%);
    box-shadow: initial;
    border: 1px solid #ddd;
}

header.active .sh-b .sh-btn {
    line-height: 2.5rem;
    width: 2.5rem;
    color: #333;
}

header.active .sh-b .sh-btn i {
    font-size: 1.35rem;
    width: 2.5rem;
}

header.active .sh-b input {
    padding: 10px 3rem 10px 10px;
    font-size: 14px;
}

header.active .prompt {
    top: 80px;
}

header .menu-lt .logo {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0PX;
    top: 0px;
    color: #fff;
    padding: 10px 0px;
    font-weight: bold;
    font-size: 17px;
    border-bottom: 1px solid #696969;
}

header .menu-lt .logo em {
    font-size: 12px;
    color: #b1b1b1;
}

header .login-link {
    padding: 23px;
    padding-bottom: 0px;
    transition: all 0.3s;
}

header .login-link a {
    color: #333;
    font-size: 14px;
}


.ft-contact {
    position: fixed;
    bottom: 0px;
    width: 100%;
    left: 0px;
    text-align: center;
    font-size: 13px;
    padding: 20px 10px;
    transition: all 0.3s;
}

.ft-contact div {
    display: inline-block;
}

@media only screen and (max-width: 750px) {
    .ft-contact div {
        display: block;
    }
}

.ft-contact a {
    text-decoration: none;
    color: #fe7300;
}

.hr-menu {
    box-sizing: initial;
    position: fixed;
    z-index: 2;
    width: 30px;
    top: 14px;
    height: 24px;
    padding: 5px;
    text-align: center;
    display: block;
    left: 10px;
    cursor: pointer;
    /*background: #424141;*/
    color: #FFF;
    border-radius: 3px;
    transition: all .3s;
}

.hr-menu .line {
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 30px;
    margin: auto;
    height: 2px;
    background: #424141;
    transition: all 0.2s;
}

.hr-menu::before,
.hr-menu::after {
    box-sizing: initial;
    content: "";
    height: 2px;
    background: #424141;
    position: absolute;
    left: 5px;
    width: 30px;
    transition: all 0.2s;
}

.hr-menu::before {
    top: 7px;
}

.hr-menu::after {
    bottom: 7px;
}

header.open-menu .hr-menu .line {
    opacity: 0;
}

header.open-menu .hr-menu::before {
    transform: translateY(9px) rotate(-45deg);
}

header.open-menu .hr-menu::after {
    transform: translateY(-9px) rotate(45deg);
}


header.open-menu .menu-lt {
    transform: translateX(0%);
}

.menu-lt {
    list-style: none;
    padding: 68px 0px 0px 0px;
    margin: 0px;
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 180px;
    background: #424141;
    transform: translateX(-180px);
    transition: all 0.3s;
    z-index: 10
}
.menu-lt .logo a{
    display: block;
}

.menu-lt li {
    position: relative;
    transform: translateX(-100%);
    opacity: 0;
    animation: list-rank 0.5s;
    animation-fill-mode: forwards;
}

.menu-lt li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-align: right;
    color: #FFF;
    font-size: 14px;
}

header.open-menu .menu-lt~.sh-b {
    margin-right: -180px;
}

.prompt {
    transform: translateX(150%);
    position: fixed;
    background: #383838;
    color: #ffffff;
    right: 0px;
    top: 10px;
    border-radius: 5px 0 0 5px;
    transition: all 0.3s;
    box-shadow: 0 0px 13px rgb(179, 179, 179);
    z-index: 3;
    font-size: 12px;
    padding: 5px 15px;
}


.prompt-show {
    transform: translateX(0%);
}

.copy {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}




@-webkit-keyframes rotating {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

@keyframes list-rank {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0%);
        opacity: 1;
    }
}