.novel-main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.novel-intro {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.novel-intro img {
    width: 300px;
    height: 400px;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    color: #8B0000;
    margin-bottom: 20px;
}

.intro-text p {
    line-height: 1.8;
    text-indent: 2em;
}

.chapter-list {
    margin-top: 40px;
}

/* 主容器 */
.quotes-main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* 页面横幅 */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.8;
}

/* 语录网格 */
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* 语录卡片 */
.quote-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* 语录图片 */
.quote-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.quote-card:hover .quote-image img {
    transform: scale(1.1);
}

/* 语录内容 */
.quote-content {
    padding: 20px;
    background: rgba(255,255,255,0.9);
    text-align: center;
}

.quote-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.6;
}

.quote-source {
    color: #666;
    font-style: italic;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .quotes-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner {
        padding: 40px 20px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
} 