:root {
    --neo-bg: #07162f;
    --neo-bg-soft: #0d2245;
    --neo-surface: rgba(11, 27, 58, 0.82);
    --neo-surface-strong: rgba(8, 20, 45, 0.96);
    --neo-card: rgba(238, 248, 255, 0.96);
    --neo-card-soft: rgba(224, 240, 255, 0.88);
    --neo-border: rgba(120, 198, 255, 0.24);
    --neo-line: rgba(120, 198, 255, 0.18);
    --neo-accent: #47d6ff;
    --neo-accent-strong: #118dff;
    --neo-highlight: #87f4ff;
    --neo-text: #102646;
    --neo-text-strong: #f4fbff;
    --neo-text-soft: #8eaed0;
    --neo-text-muted: #5d7ca2;
    --neo-danger: #ff749a;
    --neo-shadow: 0 28px 70px rgba(1, 9, 24, 0.28);
    --neo-shadow-soft: 0 18px 44px rgba(2, 14, 34, 0.18);
    --neo-radius-xl: 34px;
    --neo-radius-lg: 26px;
    --neo-radius-md: 20px;
    --neo-radius-sm: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--neo-text);
    background:
        radial-gradient(circle at 12% 18%, rgba(71, 214, 255, 0.22), transparent 32%),
        radial-gradient(circle at 84% 10%, rgba(17, 141, 255, 0.18), transparent 26%),
        radial-gradient(circle at 50% 100%, rgba(135, 244, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #08162d 0%, #0b1d3c 30%, #eef6ff 30.1%, #eff8ff 100%);
    font: 14px/1.6 "Segoe UI", "Microsoft YaHei", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
input[type="button"],
input[type="submit"] {
    border: 0;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

ul,
ol,
dl,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
}

textarea {
    resize: vertical;
}

::placeholder {
    color: #88a5c6;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.pull-left {
    float: left !important;
}

.pull-right {
    float: right !important;
}

.overflow-Show {
    overflow: visible !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.pb40 {
    padding-bottom: 40px !important;
}

.pl10 {
    padding-left: 10px !important;
}

.color-main {
    color: var(--neo-accent-strong) !important;
}

.bg-gray {
    background: rgba(83, 129, 182, 0.08) !important;
}

.icon,
.read-icon-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    line-height: 1;
    color: var(--neo-accent-strong);
    background: rgba(71, 214, 255, 0.14);
    border: 1px solid rgba(71, 214, 255, 0.22);
}

.icon::before,
.read-icon-list::before {
    display: block;
    content: "+";
}

.icon-search::before {
    content: "/";
}

.icon-box::before,
.icon-edit::before,
.icon-edit2::before,
.icon-ok::before {
    content: "+";
}

.icon-d-caret::before,
.icon-down::before {
    content: "v";
}

.icon-wallet::before,
.icon-bag::before,
.icon-cart::before {
    content: "$";
}

.icon-bookrack::before {
    content: "=";
}

.icon-vip::before {
    content: "V";
}

.icon-password::before {
    content: "*";
}

.icon-fav2::before {
    content: "*";
}

.icon-fav2-full::before {
    content: "#";
}

.read-icon-list::before {
    content: "=";
}

.btn,
.button,
.btn-1,
.btn-2,
.wallet-btn,
.channel-btn,
.view-pay-btn,
.commentbtn,
.del-btn,
.finish-btn,
.save-btn,
.btn.full {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    color: #f4fbff;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%);
    box-shadow: 0 16px 30px rgba(17, 141, 255, 0.22);
}

.btn:hover,
.button:hover,
.btn-1:hover,
.btn-2:hover,
.wallet-btn:hover,
.channel-btn:hover,
.view-pay-btn:hover,
.commentbtn:hover,
.del-btn:hover,
.finish-btn:hover,
.save-btn:hover,
.btn.full:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(17, 141, 255, 0.28);
}

.del-btn,
.finish-btn,
.btn-1 {
    background: rgba(13, 38, 79, 0.08);
    color: var(--neo-text);
    box-shadow: none;
}

.btn-1.active,
.btn_collection.active {
    background: linear-gradient(135deg, #6ce3ff 0%, #17a2ff 100%);
    color: #f4fbff;
}

.wallet-btn,
.finish-btn,
.del-btn,
.btn.full,
.a-code-get,
.btnphonecodeget {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 16px;
}

.a-code-get,
.btnphonecodeget {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--neo-accent-strong);
    background: rgba(71, 214, 255, 0.12);
    border: 1px solid rgba(71, 214, 255, 0.2);
    box-shadow: none;
}

.neo-global-overlay,
.neo-comic-orbit {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.neo-global-overlay {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0/56px 56px,
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0/56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 45%);
}

.neo-comic-orbit {
    background:
        radial-gradient(circle at 20% 15%, rgba(71, 214, 255, 0.22), transparent 16%),
        radial-gradient(circle at 75% 6%, rgba(17, 141, 255, 0.22), transparent 16%),
        radial-gradient(circle at 85% 48%, rgba(135, 244, 255, 0.12), transparent 18%);
}

.site-neo .neo-comic-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.site-neo .neo-header {
    position: sticky;
    top: 0;
    z-index: 25;
    border-bottom: 1px solid rgba(142, 174, 208, 0.12);
    background: rgba(4, 14, 33, 0.82);
    backdrop-filter: blur(22px);
}

.site-neo .neo-header__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: min(1240px, calc(100% - 48px));
    min-height: 86px;
    margin: 0 auto;
}

