* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

ul,
li,
a,
em {
    list-style: none;
}

@font-face {
    font-family: 'Archivo';
    src: url("../font/Archivo.woff2");
}

.light-theme,
:root {
    --white: #fff;
    --black: #333;
    --success: #05b888;
    --text: #333;
    --search: #fff;
    --btn: #000;
    --primary-1: #4535ff;
    --primary-2: #2618c7;
    --primary-3: #0c0093;
    --primary-4: #ff7d99;
    --primary-5: #ca5542;
    --primary-6: #c75c5c;
    --primary-7: #fff;
    --primary-on-high: #fff;
    --primary-on-medium: #fff;
    --primary-on-disabled: #fff;
    --primary-disabled: #f3f3f3;
    --secondary-1: #ef96a7;
    --secondary-2: #ed758c;
    --secondary-3: #dd6c81;
    --color-a: rgb(237 119 30);
    --danger-1: #cc0025;
    --danger-2: #ba0022;
    --danger-3: #ac001f;
    --google-button-1: #f8f8f8;
    --google-button-2: #f2f2f2;
    --apple-button-1: #000;
    --apple-button-2: #232323;
    --apple-button-text: #fff;
    --highlighter: #f7f661;
    --highlighter-disabled: #c2c10d;
    --background: #fff;
    --surface: #fff;
    --surface-success: #ffffe1;
    --surface-error: #ffe9ed;
    --surface-warning: #fffdcc;
    --surface-light: #f9f9ff;
    --surface-medium: #f1f1ff;
    --surface-on-1: #04002d;
    --surface-on-2: #686681;
    --surface-on-3: #a09eaf;
    --surface-on-4: #e6e6ea;
    --backdrop: rgba(0, 0, 0, .3);
    --logo: #a554b6;
}

.dark-theme {
    --white: #fff;
    --black: #04002d;
    --success: #05b888;
    --text: #e2e2e2;
    --search: #000;
    --btn: #fff;
    --primary-1: #7a6fff;
    --primary-2: #5144f3;
    --primary-3: #3122e9;
    --primary-4: #ff3535;
    --primary-7: #000;
    --primary-on-high: #e0e0e0;
    --primary-on-medium: #a0a0a0;
    --primary-on-disabled: #6c6c6c;
    --primary-disabled: #363636;
    --secondary-1: #ef96a7;
    --secondary-2: #ee6882;
    --secondary-3: #d44963;
    --danger-1: #e92448;
    --danger-2: #b41431;
    --danger-3: #9b011d;
    --google-button-1: #2b2b2c;
    --google-button-2: #464647;
    --apple-button-1: #fff;
    --apple-button-2: #e8e8e8;
    --apple-button-text: #000;
    --highlighter: #f7f661;
    --highlighter-disabled: #c2c10d;
    --background: #121212;
    --surface: #202020;
    --surface-success: #4d4c32;
    --surface-error: #35000a;
    --surface-warning: #202020;
    --surface-light: #2b2b2c;
    --surface-medium: #464647;
    --surface-on-1: #e0e0e0;
    --surface-on-2: #a0a0a0;
    --surface-on-3: #6c6c6c;
    --surface-on-4: #2a2a2a;
    --backdrop: rgba(0, 0, 0, .7);
    --logo: #fff
}

.light-theme.yellow-theme {
    --background: rgb(239, 187, 187);
}

.light-theme.black-theme {
    --background: rgb(225 108 108);
}

html {
    font-size: calc(16px + 2*(100vw - 360px) / 39);
}

@media screen and (min-width: 414px) {
    html {
        font-size: calc(18px + 4*(100vw - 414px) / 586);
    }
}

body {
    background-color: var(--background);
    line-height: 1.5;
    font-family: 'Archivo', 'Microsoft Yahei', '微软雅黑', '宋体', STHeiti serif;
    color: var(--text);
}

a {
    color: var(--text);
    text-decoration: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

.no-scroll {
    overflow: hidden;
}

.wrapper-box {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1040;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 3.111rem;
    width: 100%;
    background: linear-gradient(to bottom, rgb(238 200 255), rgb(216 165 235));
    border-bottom: 1px solid var(--primary-disabled);
    transition: box-shadow .3s ease-in-out;
    border-bottom: 1px solid #ebebeb;
}



.header:after {
    content: "";
    display: block;
    background: url(../images/headbg1.png) left top no-repeat;
    background-size: auto 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 75px;
    z-index: 0;
    opacity: 0.5;
}

.header--scroll {
    box-shadow: 0 2px 4px #0000001a;
}

.header__container {
    flex: 1 1 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8889rem;
    max-width: 750px;
    padding: 0.6667rem 0.5889rem;
}

.header__logo {
    display: inline-flex;
    color: var(--logo);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.111rem;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.889rem;
}

.header__search {
    width: 1.333rem;
    height: 1.333rem;
    cursor: pointer;
}

.header__search .AlphaIcon {
    width: 100%;
    color: var(--logo);
}

.header__hamburger {
    position: relative;
    width: 1.8rem;
    height: 1.8rem;
    padding: 0;
    background: #fff;
    border: 0;
    display: flex;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
}

.header__hamburger svg {
    fill: var(--logo);
}

.header__hamburger-span,
.header__hamburger-span:after,
.header__hamburger-span:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 0.1389rem;
    background-color: var(--logo);
    border-radius: 4px;
    transition-duration: .25s;
}

