/* 弹窗样式 */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    height: 350px; /* 增加高度 */
    width: 500px; /* 增加宽度 */
    position: relative;
}

.popup-content h4 {
    margin-bottom: 20px;
    font-weight: bold;
    margin-top: 20px;
    font-size: 20px;
}

.popup-content .account-list {
    margin-bottom: 20px;
}

.popup-content .account-item {
    color: red;
    margin: 5px 0;
}

.popup-content button {
    padding: 5px 40px;
    background-color: #4686d5;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.popup-content button:hover {
    background-color: #3a74c2;
}