.site-neo .neo-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 420px;
    gap: 12px;
    min-width: 420px;
    max-width: 420px;
    color: #f4fbff;
}

.site-neo .neo-brand img {
    width: 46px;
    height: 46px;
    padding: 8px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(71, 214, 255, 0.24), rgba(17, 141, 255, 0.2));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 26px rgba(2, 12, 29, 0.22);
}

.site-neo .neo-brand strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.1;
}

.site-neo .neo-brand em {
    display: none;
    margin-top: 3px;
    color: #9cbad8;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.site-neo .neo-nav {
    display: inline-flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
}

.site-neo .neo-nav a,
.site-neo .neo-actions a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    color: #d9ebff;
}

.site-neo .neo-nav a {
    flex: 0 0 auto;
    font-size: 12px;
}

.site-neo .neo-nav a:hover,
.site-neo .neo-actions a:hover,
.site-neo .neo-login,
.site-neo .neo-register {
    background: rgba(71, 214, 255, 0.12);
    color: #f4fbff;
}

.site-neo .neo-register {
    background: linear-gradient(135deg, rgba(71, 214, 255, 0.24), rgba(17, 141, 255, 0.32));
}

.site-neo .neo-search {
    display: inline-flex;
    flex: 0 0 260px;
    align-items: center;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    padding: 6px;
    border: 1px solid rgba(71, 214, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.site-neo .neo-search input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 12px;
    border: 0;
    color: #f4fbff;
    background: transparent;
    font-size: 12px;
}

.site-neo .neo-search button {
    min-width: 74px;
    height: 42px;
    border-radius: 999px;
    color: #f4fbff;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%);
}

.site-neo .neo-actions {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-self: end;
    gap: 6px;
}

.site-neo .neo-main {
    position: relative;
    z-index: 2;
    padding: 40px 0 84px;
}

.site-neo .neo-footer {
    position: relative;
    z-index: 2;
    padding: 0 0 36px;
}

.site-neo .footer-wrap {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 24px 32px;
    border: 1px solid rgba(120, 198, 255, 0.18);
    border-radius: 26px;
    background: rgba(6, 20, 46, 0.72);
    backdrop-filter: blur(18px);
}

.site-neo .footer-cont p,
.site-neo .footer-cont a {
    text-align: center;
    color: #90afd0;
}

.site-neo .footer-cont em {
    display: inline-block;
    margin: 0 10px;
    color: #4e729c;
    font-style: normal;
}

.neo-panel,
.box,
.account-box,
.news-info,
.news-list,
.hot-news,
.new-book,
.user-card,
.scan-pay-box,
.view-pay-form,
.aside-box.converted,
.vip-recharge-con,
.banner_detail_form,
.sub-manga,
.left-bar,
.view-comment-main {
    border: 1px solid rgba(120, 198, 255, 0.18);
    border-radius: var(--neo-radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 245, 255, 0.92));
    box-shadow: var(--neo-shadow-soft);
}

.neo-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--neo-accent-strong);
    background: rgba(71, 214, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.neo-page-title,
.index-title h2,
.vip-box-title,
.news-list h2,
.news-info .title h1,
.account-box .head,
.table-head a.active,
.box-header .title,
.index-rank-title,
.detail-list-title,
.sub-manga .top,
.view-comment-main .top h2,
.box-wallet .box-header h1 {
    color: var(--neo-text);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.neo-page-title {
    margin-top: 14px;
    font-size: clamp(28px, 3vw, 40px);
}

.neo-account-tip {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #dff7ff;
    background: rgba(71, 214, 255, 0.16);
    backdrop-filter: blur(16px);
}

.mh-star-line {
    display: inline-block;
    width: 88px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffbf4d 0%, #ffd873 78%, rgba(255, 216, 115, 0.18) 78%);
    vertical-align: middle;
}

.home-stage {
    padding: 22px;
    border-radius: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    box-shadow: 0 22px 68px rgba(1, 8, 22, 0.28);
}

.shutter {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.shutter-img,
.shutter-img a {
    border-radius: 32px;
    overflow: hidden;
}

.shutter img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shutter::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(1, 8, 22, 0.78));
    pointer-events: none;
}

.shutter-btn {
    position: absolute;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
}

.shutter-btn li {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.shutter-desc {
    position: absolute;
    inset: auto auto 34px 34px;
    z-index: 2;
    max-width: 52%;
}

.shutter-desc p {
    color: #f4fbff;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.18;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.home-rank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.index-rank {
    padding: 28px;
    border: 1px solid rgba(120, 198, 255, 0.14);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 246, 255, 0.93));
    box-shadow: var(--neo-shadow-soft);
}

.index-rank-title {
    margin-bottom: 22px;
    font-size: 24px;
}

.index-rank-list {
    display: grid;
    gap: 18px;
}

