body {
    font-family: -apple-system, system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.content {
    margin: 10px;
}

.pay-info {
    background-color: #f9f9f9;
    padding: 15px;
    border-left: 5px solid #007bff;
    margin-bottom: 20px;
}

.pay-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

/* 付费信息区块 */
.paywall {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
}

/* 渐变模糊效果 */
.paywall::after {
    /* content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px; */
    /* background: linear-gradient(transparent, #f8f9fa 70%); */
}

/* 付费按钮 */
.unlock-btn {
    display: block;
    width: 200px;
    margin: 2rem auto 0;
    padding: 12px;
    background: #007bff;
    color: white;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,123,255,0.2);
    transition: transform 0.2s;
}

.unlock-btn:hover {
    transform: translateY(-2px);
}

/* 段落样式 */
p {
    margin: 1.2rem 0;
    font-size: 16px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 24px;
}

.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}