.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;
}
.dropdown-menu {
    transition:color .2s,transform .3s;
    background-color: #fff;
    position: absolute;
    top: 18px;
    left: 0;
    padding: 16px;
    width: 130px;
    z-index: 10;
    border-radius: 8px;
    box-shadow: 1px 2px 10px #cdcdcd;
}

.btn-newadd{
    display: flex; /* 使用flex布局 */
    align-items: center; /* 垂直居中对齐 */
    gap: 6px; /* 图标和文字之间的间距 */
    padding: 5px 0; /* 上下各增加8px间距，可根据需要调整数值 */
}
.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;
}
}
/* 微调文字位置（如果需要进一步上移） */
.btn-newadd text.ignore {
  margin-top: -1px; /* 负值表示上移，可根据实际情况调整 */
}

/* 确保图标不占据额外空间影响对齐 */
.btn-newadd icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