.index-rank-list li {
    display: grid;
    grid-template-columns: 78px 40px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.index-rank .cover img {
    width: 78px;
    height: 104px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 14px 28px rgba(10, 28, 59, 0.18);
}

.index-rank .sign span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #f4fbff;
    font-weight: 700;
    background: linear-gradient(135deg, #72e8ff 0%, #1d8fff 100%);
}

.index-rank .sign .top-1 {
    background: linear-gradient(135deg, #ffd36d 0%, #ff9c42 100%);
}

.index-rank .sign .top-2 {
    background: linear-gradient(135deg, #b6c6e3 0%, #7596c8 100%);
}

.index-rank .sign .top-3 {
    background: linear-gradient(135deg, #7de4ff 0%, #2ac4ff 100%);
}

.index-rank .title a,
.mh-item .title a,
.news-list .tit a,
.news-info .book h4 a,
.side-bar h5 a,
.sub-manga .title a,
.view-win-list a,
.neo-user-menu a {
    color: var(--neo-text);
}

.index-rank .title a:hover,
.mh-item .title a:hover,
.news-list .tit a:hover,
.news-info .book h4 a:hover,
.side-bar h5 a:hover,
.sub-manga .title a:hover,
.view-win-list a:hover,
.neo-user-menu a:hover,
.neo-nav a:hover,
.neo-actions a:hover {
    color: var(--neo-accent-strong);
}

.index-rank .title,
.mh-item .title,
.news-list .tit,
.sub-manga .title,
.view-comment-main .title {
    font-size: 16px;
    line-height: 1.45;
}

.index-rank .subtitle,
.mh-item .chapter,
.news-list .text,
.news-info .description,
.sub-manga .subtitle-new,
.desc,
.view-comment-main .content,
.content,
.tip,
.zl,
.count-info,
.options,
.info,
.description,
.book dd .info,
.book dd .intro,
.side-bar p,
.news-info .title p,
.bread {
    color: var(--neo-text-muted);
}

.index-title {
    margin: 48px 0 22px;
}

.neo-section-title__inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

.index-title-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(71, 214, 255, 0.14), rgba(17, 141, 255, 0.18));
}

.index-title h2,
.vip-box-title {
    font-size: clamp(30px, 3vw, 42px);
}

.neo-hot-books {
    padding: 28px 0 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.swiper-container,
.swiper-wrapper,
.swiper-slide {
    overflow: visible;
}

.mh-list.col7,
.index-original-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.mh-list.col1 {
    display: grid;
    gap: 18px;
}

.mh-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mh-list.col1 .mh-item.horizontal,
.mh-item.horizontal.booklist {
    display: grid;
    grid-template-columns: 184px minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.mh-cover,
.mh-item .cover .mh-cover,
.index-original-list .cover .mh-cover,
.mh-list.col1 .mh-cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background-color: #aac8ea;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 3 / 4.1;
    box-shadow: 0 18px 34px rgba(9, 25, 53, 0.18);
}

.mh-list.col1 .mh-cover {
    min-height: 252px;
}

.mh-cover::after,
.index-original-list .cover .mh-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, transparent, rgba(6, 17, 36, 0.82));
}

.mh-tag,
.mh-vip-tag,
.tag.mh-tag,
.mh-cover .read-section,
.mh-cover .tag {
    position: absolute;
    left: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #f4fbff;
    font-size: 12px;
    font-weight: 700;
    background: rgba(6, 20, 46, 0.68);
    backdrop-filter: blur(10px);
}

.mh-tag,
.mh-vip-tag,
.tag.mh-tag {
    top: 14px;
}

.mh-cover .read-section {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 14px;
    justify-content: center;
    padding: 0 12px;
    background: linear-gradient(135deg, rgba(71, 214, 255, 0.9), rgba(17, 141, 255, 0.92));
}

.mh-item-detali,
.mh-item-detali.autoHeight,
.index-original-list .info {
    min-width: 0;
    padding: 0 2px;
}

.mh-item-detali .title,
.index-original-list .title,
.mh-item.horizontal .title {
    display: -webkit-box;
    min-height: 46px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mh-item-detali .chapter,
.mh-item.horizontal .chapter,
.index-original-list .subtitle {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    line-height: 1.72;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.mh-item.horizontal .mh-item-detali {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
}

.index-original-list li {
    min-width: 0;
}

.index-original-list .star {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.index-original-list .star span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 141, 255, 0.16);
}

.index-original-list .star span.active {
    background: linear-gradient(135deg, #ffd76b 0%, #ffb43d 100%);
}

.index-original-list button {
    min-height: 40px;
    padding: 0 18px !important;
    margin-top: 14px !important;
    border-radius: 999px !important;
    color: #f4fbff !important;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%) !important;
}

.index-original-list .tag {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding: 0;
    background: transparent;
}

.index-original-list .tag a,
.banner_detail_form .tip a,
.news-info .book .view,
.side-bar .hot-news a,
.page-pagination a,
.pagination a,
.chapter-list a,
.read-btn,
.zan,
.huifu,
.table-body a {
    color: var(--neo-accent-strong);
}

.index-original-list .tag a,
.banner_detail_form .tip a,
.chapter-list a,
.table-tabs a,
.box-simple-tabs a,
.options a,
.tabs-link a,
.read-btn,
.news-info .book .view {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(71, 214, 255, 0.1);
}

.neo-page-search,
.neo-list-page,
.neo-certificate-page,
.neo-legal-page {
    padding: 32px;
}

.neo-page-search,
.neo-certificate-page,
.neo-legal-page,
.neo-page-booklist,
.neo-page-update,
.neo-page-rank {
    min-height: 0 !important;
}

.neo-page-search .box-body,
.neo-legal-page .box-body,
.neo-certificate-page .box-body {
    margin-top: 26px;
}

.neo-page-search .mh-list.col7,
.neo-list-page .mh-list.col7 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.neo-page-search .mh-item,
.neo-list-page .mh-item {
    padding: 18px;
    border: 1px solid rgba(120, 198, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.75);
}

.banner_detail {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    padding: 72px 0 52px;
}

.banner_border_bg {
    position: absolute;
    inset: 0;
}

.banner_detail::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 15, 35, 0.84) 0%, rgba(8, 24, 55, 0.6) 42%, rgba(8, 24, 55, 0.78) 100%);
}

