.hover-show-con{
    display: none;
}
.hover-show {
    position: relative;
    margin-right: 10px;
}
.hover-show-con:hover .hover-show-con, .hover-show:hover .hover-show-con{
    display: block;
}

/* ===== 顶部触发器："语言" 文字按钮样式 ===== */
.translate-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    cursor: pointer;
    color: #555;
    font-size: 14px;
    line-height: 1;
    border-radius: 4px;
    transition: background .15s, color .15s;
}
.translate-trigger:hover {
    color: #5169CC;
    background: rgba(81, 105, 204, 0.08);
}
.translate-trigger-arrow {
    transition: transform .2s;
}
.hover-show:hover .translate-trigger-arrow {
    transform: rotate(180deg);
}

/* ===== 语言下拉菜单 ===== */
.dropdown-menu {
    transition: color .2s, transform .3s;
    background-color: #fff;
    position: absolute;
    top: 28px;
    left: 0;
    padding: 12px 16px;
    min-width: 140px;        /* 自适应长语言名 */
    max-height: 320px;       /* 语言较多时出滚动条 */
    overflow-y: auto;
    z-index: 10;
    border-radius: 8px;
    box-shadow: 1px 2px 10px #cdcdcd;
}
.dropdown-menu::-webkit-scrollbar { width: 6px; }
.dropdown-menu::-webkit-scrollbar-thumb { background: #d0d0d0; border-radius: 3px; }

.btn-newadd{
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    white-space: nowrap;
    cursor: pointer;
}
.btn-newadd:hover{
    color: #5169CC;
}
.normal-banner-right .change-theme {
    width: 100px;
}
#translate{
    display: none;
}
@media screen and (max-width: 768px) {
.hover-show {
    right: 60px;
    position: absolute;
}
.normal-banner-right .change-theme {
    width: auto!important;
}
.dropdown-menu {
    left: -45px;
    max-height: 60vh;
}
}

.btn-newadd text.ignore {
  margin-top: -1px;
}

.btn-newadd icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}