body {
    max-width: 375px;
    margin: 0 auto;
    overflow-x: hidden;
}



/* 仿写导航标签样式 */
.bm-tabs {
    display: flex;
    justify-content: space-around;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.bm-tabs .item {
    flex: 1;
    text-align: center;
}

.bm-tabs .item a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
}

.bm-tabs .item a.active {
    background-color: #007bff;
    color: #fff;
}

/* 仿写内容页样式 */
.ac-box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 20px 0;
}

.ac-box .article {
    margin-bottom: 20px;
}

.ac-box .article .head {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.ac-box .article .body {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.ac-box .bar {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}

.ac-box .bar .col {
    flex: 1;
    text-align: center;
}

/* 仿写目录样式 */
.chapter-list-box {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 20px 0;
}

.chapter-list-head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.chapter-list-head .chapter-list-status {
    color: #007bff;
}

.chapter-list-head .chapter-list-update {
    color: #666;
}

.chapter-list-box .item {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.chapter-list-box .item:hover {
    background-color: #f1f1f1;
}

.chapter-list-box .item a {
    text-decoration: none;
    color: #007bff;
}

.chapter-list-action {
    text-align: center;
    margin-top: 20px;
}

.chapter-list-action .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

/* 仿写评论样式 */
.bm-box {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 20px 0;
}

.bm-box .head {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.bm-box .head .title {
    color: #007bff;
}

.bm-box .head .pull-right a {
    text-decoration: none;
    color: #007bff;
}

.books-row {
    margin-top: 20px;
}

.books-row .bm-box {
    padding: 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.books-row .bm-box h3 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.books-row .bm-box h3 img {
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 10px;
}

.books-row .bm-box span {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.books-row .bm-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 增加基本信息样式 */
.basic-info {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 20px 0;
}

.basic-info .title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.basic-info .details {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.basic-info .stats {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    .Lm.book-bar {
        max-width: 100%;
        padding: 10px;
    }
    .chapter {
        font-size: 16px;
        font-weight: bold;
    }
    .btn {
        font-size: 16px;
        font-weight: bold;
    }
}