.banner_detail_bg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    filter: blur(20px) brightness(0.48) !important;
    transform: scale(1.08);
}

.banner_detail_form {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(229, 243, 255, 0.94));
}

.banner_detail_form .cover img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 26px 46px rgba(4, 14, 33, 0.22);
}

.banner_detail_form .info {
    min-width: 0;
    padding-right: 6px;
}

.banner_detail_form h1 {
    color: var(--neo-text);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
}

.banner_detail_form .subtitle {
    margin-top: 12px;
    font-size: 16px;
}

.banner_detail_form .tip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px !important;
}

.banner_detail_form .tip .block {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(71, 214, 255, 0.08);
}

.banner_detail_form .content {
    display: -webkit-box;
    margin-top: 20px;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.9;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.banner_detail_form .bottom {
    position: static !important;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: auto !important;
    margin-top: 28px;
}

.btn-2,
.channel-btn,
.view-pay-btn,
.commentbtn {
    background: linear-gradient(135deg, #5ae1ff 0%, #0c86ff 100%);
}

.btn-1 i,
.btn-2 i {
    margin-right: 8px;
}

.neo-book-grid .container {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    grid-template-areas: "aside chapters" "aside comments";
    gap: 26px;
}

.view-comment-sub {
    grid-area: aside;
    display: grid;
    gap: 20px;
}

.left-bar {
    grid-area: chapters;
    padding: 28px;
}

.view-comment-main {
    grid-area: comments;
    padding: 28px;
    margin-top: 0 !important;
}

.sub-manga {
    padding: 24px;
}

.sub-manga .top,
.detail-list-title,
.view-comment-main .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    margin-bottom: 20px;
    font-size: 22px;
}

.sub-manga .list,
.view-comment-main .list,
.detail-list-select {
    display: grid;
    gap: 16px;
}

.sub-manga .list li {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
}

.sub-manga .cover img {
    width: 72px;
    height: 96px;
    border-radius: 16px;
    object-fit: cover;
}

.subtitle-new,
.sub-manga .tip {
    margin-top: 6px;
    font-size: 13px;
}

.order.desc.inverted,
.detail-more {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--neo-accent-strong);
    background: rgba(71, 214, 255, 0.1);
}

.detail-list-select {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-list-select li a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(120, 198, 255, 0.16);
    border-radius: 18px;
    background: rgba(71, 214, 255, 0.06);
}

.detail-list-3-info-right {
    width: 18px;
    height: 18px;
}

.m-load-more-sm {
    margin-top: 18px;
}

.view-comment-main .postlist,
.view-comment-main .postlist .dashed,
.view-comment-main > .list > li {
    display: grid;
    gap: 18px;
}

.view-comment-main .dashed,
.view-comment-main > .list > li {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 18px 0;
    border-top: 1px solid rgba(120, 198, 255, 0.14);
}

.view-comment-main .cover img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.view-comment-main .bottom,
.view-comment-main .comment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
    color: var(--neo-text-muted);
}

.view-comment-main textarea {
    width: 100%;
    min-height: 138px;
    padding: 18px 20px;
    border: 1px solid rgba(120, 198, 255, 0.18);
    border-radius: 22px;
    background: rgba(247, 251, 255, 0.94);
}

.neo-auth-page,
.neo-page-account {
    min-height: 0 !important;
}

.neo-auth-page {
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 260px) !important;
    padding: 18px 0 56px;
}

.neo-auth-card {
    width: min(560px, 100%);
    padding: 42px;
    border-radius: 34px;
    margin: 0 auto;
}

.neo-page-agreement .neo-auth-card,
.neo-page-agreement .account-box {
    width: min(980px, 100%);
}

.account-box .head {
    font-size: 34px;
    margin-bottom: 24px;
}

.account-login-form,
.account-login-form .form-wrap,
.account-login-form form,
.account-box .right {
    width: 100%;
}

.account-login-form .tip {
    min-height: 24px;
    margin-bottom: 12px;
}

.account-login-form p,
.user-info-form > div,
.user-repasswd .p-r,
.neo-exchange-card p {
    margin-bottom: 16px;
}

.account-login-form p {
    display: block;
}

.account-login-form input,
.account-login-form textarea,
.user-info-form input,
.user-info-form textarea,
.user-repasswd input,
.user-repasswd textarea,
.neo-exchange-card input,
.neo-payment-card input[type="text"],
.neo-payment-card input[type="password"],
.search-input input,
.comment-input {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(120, 198, 255, 0.2);
    border-radius: 18px;
    color: var(--neo-text);
    background: rgba(247, 251, 255, 0.96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.account-login-form textarea,
.user-info-form textarea,
.user-repasswd textarea,
.neo-exchange-card textarea,
.comment-input {
    min-height: 120px;
    padding: 16px 18px;
}

.account-login-form input[style],
.user-repasswd input[style] {
    width: calc(100% - 148px) !important;
}

.account-captcha-row {
    display: flex !important;
    align-items: center;
    gap: 14px;
}

.account-captcha-row input[style] {
    flex: 0 0 150px;
}

.account-captcha-row .a-code-get,
.account-captcha-row .btnphonecodeget {
    flex: 0 0 auto;
    white-space: nowrap;
}

#captcha {
    width: 126px;
    height: 52px;
    margin-left: 0;
    flex: 0 0 126px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--neo-shadow-soft);
}

