/* 弹窗容器样式 */
.top-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 600px;
    padding: 15px 15px;
    background-color: #ffcccc;
    color: #333;
    border: 1px solid #ff6666;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 30000;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, sans-serif;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin-top: 2%;
    border-radius: 25px;
}

/* 关闭按钮样式 */
.popup-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px;
    display: flex;
    align-items: center;
}

/* 默认 SVG 图标样式 */
.popup-close-icon {
    width: 15px;
    height: auto;
    color: #ff4444;
    transition: color 0.3s ease;
}

/* 鼠标悬停时改变颜色 */
.popup-close-btn:hover .close-icon {
    color: #cc0000;
}