/* 访问拒绝弹窗样式 */
.wpcp-access-denied {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.wpcp-access-denied .wpcp-title {
    font-size: 24px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.wpcp-access-denied .wpcp-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.wpcp-access-denied .wpcp-button {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.wpcp-access-denied .wpcp-button:hover {
    background: #2980b9;
    color: #fff;
    text-decoration: none;
}

.wpcp-access-denied .wpcp-button-pay {
    background: #e74c3c;
}

.wpcp-access-denied .wpcp-button-pay:hover {
    background: #c0392b;
}

/* 后台帮助页面样式 */
.wpcp-help-page {
    max-width: 1200px;
    margin: 20px 0;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wpcp-help-page h1, .wpcp-help-page h2, .wpcp-help-page h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.wpcp-help-page p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.wpcp-help-page .wpcp-help-section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.wpcp-help-page ul {
    color: #4a5568;
    margin-left: 20px;
    margin-bottom: 15px;
}

.wpcp-help-page .wpcp-notice {
    padding: 15px;
    background: #fef7fb;
    border-left: 4px solid #9c27b0;
    margin-bottom: 20px;
}