.header__hamburger-span {
    top: 50%;
    transform: translateY(-50%);
}

.header__hamburger-span:before {
    top: -0.444rem;
}

.header__hamburger-span:after {
    top: 0.444rem;
}

.header__hamburger--active .header__hamburger-span {
    transform: rotate(45deg);
}

.header__hamburger--active .header__hamburger-span:before {
    top: 0;
    transform: rotate(0);
}

.header__hamburger--active .header__hamburger-span:after {
    top: 0;
    transform: rotate(90deg);
}

.header__menu {
    position: fixed;
    width: 100%;
    max-width: 750px;
    top: 3.111rem;
    bottom: 0;
    width: 63%;
    z-index: 1060;
    transform: translateX(250%);
    background-color: var(--surface);
    box-shadow: 0 2px 4px #0000001a;
    transition: transform .8s cubic-bezier(.8, .4, .1, 1);
    overflow: auto;
    padding: 10px;
}

.header__menu--opened {
    transform: translateX(-2%);
}

.header__nav {
    padding: 0.889rem 0;
    justify-content: space-between;
}

.headerItem {
    position: relative;
    font-size: 1rem;
    height: 46px;
    line-height: 46px;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 1px solid #ebebeb;
    background: var(--logo);
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.headerItem__link {
    display: flex;
    width: 100%;

    color: var(--primary-7);
    transition: color .3s ease-in-out;
    cursor: pointer;
    justify-content: center;
}

.header__settings {
    display: flex;
    padding: 1.333rem;
}

.header__settings,
.header__tabs {
    justify-content: center;
    border-top: 1px solid var(--primary-disabled);
}

.AlphaSwitch {
    display: inline-flex;
    align-items: center;
    background-color: var(--background);
    border-radius: 24px;
    cursor: pointer;
}

.AlphaSwitch--md {
    padding: 0.667rem 1.4444rem 0.667rem 0.889rem;
    font-size: 0.889rem;
    line-height: 1.333rem;
    font-weight: 600;
}

.AlphaSwitch__input {
    display: none;
}

.AlphaIcon {
    display: inline-flex;
}

.AlphaSwitch--md .AlphaSwitch__icon {
    margin-right: 16px;
    width: 24px;
    height: 24px;
}

.AlphaIcon svg {
    max-width: inherit;
    max-height: inherit;
    min-width: inherit;
    min-height: inherit;
    width: inherit;
    height: inherit;
    color: inherit;
}

.AlphaSwitch__label {
    width: 100%;
    margin-right: 0.667rem;
}

.AlphaSwitch__box {
    flex-shrink: 0;
    position: relative;
    width: 1.889rem;
    height: 0.7778rem;
    border-radius: 20px;
    background-color: var(--surface-on-4);
    transition: all .2s ease-in-out;
}

.AlphaSwitch__box:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 1.111rem;
    height: 1.111rem;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 4px #0000001a;
    transition: all .2s ease-in-out;
}

.AlphaSwitch--checked .AlphaSwitch__box {
    background-color: var(--secondary-1);
}

.AlphaSwitch--checked .AlphaSwitch__box:before {
    left: calc(100% - 1.111rem);
}

.container-box {
    flex: 1 1 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.889rem;
    width: 100%;
    padding: 10px 10px 0 10px;
}

.sectionBg {
    padding-top: 1rem;
}

.main_layout,
.main_layout main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.main_wrapper {
    gap: 0.889rem;
}

.font-meta {
    font-size: 11px;
    line-height: 1.5;
}


/* 搜索 */
.search-box {
    position: fixed;
    width: 100%;
    max-width: 750px;
        top: 3.111rem;
    bottom: 0;
    width: 62%;
    z-index: 1060;
    transform: translateX(-250%);
    background-color: var(--surface);
    box-shadow: 0 2px 4px #0000001a;
    transition: transform .8s cubic-bezier(.8, .4, .1, 1);
    overflow: auto;
    padding: 10px;
}

.search-box.search-box-active {
    transform: translateX(0%) ;
    opacity: 1;
}

.searchInput__wrapper {
    width: 100%;
}

.searchInput__container {
    position: relative;
}

.searchInput__icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.778rem;
    color: var(--text);
    border: 0;
    background: none;
}

.search-body {
    display: flex;
    flex-direction: column;
    padding: 0.8889rem 0;
    border-bottom: 1px solid #dddddd;
}

.search-gap {
    display: flex;
    gap: 0.889rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.searchInput {
    font-size: 0.667rem;
    line-height: 1.8rem;
    font-weight: 400;
    width: 100%;
    color: var(--text);
    background-color: var(--background);
    outline: none;
    padding: 0.333rem 0.889rem 0.333rem 0.889rem;
    border: none;
    border-radius: 8px;
}

.searchInput::placeholder {
    color: var(--btn);
}

.search__submit {
    background: linear-gradient(to top, #fb00e1, #fe61ff);
    color: var(--search);
        padding: 5px 10px;
    font-size: 14px;
    line-height: 100%;
    width: 40px;
    height: 40px;
    border: none;
    font-weight: 500;
    display: block;
}


.footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 0.667rem;
    line-height: 1.11rem;
    font-weight: 400;
    background: #fff;
    padding-bottom: 50px;
}

.footer__container {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    flex: 1 1 auto;
}

.footer__footer {
    padding: 0.8889rem;
    border-top: 1px solid #d5d5d5;
}

.footer__text {
    color: var(--surface-on-2);
    font-size: 14px;
    line-height: 1.6rem;
}

.footer__text span {
    display: block;
}

/* 阅读页字体控制 */
.reader-setting {
    position: fixed;
    left: 50%;
    bottom: -30%;
    width: 100%;
    max-width: 750px;
    transform: translateX(-50%);
    transition: bottom .3s;
    background: #9d1313;
    box-sizing: border-box;
    z-index: 999;
    padding: 0.889rem;
}

.font_bar,
.font_bg,
.font_sz {
    display: flex;
    align-items: center;
    gap: 0.8889rem;
}

.font_bar .font_bg span {
    box-sizing: border-box;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.8889rem;
    font-weight: 700;
    background: #fbfdff;
    text-align: center;
    border-radius: 50%;
}

.font_bg span.active {
    border: 2px solid var(--primary-6);
    ;
}

.font_bg span.white {
    background-color: #fff;
    color: #000;
}

.font_bg span.yellow {
    background: #ed9e9e;
    color: #000;
}

.font_bg span.black {
    background-color: rgba(253, 59, 0, .6);
    color: #fff;
}

.font_bar .font_sz {
    background: #d33a3a;
    font-size: 0.8889rem;
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
    padding: 0.889rem;
    flex: 1;
    width: 100%;
    justify-content: space-between;
}

.font_sz div i {
    font-style: normal;
}

.reader-setting__btn {
    display: flex;
    justify-content: center;
    margin-top: 0.8889rem;
}

.reader-setting__btn .AlphaButton {
    max-width: 17.778rem;
    min-width: unset;
    width: 100%;
}



@media (min-width: 767px) {


    .AlphaContainer__mobile__cont {
        display: none;
    }
}

/* 广告位 */
.positionFixed {
    bottom: 0px;
    left: 50%;
    position: fixed;
    transform: translate(-50%, 0%);
    z-index: 999;
    width: 100%;
    background-color: #e4e4e4;
    display: flex;
    justify-content: center;
    height: 50px;
}

.ad-div {
    clear: both;
    min-width: 250px;
    /* min-height: 250px; */
    margin-bottom: 10px;
    width: 100%;
}

.t_de {
    max-width: 100%;
    line-height: 2;
    font-size: 12px;
    box-sizing: border-box;
    color: #707070;
    text-align: center;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* home */
.section h2 {
    position: relative;
    margin: 0 0 0.8rem;
    color: #666;
    margin-top: .333rem;
    font-size: 1.066rem;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
}




.section h2 {
    position: relative;
    margin: 0 0 0.8rem;
    color: #666;
    margin-top: .333rem;
    font-size: 1.066rem;
    font-weight: 700;
    line-height: 1.2;
}

.section h2 a {
    font-size: 14px;
}

ul.book_grid {
    margin: 0 1.333rem 0 0;
    font-size: .866rem;
}

ul.book_grid li figure {
    margin: 0 auto;
    max-width: 8.333rem;
}

ul.book_grid li .sub {}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}



ul.book_grid li figure img {
    max-width: 100%;
}

.genre_name,
.genre_name_common {
    display: inline-block;
    margin-bottom: .333rem;

    color: #666;
    font-size: .573rem;
    font-weight: 700;
    line-height: normal;
}

.genre_name {
    border-radius: 1rem;
}

.genre_name.txt_genre_val100 {}

.genre_name.txt_genre_val100 a {
    display: block;
    font-size: 15px;
    
    padding: 5px 0 5px 0px;
    overflow: hidden;
    line-height: 1.1rem;
    white-space: nowrap;
}

.word-total {
    color: #999;
    font-size: 12px !important;
}

.n3 {
    --n: 3;
}

.not-one {
    font-size: 1rem;
}

.not-one .number-item {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background-color: #bababa;
    color: #fff;
    font-size: 15px;
    text-align: center;
}

.topEditorsList .book_grid li:nth-child(2) .not-one .number-item,
.topEditorsList .book_grid li:nth-child(3) .not-one .number-item {
    background-color: #f90;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: var(--n);
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book_name,
.issued_book_name {
    font-weight: 700;
}

.book_list a {
    font-size: 1rem;
    font-weight: normal;
}

.book_name,
.issued_book_name {
    margin: 0 0 .333rem;
    padding: 0;
    font-size: 1rem;
    word-break: break-word;
}

.book_catch {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #979797;
    line-height: 28px;

}

.book_catch p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #979797;
    line-height: 28px;
}

.book_catch,
.book_catch2 {
    font-size: .866rem;
    word-break: break-word;
}

.book_grid2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.book_grid2 .swiper-slide {
    flex: 0 0 calc((100% - 2 * 20px) / 3);
}

.topEditorsList .book_grid {
    display: block;
    margin-bottom: 1rem;
}

.topEditorsList .book_grid li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin: 0;
    padding: 0 0 1rem;
    width: 100%;
}


.topEditorsList .book_grid li figure {
    -webkit-flex-basis: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
    margin-right: .666rem;
    margin-bottom: 0;
    position: relative;
}

.topEditorsList .book_grid li figure span {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #676666;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topEditorsList .book_grid li:nth-child(1) figure span {
    background: #f60;
}

.topEditorsList .book_grid li:nth-child(2) figure span {
    background: #f6ae5f;
}

.topEditorsList .book_grid li:nth-child(3) figure span {
    background: #ccd10c;
}

.topEditorsList .book_grid_two li figure span{
        position: absolute;
    bottom: 0px;
    left: 0px;
    font-size: .6rem;
    background-color: #278f13 !important;
    color: #fff;
    padding: 0 8px;
    font-weight: normal;
    z-index: 1;
    border-radius: 0;
    height: 1.2rem;
    line-height: 1.2rem;
    width: auto;
}
.topEditorsList .book_grid_two li figure em{
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    height: 1.2rem;
    font-style: normal;
    color: #fff;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    padding: 0px 8px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.25);
    margin-left: 8px;
}
.topEditorsList .book_grid_two li:nth-child(1) figure span {
    background-color: #1a63a1!important;
}
figure img {
    width: 100%;
    height: 100%;
}


.topEditorsList .book_grid li>div:last-of-type {
    -webkit-flex-basis: 70%;
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    max-width: 70%;
}

.book_name,
.issued_book_name {
    font-size: .816rem;
}

.writer_name {
    font-size: .666rem;
}

.topEditorsList .book_grid li>div:last-of-type .book_catch {
    /* display: block; */
}

/* author */
.author-profile {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 15px;
    padding: 10px;
}

.author-info {
    text-align: center;
}

.author-name {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.author-name:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #3660ef;
    border-radius: 2px;
}

.author-stats {
    display: flex;
    justify-content: center;
    margin: 25px 0 10px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.stat-item:not(:last-child):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: #eee;
}

.stat-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--logo);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
}

/* breadcrumb */
.book-nav {

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222;
    left: 0.4rem;
    margin-top: 0.37333rem;
}

.breadcrumb li {
    display: inline;
}

.nav-item1,
.nav-item2 {
    height: 0.48rem;
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    line-height: 0.48rem;
}

/* list */
.filter {
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    background-color: #f3f3f3;
    margin-bottom: 10px;
    float: none;
    width: 100%;
}

.pagetitle {
    display: block;
    height: 40px;
    position: relative;
    padding-bottom: 0px;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 0 10px;
    font-size: 1rem;
}

.pagetitle h3,
.typeName h1 {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #666;
    height: 40px;
    line-height: 40px;
}

.filterbox {
    margin: 0 auto;
    max-width: 1400px;
    background-color: unset;
    padding: 0px;
    border-radius: 0px;
    background-color: unset;
}

.filterbox dl {
    display: block;
    padding: 5px 10px 5px 10px;
    font-size: 1rem;
    line-height: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 0px solid #fff;
}

.filterbox dl:first-child {
    border-top: 0;
}

.filterbox dl {
    border-bottom: 2px solid #fff;
}

.filterbox dt {
    display: block;
    color: #666;
    width: auto;
    min-width: 60px;
    float: none;
    font-size: 1rem;
    font-weight: bold;
    padding: 0;
    line-height: normal;

}

.filterbox dd {
    display: block;
    width: auto;
    overflow: hidden;
    padding: 5px;
}

.filterbox dd ul {
    display: block;
    font-size: 0;
    max-height: 145px;
    overflow: hidden;
    overflow-y: auto;
}

.filterbox dd li {
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 0 0;
    padding: 2px 0;
    font-size: .7rem;
}

.filterbox dd li a {
    color: #333;
    display: block;
    padding: 0 10px;
    border-radius: 5px;
}

.filterbox dd li.active a {
    background-color: var(--logo);
    color: #fff;
}





.bookList .clm {
    position: relative;
    padding: .8rem;
    border: 1px solid #e5e5e5;
}

.bookList .clm {
    margin: 0;
    padding: .8rem 0;
    border: none;
    border-top: 1px solid #e5e5e5;
}

.bookList,
.bookList .clm {
    margin: 0 0 1.333rem;
}

.bookList .clm .pic {
    position: relative;
    float: left;
    width: 8.333rem;
    margin: 0 1.333rem 0 0;
}

.bookList .clm .item {
    overflow: hidden;
}

.bookList .clm .title {
    padding: .4rem 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.bookList .clm p {
    margin: 0 0 .2rem;
    font-size: .933rem;
}


.genre_name {
    border-radius: 1rem;
}

.genre_name.txt_genre_val200 {
    border: 1px dotted #00c6d2;
    -webkit-filter: saturate(.8);
    filter: saturate(.8);
}

.bookList .clm .genre_name {
    margin-right: .666rem;
    vertical-align: 1px;
}

.bookList .clm .keyword {
    clear: both;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* margin: 0 -.666rem -.333rem 0; */
    padding: .666rem 0 0;
}

.bookList .clm .keyword li {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 0 .333rem;
}

.bookList .clm .keyword li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: .133rem .666rem .133rem 0;
    font-size: 1rem;
    text-align: center;
    color: #ff7d99;
    font-size: .866rem;
}

/* catalogue */

.title-wrap {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.title-wrap,
.title-wrap .likeIconArea {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.bookDetails .title h2 {
    position: static;
    margin: 0;
    padding: 0;
    font-size: 1.466rem;
    font-weight: 700;
    line-height: normal;
}

.bookDetails .group-01 {
    margin-bottom: 1rem;
}

.bookDetails .group-01 .sub {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.bookDetails .group-01 .sub,
.bookDetails .group-01 .sub .subDetails-01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.bookDetails .group-01 .genre_name {
    margin: 0 .666rem 0 0;
    padding: .133rem .666rem;
    font-size: .866rem;
}

.bookDetails .group-02 {
    margin-bottom: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.bookDetails .group-02 .pic {
    -webkit-flex-basis: 13.333rem;
    -ms-flex-preferred-size: 13.333rem;
    flex-basis: 13.333rem;
    margin-right: .666rem;
    text-align: center;
}

.bookDetails .group-02 .pic figure img {
    width: auto;
    height: auto;
    min-width: 9rem;
}

.keywordList {
    clear: both;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 .666rem .333rem;
}

.keywordList li {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 0 .333rem;
}

.bookDetails .title {
    margin: 0 0 .333rem;
}

.bookDetails .title h2 {
    font-size: 1rem;
}

.bookDetails .group-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.bookDetails .group-01 {
    -webkit-flex-basis: calc(100% - 8.666rem);
    -ms-flex-preferred-size: calc(100% - 8.666rem);
    flex-basis: calc(100% - 8.666rem);
}

.bookDetails .group-01 .sub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.bookDetails .rankHistory {
    margin-top: .933rem;
    width: 100%;
}


.bookDetails .rankHistory dl dt {
    position: relative;
    display: inline-block;
    padding: 0 .8rem;
    font-weight: 700;
    top: -.4rem;
    left: .666rem;
    background-color: #fff;
}

.bookDetails .rankHistory dl dd {
    margin-top: -.333rem;
    padding: 0 .666rem .666rem;
}

.bookDetails .rankHistory dl dd p {
    margin-top: .666em;
}

.bookDetails .group-01 .genre_name {
    font-size: .733rem;
    font-weight: 400;
}

.bookDetails .group-01 .name {
    padding-bottom: .333rem;
    font-size: .733rem;
    word-break: break-all;
}

.bookDetails .group-01 .name a {
    color: #ff7d99;
}

.bookDetails .group-02 {
    -webkit-flex-basis: 8rem;
    -ms-flex-preferred-size: 8rem;
    flex-basis: 8rem;
    margin-right: .666rem;
    margin-bottom: .666rem;
}

.bookDetails .group-02 .pic {
    margin-right: 0;
}

.bookDetails .group-02 .pic figure img {
    max-width: 9rem;
}

.share-read{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bookDetails .keywordList {
    margin: 0;
}

.keywordList li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: .133rem .666rem .133rem 0;
    font-size: 1rem;
    text-align: center;
    color: #ff7d99;
}

.keywordList li a {
    padding: .133rem .533rem .133rem 0;
    font-size: .866rem;
}

.bookDetails .keywordList li a {
    font-size: .733rem;
}

.bookDetails .rankHistory dl {
    font-size: .666rem;
    border: 1px solid #e6e6e6;
}

.bookSummary-01 {
    padding: 1rem;
    text-align: center;
    background-color: #fbfbfb;
}

.bookSummary-01 {
    font-size: .733rem;
}

.bookChapterList {
    padding: .233rem 0 0;

}

.section-cata h3 {
    position: relative;
    margin: 0 0 1rem;
    padding: .133rem 0 .133rem 2rem;
    color: #333;
    font-size: 1.133rem;
    font-weight: 700;
}

.bookChapterList h3 {
    background-image: url(../images/align-left-text.svg);
    background-repeat: no-repeat;
    background-position: .666rem .466rem;
    background-size: 1.333rem 1.333rem;
}

.bookChapterList h3 {
    background-position: .333rem .333rem;
}

.section .ttlStyle03,
.ttlStyle03 {
    padding: .4rem .333rem .4rem 1.8rem;
    font-size: 1rem;
}

.bookChapterList>ul {
    margin: 0 0 0 1rem;
    font-size: 1.066rem;
    font-weight: 700;
    border-bottom: 1px solid #d8d7d1;
}

.bookChapterList ul {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

.bookChapterList>ul>li a,
.bookChapterList>ul>li p {
    display: block;
    padding: .666rem 0 .666rem .666rem;
    border-top: 1px solid #d8d7d1;
    font-size: .9rem;
}
.bookDetails-style2 .rankHistory{
    margin-top: 0;
}
.bookbox .title {
    position: relative;
    width: auto;
    left: 0;
    box-sizing: border-box;
    padding: 5px 0px 5px 0px;
    z-index: 3;
    height: auto;
    line-height: normal;
}
.bookbox .title b {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    height: auto;
    color: #333;
    margin-right: 10px;
}
.bookbox .title span {
    font-size: 12px;
    display: inline-block;
    padding: 0px;
    border-radius: 3px;
    color: #fff;
    line-height: 12px;
    background-color: #f95;
}
.bookbox .title span a {
    display: block;
            padding: 4px 5px;
    color: #fff;
    cursor: pointer;
}
.bookbox .author {
    font-size: 0.8rem;
    padding: 0 0 5px 0px;
    overflow: hidden;
}
.bookbox .author span {
    color: #666;
    font-size: .7rem;
}
.bookbox .author a{
    color: var(--logo);
}
.author a,.author {
        color: #999!important;
            font-size: 13px;
}
.bookbox .book_catch p{
    color: #666;
        -webkit-line-clamp: 3;
        line-height: 20px;
}

.bookbox .data {
    padding: 5px 0 0px 0px;
    font-size: 0rem;
}
.bookbox .data span {
    display: inline-block;
    height: 1.3rem;
    line-height: 1.3rem;
    width: 100%;
    vertical-align: top;
    margin: 0 0 4px 0;
    font-size: .85rem;
}
.funbtn a, .funbtn button {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 10px;
    background-color: var(--logo);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    min-width: 100px;
    text-align: center;
    box-sizing: border-box;
    height: auto;
    line-height: 20px;
    border: 0;
    cursor: pointer;
}
.curchap {
    margin: 0 auto 10px auto;
    max-width: 1400px;
    padding: 0px;
}
.curchap a {
    display: block;
    border:1px solid #eee
;
    padding: 2px 5px;
    padding-left: 40px;
    border-radius: 0px;
    background-color: #f5f5f5
;
    font-size: 0.9rem;
    line-height: 120%;
    position: relative;
    font-weight: bold;
    transition: all 0.2s;
    line-height: 30px;
}
.curchap a:before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -5px;
}
.curchap a svg {
    display: inline-block;
            width: 20px;
        height: 30px;
        position: absolute;
        left: 10px;
        top: 50%;
        margin-top: -16px;
    fill: rgb(0,192,179)
;
    vertical-align: top;
}
.curchap a em {
    font-style: normal;
            font-size: .8rem;
        margin: 0 8px 0 0;
    color: rgb(0,192,179);
}
.curchap a em:after {
    content: ":";
    font-size: 10px;
}
.curchap a .lastchap span {
    margin-right: 15px;
    color: rgb(0,192,179);
}
.curchap a:after {
    content: "";
    display: block;
    width: auto;
    clear: both;
    height: 0;
    overflow: hidden;
}



/* rank */
.fig-gdrulg {
    display: flex;
    gap: 0.6rem;
}

.fig-gdrulg a:hover,
.fig-gdrulg a.active {
    color: var(--logo);
}

/* fontSize */
.ReadpageT {
    background-color: #fff;
    padding: 0.8em;
    font-size: 1rem;
    box-shadow: 2px 2px 3px #b3b0b0;
    border-radius: 12px;
    border-top: 2px solid #b3b0b0;
    border-bottom: 2px solid #b3b0b0;
}

.ReadpageT a {
    display: inline-block;
    cursor: pointer;
}

.ReadpageT .sizebg {
    vertical-align: middle;
    padding: 0 0.6em;
    text-align: center;
    font-weight: bold;
    color: #000;
    text-shadow: 1px 1px 1px #333;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.lightoff,
.huyanoff,
.sizebgon {
    vertical-align: middle;
    display: inline-block;
    padding: 0.3em 0.5em;
    border: 1px solid #333;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 1px 2px #8b8b8b inset, 0 -1px 0 #3d3d3d inset, 0 -2px 3px #8b8b8b inset;
    background: -webkit-linear-gradient(top, #656565, #4c4c4c);
    background: -moz-linear-gradient(top, #656565, #4a4a4a);
    background: linear-gradient(top, #656565, #4a4a4a);
    -moz-border-radius: 0.3em;
    -webkit-border-radius: 0.3em;
    border-radius: 0.3em;
}

.font24 {
    font-size: 24px;
}

/* read */
.bookContent .bookHead .title {
    padding: .8rem 0 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.bookContent .bookHead .chapterTit {
    padding: .8rem 0;
    font-size: .933rem;
}

.read-pagination {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.page-bottom {
    margin-top: .8rem;
}

.read-pagination-item {
    align-items: center;
    background-color: #3333330a;
    border-radius: 2rem;
    color: var(--logo);
    display: flex;
    flex: 1;
    font-weight: 700;
    height: 3rem;
    justify-content: center;
    margin-right: .9rem;
}

.read-pagination-item:last-child {
    margin-right: 0;
}


/* share */
.take-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.take-wrap svg {
    width: 1.3rem;
}

.take-wrap a {
    border-radius: 0.5rem;
    width: 1.6rem;
    height: 1.4rem;
    line-height: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

.take-wrap a:nth-child(1) {
    width: auto;
}

.take-wrap a:nth-child(2) {
    background: #f7c317;
    color: #fff;
}

.take-wrap a:nth-child(3) {
    background: #7eafff;
}

.take-wrap a:nth-child(4) {
    background: #ff7070;
}

/* readBtn */
.read-now {
    position: fixed;
    width: 100%;
    max-width: 750px;
    text-align: center;
    height: 2.6rem;
    line-height: 2.6rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: var(--logo);
    color: #fff;
    z-index: 1;
}

/* viewMore */
.catalogue-entry {
    align-items: center;
    border-radius: .4rem;
    color: #fff;
    display: flex;
    font-size: 1rem;
    height: 2rem;
    justify-content: center;
    margin: 01rem auto;
    width: 35%;
    background-color: var(--logo);
}

/* selectCate */
.filter-icon {
    width: 4%;
}

/* pageList */
.pageList {
    margin: 1.333rem 0;
}

.pageList ul {
    letter-spacing: -.466rem;
    vertical-align: top;
    text-align: center;
}

.pageList ul li {
    display: inline-block;
    margin: 0 .333rem;
    letter-spacing: normal;
}

.pageList ul li a {
    display: block;
    min-width: 2.333rem;
    height: 2.333rem;
    padding: 0 .333rem;
    color: #666;
    font-size: 1rem;
    line-height: 2.333rem;
    text-align: center;
    text-decoration: none;
    border-radius: .333rem;
    background: #eee;
}

.pageList ul li a {
    min-width: 2.066rem;
    height: 2.066rem;
    font-size: .933rem;
    line-height: 2.066rem;
}

.pageList ul li.active a {
    color: #fff;
    background: #333;
}

.pageList ul li.next a,
.pageList ul li.prev a {
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 1.666rem 1.666rem;
}


/* 顶部导航栏 */
.read-header {
  /* position: sticky; */
  top: 46px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.back-button {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.book-title-read {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  height: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.settings-button {
  font-size: 16px;
  color: #666;
}
.bookContent{
    position: relative;
}
/* 设置面板 */
.settings-panel {
  position: absolute;
   top: 50px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: none;
  z-index: 100;
}

.settings-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.settings-group {
  margin-bottom: 15px;
}

.settings-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.font-size-controls, .theme-controls {
  display: flex;
}

.control-button {
  flex: 1;
  padding: 8px 0;
  text-align: center;
  background-color: #f5f5f5;
  color: #666;
  border-radius: 4px;
  margin: 0 5px;
}

.control-button.active {
  background-color: #3366ff;
  color: #fff;
}


.font-size-value {
  font-size: 12px;
  color: #999;
}

/* 滑动条样式 */
.font-size-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background: #ddd;
  outline: none;
  border-radius: 2px;
}

.font-size-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #3366ff;
  border-radius: 50%;
  cursor: pointer;
}

.font-size-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #3366ff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
@media screen and (max-width: 767px) {
    .book_catch ,.book_catch p{
        line-height: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            color: #979797;
            line-height: 18px;
    }
    .search-box.search-box-active {
    transform: translateX(-33%) ;
    opacity: 1;
    }
    .header__menu--opened {
        transform: translateX(62%);
    }
    .header::before {
        height: 50px;
        width: 100%;
    }

    .header:after {
        content: none;
    }

    /* home */
    figure img {
        width: 100%;
        height: 100%;
    }

    .topSection {
        margin: 0 .2rem 0.1rem;
        padding: .666rem .666rem 0;
    }

    .topSection {
        background-color: #fff;
    }

    .section h2 {
        position: relative;
        margin: 0 0 0.8rem;
        color: #666;
        margin-top: .333rem;
        font-size: 1.066rem;
        font-weight: 700;
        line-height: 1.2;
    }






    ul.book_grid {
        margin: 0 0 .333rem;
    }

    .topEditorsList .book_grid {
        display: block;
        margin-bottom: 1rem;
    }

    .topEditorsList .book_grid li {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin: 0;
        padding: 0 0 1rem;
        width: 100%;
    }

    .topEditorsList .book_grid li figure {
        -webkit-flex-basis: 35%;
        -ms-flex-preferred-size: 35%;
        flex-basis: 35%;
        margin-right: 10px;
        margin-bottom: 0;
        width: 126px;
    }


    .topEditorsList .book_grid li>div:last-of-type {
        -webkit-flex-basis: 65%;
        -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
        max-width: 65%;
    }

    .book_name,
    .issued_book_name {
        padding-top: 0;
        font-size: 19px;
        line-height: 28px;
        height: 28px;

    }

    .book_name a,
    .issued_book_name a {
        color: var(--logo);
    }

    .writer_name {
        font-size: .666rem;
        color: #666;
        display: block;
        vertical-align: top;
        float: none;
        font-size: 13px;
        padding-right: 10px;
        padding-top: 20px;
    }

    .topEditorsList .book_grid li>div:last-of-type .book_catch {
        /* display: block; */
    }

    /* list */
    .bookList {
        border-bottom: 1px solid #e5e5e5;
    }

    .bookList .clm {
        position: relative;
        padding: .8rem;
        border: 1px solid #e5e5e5;
        overflow: hidden;
    }

    .bookList .clm {
        margin: 0;
        padding: .8rem 0;
        border: none;
        border-top: 1px solid #e5e5e5;
    }
    
    .linkGroup {
        position: relative;
        z-index: 1;
    }

    .bookList .clm .pic {
        width: 7rem;
        margin: 0 1.066rem 0 0;
    }

    .bookList .clm .title {
        padding: 0;
        font-size: 1rem;
    }

    .bookList .clm .name {
        font-size: .933rem;
        margin: 0;
    }

    .bookList .clm .name,
    .bookList .clm .name a {
        padding: .533rem 0 .8rem;
    }

    .linkGroup .bookshelf a,
    .linkGroup a.innerLink,
    .linkGroup .innerLink p,
    .linkGroup button {
        position: relative;
        z-index: 3;
        color: #666;
        font-size: 12px;
    }

    .bookList .clm .name a {
        text-decoration: underline;
    }

    .bookList .clm .name,
    .bookList .clm .name a {
        padding: .533rem 0 .8rem;
    }

    .bookList .clm p {
        font-size: .8rem;
    }

    .bookList .clm .keyword {
        padding: .8rem 0 0;
    }

    .bookList .clm .keyword li {
        margin: 0 0 .333rem;
    }

    .bookList .clm .keyword li a {
        padding: .133rem .533rem .133rem 0;
        font-size: .866rem;
    }

    /* catalogue */
    .bookDetails .title {
        margin: 0 0 .333rem;
    }

    .bookDetails .title h2 {
        font-size: 1rem;
    }

    .bookDetails .group-wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .bookDetails .group-01 {
        -webkit-flex-basis: calc(100% - 8.666rem);
        -ms-flex-preferred-size: calc(100% - 8.666rem);
        flex-basis: calc(100% - 8.666rem);
    }

    .bookDetails .group-01 .sub {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .bookDetails .rankHistory {
        margin-top: .933rem;
        width: 100%;
    }


    .bookDetails .rankHistory dl dt {
        position: relative;
        display: inline-block;
        padding: 0 .8rem;
        font-weight: 700;
        top: -.4rem;
        left: .666rem;
        background-color: #fff;
    }

    .bookDetails .rankHistory dl dd {
        margin-top: -.333rem;
        padding: 0 .666rem .666rem;
    }

    .bookDetails .rankHistory dl dd p {
        margin-top: .666em;
    }

    .bookDetails .group-01 .genre_name {
        font-size: .733rem;
        font-weight: 400;
    }

    .bookDetails .group-01 .name {
        padding-bottom: .333rem;
        font-size: .733rem;
        word-break: break-all;
    }

    .bookDetails .group-01 .name a {
        color: #ff7d99;
    }

    .bookDetails .group-02 {
        -webkit-flex-basis: 8rem;
        -ms-flex-preferred-size: 8rem;
        flex-basis: 8rem;
        margin-right: .666rem;
        margin-bottom: .666rem;
    }

    .bookDetails .group-02 .pic {
        margin-right: 0;
    }

    .bookDetails .group-02 .pic figure img {
        max-width: 9rem;
    }

    .bookDetails .keywordList {
        margin: 0;
    }

    .keywordList li a {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: .133rem .666rem .133rem 0;
        font-size: 1rem;
        text-align: center;
        color: #ff7dda;
    }

    .keywordList li a {
        padding: .133rem .533rem .133rem 0;
        font-size: .866rem;
    }

    .bookDetails .keywordList li a {
        font-size: .733rem;
    }

    .bookDetails .rankHistory dl {
        font-size: .666rem;
        border: 1px solid #e6e6e6;
    }

    .bookSummary-01 {
        padding: 1rem;
        text-align: center;
        background-color: #fbfbfb;
    }

    .bookSummary-01 {
        font-size: .733rem;
    }

    .bookChapterList {
        padding: .233rem 0 0;

    }

    .section-cata h3 {
        position: relative;
        margin: 0 0 1rem;
        padding: .133rem 0 .133rem 2rem;
        color: #333;
        font-size: 1.133rem;
        font-weight: 700;
    }

    .bookChapterList h3 {
        background-image: url(../images/align-left-text.svg);
        background-repeat: no-repeat;
        background-position: .666rem .466rem;
        background-size: 1.333rem 1.333rem;
    }

    .bookChapterList h3 {
        background-position: .333rem .333rem;
    }

    .section .ttlStyle03,
    .ttlStyle03 {
        padding: .4rem .333rem .4rem 1.8rem;
        font-size: 1rem;
    }

    .bookChapterList>ul {
        margin: 0 0 0 1rem;
        font-size: 1.066rem;
        font-weight: 700;
        border-bottom: 1px solid #d8d7d1;
    }

    .bookChapterList ul {
        margin: 0;
        padding: 0;
        font-size: 1rem;
    }

    .bookChapterList>ul>li a,
    .bookChapterList>ul>li p {
        display: block;
        padding: .666rem 0 .666rem .666rem;
        border-top: 1px solid #d8d7d1;
        font-size: .9rem;
    }

    /* read */
    .bookContent .bookHead .title {
        padding: .8rem 0 0;
        font-size: 1.4rem;
        font-weight: 700;
    }


    .bookContent .bookBody {
        margin: 0;
        padding: 1.333rem 0;
        font-size: 1rem;
        line-height: 1.9;
        border-top: 1px dashed #d2d2d2;
    }





    .catalogue.detail-page {
        height: auto;
        max-height: 24.5rem;
        overflow: hidden;
    }

    .catalogue.detail-page.open {
        max-height: none;
    }



    /* share */
    .take-wrap {
        display: flex;
        align-items: center;
        gap: .6rem;
    }

    .take-wrap svg {
        width: 1.3rem;
    }

    .take-wrap a {
        border-radius: 0.5rem;
        width: 1.6rem;
        height: 1.4rem;
        line-height: 1.5rem;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .take-wrap a:nth-child(1) {
        width: auto;
    }

    .take-wrap a:nth-child(1) {
        background: #f7c317;
        color: #fff;
    }

    .take-wrap a:nth-child(2) {
        background: #7eafff;
    }

    .take-wrap a:nth-child(3) {
        background: #ff7070;
    }
    .settings-panel {
        position: absolute;
        top: 50px;
        left: 0;
        width: 100%;
        background-color: #fff;
        transform: translateX(0);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 15px;
        display: none;
        z-index: 100;
    }

}