.twt-header-mobile-box{
    display: none;
    /* 禁用选中 */
    user-select: none;          /* 标准写法 */
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE10+ */
}
.twt-header-mobile-box-active{
    display: block;
}
.twt-header-mobile-box-menu{

}
.twt-header-mobile-box-menu-ul-li{
    height: 56px;
    line-height: 56px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.1);
    cursor: pointer;
}
.twt-header-mobile-box-menu-ul-li-a{
    font-size: 15px;
    color: #222222;
    font-weight: bold;
}
.twt-header-mobile-box-menu-ul-li-language{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.twt-header-mobile-box-menu-ul-li-language-box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.twt-header-mobile-box-menu-ul-li-language-icon{
    width: 16px;
    height: 16px;
}
.twt-header-mobile-box-menu-ul-li-language-text{
    margin-left: 8px;
    font-weight: bold;
}
.twt-header-mobile-box-menu-ul-li-language-toggle{
    width: 16px;
    height: 16px;
    transform: rotateZ(-90deg);
    transition: 0.3s ease-in-out;
}
.twt-header-mobile-box-menu-ul-li-select {
    padding-left: 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}
.twt-header-mobile-box-menu-ul-li-select-li{
    border-bottom: 1px solid rgba(151, 151, 151, 0.1);
    cursor: pointer;
}
.twt-header-mobile-box-menu-ul-li-select-li-a{
    font-size: 15px;
    color: #222222;
    /* 手型光标，提示可点击 */
    cursor: pointer;
}
.twt-header-box-active{
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
}
.twt-header-mobile-box-expanded {
    max-height: 500px; /* 根据实际内容调整 */
    opacity: 1;
}
.twt-header-mobile-box-menu-ul-li-language-toggle-active{
    transform: rotateZ(90deg);
}
.clicked {
  animation: tapBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.twt-mobile-select-li-active .twt-header-mobile-box-menu-ul-li-select-li-a{
    color: #105EFF;
}
@keyframes tapBounce {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}