.album_status.drop {
    color: #ff7675;
}

.album_status.doing {
    color: #55efc4;
}

.album_status.done {
    color: #74b9ff;
}

.chapter_icon {
    position: absolute;
    right: 32px;
    top: 0px;
}

.chapter_icon svg {
    color: var(--highlight-text-color);
    font-size: 18px;
    cursor: pointer;
    display: none;
}

ul.list_grid.grid {}

ul.list_grid.list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

ul.list_grid.slider li {
    padding-bottom: 0;
}

ul.list_grid.slider li .book_continue {
    display: none;
}

ul.list_grid li {
    position: relative;
    padding-bottom: 30px
}

ul.list_grid li .book_file {
    height: 18px;
    position: absolute;
    left: 10px;
    top: 10px;
    box-shadow: 0px 0px 5px 1px black;
    display: none;
    background-color: #00000078;
}

ul.list_grid li .book_file img {
    height: 100%;
    filter: invert(1);
}

ul.list_grid.list li .book_file {
    display: block;
}

ul.list_grid.list li {
    width: 100%;
    float: none;
    margin: 0;
    display: flex;
    gap: 0;
    background-color: var(--purple-color-4);
    border-radius: 3px;
    box-sizing: border-box;
    padding: 0;
}

ul.list_grid.list li .book_continue {
    display: none
}

ul.list_grid.list li .text_continue {
    display: block;
    font-size: 13px;
    color: var(--highlight-text-color)
}

ul.list_grid.list li .book_detail {
    display: none
}

ul.list_grid.list li .book_avatar .book_text {
    display: none !important;
}

ul.list_grid.list li .text_detail {
    display: block;
    top: auto;
    right: 0;
    font-size: 13px;
    color: var(--highlight-text-color);
    font-weight: 400;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between
}

ul.list_grid.list li .book_avatar {
    width: 86px;
    border-radius: 3px 0 0 3px;
    aspect-ratio: 8 / 10;
}

ul.list_grid.list li .book_avatar .avatar {
    width: 100%;
    height: auto;
    transform: translate(0, -50%);
    top: 50%;
    position: absolute;
}

ul.list_grid.list li .book_info {
    float: left;
    position: relative;
    flex: 1;
    padding-bottom: 0px;
    padding: 7px 10px;
}

ul.list_grid li .book_info .last_chapter .text_warning {
    color: var(--highlight-text-color);
    display: none
}

ul.list_grid.list li .book_info .last_chapter .text_warning {
    display: inline
}

ul.list_grid.list li .book_info .book_name {
    text-align: left;
    font-size: 15px;
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 14px;
    margin-top: 2px;
}