.account-login-form .button,
.account-login-form .btn.full {
    width: 100%;
}

.options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(120, 198, 255, 0.12);
}

.tabs-link,
.find-pwd {
    margin-left: auto;
}

.account-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--neo-text-muted);
    white-space: nowrap;
}

.account-check input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 0;
    accent-color: var(--neo-accent-strong);
}

.options .link,
.options .tabs-link,
.options .find-pwd {
    display: inline-flex;
    align-items: center;
}

.options .link a,
.options .tabs-link a,
.options .find-pwd a {
    min-height: 34px;
    padding: 0 14px;
}

.neo-page-register .neo-auth-card,
.neo-page-login .neo-auth-card,
.neo-page-account .neo-auth-card {
    backdrop-filter: blur(12px);
}

.neo-page-account .neo-account-tip {
    display: table;
    max-width: calc(100% - 48px);
    margin: 0 auto 18px;
}

.neo-dashboard,
.neo-page-user,
.neo-page-finance {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    min-height: 0 !important;
}

.neo-dashboard .user-sidebar,
.neo-page-finance .user-sidebar {
    position: sticky;
    top: 108px;
    flex: 0 0 284px;
    width: 284px;
    float: none !important;
}

.neo-dashboard .article-main,
.neo-page-finance .article-main {
    flex: 1;
    width: auto !important;
    min-width: 0;
    float: none !important;
}

.neo-user-sidebar {
    padding: 22px;
}

.neo-account-card {
    padding: 26px;
    text-align: center;
}

.user-card__badge {
    display: inline-flex;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--neo-accent-strong);
    background: rgba(71, 214, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
}

.neo-account-card .avatar {
    width: 96px;
    height: 96px;
    margin: 18px auto 16px;
    padding: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(71, 214, 255, 0.24), rgba(17, 141, 255, 0.24));
}

.neo-account-card .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.neo-account-card h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    color: var(--neo-text);
}

.neo-account-card span[style],
.user-card__desc {
    color: var(--neo-text-muted) !important;
}

.neo-account-menu {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.neo-account-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 16px;
    color: var(--neo-text);
}

.neo-account-menu a.active,
.neo-account-menu a:hover {
    background: linear-gradient(135deg, rgba(71, 214, 255, 0.14), rgba(17, 141, 255, 0.14));
    color: var(--neo-accent-strong);
}

.neo-dashboard-card,
.neo-finance-card,
.neo-bookshelf-card {
    padding: 26px;
}

.box-header,
.table-head,
.border-bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.border-bottom {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(120, 198, 255, 0.16);
}

.box-header {
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.box-header .title {
    font-size: 24px;
}

.box-simple-tabs,
.table-tabs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.box-simple-tabs a,
.table-tabs a {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--neo-text-muted);
}

.box-simple-tabs a.active,
.table-tabs a.active {
    color: #f4fbff;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%);
}

.box-sub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(120, 198, 255, 0.14);
    border-radius: 22px;
}

.box-head-sort {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.box-head-sort dd {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--neo-text-muted) !important;
    background: rgba(71, 214, 255, 0.08);
}

.box-head-sort dd[style*="#fd113a"] {
    color: var(--neo-accent-strong) !important;
    background: rgba(71, 214, 255, 0.16) !important;
}

.search-input {
    display: inline-flex;
    align-items: center;
    min-width: 260px;
    padding: 6px;
    border: 1px solid rgba(120, 198, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.search-input input {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.search-input button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(71, 214, 255, 0.22), rgba(17, 141, 255, 0.24));
}

.edit-state {
    position: absolute;
    inset: 14px 14px auto auto;
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(6, 20, 46, 0.72);
}

.edit-state.active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%);
}

.box-booklist-edit-head {
    align-items: center;
    gap: 10px;
}

.box-booklist-edit-head form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info-form,
.user-repasswd {
    display: grid;
    gap: 16px;
}

