.comic-detail {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
}
.comic-title {
    font-size: 1.5rem;
    font-weight: bold;
}
.comic-meta {
    color: #666;
    margin-bottom: 15px;
}
.comic-description {
    margin: 15px 0;
}
.comic-buttons .btn {
    margin-right: 10px;
}

.comic-buttons .btn:nth-child(1) {
    margin-right: 10px;
    background-color: #e9a6b2;
    border: none;
    color: #fff;
}
.comic-buttons .btn:nth-child(2) {
    width: 120px;
}
.comic-buttons .btn.active {
    border: 1px solid #e9a6b2;
    color: #e9a6b2;
    background-color: #fff;
}

.chapter-list,.comment-section,.recommend-manga,.related-list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
}
.chapter-list h4 {
    margin-bottom: 20px;
}
.chapter-list .btn-group {
    margin-bottom: 20px;
}
.chapter-item {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.chapter-item.locked {
    color: #888;
}
.chapter-item.locked i {
    color: #e9a6b2;
    float: right;
    position: absolute;
    right: 10px;
}

.recommend-manga .list-group-item {
    border: none;
    padding: 10px 0;
}
.recommend-manga .list-group-item i {
    color: #888;
}

.chapter-nav{
    display: flex;
    margin: 20px 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
}
.comic-detail img{
    height: 100%;
}
.chapter-list a {
    color: #666;
}
.chapter-nav-item {
    margin-right: 20px;
    background: #f5f7f8;
    border-radius: 20px;
    cursor: pointer;
    padding: 8px 20px;
    color: rgba(0,0,0,.56);
    font-size: 13px;
    width: 134px;
    margin-bottom: 10px;
    text-align: center;
}

.chapter-nav-item.active {
    background: rgba(255, 192, 203,.16);
    color: #e9a6b2;
}

.comment {
    margin-bottom: 20px;
}
.comment .comment-author {
    font-weight: bold;
}
.comment .comment-meta {
    color: #999;
    font-size: 13px;
    float: right;
}
.comment .comment-text {
    margin: 10px 0;
}
.comment .comment-actions {
    color: #666;
    font-size: 0.9rem;
}
.comment .comment-actions i {
    margin-right: 5px;
    cursor: pointer;
    user-select: none;
}
.comment-reply {
    margin-left: 40px;
    border-left: 2px solid #ddd;
    padding-left: 10px;
    margin-top: 10px;
}
.comment-form textarea {
    resize: none;
}
.comment-avatar {
    width: 40px;
    height: 40px;
}
.comment-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px
}
.comment-content {
    flex-grow: 1;
}
.comment-input {
    width: 100%;
    position: relative;
}

.comment-input .comment-btn{
    position: absolute;
    bottom: 40px;
    width: 60px;
    right: 0;
    background: pink;
    text-align: center;
    margin-right: 20px;
    color: #fff;
    padding: 2px 5px;
    border-radius: 5px;
    cursor: pointer;
}

.comment-textarea{
    width: 100%;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid pink;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
    resize: none;
    height: 80px;
}

.reply-btn{
    border: 1px solid pink;
    background: pink;
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 20px;
    cursor: pointer;
}

.related-list-body {
    display: flex;
    justify-content: flex-start;
    flex-flow: wrap;
}
.related-list-body li{
    width: 32%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.related-item a{
    color: #999999;
    cursor: pointer;
}

.list-group-item img {
    width: 80px;
    height: 100px;
}
.list-group-item .title {
    color: #0a0a0a;
}
.list-group-item .author {
    color: #999999;
    font-size: 12px;
}

.comic-tags a {
    color: #999;
}

.comment-grade img {
    width: 30px;
}
.modal-body {
    height: 500px;
    overflow-y: scroll;
}