/* 页面整体 */
body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* 容器 */
.container {
    width: 960px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

/* 页面标题 */
.page-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

/* 小说列表卡片布局 */
.novel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.novel-card {
    flex: 1 1 45%;
    background-color: #fafafa;
    padding: 15px 20px;
    border-radius: 6px;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
}

.novel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* 小说标题 */
.novel-title {
    font-size: 1.1em;
    margin: 0 0 10px;
    color: #007acc;
}

.novel-title a {
    text-decoration: none;
    color: inherit;
}

.novel-title a:hover {
    text-decoration: underline;
}

/* 作者 */
.novel-author {
    font-size: 0.9em;
    color: #666;
}

/* 付费 */
/* 按钮默认样式 */
.pay-btn {
    display: block;
    margin: 20px auto;
    width: 80%;
    max-width: 300px;
    padding: 16px 28px !important;
    font-size: 1.4em !important;
    background-color: #ff6600 !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
}

/* 悬停效果 */
.pay-btn:hover {
    background-color: #e55a00 !important;
}

/* 手机端加强 */
@media screen and (max-width: 600px) {
    .pay-btn {
        padding: 36px 64px !important;
        font-size: 3em !important;
        min-width: 90% !important;
    }
}