/* @budding */
/* --- 微信专属样式 --- */
.header-actions-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0px; /* 让两个按钮紧挨着 */
}
.header-actions-right .header-action-btn {
    position: static; /* 覆盖掉之前的 absolute */
}
.plus-menu {
    position: absolute;
    top: calc(env(safe-area-inset-top) + 60px); /* 把它放在 header 下方 */
    right: 15px;
    width: 150px;
    background-color: #4c4c4c;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 110;
    overflow: hidden;
    display: none; /* 默认藏起来 */
}
.plus-menu.active {
    display: block; /* active 的时候才显示 */
}
.plus-menu-arrow {
    position: absolute;
    top: -8px;
    right: 12px; /* 对准加号图标的位置 */
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #4c4c4c;
}
.plus-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.plus-menu li {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    font-size: 14px;
}
.plus-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.plus-menu li:active {
    background-color: #3e3e3e;
}
.plus-menu li svg {
    margin-right: 12px;
    stroke: white; /* 让图标也变成白色 */
}
