/* 浮窗广告的样式 */
.floating-ad {
    position: fixed; /* 固定在屏幕上 */
    bottom: 0; /* 距离底部的距离 */
    right: 0; /* 距离右边的距离 */
    width: 100px; /* 广告宽度 */
    height: 100px; /* 广告高度 */
    z-index: 999; /* 确保在其他内容上面 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 关闭按钮的样式 */
#close-button {
    margin-top: 10px;
    cursor: pointer;
    background-color: #f00; /* 关闭按钮背景颜色 */
    color: #fff; /* 关闭按钮文本颜色 */
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}