.hidden {
    display: none;
}

#floatingBox {
    position: fixed;
    bottom: 10%;  /* 定位到底部 */
    left: 0;    /* 从左侧开始 */
    width: 100%;  /* 宽度调整为屏幕宽度的100% */
    max-height: 25%;  /* 最大高度为视图高度的25% */
    background-color: rgba(255, 222, 222, 0.8);  /* 半透明背景 */
    color: white;
    padding: 20px;
    overflow-y: auto;  /* 允许内容区垂直滚动 */
    box-sizing: border-box;
    text-align: center;
    z-index: 1000;  /* 确保在最顶层 */
}


#floatingBox button {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#floatingBox button:hover {
    background-color: #d32f2f;
}
