.keyboard_mask{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index:999;
  }
  .keyboard_mask .content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
  }
  .u-tooltip {
    display: flex;
    justify-content: space-between;
  }
  
  .u-tooltip-item {
    color: #333333;
    text-align: center;
    padding: 6px 6px;
    font-size: 18px;
  }
  .u-tooltip-tips input{
      border: none;
      height: 30px;
      margin: 0;
  }
  .u-tooltips-submit {
    text-align: right;
    /* flex-grow: 1; */
    flex-wrap: 0;
    padding-right: 30px;
    color: #2979ff;
    cursor: pointer;
  }
  
  .u-tooltip-cancel {
    text-align: left;
    /* flex-grow: 1; */
    flex-wrap: 0;
    padding-left: 30px;
    color: #888888;
    cursor: pointer;
  }
  
  .u-tooltips-submit-hover {
    color: #19be6b;
  }
  
  .u-tooltip-cancel-hover {
    color: #333333;
  }
  
  
  .u-keyboard-grids {
    background: #e0e4e6;
    padding: 10px 0;
    position: relative;
  }
  
  .u-keyboard-grids-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .u-keyboard-grids-btn {
    text-decoration: none;
    width: 30px;
    flex: 0 0 30px;
    height: 40px;
    display: inline-flex;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    background-color: #fff;
    margin: 4px 2px;
    border-radius: 5px;
    box-shadow: 0 1px 0px #888992;
    font-weight: 500;
    justify-content: center;
    cursor: pointer;
  }
  .u-keyboard-grids .abcl{
    margin-right:40px;
  }
  .u-keyboard-grids .abcr{
    margin-left:40px;
  }
  .u-hover-class{
    background-color: rgb(226, 230, 238);
  }
  
  .u-keyboard-back {
    font-size: 18px;
    width: 60px;
    height: 40px;
    background-color: rgb(185, 188, 195);
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    box-shadow: 0 1px 0px #888992;
    margin-left: 6px;
    cursor: pointer;
  }
  
  .u-keyboard-change {
    font-size: 18px;
    box-shadow: 0 1px 0px #888992;
    width: 60px;
    line-height: 1;
    height: 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center;
    margin-right: 6px;
    cursor: pointer;
  }
  
  .u-keyboard-change .inactive.zh {
    transform: scale(0.85);
  }
  
  .u-keyboard-change .inactive.en {
    transform: scale(0.85);
  }
  
  .u-keyboard-change .active {
    color: rgb(237, 112, 64);
    font-size: 20px;
  }
  
  .u-keyboard-change .zh {
    transform: translateY(-2px);
  }
  
  .u-keyboard-change .en {
    transform: translateY(2px);
  }
  .u-carinput-hover {
    background-color: rgb(185, 188, 195) !important;
  }
  .myHello-enter-active {
    animation: showHello 0.1s linear;
  }
  .myHello-leave-active {
    animation: showHello 0.1s linear reverse;
  }
  @keyframes showHello {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }