/* 小说阅读页特有样式 */

/* 主内容区域 - 小说特有的padding */
.main-content {
    padding: 10px;
}

/* 章节内容 - 小说特有 */
.chapter-content {
    font-size: 18px;
    line-height: 2;
    color: #000;
    text-align: justify;
    word-break: break-word;
    margin-bottom: 40px;
    user-select: text;
    cursor: default;
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-indent: 2em;
}

.chapter-content p {
    margin-bottom: 1em;
    text-indent: 2em;
}

.chapter-content h1,
.chapter-content h2,
.chapter-content h3,
.chapter-content h4,
.chapter-content h5,
.chapter-content h6 {
    margin: 1.5em 0 1em 0;
    color: #34495e;
    font-weight: bold;
}

/* 文本选择样式 */
.chapter-content::selection {
    background-color: rgba(52, 152, 219, 0.3);
    color: #000;
}

.chapter-content::-moz-selection {
    background-color: rgba(52, 152, 219, 0.3);
    color: #000;
}

/* 移动端小说内容优化 */
@media (max-width: 768px) {
    .main-content {
        padding: 15px;
    }
    
    .chapter-content {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
        max-width: 100%;
        -webkit-touch-callout: none;
        -webkit-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
        -webkit-tap-highlight-color: transparent;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 10px;
    }
    
    .chapter-content {
        font-size: 15px;
        line-height: 1.7;
        max-width: 100%;
    }
}

/* 夜间模式章节内容 */
.main-content.bg-7 .chapter-content {
    color: #fff;
} 