.qs-key-board-bg {
    position: fixed;
    pointer-events: painted;
    width: 100%;
    left: 0;
    bottom:-100%;
    opacity: 0;
    height: 2.16rem;
    transition: top .3s ease;
    -webkit-transition: bottom .1s ease;
    z-index: 999;
    -moz-user-select: none;
    -ms-touch-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

.qs-key-board {
    background-color: white;
    position: absolute;
    /* bottom: 0; */
    left: 0;
    width: 100%;
    height: 2.16rem;
}

.qs-keyBoard-dialog {
    padding: 5px 10px;
    background-color: white;
    box-shadow: inset 0px 5px 0.15rem #efefef;
    display: none;
}


.qs-keyBoard-dialog > div {
    display: flex;
    height: 0.3rem;
}

.qs-keyBoard-dialog > div > button {
    width: 6em;
}

.qs-keyBoard-dialog > span {
    font-size: 14px;
    display: block;
    padding: 2px;
    color: #999999;
    white-space: nowrap;
    text-overflow:ellipsis;
    overflow:hidden;
}

.qs-key-board > table {
    width: 100%;
    height: 100%;
    background-color: #d1d3da;
    border-spacing: 0.06rem;
    border-collapse: separate;
}

.qs-key-board tr{
    height: 0.35rem;
}

.qs-key-board td {
    width: 33.3%;
    border: solid 1px #dedede;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    font-size: 0.2rem;
    text-align: center;
    vertical-align: middle;
    background-color: white;
}
.qs-key-board td.key_clear {
    background: transparent;
    border: none;
    font-size: 0.25rem;
}
.qs-key-board td.key_X {
    background-color: transparent;
    border: none;
}
.qs-key-board td.key_none {
    opacity: 0;
}
.qs-key-board td:active{
    background-color: #dedede;
}

.qs-keyboard-up {
    bottom: 0;
    opacity: 1;
}

.qs-inset-input {
    position: relative;
    display: inline-block;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    margin-right: 10px;
    border: none;
    font-size: 18px !important;
    width: 100%;
    height: 30px !important;
    line-height: 30px;
    background-color: rgb(238,238,238) !important;
}

.qs-keyboard-switch {
    position: absolute;
    overflow: hidden;
    pointer-events: painted;
    right: -120px;
    z-index: 1000;
    margin-bottom: -7px;
    transition: right 300ms ease;
    -webkit-transition: right 300ms ease;
}

.qs-keyboard-switch:before{
    position: absolute;
    z-index: 1;
    right: 25px;
    top:12px;
    font-size: 20px;
    color: white;
    line-height: 20px;
    width: 20px;
    height: 20px;
}

.qs-keyboard-switch-show {
    right: 0px;
}

.qs-input-dialog {
    width: 100%;
    z-index: 999;
    position: absolute;
    bottom: 0;
    margin-bottom: -61px;
    transition: margin-bottom 300ms ease;
}

.qs-input-dialog-show {
    margin-bottom: 0px;
}