.header {
    background: #ffac00;
    text-align: right;
    box-shadow: 0px 0px 0px 8px #fff, 0px 0px 0px 16px #ffac00; 
    width: 100%;
    margin-bottom: 16px;
    position: sticky;
    top: 0;
    z-index: 6;
}
.header .maxwidth {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header img {
    width: 50px;
    border-radius: 50%;
    margin-right: 20px;
}
.header .nav {
    display: flex;
    align-items: center;
    height: 59px;
}
.header .nav > a {
    word-break: keep-all;
    transition: all 0.4s;
    cursor: pointer;
    padding: 0 1vw;
}
.header .nav > a:hover{
    background: #fff;
    padding: 16px 1vw;
    color: #fe7215;
}
.focuspage{
    background: #fff;
    color: #fe7215;
    padding: 16px 1vw !important;
}
input:focus:invalid {
    background: #ffd1d1;
    border: 1px solid rgb(250, 122, 122);
}
@keyframes pagein {
    0% {
        transform: 'translate(100vw)'
    }
    100% {
        transform: 'translate(0)'
    }
}