/* 布局容器 */
.vp-wrapper {
    position: relative;
    margin: 20px 0;
    z-index: 1;
}

/* 支付面板容器 */
.vp-container {
    margin: 0 auto;
    max-width: 1080px;
    width: 100%;
}

/* 支付面板主体 */
.vp-payment-panel {
    background-color: #f1f3f6;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e1e1;
    margin: 0 auto;
}

/* 价格信息组 */
.vp-price-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* 价格突出显示 */
.vp-price-vip,
.vp-price-lifetime {
    font-weight: 700;
    color: #f44336;
    white-space: nowrap;
}

/* 按钮容器 */
.vp-button-wrapper {
    margin: 15px 0;
    text-align: center;
}

/* 支付按钮 */
.vp-action-button {
    background-color: #4caf50;
    color: white !important;
    border: none;
    border-radius: 25px;
    padding: 12px 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: filter 0.2s;
}

.vp-action-button:hover {
    filter: brightness(0.9);
}

/* 提示信息 */
.vp-notice {
    font-size: 14px;
    color: #777;
    text-align: center;
    padding: 8px 10px;
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 4px;
    margin-top: 5px;
}

/* 弹窗样式 - 修改部分 */
.vp-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

.vp-modal-content {
    background-color: #fefefe;
    margin: 20vh auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 300px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.vp-close-btn {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.vp-close-btn:hover {
    color: #777;
}

.vp-tip-text {
    margin: 15px 0;
    font-size: 18px;
    clear: both;
}

.vp-qr-code {
    margin: 20px auto;
}

/* 桌面端适配 */
@media (min-width: 768px) {
    .vp-payment-panel {
        padding: 30px 40px;
    }
    
    .vp-price-group {
        font-size: 18px;
        gap: 40px;
        flex-wrap: nowrap;
    }
}

/* 暗色模式适配 */
.dark .vp-payment-panel {
    background-color: hsl(210, 15%, 20%);
    border-color: hsl(0, 0%, 25%);
}

.dark .vp-notice {
    background-color: hsla(0, 0%, 100%, 0.1);
    color: hsl(0, 0%, 70%);
}

.dark .vp-modal-content {
    background-color: hsl(210, 15%, 15%);
    color: #fff;
}

.dark .vp-close-btn {
    color: hsl(0, 0%, 70%);
}

.dark .vp-close-btn:hover {
    color: hsl(0, 0%, 90%);
}

/* 文章样式 */
.article {
    box-shadow: none !important;
}
