/* 弹窗容器 */
.popup-container {
    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 {
    background-color: white;
    border-radius: 12px;
    width: 80%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* 弹窗头部 */
.popup-header {
    position: relative;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
}

.popup-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}



/* 弹窗内容 */
.popup-content {
    padding: 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.popup-content p {
    margin: 10px 0;
}

/* 弹窗底部 */
.popup-footer {
    padding: 0 25px 8px;
}

/* 按钮名称 */
.studio-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #ff512f, #f09819);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.studio-btn:hover {
    opacity: 0.9;
}

/* 关闭提示文字 */
.close-tip {
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-bottom: 0;
}