.user-info-form > div,
.user-repasswd .p-r {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 54px;
    padding: 16px 18px;
    border: 1px solid rgba(120, 198, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.user-info-form label,
.p-title,
.p-phone {
    color: var(--neo-text);
    font-weight: 700;
}

.box-wallet .desc,
.table-body .desc {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(71, 214, 255, 0.08);
}

.box-wallet .desc p + p,
.table-body .desc p + p {
    margin-top: 6px;
}

.table-body,
.box-body {
    min-width: 0;
}

table thead th {
    padding: 16px 18px;
    color: var(--neo-text);
    font-size: 13px;
    text-align: left;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(71, 214, 255, 0.08);
}

table thead th:first-child {
    border-top-left-radius: 18px;
}

table thead th:last-child {
    border-top-right-radius: 18px;
}

table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(120, 198, 255, 0.12);
    color: var(--neo-text-muted);
}

.chapter-list,
.chapter-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-pagination,
.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-pagination ul,
.pagination ul,
.pagination {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-pagination a,
.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(71, 214, 255, 0.08);
}

.page-pagination a.active,
.pagination a.active {
    color: #f4fbff;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%);
}

.count-info .count,
.red,
.total,
.price {
    color: var(--neo-accent-strong);
    font-weight: 700;
}

.neo-payment-page,
.neo-success-page,
.neo-recommend-page {
    min-height: 0 !important;
}

.neo-payment-card {
    padding: 40px 42px;
}

.recharge-body .top,
.recharge-body .head,
.recharge-body .bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(120, 198, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
}

.recharge-body .head,
.recharge-body .bottom {
    margin-top: 18px;
}

.channel-list,
.amount-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.channel-list input,
.amount-list input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.channel-list label,
.amount-list label {
    display: block;
}

.channel-list label > div,
.amount-list label > div {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 124px;
    padding: 20px;
    border: 1px solid rgba(120, 198, 255, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
}

.channel-list input:checked + div,
.amount-list input:checked + div {
    border-color: rgba(17, 141, 255, 0.4);
    background: linear-gradient(180deg, rgba(71, 214, 255, 0.14), rgba(255, 255, 255, 0.86));
    box-shadow: 0 18px 32px rgba(17, 141, 255, 0.12);
}

.channel-list li,
.amount-list li {
    margin: 0 !important;
}

.amount-list .time,
.amount-list .price,
.amount-list .describe,
.channel-list div {
    color: var(--neo-text);
}

.recharge-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(120, 198, 255, 0.16);
}

.recharge-footer form {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.recharge-footer .tip {
    color: var(--neo-text-muted);
}

.vip-banner-big {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 34px 0;
    background-image:
        radial-gradient(circle at 18% 20%, rgba(135, 244, 255, 0.32), transparent 18%),
        radial-gradient(circle at 78% 14%, rgba(71, 214, 255, 0.28), transparent 24%),
        linear-gradient(120deg, #061327 0%, #0b1d42 52%, #0f4e90 100%) !important;
}

.neo-exchange-card {
    width: min(420px, 100%);
    margin-top: 36px;
    padding: 32px;
}

.neo-exchange-card h3 {
    font-size: 28px;
    color: #102646;
}

.neo-exchange-card #hint {
    color: var(--neo-danger) !important;
}

.neo-exchange-card button {
    width: 100%;
    min-height: 48px;
    border-radius: 18px;
    color: #f4fbff;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%);
}

.neo-exchange-card .desc {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(71, 214, 255, 0.08);
}

.neo-exchange-card .desc dd + dd {
    margin-top: 8px;
}

.neo-success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 30px;
}

.neo-success-card {
    width: min(560px, calc(100% - 48px));
    padding: 42px;
    text-align: center;
}

.neo-success-card .code,
.neo-pay-card .code {
    width: 168px;
    margin: 22px auto;
    border-radius: 22px;
    box-shadow: 0 18px 32px rgba(9, 25, 53, 0.18);
}

.article {
    padding: 18px 0 80px;
    background: transparent !important;
}

.bread {
    width: min(1240px, calc(100% - 48px)) !important;
    height: auto !important;
    padding: 0 !important;
    color: #89a8c8;
    text-indent: 0 !important;
}

.wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    width: min(1240px, calc(100% - 48px)) !important;
    padding-top: 18px !important;
}

.news-info,
.news-list,
.side-bar .hot-news,
.side-bar .new-book {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
}

.news-info,
.news-list {
    padding: 32px !important;
}

.news-info .title h1,
.news-list h2 {
    margin-bottom: 10px;
    text-align: left !important;
    font-size: clamp(28px, 3vw, 38px) !important;
}

.news-info .title p {
    text-align: left !important;
}

.news-info .description {
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(120, 198, 255, 0.14) !important;
    background: rgba(71, 214, 255, 0.06) !important;
}

.news-info .content {
    margin-top: 24px !important;
    font-size: 15px !important;
    line-height: 1.95 !important;
    color: var(--neo-text) !important;
    word-break: break-word;
}

.news-info .book {
    margin-top: 28px !important;
    padding: 12px;
    border: 1px solid rgba(120, 198, 255, 0.14) !important;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
}

