.menu {
    position: absolute;
    z-index: 9000;
}

.x {}

.logoText{
    color: var(--panel);
    font-weight: bold;
    font-size: 12px;
    position: fixed;
    width: 70px;
    height: auto;
    border-radius: 5px;
    background: white;
    top: 135px;
    left: 22px;
    padding: 5px 5px 5px 5px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}

.mX {
    left: 15px;
    position: relative;
    float: left;
    top: 10px;
    width: 40px;
    height: 28px;
    z-index: 9999;
    margin-right: 15px;
    border-right: 1px solid var(--line);
    padding-right: 15px;
    display: none;
}


.ml {
    height: 2px;
    width: calc(100% - 15px);
    background-color: white;
    margin-bottom: 10px;
    position: absolute;
}

.l1 {
    transform: rotate(0deg);
    top: 6px;
    transition: all 0.4s ease-out;
}

.l2 {
    transform: rotate(0deg);
    top: 18px;
    transition: all 0.4s ease-out;
}

.l1O {
    transform: rotate(30deg);
    top: 12px;
}

.l2O {
    transform: rotate(-30deg);
    top: 12px;
}

/*—————————————————————————————————————*/
.mMask {
    width: 450px;
    /*611*/
    height: 47px;
    overflow: hidden;
    top: 42px;
    left: 133px;
    position: fixed;
    z-index: 1000;
    border-radius: 30px;
    transition: all 0.4s ease-out;
}

.mMask:hover {
    /*width: 595px;*/
    width: 450px;
    transition: all 0.4s ease-out;
}

.mMaskOpen{
    width: 450px;
    transition: all 0.4s ease-out;
}

.m {
    width: 601px;
    height: 32px;
    border-radius: 30px;
    background: var(--panel);
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 10px 5px 5px 15px;
}

.btn {
    float: left;
    color: #989898;
    margin-left: 2px;
    margin-right: 5px;
    border-right: 1px solid var(--line);
    padding: 4px 12px 6px 5px;
    cursor: pointer;
    font-weight: 400;
}

.btn:hover {
    color: white;
}

.btnkr {
    color: var(--orange);
}

.btnt {
    color: var(--yellow);
    border-right: 0px solid var(--line);
    padding: 5px 5px 5px 5px;
}

.search input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none !important;
    box-shadow: none !important;
    background-color: none !important;
    border: none;
    color: white;
    font-size: 14px;
    width: 120px;
}

.search input:focus {
    outline: none;
}

.searchIcon {
    border-right: 0px;
    /*content: url('../icon/search.png');*/
    height: 18px;
    margin-right: -15px;
    margin-left: 70px;
}

@media screen and (max-width:800px) {
    .mMask {
        overflow:visible;
        top: 5px;
        left: 0px;
        height: 80px;
        width: 100vw;
        -webkit-transition-duration: 0s;
         -moz-transition-duration: 0s;
         -o-transition-duration: 0s;
         transition-duration: 0s;
         -webkit-transition-property: none;
         -moz-transition-property: none;
         -o-transition-property: none;
         transition-property: none;
         
    }
    .m {
        width: calc(100vw - 60px);
        height: 270px;
        border-radius: 30px;
        background: var(--panel);
        position: fixed;
        /*top: calc(100% - 485px);*/
        top:auto;
        bottom: 130px;
        left: 5px;
        padding: 10px 25px 0px 25px;
        display: none;
    }
    
    .mOpen{
        display: block;
        transition: all 0.4s ease-out;
        /*height: calc(100vh - 130px);*/
    }
    
    .mX{
        position: fixed;
        top: 40px;
        right: 0px;
        left: auto;
        border-right: 0px solid var(--line);
        display: block;
    }
    
    .ml{
        box-shadow: 0 0 10px black;
    }
    .btn{
        float: none;
        padding: 20px 0 20px 0px;
        font-size: 18px;
        border-right: 0px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
    .btnt{
        border-bottom: 0px solid var(--line);
    }
    .searchIcon {
        float: left;
        clear: both;
        border-right: 0px;
        /*content: url('../icon/search.png');*/
        height: 18px;
        margin-left: 0px;
        margin-top: 0px;
        border-bottom: 0px solid var(--line);
    }
    .search input{
        font-size: 18px;
        margin-top: 0px;
        margin-left: 20px;
    }
    .add .content{
        min-height: 100vw;
    }
}