ul.list_grid.list li .book_info .book_name a {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

ul.list_grid.list li .book_info .last_chapter {
    width: calc(100% - 20px);
    color: inherit;
    bottom: 10px;
}

ul.list_grid.slider li .book_info .last_chapter {
    display: none;
}

ul.list_grid.slider li .book_info .book_name {
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

ul.list_grid.slider {
    height: auto;
    max-width: 100vw;
}

ul.list_grid.normal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 15px 0;
}

ul.list_grid li .book_avatar {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

ul.list_grid li .book_avatar .book_tags {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    gap: 5px;
}

ul.list_grid li .book_avatar .book_tags img {
    min-height: auto;
    width: auto;
    min-width: auto;
    height: 17px;
}

ul.list_grid.list li .book_avatar .book_tags {
    display: none
}

ul.list_grid.list li .text_detail span {}

ul.list_grid.list li svg {
    color: var(--purple-color)
}

ul.list_grid li .book_avatar .avatar {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.5;
}

ul.list_grid li .book_info {}

ul.list_grid li .book_text {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000c7;
    z-index: 1;
    width: 100%;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    line-height: 23px;
    display: none;
    color: var(--highlight-text-color);
    font-weight: 500;
    cursor: pointer;
}

ul.list_grid li .book_text .text_div {
    -webkit-line-clamp: 11;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

ul.list_grid li:hover .book_text {
    display: block;
}

ul.list_grid li .text_continue {
    display: none
}

ul.list_grid li .book_continue {
    position: absolute;
    bottom: 40px;
    color: #fff;
    padding: 0 10px;
    line-height: 30px;
    z-index: 1;
    right: 0;
    text-align: center;
    cursor: pointer;
    background-color: var(--purple-color);
    border-radius: 5px 0 0 5px
}

ul.list_grid li .text_detail {
    position: absolute;
    right: 0;
    top: 45px;
    display: none
}

ul.list_grid li .text_detail .text_statics {
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.list_grid li .text_detail .text_statics img {
    height: 14px;
    filter: invert(1);
}

ul.list_grid li .text_detail .text_statics span {}

ul.list_grid li .book_detail {
    position: absolute;
    width: calc(100% - 20px);
    bottom: 0;
    color: var(--highlight-text-color);
    padding: 0 10px;
    line-height: 30px;
    z-index: 1
}

ul.list_grid li .book_detail::after {
    content: '';
    background-color: #2931589e;
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: .9
}

ul.list_grid li .book_detail span {
    margin-right: 10px
}

ul.list_grid li .book_info .book_name {
    text-align: left;
    line-height: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 7px;
    max-width: 100%;
    overflow: hidden;
    text-transform: capitalize;
    color: var(--highlight-text-color)
}

ul.list_grid li .book_info .book_name p {}

ul.list_grid li .book_info .book_name img {
    display: none;
}

ul.list_grid.list li .book_info .book_name img {
    height: 18px;
    display: block;
}

ul.list_grid .book_info .book_name p a:hover {
    color: var(--purple-color)
}

ul.list_grid .book_info .last_chapter {
    font-size: 13px;
    color: var(--highlight-text-color);
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%
}

ul.list_grid .book_info .last_chapter p {
    float: left;
    text-transform: capitalize
}

ul.list_grid .book_info .last_chapter p:last-child {
    float: right;
    text-transform: inherit;
    color: var(--main-text-color);
    opacity: .7
}
ul.list_grid .book_info .last_chapter p.score{
    font-size: 16px;
    font-weight: 500;
    color: var(--highlight-text-color) !important;
    opacity:1;
}

ul.album_list {
    display: inline-flex;
    gap: 15px;
    max-width: 1835px;
    transition: .3s;
    height: 100%;
    margin-left: -10px;
    margin-top: 20px
}

ul.album_list li {
    width: 170px
}

ul.album_list li .book_avatar {
    height: 220px;
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
    position: relative
}

ul.album_list li .book_avatar .book_tags {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    gap: 5px;
}

ul.album_list li .book_avatar .book_tags img {
    min-height: auto;
    width: auto;
    min-width: auto;
    height: 17px;
}

ul.album_list.list li .book_avatar .hot_tags {
    display: none
}

ul.album_list.list li .text_detail span {}

ul.album_list.list li svg {
    color: var(--purple-color)
}

ul.album_list li .book_avatar .avatar {
    min-height: 100%;
    width: 100%;
    min-width: 100%;
    height: auto
}

ul.album_list li .book_info {}

ul.album_list li .book_file {
    display: none;
}

ul.album_list li .text_continue {
    display: none
}

ul.album_list li .book_continue {
    position: absolute;
    bottom: 40px;
    color: #fff;
    padding: 0 10px;
    line-height: 30px;
    z-index: 1;
    right: 0;
    text-align: center;
    cursor: pointer;
    background-color: var(--purple-color);
    border-radius: 5px 0 0 5px
}

ul.album_list li .text_detail {
    position: absolute;
    right: 0;
    top: 45px;
    display: none
}

ul.album_list li .text_detail span {
    margin-left: 10px
}

ul.album_list li .book_detail {
    position: absolute;
    width: calc(100% - 20px);
    bottom: 0;
    color: var(--highlight-text-color);
    padding: 0 10px;
    line-height: 30px;
    z-index: 1
}

ul.album_list li .book_detail::after {
    content: '';
    background-color: #2931589e;
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: .9
}

ul.album_list li .book_detail span {
    margin-right: 10px
}

ul.album_list li .book_info .book_name {
    text-align: center;
    line-height: 35px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 7px;
    height: 35px;
    max-width: 100%;
    overflow: hidden;
    text-transform: capitalize;
    color: var(--highlight-text-color)
}

ul.album_list li .book_info .book_name p {}

ul.album_list li .book_info .book_name img {
    display: none
}

ul.album_list .book_info .book_name p a:hover {
    color: var(--purple-color)
}

ul.album_list .book_info .last_chapter {
    font-size: 13px;
    color: var(--highlight-text-color)
}

ul.album_list .book_info .last_chapter p {
    float: left;
    text-transform: capitalize
}

ul.album_list .book_info .last_chapter p:last-child {
    float: right;
    text-transform: inherit;
    color: var(--main-text-color);
    opacity: .7
}

body.album_page .div_module {
    position: relative;
    width: 100%;
}

body.album_page .background {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    z-index: 0;
}

body.album_page .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(10px);
}

body.album_page .background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 17, 33, 0.2), rgba(12, 17, 33, 0.9));
    z-index: 1;
}

body.album_page #content {
    position: relative;
    z-index: 2;
    padding-top: 0;
    padding-bottom: 80px;
}

body.album_page #content h2 {
    position: relative;
    margin-top: -550px;
    margin-bottom: 20px;
    color: rgba(238, 238, 238, 1);
    font-weight: 500;
    font-size: 15px;
    z-index: 3;
    line-height: 1.5;
}

body.album_page #content h2 a {
    color: rgba(238, 238, 238, 1);
    text-decoration: none;
    transition: color 0.3s;
}

body.album_page #content h2 a:hover {
    color: var(--purple-color);
}

body.album_page #content .book_detail {
    background-color: transparent;
    border-radius: 0;
    position: relative;
    z-index: 3;
}

body.album_page #content .book_detail .book_info {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 3;
    max-width: calc(100% - 470px);
}

body.album_page #content .book_detail .book_info .avatar_module {
    position: relative;
}

body.album_page #content .book_detail .book_info .book_avatar {
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    aspect-ratio: 1/1.5;
}

body.album_page #content .book_detail .book_info .book_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.album_page #content .book_detail .book_info .book_other {
    flex: 1;
    padding-top: 0;
}

body.album_page #content .book_detail .book_info .book_other p.name {
    font-size: 28px;
    font-weight: 600;
    color: rgba(238, 238, 238, 1);
    line-height: 1.3;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

body.album_page #content .book_detail .book_info .book_other .name_other {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

body.album_page #content .book_detail .book_info .book_other .name_other span {
    color: rgba(238, 238, 238, 1);
    font-size: 15px;
    font-weight: 500;
    margin: 0 10px 0 0;
    text-transform: uppercase;
}

body.album_page #content .book_detail .book_info .book_other .kind {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

body.album_page #content .book_detail .book_info .book_other .kind span {
    display: inline-block;
    padding: 5px 10px;
    background-color: #0B0F1F;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: #D3D2D2;
}

body.album_page #content .book_detail .book_info .book_other .kind span a {
    color: inherit;
    text-decoration: none;
}

body.album_page #content .book_detail .book_info .book_other .book_stats {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    position: relative;
}

body.album_page #content .book_detail .book_info .book_other .book_stats .stat_item {
    display: flex;
    padding: 0 15px;
    align-items: center;
    border-right: 1px solid #ffffff0f;
    gap: 8px;
}

body.album_page #content .book_detail .book_info .book_other .book_stats .stat_item:first-child {
    padding-left: 0;
}

body.album_page #content .book_detail .book_info .book_other .book_stats .stat_item:last-child {
    border-right: none;
    padding-right: 0;
}

body.album_page #content .book_detail .book_info .book_other .book_stats .stat_item .stat_value {
    font-size: 16px;
    font-weight: 600;
    color: rgba(238, 238, 238, 1);
    line-height: 1;
    display: block;
}

body.album_page #content .book_detail .book_info .book_other .book_stats .stat_item .stat_label {
    font-size: 12px;
    font-weight: 500;
    color: #BDBDBD;
    line-height: 1.2;
    white-space: nowrap;
    display: block;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail {
    margin-bottom: 20px;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail table {
    width: 100%;
    border-collapse: collapse;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr {
    border-bottom: none;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr#team_transalate,
body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr#album_author {
    display: table-row ;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td:first-child {
    width: 150px;
    color: #BDBDBD;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td {
    color: rgba(238, 238, 238, 1);
    font-size: 14px;
    font-weight: 400;
    text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    vertical-align: top;
    line-height: 25px;
    padding: 4px 0;
}


body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td svg {
    margin-right: 6px;
    width: 18px;
    text-align: center;
}
body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td a{
    color: var(--yellow-color);
    display: flex;
    align-items: center;
    gap: 6px;
}
body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td a img{
    margin-top:0;
}
body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td.week_report {
    display: flex;
    gap: 10px;
    align-items: center;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td.week_report .list {
    display: flex;
    gap: 10px;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td.week_report .item {
    display: flex;
    align-items: center;
    gap: 5px;
}

body.album_page #content .book_detail .book_info .book_other .book_info_detail table tr td.week_report .item img {
    width: 18px;
    height: 18px;
}

body.album_page #content .book_detail .book_info .book_other .book_button {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

body.album_page #content .book_detail .book_info .book_other .book_button .left {
    display: flex;
    gap: 10px;
}

body.album_page #content .book_detail .book_info .book_other .book_button .right {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

body.album_page #content .book_detail .book_info .book_other .book_button button {
    background-color: #47494e45;
    color: rgba(238, 238, 238, 1);
    border: none;
    border-radius: 24px;
    padding: 0 20px;
    height: 42px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

body.album_page #content .book_detail .book_info .book_other .book_button button:hover {
    opacity: 0.9;
}

body.album_page #content .book_detail .book_info .book_other .book_button button.active {background: rgba(108, 116, 253, 1);}

body.album_page #content .book_detail .book_info .book_other .book_button button.report_error {background: transparent;background-color: #47494e45;backdrop-filter: blur(15px);}

body.album_page #content .book_detail .book_info .book_control.mod_control div {
    display: flex;
    gap: 5px;
    z-index: 2;
}

body.album_page #content .book_detail .book_info .book_control button {
    width: 40px;
    height: 40px;
    background-color: rgb(71 72 78 / 47%);
    opacity: 1;
    border: none;
    border-radius: 5px;
    color: rgba(238, 238, 238, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

body.album_page #content .book_detail .book_info .book_control button:hover {
    opacity: 0.6;
}

body.album_page #content .book_detail .book_info .book_control button svg {
    font-size: 18px;
}

body.album_page #content .book_detail .book_info .avatar_module .book_badge {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 2;
    display: flex;
    gap: 5px;
}

body.album_page #content .book_detail .book_info .avatar_module .book_badge .badge_item {
    width: 60px;
    height: 23px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.album_page #content .book_detail .book_info .avatar_module .book_badge .badge_item.vip {
    background: rgba(90, 116, 248, 1);
}

body.album_page #content .book_detail .book_info .avatar_module .book_badge .badge_item.hot {
    background: rgba(244, 78, 60, 1);
}

body.album_page #content .book_detail .book_data{
    display: flex;
    gap: 30px;
}
body.album_page #content .book_detail .book_data .border{
    height: 1px;
    background-color: #ffffff0f;
}
body.album_page #content .book_detail .book_data .b_detail_module{width: 900px;}
body.album_page #content .book_detail .book_data .b_comment_module{
    flex: 1;
}
body.album_page #content .book_detail .book_data .b_comment_module .gift_button{
    display: flex;
    gap: 13px;
    justify-content: flex-end;
    margin-bottom: 30px;
}
body.album_page #content .book_detail .book_data .b_comment_module .gift_button button{
    background-color: #47494e45;
    color: white;
    display: flex;
    align-items: center;
    line-height: 40px;
    border: 0;
    padding: 0 16px;
    height: 45px;
    font-size: 16px;
    gap: 7px;
    border-radius: 150px;
}
body.album_page #content .book_detail .book_data .b_comment_module .gift_button button img{
    height: 30px;
}
body.album_page #content .book_detail h3 {
    font-size: 18px;
    font-weight: 500;
    color: rgba(238, 238, 238, 1);
    margin: 30px 0 20px 0;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.album_page #content .book_detail h3 svg {
    font-size: 18px;
}

body.album_page #content .book_detail #book_detail {
    margin-bottom: 30px;
    color: #BDBDBD;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

/* Album connect: khối nằm ngang dưới Giới thiệu (ảnh bìa + tên truyện + chap + mũi tên) */
body.album_page #content .book_detail .book_connect {
    margin-top: 24px;
    margin-bottom: 24px;
    background-color: var(--purple-color-4);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
body.album_page #content .book_detail .book_connect .book_connect_inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 14px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
}
body.album_page #content .book_detail .book_connect .book_connect_inner:hover {
    background-color: rgba(255, 255, 255, 0.04);
}
body.album_page #content .book_detail .book_connect_cover {
    flex-shrink: 0;
    height: 60px;
    aspect-ratio: 1/1.5;
    border-radius: 6px 0 0 6px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}
body.album_page #content .book_detail .book_connect_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.album_page #content .book_detail .book_connect_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
body.album_page #content .book_detail .book_connect_title {

    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.album_page #content .book_detail .book_connect_title span{
    color: var(--yellow-color);
    font-weight: 600;
    text-transform: capitalize;
}

body.album_page #content .book_detail .book_connect_chapter {
    color: var(--highlight-text-color);
    font-size: 13px;
    font-weight: 400;
}
body.album_page #content .book_detail .book_connect_arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--highlight-text-color);
    font-size: 12px;
}
body.album_page #content .book_detail .book_connect_inner:hover .book_connect_arrow {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

body.album_page #content .book_detail .pr_module{
    background: linear-gradient(to right, #1689e0, #667EFB);
    color: white;
    padding-left: 30px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
body.album_page #content .book_detail .pr_module span{
    font-weight: 600;
}

body.album_page #content .book_detail .pr_module img{
    height: 26px;
}
body.album_page #content .book_detail .pr_module svg{
    font-size: 21px;
}
body.album_page #content .book_detail .list_chapter {
    width: 100%;
    max-height: none;
    border: none;
    margin: 0;
    margin-top: 20px;
    background: transparent;
}


body.album_page #content .book_detail .list_chapter .chapter_grid {column-gap: 20px;}

body.album_page #content .book_detail .list_chapter .chapter_item {

    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 15px;
    box-sizing: border-box;
}

body.album_page #content .book_detail .list_chapter .chapter_item:nth-child(even){
    background-color: rgba(18, 24, 45, 1);
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_num{
    flex: 1;
}
body.album_page #content .book_detail .list_chapter .chapter_item .chapter_info {
    width: 240px;
    min-width: 0;
    display: flex;
    gap: 4px;
    justify-content: space-between;
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(238, 238, 238, 1);
    margin-bottom: 4px;
    line-height: 1.4;
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_date {
    font-size: 12px;
    font-weight: 500;
    color: rgba(149, 154, 175, 1);
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_status {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    height: 100%;
    text-transform: uppercase;
    justify-content: flex-end;
    width: 110px;
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_status img{
    height:26px;
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_view {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    margin-bottom: 0;
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_view svg {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_status {
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_status .chapter_free {
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_status .chapter_lock_fee {
    color: rgba(238, 238, 238, 1);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_status .chapter_lock_fee img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
    margin: 0;
}

body.album_page #content .book_detail .list_chapter .chapter_item .mod_control {
    flex-shrink: 0;
}
body.album_page #content .book_detail .list_chapter .chapter_item .mod_control svg {
    margin-left: 8px;
    cursor: pointer;
    font-size: 14px;
}


body.album_page #content .book_detail .list_chapter .chapter_item:hover .chapter_name {
    color: var(--purple-color);
}

body.album_page #content .book_detail .list_chapter .chapter_item .chapter_name a img {
    vertical-align: middle;
}

body.album_page #content .book_detail .list_chapter .chapter_grid::-webkit-scrollbar,
body.album_page #content .book_detail .comment_div::-webkit-scrollbar {
    width: 4px;
}

body.album_page #content .book_detail .list_chapter .chapter_grid::-webkit-scrollbar-track,
body.album_page #content .book_detail .comment_div::-webkit-scrollbar-track {
    background: rgba(18, 24, 45, 1);
    border-radius: 4px;
}

body.album_page #content .book_detail .list_chapter .chapter_grid::-webkit-scrollbar-thumb,
body.album_page #content .book_detail .comment_div::-webkit-scrollbar-thumb {
    background: rgba(67, 72, 93, 1);
    border-radius: 4px;
}

body.album_page #content .book_detail h3 .chapter_go {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    display: flex;
    height: 38px;
    z-index: 4;
    margin-left: auto;
    margin-right: 0;
}

body.album_page #content .book_detail h3 .chapter_go input {
    width: 150px;
    height: 40px;
    background: rgba(33, 37, 45, 1);
    opacity: 0.5;
    border: 1px solid rgba(34, 40, 61, 1);
    border-radius: 8px 0 0 8px;
    padding: 0 11px;
    color: rgba(238, 238, 238, 1);
    font-weight: Light Italic;
    font-size: 14px;
    outline: none;
}

body.album_page #content .book_detail h3 .chapter_go input::placeholder {
    color: rgba(238, 238, 238, 0.5);
}

body.album_page #content .book_detail h3 .chapter_go button {
    height: 40px;
    aspect-ratio: 1/1;
    background: rgba(34, 40, 61, 1);
    border: 1px solid rgba(33, 37, 41, 1);
    border-radius: 0 8px 8px 0;
    border-left: none;
    cursor: pointer;
    color: rgba(238, 238, 238, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

body.album_page #content .book_detail h3 .chapter_go button:hover {
    background: rgba(44, 50, 71, 1);
}

body.album_page #content .book_detail h3 .chapter_go button svg {
    font-size: 16px;
}

body.album_page #content .book_detail .comment_div {
    height: calc(100vh - 70px);
    background-color: rgba(18, 24, 45, 1);
    border-radius: 10px 0 0 10px;
    padding: 25px;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

body.album_page #content .book_detail .comment_div .book_comment {
    width: 100%;
}

body.team_page {}

body.team_page #content {
    margin-top: 90px;
}

body.team_page #content .cover {
    padding-bottom: 0px;
    margin-bottom: 25px;
}

body.team_page #content .cover .info {
    position: relative;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 40px;
}

body.team_page #content .cover .info .avatar {
    border-radius: 150px;
    border: 5px solid white;
    height: 120px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -65%);
}

body.team_page #content .cover .info .profile {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    line-height: 30px;
}

body.team_page #content .cover .info .profile .name {
    font-weight: 600;
    color: var(--highlight-text-color);
    font-size: 25px;
    text-shadow: 0px 0px 10px black;
}

body.team_page #content .cover .info .profile .des {
    line-height: 30px;
}

body.team_page #content .cover .info .statics {
    display: flex;
    gap: 9px;
    color: var(--highlight-text-color);
    top: 20px;
}

body.team_page #content .cover .info .statics .item {
    display: flex;
    gap: 5px;
    background-color: #2a3254cc;
    padding: 0px 10px;
    border-radius: 5px;
}

body.team_page #content .cover .info .statics .item.active {
    background-color: var(--purple-color);
}

body.team_page #content .cover .info .statics .item button {
    background-color: transparent;
    border: 0;
    color: white;
}

body.team_page #content .cover .cover_image {
    width: 100%;
    aspect-ratio: 5/1;
    object-fit: cover;
    border-radius: 10px;
}

body.team_page #content .child_module {
    margin-bottom: 30px;
}

body.team_page #content .child_module.padding {
    background-color: var(--background-module-2);
    padding: 15px;
    border-radius: 7px;
    line-height: 25px;
}

body.team_page #content .child_module h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--highlight-text-color);
    font-weight: 500;
}

body.team_page #content .child_module .des {}

body.team_page #content .child_module .team_member {
    grid-template-columns: repeat(5, 1fr);
}

body.team_page #content .child_module .team_member .item {
    text-align: center;
    line-height: 25px;
}

body.team_page #content .child_module .team_member .item img {
    height: 100px;
    border-radius: 150px;
    margin-bottom: 5px;
}

body.team_page #content .child_module .team_member .item p.name {
    font-size: 16px;
    font-weight: 500;
    color: var(--highlight-text-color);
}

body.team_page #content .child_module .team_member .item p.role {}

body.chapter_page {
    color: var(--highlight-text-color)
}
body.chapter_page #content{
    padding-top:50px;
}
body.chapter_page #nav_menu {
    margin-left: -240px;
}

body.chapter_page header.main_header .left .left_content {
    display: block;
}

body.chapter_page .mgd_module .mgd_content {
    margin: 0;
    width: 100%;
}

body.chapter_page header.main_header {
    width: 100%;
    left: 0;
}

body.chapter_page .pr_module {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 30px;
}

body.chapter_page .pr_module .image {
    max-width: 800px;
    width: 100%;
    cursor: pointer;
    aspect-ratio: 80 / 30;
}

body.chapter_page .pr_module .intro {
    margin-top: 10px;
}

body.chapter_page .pr_module .intro p span {
    font-size: 18px;
    font-weight: 500;
    color: var(--yellow-color);
}

body.chapter_page .pr_module .intro button {
    margin-left: 5px;
    height: 30px;
    width: 100px;
    line-height: 30px;
}

body.chapter_page .popup_item_show {
    display: none !important
}

body.chapter_page .fly_button {
    position: fixed;
    right: 20px;
    bottom: 125px;
    height: 40px;
    width: 40px;
    background-color: var(--purple-color);
    text-align: center;
    color: #fff;
    border-radius: 150px;
    cursor: pointer;
    z-index: 5;
}

body.chapter_page .fly_button svg {
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.chapter_page .fly_comment {}

body.chapter_page .fly_comment .list {
    position: fixed;
    max-width: 800px;
    width: 100%;
    top: 50%;
    height: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 0;
}

body.chapter_page .fly_comment .list .item {
    display: flex;
    color: #000000;
    font-size: 16px;
    line-height: 30px;
    gap: 5px;
    font-weight: 400;
    padding: 5px 10px;
    background-color: #ffffffc2;
    position: absolute;
    border-radius: 50px;
    right: 0;
    transform: translateX(101%);
}

body.chapter_page .fly_comment .list .item .avatar {
    height: 30px;
    width: 30px;
    border-radius: 150px;
}

body.chapter_page .fly_comment .list .item .name {
    font-weight: 500;
}

body.chapter_page .fly_comment .list .item .text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.chapter_page .fly_comment .list .item .text .emoji {
    height: 30px;
    vertical-align: middle;
}

body.chapter_page .fly_comment .list .item.run {
    animation: moveLeft linear;
}

@keyframes moveLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100vw);
    }
}

body.chapter_page #content h2 {
    font-weight: 400;
    position: relative;
    width: 100%;
    text-transform: capitalize;
    line-height: 30px;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 20px;
}

body.chapter_page #content .main_content .chapter_content_module {
    margin-top: 30px;
}

body.chapter_page #content .main_content .chapter_ad_block {
    text-align: center;
}

body.chapter_page #content .main_content .chapter_ad_block img {
    height: 170px;
    margin-bottom: 10px;
}

body.chapter_page #content .main_content .chapter_ad_block p {
    line-height: 25px;
}

body.chapter_page #content .main_content .chapter_content {
    text-align: center;
    padding-bottom: 40px;
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

body.chapter_page #content .main_content .chapter_content .chapter_text {
    text-align: justify;
    line-height: 26px;
    font-size: 15px;
    font-weight: 400;
    padding: 15px;
    border-radius: 5px;
    color: #cccee3;
    margin: 0 auto;
}

body.chapter_page #content .main_content .chapter_content .chapter_text p {
    margin-bottom: 20px;
}