.news-info .book dl {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.news-info .book dt,
.news-info .book dd {
    float: none !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.news-info .book dt img {
    width: 138px;
    height: 184px;
    border-radius: 22px;
    object-fit: cover;
}

.news-info .book dd {
    position: relative;
    min-width: 0;
}

.news-info .book dd h4 {
    font-size: 24px !important;
}

.news-info .book dd .intro {
    display: -webkit-box;
    margin: 14px 0 18px !important;
    height: auto !important;
    overflow: hidden;
    white-space: normal !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-info .book dd .star {
    position: static !important;
    width: 108px !important;
    height: 10px !important;
    margin-bottom: 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd05d 0%, rgba(255, 208, 93, 0.18) 100%) !important;
}

.news-info .book dd .star i {
    height: 10px !important;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd05d 0%, #ffaf2d 100%) !important;
}

.news-info .book .view {
    position: static !important;
    width: fit-content !important;
    height: 42px !important;
    line-height: 42px !important;
    font-size: 14px !important;
    color: #f4fbff !important;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%) !important;
}

.news-list ul {
    display: grid;
    gap: 16px;
}

.news-list ul li {
    height: auto !important;
    padding: 20px 0 0 !important;
    border-top: 1px solid rgba(120, 198, 255, 0.14) !important;
}

.news-list .tit {
    margin-bottom: 10px !important;
    font-size: 22px !important;
}

.news-list .text {
    height: auto !important;
}

.neo-article-aside {
    display: grid;
    gap: 20px;
    width: auto !important;
    margin-left: 0 !important;
}

.side-bar .hot-news,
.side-bar .new-book {
    padding: 24px !important;
}

.side-bar h3 {
    margin-bottom: 14px !important;
    font-size: 22px !important;
    color: var(--neo-text);
}

.side-bar .hot-news ul,
.side-bar .new-book ul {
    display: grid;
    gap: 10px;
}

.side-bar .hot-news li,
.side-bar .new-book li {
    padding: 14px 0 0 !important;
    height: auto !important;
    border-top: 1px solid rgba(120, 198, 255, 0.14) !important;
}

.side-bar .new-book li {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
}

.side-bar .new-book .pic {
    position: static !important;
    width: 64px !important;
    height: 86px !important;
}

.side-bar .new-book .pic img {
    border-radius: 16px;
    object-fit: cover;
}

.side-bar .new-book h5,
.side-bar .new-book p {
    margin: 0 !important;
}

.side-bar .new-book h5 {
    align-self: end;
}

.neo-legal-page,
.neo-page-agreement .account-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(236, 246, 255, 0.94));
}

.neo-legal-page .box-body,
.neo-page-agreement .form-wrap {
    padding: 12px 4px 0;
}

.neo-legal-page p,
.neo-legal-page span,
.neo-legal-page div,
.neo-page-agreement p,
.neo-page-agreement span,
.neo-page-agreement div {
    color: var(--neo-text) !important;
    font-size: 15px !important;
    line-height: 1.95 !important;
    background: transparent !important;
    font-family: inherit !important;
}

.neo-page-rank img {
    border-radius: 26px;
    box-shadow: 0 24px 50px rgba(9, 25, 53, 0.18);
}

.index-right-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10;
    display: grid;
    gap: 10px;
}

.index-right-float a,
.index-right-float-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    min-height: 58px;
    border-radius: 22px;
    color: #f4fbff;
    background: rgba(6, 20, 46, 0.82);
    backdrop-filter: blur(18px);
}

.alertTop_1 {
    position: fixed;
    top: 24px;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%);
}

.alertTop_1 p {
    min-width: 180px;
    padding: 12px 18px;
    border-radius: 16px;
    color: #f4fbff;
    background: rgba(5, 16, 37, 0.86);
    box-shadow: 0 18px 36px rgba(2, 9, 24, 0.28);
}

body.read-view {
    color: #d7e8ff;
    background:
        radial-gradient(circle at 14% 8%, rgba(71, 214, 255, 0.14), transparent 26%),
        radial-gradient(circle at 84% 0%, rgba(17, 141, 255, 0.18), transparent 22%),
        linear-gradient(180deg, #041022 0%, #091a38 38%, #0b1530 100%);
}

body.read-view .header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    border-bottom: 1px solid rgba(120, 198, 255, 0.14);
    background: rgba(4, 14, 33, 0.82);
    backdrop-filter: blur(20px);
}

body.read-view .header .row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    width: min(1240px, calc(100% - 48px));
    min-height: 86px;
    margin: 0 auto;
}

body.read-view .crumbs,
body.read-view .crumbs a {
    color: #8fb0d6;
}

body.read-view .title {
    color: #f4fbff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}

body.read-view .container.neo-reader-canvas {
    width: min(920px, calc(100% - 72px));
    padding: 126px 0 70px;
}

body.read-view #content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

body.read-view .fanye {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0 !important;
}

body.read-view .fanye a {
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid rgba(120, 198, 255, 0.18) !important;
    border-radius: 999px;
    color: #f4fbff !important;
    background: rgba(7, 20, 44, 0.74) !important;
    box-shadow: 0 14px 28px rgba(2, 9, 24, 0.18);
}

body.read-view .fanye a[style*="lightgrey"] {
    color: rgba(215, 232, 255, 0.34) !important;
    background: rgba(7, 20, 44, 0.48) !important;
}

body.read-view .comiclist {
    display: grid;
    gap: 22px;
}

body.read-view .comicpage > div {
    padding: 18px;
    border: 1px solid rgba(120, 198, 255, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(1, 9, 24, 0.22);
}

body.read-view .comicpage img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(1, 7, 18, 0.24);
}

body.read-view .neo-reader-sidebar {
    position: fixed;
    top: 104px;
    left: 0;
    z-index: 24;
    width: 212px;
    border: 1px solid rgba(120, 198, 255, 0.14);
    border-left: 0;
    border-radius: 0 24px 24px 0;
    background: rgba(4, 14, 33, 0.88);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(2, 9, 24, 0.26);
}

body.read-view .sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 14px;
    color: #f4fbff;
    font-weight: 700;
}

body.read-view .sidebar-content {
    padding: 0 12px 12px;
}

body.read-view .slimScrollDiv {
    height: calc(100vh - 204px) !important;
}

body.read-view .mCustomScrollBox {
    height: 100% !important;
    padding-right: 6px;
}

body.read-view .sidebar-content ul {
    display: grid;
    gap: 8px;
}

