/* DIYCSS
   ========================================================================== */
/**
 * 1. 如果要修改css ，建议在这个文件修改覆盖即可，更新的时候，注意备份此文件即可
 * 2. 如果要修改css ，建议在这个文件修改覆盖即可，更新的时候，注意备份此文件即可
 *    如果要修改css ，建议在这个文件修改覆盖即可，更新的时候，注意备份此文件即可
 */
.padding_pager {
	display: grid;
}
.ey_pager {
	width: 100%;
	display: inline-table;
	margin: 20px 0;
	text-align: center;
}
.ey_pager * {
	display: inline-table;
}
.ey_pager a, .ey_pager .PreSpan, .ey_pager .NextSpan {
	padding: 5px 12px;
	border: 1px solid #e4eaec;
	background: #fff;
}
.ey_pager a {
	color: #76838f;
	text-decoration: none;
}
.ey_pager a:active, .ey_pager a:focus, .ey_pager a:hover {
	text-decoration: none;
}
.ey_pager a:hover {
	background: #f5f5f5;
}
.ey_pager a.NextA {
	border-right: 1px solid #e4eaec;
}
.ey_pager a.Ahover {
	border-color: #ff6f06;
	background: #ff6f06;
	color: #fff;
}
.ey_pager .PreSpan, .ey_pager .NextSpan {
	color: #ccd5db;
	cursor: not-allowed;
}
.ey_pager input, .ey_pager .PageText {
	display: none;
}
 @media (max-width: 767px) {
.ey_pager a, .ey_pager .PreSpan, .ey_pager .NextSpan {
	padding: 3px 9px;
}
.ey_pager .pageinfo {
	display: block;
	margin-top: 5px;
}
}

/* ========================================================================== */
/* 支付下载卡片样式 - 白色灰色主题 */
/* ========================================================================== */

/* 主卡片容器 */
.premium-download-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 20px 16px;
    color: #555;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    margin-bottom: 20px;
    max-width: 100%;
    transition: all 0.3s ease;
}

.premium-download-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-color: #34495e;
}

/* 卡片头部 */
.card-header {
    text-align: center;
    margin-bottom: 18px;
    border-bottom: 1px solid #f6f6f6;
    padding-bottom: 15px;
}

.lock-icon {
    width: 45px;
    height: 45px;
    background: #f6f6f6;
    border: 2px solid #e6e6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.lock-icon i {
    font-size: 18px;
    color: #34495e;
}

.premium-download-card:hover .lock-icon {
    background: #34495e;
    border-color: #34495e;
}

.premium-download-card:hover .lock-icon i {
    color: #fff;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #34495e;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 12px;
    color: #aaa;
    margin: 0;
    line-height: 1.3;
}

/* 价格区域 */
.pricing-section {
    margin-bottom: 18px;
}

.main-price {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.currency {
    font-size: 16px;
    vertical-align: top;
    margin-right: 3px;
    color: #34495e;
}

.amount {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: #34495e;
}

.period {
    font-size: 11px;
    color: #aaa;
    margin-left: 6px;
    display: block;
    margin-top: 2px;
}

/* VIP特权区域 */
.vip-benefits {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px 12px;
}

.benefit-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 13px;
    color: #34495e;
}

.benefit-header i {
    margin-right: 6px;
    color: #ff9800;
    font-size: 12px;
}

.benefit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin-bottom: 6px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.benefit-item:hover {
    background: #f6f6f6;
    border-color: #34495e;
    transform: translateX(3px);
}

.benefit-item.vip {
    border-color: #ff9800;
    background: #fff8e1;
}

.benefit-item.premium {
    border-color: #4caf50;
    background: #f1f8e9;
}

.user-type {
    font-weight: 500;
    flex: 1;
    color: #555;
}

.price {
    font-weight: 700;
    white-space: nowrap;
    color: #34495e;
}

.price.free {
    color: #4caf50;
}

.discount {
    background: #ff9800;
    color: white;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 6px;
    white-space: nowrap;
}

/* 操作区域 */
.action-section {
    margin-bottom: 18px;
}