body.chapter_page #content .main_content .chapter_content .chapter_mask_layer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none
}

body.chapter_page #content .main_content .chapter_content .chapter_lock {}

body.chapter_page #content .main_content .chapter_content .chapter_lock .image {
    max-width: 230px;
    padding-left: 50px;
    margin-bottom: 10px
}

body.chapter_page #content .main_content .chapter_content .chapter_lock .title {
    font-size: 18px;
    margin-bottom: 10px
}

body.chapter_page #content .main_content .chapter_content .chapter_lock .content {
    font-size: 16px;
    color: var(--main-text-color)
}

body.chapter_page #content .main_content .chapter_content .chapter_lock span {
    font-weight: 500;
    color: var(--highlight-text-color)
}

body.chapter_page #content .main_content .chapter_content .chapter_lock button {
    width: auto;
    height: 30px;
    margin-top: 15px;
    padding: 0 10px;
    margin: 15px 5px 0 5px;
}

body.chapter_page #content .main_content .chapter_content .chapter_lock .end {
    margin-top: 20px
}

body.chapter_page #content .main_content .chapter_content img.chapter_image {
    max-width: 800px;
    display: block;
    margin: 0 auto
}

body.chapter_page #content .main_content #chapter_content h1 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    line-height: 35px;
    margin: 30px 0;
    text-transform: capitalize
}

body.chapter_page #content .main_content h1 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    line-height: 40px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

body.chapter_page #content .main_content #chapter_content h5 {
    font-weight: 500;
    text-align: center;
    line-height: 80px;
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
    margin-top: 0
}

body.chapter_page #content .main_content .chapter_control {
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100%;
    left: 0;
    background-color: var(--purple-color-4);
    box-shadow: 5px 5px 16px -4px #6c74fc;
    padding: 10px 0
}

body.chapter_page #content .main_content .chapter_control .bottom_button{
    position: fixed;
    display: flex;
    bottom: 70px;
    left: 10px;
    gap: 10px;
}
body.chapter_page #content .main_content .chapter_control .bottom_button .item{
    background-color: var(--purple-color);
    height: 40px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    border-radius: 150px;
    cursor: pointer;
}
body.chapter_page #content .main_content .chapter_control .bottom_button .item.disable{
    background-color: #2d334f;
}
body.chapter_page #content .main_content .chapter_control .bottom_button .item svg{}

body.chapter_page #content .main_content .chapter_control .audio_control {
    width: calc(100% - 70px);
    position: fixed;
    transform: translate(0, -100%);
    margin-top: -20px;
    max-width: 350px;
}

body.chapter_page #content .main_content .chapter_control .div_module {
    display: flex;
    justify-content: space-between;
    align-content: stretch
}

body.chapter_page #content .main_content .chapter_control .button_menu {
    display: flex;
    gap: 20px;
    line-height: 40px
}

body.chapter_page #content .main_content .chapter_control .button_menu svg {
    font-size: 20px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 5px
}

body.chapter_page #content .main_content .chapter_control .button_menu span {
    font-size: 15px;
}

body.chapter_page #content .main_content .chapter_control .button_menu .active {
    color: var(--purple-color)
}

body.chapter_page #content .main_content .chapter_control .middle {}

body.chapter_page #content .main_content .chapter_control span {}

body.chapter_page #content .main_content .chapter_control .left {}

body.chapter_page #content .main_content .chapter_control .right {}

body.chapter_page #content .main_content .chapter_control .button p {
    font-size: 20px;
    float: left;
    margin-right: 15px
}

body.chapter_page #content .main_content .chapter_control .button p.active {
    color: var(--purple-color)
}

body.chapter_page #content .main_content .chapter_control .button svg {
    margin-right: 5px
}

body.chapter_page #content .main_content .chapter_control .middle {}

body.chapter_page #content .main_content .chapter_control .middle button {
    line-height: 40px;
    height: 40px;
    width: 40px;
    margin: 0 3px;
    background-color: var(--purple-color);
    font-size: 18px;
    color: #fff;
    border-radius: 150px;
    border: none;
    float: left;
    position: relative
}

body.chapter_page #content .main_content .chapter_control button.control_chapter_0 {
    display: none
}

body.chapter_page #content .main_content .chapter_control button.home {
    background-color: #f0564a
}

body.chapter_page #content .main_content .chapter_control select {
    line-height: 40px;
    height: 40px;
    display: inline-block;
    width: auto;
    border-radius: 150px;
    padding: 0 10px;
    margin: 0 3px;
    cursor: pointer;
    text-transform: capitalize;
    width: 140px;
    float: left;
    background-color: #2d334f;
    border: 0
}

body.chapter_page #content .main_content .chapter_control select option {
    background-color: #2d334f
}

body #main_content #content .content_div.album_advanced {}

body #main_content #content .content_div.album_advanced .no_data {
    line-height: 50px;
    text-align: center;
    font-size: 16;
    color: var(--highlight-text-color);
    display: none;
}

body #main_content #content .content_div.album_advanced .filter_menu {
    margin-bottom: 10px;
}

body #main_content #content .content_div.album_advanced .filter_menu .active {
    background-color: var(--purple-color) !important;
}

body #main_content #content .content_div.album_advanced .filter_menu .top {
    display: flex;
    gap: 10px;
}

body #main_content #content .content_div.album_advanced .filter_menu .top .search {
    flex: 1;
    display: flex;
    background-color: var(--background-input);
    border-radius: 3px;
}

body #main_content #content .content_div.album_advanced .filter_menu .top .search .icon {
    width: 50px;
    position: relative;
    font-size: 18px;
}