body.read-view .sidebar-content a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: #a9c6e6;
    background: rgba(255, 255, 255, 0.04);
}

body.read-view .sidebar-content a:hover {
    color: #f4fbff;
    background: rgba(71, 214, 255, 0.16);
}

body.read-view .slimScrollBar {
    background: linear-gradient(180deg, var(--neo-highlight), var(--neo-accent-strong)) !important;
}

body.read-view .slimScrollRail {
    background: rgba(255, 255, 255, 0.08) !important;
}

body.read-view .sidebar-btn {
    position: absolute;
    top: 18px;
    right: -44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 120px;
    border-radius: 0 18px 18px 0;
    color: #f4fbff;
    background: linear-gradient(180deg, rgba(71, 214, 255, 0.9), rgba(17, 141, 255, 0.9));
}

body.neo-reader-pay .neo-pay-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 136px 24px 72px;
}

body.neo-reader-pay .neo-pay-card {
    width: min(560px, 100%);
    padding: 40px;
    text-align: center;
}

body.neo-reader-pay .neo-pay-card .subtitle {
    color: var(--neo-text);
    font-size: 26px;
    font-weight: 700;
}

body.neo-reader-pay .neo-pay-card .tip,
body.neo-reader-pay .neo-pay-card .bottom {
    margin-top: 10px;
}

body.neo-reader-pay .neo-pay-card .main {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(120, 198, 255, 0.16);
}

body.neo-reader-pay .view-pay-btn {
    width: 100%;
    margin-top: 18px;
}

body.neo-reader-pay .main > a[style] {
    position: static !important;
    display: block;
    margin-top: 14px;
    color: var(--neo-accent-strong) !important;
}

body.neo-reader-pay .view-sales {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--neo-text-muted);
}

body.neo-reader-pay .view-sales span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    color: #f4fbff;
    background: linear-gradient(135deg, var(--neo-accent) 0%, var(--neo-accent-strong) 100%);
}

@media (max-width: 1240px) {
    .site-neo .neo-header__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 0;
    }

    .site-neo .neo-nav,
    .site-neo .neo-actions,
    .site-neo .neo-search {
        width: 100%;
    }

    .site-neo .neo-search {
        min-width: 0;
    }

    .home-rank-grid,
    .channel-list,
    .amount-list,
    .detail-list-select {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mh-list.col7,
    .index-original-list,
    .neo-page-search .mh-list.col7,
    .neo-list-page .mh-list.col7 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .banner_detail_form,
    .wrap,
    .neo-book-grid .container {
        grid-template-columns: 1fr;
    }

    .neo-book-grid .container {
        grid-template-areas: "chapters" "aside" "comments";
    }
}

@media (max-width: 1024px) {
    .neo-dashboard,
    .neo-page-user,
    .neo-page-finance {
        flex-direction: column;
    }

    .neo-dashboard .user-sidebar,
    .neo-page-finance .user-sidebar,
    .neo-dashboard .article-main,
    .neo-page-finance .article-main {
        width: 100% !important;
        flex: 1 1 auto;
    }

    .neo-dashboard .user-sidebar,
    .neo-page-finance .user-sidebar {
        position: static;
    }

    .mh-list.col7,
    .index-original-list,
    .neo-page-search .mh-list.col7,
    .neo-list-page .mh-list.col7,
    .home-rank-grid,
    .channel-list,
    .amount-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-info .book dl,
    .mh-item.horizontal.booklist,
    .mh-list.col1 .mh-item.horizontal {
        grid-template-columns: 1fr;
    }

    body.read-view .neo-reader-sidebar {
        top: 92px;
    }
}

@media (max-width: 760px) {
    .container,
    .site-neo .footer-wrap,
    .site-neo .neo-header__inner,
    .wrap,
    .bread,
    .banner_detail_form,
    .news-info,
    .news-list,
    .neo-success-card,
    body.read-view .header .row {
        width: min(100%, calc(100% - 24px)) !important;
    }

    .home-stage,
    .neo-page-search,
    .neo-list-page,
    .neo-certificate-page,
    .neo-legal-page,
    .neo-auth-card,
    .neo-dashboard-card,
    .neo-finance-card,
    .neo-bookshelf-card,
    .neo-success-card,
    .neo-pay-card,
    .banner_detail_form,
    .news-info,
    .news-list,
    .sub-manga,
    .left-bar,
    .view-comment-main,
    .neo-payment-card,
    .neo-exchange-card {
        padding: 22px !important;
        border-radius: 24px;
    }

    .mh-list.col7,
    .index-original-list,
    .neo-page-search .mh-list.col7,
    .neo-list-page .mh-list.col7,
    .home-rank-grid,
    .channel-list,
    .amount-list,
    .detail-list-select {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .index-rank-list li,
    .sub-manga .list li,
    .view-comment-main .dashed,
    .view-comment-main > .list > li,
    .user-info-form > div,
    .user-repasswd .p-r,
    .news-info .book dl,
    .side-bar .new-book li {
        grid-template-columns: 1fr;
    }

    .box-sub-head,
    .box-header,
    .table-head,
    .recharge-footer,
    .recharge-footer form,
    .options,
    .view-comment-main .bottom,
    .view-comment-main .comment-item {
        flex-direction: column;
        align-items: flex-start;
    }

    body.read-view .container.neo-reader-canvas {
        width: calc(100% - 24px);
    }
}