.purchase-btn {
    width: 100%;
    background: #34495e;
    border: 1px solid #34495e;
    border-radius: 6px;
    padding: 12px 20px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.purchase-btn:hover {
    background: #2c3e50;
    border-color: #2c3e50;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52,73,94,0.3);
}

.purchase-btn:active {
    transform: translateY(0);
}

.purchase-btn i {
    font-size: 13px;
}

.upgrade-link {
    text-align: center;
}

.upgrade-link a {
    color: #aaa;
    text-decoration: none;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.upgrade-link a:hover {
    color: #34495e;
    text-decoration: underline;
}

.upgrade-link a i {
    font-size: 10px;
}

/* 资源信息区域 */
.resource-info {
    border-top: 1px solid #e6e6e6;
    padding-top: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 11px;
    color: #aaa;
    line-height: 1.3;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    margin-right: 8px;
    width: 12px;
    text-align: center;
    font-size: 10px;
    flex-shrink: 0;
    color: #34495e;
}

/* 支付弹窗样式 - 使用更具体的选择器避免冲突 */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.payment-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
}

.payment-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: paymentModalSlideIn 0.3s ease-out;
}

@keyframes paymentModalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.payment-modal .payment-select {
    width: 400px;
    max-width: 90vw;
}

.payment-modal .payment-detail {
    width: 450px;
    max-width: 90vw;
}

.payment-modal .modal-header {
    background: #34495e;
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
}

.payment-modal .modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white !important;
}

.payment-modal .close-btn {
    background: none;
    border: none;
    color: white !important;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.payment-modal .close-btn:hover {
    background: rgba(255,255,255,0.2);
    color: white !important;
}

.payment-modal .modal-body {
    padding: 25px;
}

/* 支付方式选择样式 */
.payment-modal .payment-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    background: #fff;
}

.payment-modal .payment-method:hover {
    border-color: #34495e;
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52,73,94,0.1);
}

.payment-modal .method-icon {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.payment-modal .method-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.payment-modal .method-info {
    flex: 1;
}

.payment-modal .method-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #34495e;
}

.payment-modal .method-info p {
    margin: 0;
    font-size: 13px;
    color: #aaa;
}

.payment-modal .method-arrow {
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
}

.payment-modal .payment-method:hover .method-arrow {
    color: #34495e;
    transform: translateX(3px);
}

/* 支付详情样式 */
.payment-modal .payment-info {
    text-align: center;
}

/* 会员信息区域 */
.payment-modal .membership-info {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-radius: 6px;
    color: white;
}

.payment-modal .membership-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.payment-modal .membership-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* 特权列表 */
.payment-modal .benefits-list {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    text-align: left;
}

.payment-modal .benefit-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.payment-modal .benefit-row:last-child {
    margin-bottom: 0;
}

.payment-modal .benefit-row i {
    width: 20px;
    margin-right: 12px;
    color: #34495e;
    font-size: 14px;
    text-align: center;
}

.payment-modal .benefit-row .fas.fa-gem {
    color: #ff9800;
}

.payment-modal .benefit-row .fas.fa-download {
    color: #4caf50;
}

.payment-modal .benefit-row .fas.fa-headset {
    color: #2196f3;
}

.payment-modal .benefit-row .fas.fa-heart {
    color: #e91e63;
}

.payment-modal .qr-section {
    margin-bottom: 25px;
}

.payment-modal .qr-code {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-modal .qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-modal .scan-tip {
    font-size: 13px;
    color: #aaa;
}

.payment-modal .address-section {
    margin-bottom: 20px;
}

.payment-modal .address-label {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
}

.payment-modal .address-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    gap: 10px;
}

.payment-modal .address-text {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #555;
    word-break: break-all;
    line-height: 1.4;
}

.payment-modal .copy-btn {
    background: #34495e;
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.payment-modal .copy-btn:hover {
    background: #2c3e50;
    transform: scale(1.05);
}

.payment-modal .warning-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 15px;
}

.payment-modal .warning-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #856404;
}

.payment-modal .warning-item:last-child {
    margin-bottom: 0;
}

.payment-modal .warning-item i {
    margin-right: 8px;
    color: #f39c12;
    font-size: 12px;
}

/* 支付状态提示 */
.payment-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(52,73,94,0.95);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    z-index: 10001;
    display: none;
    backdrop-filter: blur(5px);
    border: 1px solid #34495e;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 响应式设计 */
