.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    width: 550px; /* 设置弹窗宽度 */
    max-width: 90%; /* 确保在小屏幕上不会超出屏幕宽度 */
    height: 400px; /* 设置弹窗高度 */
    min-height: 200px; /* 最小高度 */
    overflow-y: auto; /* 如果内容超出高度，显示滚动条 */
    text-align: center;
}

.popup.show {
    display: flex;
}

.popup.show .popup-content {
    transform: translateY(0); /* 滑动到中心 */
    opacity: 1; /* 淡入效果 */
}