body #main_content #content .content_div.album_advanced .filter_menu .top .search input {
    border: 0;
    padding-left: 0;
    border-radius: 0;
    line-height: 40px;
    height: 40px;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item {
    float: none;
    margin: 0;
    flex: 1;
    position: relative;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .title {
    margin-bottom: 10px;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .content {
    background-color: var(--background-input);
    padding: 10px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 400;
    color: var(--highlight-text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .content p {
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .content svg {}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list {
    position: absolute;
    z-index: 2;
    background-color: var(--background-input);
    width: 100%;
    margin-top: 10px;
    line-height: 40px;
    max-height: 400px;
    overflow: auto;
    border-radius: 3px;
    display: none;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list::-webkit-scrollbar {
    width: 0;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple {
    width: 700px;
    max-width: calc(100vw - 30px);
    padding: 10px;
}
body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple .multiple_search{margin-bottom: 10px;}
body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple .multiple_search input{
    border: 1px solid var(--purple-color-2-highlight);
}
body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple .multiple_list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple .multiple_list .multiple_item {
    border: 1px solid var(--purple-color-2-highlight);
    line-height: 35px;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 5px;
    cursor: pointer;
    color: var(--highlight-text-color);
    display: flex;
    align-items: center;
    gap: 3px;
    text-transform: capitalize;
}
body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple .multiple_list .multiple_item.search_hide{
    display: none !important;
}
body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple .multiple_list .multiple_item span{
    color: var(--yellow-color);
    font-weight: 500;
}
body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple .multiple_list .multiple_item.active {
    background-color: var(--purple-color);
    color: var(--highlight-text-color);
}
body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.multiple .multiple_list .multiple_item.active span{
    display: none;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.one {}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.one .filter_item {
    padding: 0 10px;
    cursor: pointer;
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.one .filter_item:hover {
    background-color: var(--purple-color-2-highlight);
}

body #main_content #content .content_div.album_advanced .filter_menu .filter .item .list.one .filter_item.active {
    background-color: var(--purple-color);
    color: var(--highlight-text-color);
}

body #main_content #content .content_div.album_advanced .filter_menu button {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--background-input);
    color: var(--highlight-text-color);
    font-size: 15px;
    border: 0;
    border-radius: 3px;
    padding: 0 30px;
    position: relative;
    width: auto;
    margin: 0;
    line-height: 40px;
    height: 40px;
}

body #main_content #content .content_div.album_advanced .filter_menu button .icon {
    font-size: 18px;
    position: relative;
}

body #main_content #content .content_div.album_advanced .filter_menu .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body #main_content #content .content_div.album_advanced .filter_menu .bottom .display {
    display: flex;
    gap: 10px;
}

body #main_content #content .content_div.album_advanced .filter_menu .bottom .display .item {
    background-color: var(--background-input);
    height: 40px;
    width: 40px;
    position: relative;
    font-size: 21px;
    cursor: pointer;
    border-radius: 3px;
}

body #main_content #content .content_div.album_advanced .filter_menu .bottom .display .item svg {}

body #main_content #content .content_div.album_advanced .filter_menu .bottom .display .item.active {}

body #main_content #content .content_div.album_advanced .filter_menu .bottom .button {
    display: flex;
    gap: 10px;
}

body .comment_div {
    background-color: var(--purple-color-4);
    padding: 20px;
    border-radius: 7px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    z-index: 1;
    position: relative;
}

body .comment_div .comment_text {
    position: relative
}

body .comment_div .comment_redirect {}

body .comment_div .comment_redirect p {
    cursor: pointer;
    float: left
}

body .comment_div .comment_redirect .comment_menu {
    float: right;
    position: relative
}

body .comment_div .comment_redirect .comment_menu .menu_hidden {
    position: absolute;
    right: 0;
    width: 150px;
    top: calc(100% + 10px);
    z-index: 1;
    background-color: var(--purple-color-2);
    padding: 10px;
    line-height: 30px;
    border-radius: 5px
}

body .comment_div .comment_redirect .comment_menu .menu_hidden .item {
    cursor: pointer
}

body .comment_div h3 {
    font-size: 19px;
    font-weight: 400;
    line-height: 40px;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 0 !important;
    padding: 0 !important
}

body .comment_div h3 p{
    display:flex;
    gap: 7px;
    align-items: center;
}

body .comment_div textarea {
    height: 100px;
    line-height: 30px;
    padding: 10px 15px;
    background-color: #303956;
    border: 0;
    resize: none;
    border-radius: 8px
}

body .comment_div .comment_text .send_icon {
    position: absolute;
    right: 50px;
    bottom: 13px;
    font-size: 20px;
    cursor: pointer
}

body .comment_div .comment_list {
    padding: 15px 0
}

body .comment_div .comment_list .parent_li {
    color: var(--main-text-color);
    position: relative;
    margin-bottom: 20px
}

body .comment_div .comment_list .parent_li .comment_mark {
    font-size: 22px;
    position: absolute;
    left: -7px;
    top: 8px;
    color: #303956
}

body .comment_div .comment_list .parent_li:last-child {
    border: none
}

body .comment_div .comment_list li img.avatar {
    width: 50px;
    float: left;
    margin-right: 10px
}

body .comment_div .comment_list li .detail {
    background-color: #303956;
    padding: 0 10px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    position: relative;
    margin-bottom: 10px
}

body .comment_div .comment_list li p.comment_menu {
    font-size: 13px;
    margin-bottom: 5px;
    z-index: 1;
    position: relative
}

body .comment_div .comment_list li a {
    color: var(--highlight-text-color)
}

body .comment_div .comment_list li .user_profile_div {
    float: left;
    margin-right: 10px
}

body .comment_div .comment_list li .detail_div {
    float: left;
    width: calc(100% - 60px)
}

body .comment_div .comment_list li .detail p {
    line-height: 30px
}

body .comment_div .comment_list li .detail div.name {
    border-bottom: 1px solid var(--background-module-2);
    line-height: 40px
}

body .comment_div .comment_list li .detail p span.name {
    font-size: 15px;
    font-weight: 500
}

body .comment_div .comment_list li .detail a.name {
    font-weight: 600;
    color: var(--highlight-text-color)
}

body .comment_div .comment_list li .detail p span.time {}

body .comment_div .comment_list li .detail p.text {
    max-width: 100%;
    overflow: hidden;
    margin-top: 10px;
    color: var(--highlight-text-color)
}

body .comment_div .comment_list li .detail p.text .user_name {
    padding: 5px 10px;
    background-color: var(--purple-color-2-highlight);
    font-weight: 500;
    color: var(--highlight-text-color);
    border-radius: 5px;
    margin-right: 3px
}

body .comment_div .comment_list li .detail p.text .emoji {
    vertical-align: middle;
    max-height: 70px;
    margin-left: 5px;
    border-radius: 7px
}

body .comment_div .comment_list_child {
    width: calc(100% - 60px);
    margin-left: 60px;
    margin-top: 15px;
    max-height: 310px;
    overflow: auto
}

body .comment_div .comment_list_child li.parent_li {
    padding: 0;
    margin-bottom: 10px
}

body .comment_div .comment_list_child li {
    margin-bottom: 10px
}

body .comment_div .comment_list li .detail p.text a {
    color: #3f94d5
}

body .comment_div .comment_list li .comment_reply {
    margin-left: 60px;
    margin-top: 10px;
    width: calc(100% - 100px);
    max-width: 500px;
    position: relative;
    display: none;
    margin-bottom: 15px
}

body .comment_div .comment_list li .comment_reply .user_name {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(110%, -50%);
    padding: 5px 10px;
    background-color: var(--purple-color-2-highlight);
    font-weight: 500;
    color: var(--highlight-text-color);
    border-radius: 5px
}

body .comment_div .comment_list li .comment_reply input {
    line-height: 35px;
    padding: 0 30px 0 10px;
    border-radius: 3px;
    width: 100%;
    border: 0;
    background-color: #303956;
    border-radius: 8px
}

body .comment_div .comment_list li .comment_reply svg.send_icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    color: var(--highlight-text-color);
    cursor: pointer
}

body .comment_div .comment_list_child li .user_profile_div {
    height: 30px
}

body .comment_div .comment_list_child li .detail {
    width: calc(100% + 20px)
}

@media(max-width: 799px) {
    body.album_page #content .book_detail .book_data .b_detail_module{
        width:100%;
    }
    body.album_page #content .book_detail .list_chapter .chapter_item .chapter_num{
        flex: none;
    }
    body.album_page #content .book_detail .list_chapter .chapter_item{
    }
    body.album_page #content .book_detail .list_chapter .chapter_item .chapter_info{
        width: auto;
    }
    body.album_page #content .book_detail .book_data{
        flex-direction: column-reverse;
    }
    body.album_page #content{
        padding-top: 50px;
    }
    body.album_page #content h2,
    body.album_page #content .book_detail {
        padding: 0 10px;
        margin-left: 0;
    }
    
    body.album_page #content .book_detail .book_info {
        flex-direction: column;
        max-width: 100%;
        padding-right: 0;
    }
    
    body.album_page #content .book_detail .book_info .avatar_module {
        margin: 0 auto;
    }
    
    body.album_page #content .book_detail .book_info .book_other .book_stats {
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    body.album_page #content .book_detail .book_info .book_other .book_stats .stat_item {
    }
    
    
    body.album_page #content .book_detail .book_info .book_other .book_button {
        flex-direction: column;
    }
    
    body.album_page #content .book_detail .book_info .book_other .book_button .left,
    body.album_page #content .book_detail .book_info .book_other .book_button .right {
        width: 100%;
        flex-direction: column;
        margin-left: 0;
    }
    
    body.album_page #content .book_detail .book_info .book_other .book_button button {
        width: 100%;
    }
    
    body.album_page #content .book_detail .list_chapter .chapter_grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    body.album_page #content .book_detail .list_chapter {
        padding-right: 0;
    }
    
    body.album_page #content .book_detail #book_detail {
        max-width: 100%;
    }
    
    body.album_page #content .book_detail h3 {
        padding-right: 0;
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    
    body.album_page #content .book_detail h3 .chapter_go {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 10px;
    }
    
    body.album_page #content .book_detail .comment_div {
        position: relative;
        top: 0;
        width: 100%;
        height: 70vh;
        margin-top: 40px;
        border-radius: 10px;
    }

    body.chapter_page #content .main_content .chapter_content img.chapter_image {
        width: 100%
    }
    body.team_page #content .cover .info .profile{
        display: block;
        padding-top: 60px;
        text-align: center;
    }
    body.team_page #content .cover .info .statics{
        margin-top: 20px;
        justify-content: center;
    }
    body.team_page #content {
    }

    body.team_page #content .cover .cover_image {
        aspect-ratio: 3 / 1;
    }

    /* Album/comic responsive - di chuyển từ style.css */
    .album_slick ul.list_grid.slider {
        max-height: 500px;
    }
    body #main_content #content .content_div.album_advanced .filter_menu .filter {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    ul.list_grid li .book_text {
        display: none !important;
    }
    ul.list_grid.list {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    ul.list_grid.slider,
    ul.list_grid.grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width: 599px) {
    body.home_page #content .album_filter .item ul {
        grid-template-columns: repeat(2, 1fr) !important
    }
}