@media (max-width: 400px) {
    .premium-download-card {
        padding: 15px 12px;
        border-radius: 6px;
    }

    .lock-icon {
        width: 35px;
        height: 35px;
    }

    .lock-icon i {
        font-size: 14px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-subtitle {
        font-size: 11px;
    }

    .amount {
        font-size: 28px;
    }

    .currency {
        font-size: 14px;
    }

    .period {
        font-size: 10px;
    }

    .vip-benefits {
        padding: 12px 8px;
    }

    .benefit-header {
        font-size: 12px;
    }

    .benefit-item {
        padding: 6px 8px;
        font-size: 11px;
    }

    .purchase-btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .purchase-btn span {
        white-space: nowrap;
    }

    .upgrade-link a {
        font-size: 10px;
    }

    .info-item {
        font-size: 10px;
    }

    .info-item i {
        font-size: 9px;
        width: 10px;
        margin-right: 6px;
    }
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .payment-modal .modal-content {
        margin: 15px;
        width: calc(100% - 30px) !important;
        max-width: none !important;
    }

    .payment-modal .modal-body {
        padding: 20px;
    }

    .payment-modal .qr-code {
        width: 150px;
        height: 150px;
    }

    .payment-modal .modal-header {
        padding: 15px 20px;
    }

    .payment-modal .modal-header h3 {
        font-size: 16px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 350px) {
    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 8px;
    }

    .user-type {
        font-size: 11px;
    }

    .price {
        font-size: 11px;
        align-self: flex-end;
    }

    .discount {
        align-self: flex-end;
        margin-left: 0;
        margin-top: 2px;
    }

    .payment-modal .modal-content {
        margin: 10px;
        width: calc(100% - 20px) !important;
    }

    .payment-modal .modal-body {
        padding: 15px;
    }

    .payment-modal .qr-code {
        width: 120px;
        height: 120px;
    }
}

/* ========================================================================== */
/* 文章内容区域VIP提示美化样式 */
/* ========================================================================== */

.content-hide-tips {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px 25px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.content-hide-tips::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #34495e 0%, #2c3e50 50%, #34495e 100%);
}

/* VIP锁定头部 */
.vip-lock-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    gap: 15px;
}

.vip-lock-header .fa-lock {
    font-size: 24px;
    color: #34495e;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-lock-header .rate {
    background: linear-gradient(45deg, #ff9800, #f57c00);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 12px rgba(255,152,0,0.3);
}

/* 会员信息区域 */
.vip-membership-info {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.vip-membership-info .membership-title {
    font-size: 18px;
    font-weight: 700;
    color: #34495e;
    margin-bottom: 8px;
    line-height: 1.4;
}

.vip-membership-info .highlight {
    color: #e74c3c;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.vip-membership-info .membership-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
}

/* VIP特权网格 */
.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.vip-benefit-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #555;
}

.vip-benefit-item:hover {
    background: #fff;
    border-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,73,94,0.1);
}

.vip-benefit-item i {
    width: 20px;
    margin-right: 12px;
    font-size: 16px;
    text-align: center;
}

.vip-benefit-item .fas.fa-gem {
    color: #ff9800;
}

.vip-benefit-item .fas.fa-download {
    color: #4caf50;
}

.vip-benefit-item .fas.fa-headset {
    color: #2196f3;
}

.vip-benefit-item .fas.fa-heart {
    color: #e91e63;
}

/* 购买按钮美化 */
.vip-purchase-btn {
    background: linear-gradient(45deg, #34495e, #2c3e50) !important;
    border: none !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    color: white !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(52,73,94,0.3) !important;
}

.vip-purchase-btn:hover {
    background: linear-gradient(45deg, #2c3e50, #1a252f) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(52,73,94,0.4) !important;
    color: white !important;
}

.vip-purchase-btn i {
    font-size: 16px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-hide-tips {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .vip-lock-header {
        flex-direction: column;
        gap: 10px;
    }

    .vip-lock-header .fa-lock {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .vip-membership-info .membership-title {
        font-size: 16px;
    }

    .vip-membership-info .membership-subtitle {
        font-size: 14px;
    }

    .vip-benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }

    .vip-benefit-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .vip-purchase-btn {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .content-hide-tips {
        padding: 20px 15px;
    }

    .vip-benefits-grid {
        padding: 12px;
    }

    .vip-benefit-item {
        padding: 8px 10px;
        font-size: 12px;
    }

    .vip-benefit-item i {
        width: 16px;
        margin-right: 8px;
        font-size: 14px;
    }
}