@charset "UTF-8";

:root {
    --paper: #f7f3ea;
    --ink: #12131a;
    --bg: #11131b;
    --bg-deep: #090a10;
    --card: #191c26;
    --card-2: #202431;
    --line: rgba(255, 255, 255, .09);
    --line-dark: rgba(18, 19, 26, .12);
    --text: #f5f1e8;
    --muted: #a8a9b4;
    --red: #ff4d5f;
    --blue: #62d7ff;
    --yellow: #ffd166;
    --green: #6ee7b7;
    --shadow: 0 22px 55px rgba(0, 0, 0, .32);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { min-width: 1180px; background: var(--bg-deep); }
body {
    margin: 0;
    color: var(--text);
    font: 14px/1.7 "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(98, 215, 255, .16), transparent 26%),
        radial-gradient(circle at 86% 0%, rgba(255, 77, 95, .14), transparent 24%),
        linear-gradient(180deg, #12141d 0%, #0a0b11 580px, #0b0c12 100%);
    overflow-x: hidden;
}
body:before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: .55;
}
a { color: inherit; text-decoration: none; transition: color .18s, background .18s, border-color .18s, transform .18s, opacity .18s; }
a:hover { color: var(--blue); }
img { max-width: 100%; vertical-align: middle; }
ul, ol, dl, dd, p, h1, h2, h3, h4, h5 { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
.container, .neo-container { width: 1180px; margin: 0 auto; }
.container-fluid { width: 100%; }
.clearfix:after, .overflow-Show:after { content: ""; display: block; clear: both; }
.pull-left { float: left; }
.pull-right { float: right; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mb20 { margin-bottom: 20px; }
.pb40 { padding-bottom: 40px; }
.color-main, .red { color: var(--red) !important; }

.neo-comic-shell { min-height: 100vh; display: flex; flex-direction: column; }
.neo-main { flex: 1; padding: 26px 0 64px; }
.neo-header { position: sticky; top: 0; z-index: 50; background: rgba(11, 12, 18, .88); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.neo-header__inner { width: min(1500px, calc(100vw - 56px)); height: 76px; margin: 0 auto; display: flex; align-items: center; gap: 18px; }
.neo-brand { width: 330px; flex: 0 0 330px; min-width: 0; display: flex; align-items: center; gap: 12px; }
.neo-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 14px; background: #fff; padding: 4px; }
.neo-brand strong { display: block; overflow: hidden; color: #fff; font-size: 18px; font-weight: 900; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; letter-spacing: .02em; }
.neo-brand em { display: block; overflow: hidden; color: var(--muted); font-size: 12px; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.neo-nav, .neo-actions { display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.neo-nav a, .neo-actions a { height: 36px; display: inline-flex; align-items: center; padding: 0 12px; border-radius: 12px; color: #d7d8df; font-size: 14px; }
.neo-nav a:hover, .neo-actions a:hover { background: rgba(255,255,255,.07); color: #fff; }
.neo-actions .neo-register { color: #11131b; background: var(--yellow); font-weight: 800; }
.neo-search { flex: 1 1 330px; min-width: 260px; height: 42px; display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.06); }
.neo-search input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 0 14px; color: #fff; background: transparent; }
.neo-search input::placeholder { color: #80838f; }
.neo-search button { width: 76px; border: 0; border-radius: 11px; color: #11131b; background: var(--blue); font-weight: 900; cursor: pointer; }
.neo-footer { padding: 26px 0 34px; border-top: 1px solid var(--line); color: #8f929f; background: #090a10; }
.neo-footer p { text-align: center; }
.neo-footer em { color: var(--red); font-style: normal; margin: 0 8px; }

.neo-panel, .box, .account-box, .vip-recharge-con, .news-list, .news-info, .new-book, .hot-news, .sub-manga, .left-bar, .view-comment-main, .view-pay-form {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
}
.neo-page { animation: pageIn .38s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.neo-page-kicker { color: var(--red); letter-spacing: .18em; text-transform: uppercase; font-size: 12px; font-weight: 900; margin-bottom: 8px; }
.neo-page-title { color: #fff; font-size: 34px; line-height: 1.2; margin-bottom: 22px; }

.home-hero { padding: 24px 0 18px; }
.home-hero__inner { min-height: 336px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; }
.home-hero__content, .home-hero__panel { position: relative; overflow: hidden; border-radius: 28px; border: 1px solid var(--line); background: #171a24; box-shadow: var(--shadow); }
.home-hero__content { padding: 46px 50px; }
.home-hero__content:before { content: ""; position: absolute; right: -130px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: var(--red); opacity: .16; }
.home-hero__content:after { content: "READ MORE"; position: absolute; right: 26px; bottom: 18px; color: rgba(255,255,255,.05); font-size: 70px; font-weight: 1000; letter-spacing: -.04em; }
.home-hero__eyebrow { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.home-hero__title { width: 680px; margin: 14px 0 16px; color: #fff; font-size: 56px; line-height: 1.02; letter-spacing: -.06em; }
.home-hero__desc { width: 650px; color: #c5c8d2; font-size: 16px; }
.home-hero__actions { display: flex; gap: 12px; margin-top: 28px; }
.home-hero__btn { height: 44px; display: inline-flex; align-items: center; padding: 0 18px; border: 1px solid var(--line); border-radius: 13px; color: #fff; font-weight: 800; }
.home-hero__btn--primary { color: #11131b; border-color: var(--yellow); background: var(--yellow); }
.home-hero__btn--ghost { background: rgba(255,255,255,.06); }
.home-hero__panel { padding: 24px; display: flex; align-items: end; background: linear-gradient(135deg, #202431, #151822); }
.home-hero__panel:before { content: ""; position: absolute; inset: 18px; border: 2px solid rgba(255,255,255,.08); border-radius: 22px; transform: rotate(-2deg); }
.home-hero__card { position: relative; padding: 22px; border-radius: 20px; background: var(--paper); color: var(--ink); box-shadow: 10px 10px 0 rgba(98,215,255,.2); }
.home-hero__label { color: var(--red); font-size: 12px; font-weight: 1000; letter-spacing: .14em; }
.home-hero__card strong { display: block; margin: 10px 0; font-size: 24px; line-height: 1.2; }
.home-hero__card p { color: #555b66; }

.home-stage { margin-top: 12px; padding: 14px; overflow: hidden; }
.shutter { position: relative; width: 100% !important; min-height: 358px; overflow: hidden; border-radius: 18px; background: #0b0c12; }
.shutter-img, .shutter-img a { width: 100% !important; }
.shutter-img a { display: block; }
.shutter-img img { width: 100%; height: 358px; object-fit: cover; border-radius: 18px; }
.shutter-btn .prev, .shutter-btn .next { position: absolute; top: 50%; width: 42px; height: 42px; margin-top: -21px; border: 0; border-radius: 13px; background: rgba(9,10,16,.76); cursor: pointer; }
.shutter-btn .prev { left: 16px; }
.shutter-btn .next { right: 16px; }
.shutter-btn .prev:before, .shutter-btn .next:before { content: ""; position: absolute; inset: 15px; border-top: 2px solid #fff; border-left: 2px solid #fff; }
.shutter-btn .prev:before { transform: rotate(-45deg); left: 17px; }
.shutter-btn .next:before { transform: rotate(135deg); right: 17px; }
.shutter-desc { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 12px 14px; border-radius: 13px; color: #fff; background: rgba(9,10,16,.72); }
.neo-category-strip { margin: 18px 0; }
.neo-category-strip .container { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 18px; background: var(--card); border: 1px solid var(--line); }
.neo-category-strip .list { flex: 1; display: flex; flex-wrap: wrap; gap: 8px; }
.neo-category-strip a, .cat-list dd, .field-list dd { display: inline-flex; padding: 7px 12px; border-radius: 11px; color: #cdd0d8; background: #242936; }
.neo-category-strip a:hover, .cat-list dd.active, .field-list dd.active { color: #11131b; background: var(--blue); }

.home-rank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.index-rank { padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: var(--card); }
.index-rank-title, .box-header, .table-head { min-height: 44px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; border-bottom: 1px solid var(--line); color: #fff; font-size: 21px; font-weight: 900; }
.index-rank-title .more, .more { color: var(--blue); font-size: 13px; font-weight: 800; }
.index-rank-list li { display: grid; grid-template-columns: 64px 30px 1fr; gap: 10px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.index-rank-list .cover img, .sub-manga .cover img, .side-bar .pic img { width: 64px; height: 88px; object-fit: cover; border-radius: 12px; }
.index-rank-list .sign span, .num { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 9px; color: #11131b; background: var(--yellow); font-weight: 1000; }
.index-rank-list .title { margin-top: 4px; color: #fff; font-size: 16px; font-weight: 900; }
.index-rank-list .subtitle, .subtitle-new { color: var(--muted); font-size: 13px; }

.neo-section-title { margin: 34px 0 14px; }
.neo-section-title__inner { display: flex; align-items: center; gap: 12px; }
.index-title-logo { width: 38px; height: 38px; object-fit: contain; }
.neo-section-title h2 { color: #fff; font-size: 28px; font-weight: 1000; letter-spacing: -.03em; }
.index-title-more { margin-left: auto; color: var(--blue); font-weight: 800; }
.index-original.neo-hot-books { width: 1180px; margin: 0 auto 40px; padding: 18px; overflow: hidden; }
.neo-hot-books > .container { width: auto; }
.index-original-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.index-original-list li { min-width: 0; padding: 10px; border-radius: 18px; background: #202431; }
.index-original-list .mh-cover { width: 100%; aspect-ratio: 3 / 4.15; border-radius: 14px; }
.index-original-list .info { padding: 10px 2px 2px; }
.index-original-list .title { min-height: 42px; color: #fff; font-size: 15px; font-weight: 900; line-height: 1.35; }
.index-original-list .star { display: flex; gap: 4px; margin-top: 8px; }
.index-original-list .star span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.index-original-list .star span.active { background: var(--yellow); }
.index-original-list button { border: 0 !important; border-radius: 10px !important; padding: 7px 12px !important; color: #11131b !important; background: var(--blue) !important; font-weight: 900; cursor: pointer; }
.index-original-list .subtitle { color: var(--muted) !important; margin-top: 10px !important; }
.index-original-list .subtitle a { color: var(--yellow); }
.index-original-list .tag { position: static; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; padding: 0; background: transparent; }
.index-original-list .tag a { display: inline-flex; padding: 3px 8px; border-radius: 999px; color: #cbd0da; font-size: 12px; background: #151822; }

.box { padding: 24px; margin-top: 18px; }
.box-body { position: relative; }
.mh-list { display: grid !important; grid-template-columns: repeat(5, 1fr); gap: 22px 16px; }
.mh-list.col1 { grid-template-columns: 1fr; }
.mh-list li { min-width: 0; }
.mh-item { position: relative; min-height: 100%; }
.mh-item.horizontal, .mh-item.booklist { display: grid; grid-template-columns: 108px 1fr; gap: 16px; padding: 14px; border-radius: 18px; background: var(--card-2); }
.mh-item.horizontal .mh-cover, .mh-item.booklist .mh-cover { width: 108px; height: 148px; aspect-ratio: auto; }
.mh-cover, .mh-item .mh-cover { display: block; width: 100%; aspect-ratio: 3 / 4.2; border-radius: 16px; background-size: cover; background-position: center; box-shadow: 0 12px 25px rgba(0,0,0,.28); overflow: hidden; }
.mh-item:hover .mh-cover { transform: translateY(-4px); }
.mh-item-detali { padding: 10px 2px 0; }
.mh-item-detali .title { color: #fff; font-size: 15px; line-height: 1.35; font-weight: 900; }
.mh-item-detali .chapter, .mh-item-detali .zl, .mh-item.horizontal .info, .mh-item.booklist .info, .chapter-list { color: var(--muted); font-size: 13px; }
.mh-star-line { display: inline-block; width: 70px; height: 8px; border-radius: 99px; background: linear-gradient(90deg, var(--yellow) 80%, rgba(255,255,255,.12) 80%); }
.mh-cover .tag, .mh-tag, .read-section { position: absolute; left: 8px; top: 8px; padding: 4px 8px; border-radius: 9px; color: #11131b; background: var(--yellow); font-size: 12px; font-weight: 900; }
.read-section { top: auto; bottom: 8px; color: #fff; background: rgba(9,10,16,.72); }
.edit-state { display: none; position: absolute; right: 10px; top: 10px; width: 28px; height: 28px; border-radius: 9px; background: rgba(9,10,16,.72); }
.edit-state.active { display: grid !important; place-items: center; background: var(--blue); color: #11131b; }
.read-btn, .btn, .btn-1, .btn-2, .button, .channel-btn, .view-pay-btn, .commentbtn, .wallet-btn, .del-btn, .finish-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 15px; border: 0; border-radius: 11px; color: #11131b !important; background: var(--blue); font-weight: 900; cursor: pointer; }
.btn-1 { color: #fff !important; background: #2a3040; }

.neo-legal-page .box-body, .neo-certificate-page .box-body { color: #d5d7df; font-size: 16px; line-height: 2; }
.neo-legal-page p, .neo-legal-page span { background: transparent !important; color: #d5d7df !important; font-size: 16px !important; line-height: 2 !important; }
.neo-certificate-page img { border-radius: 16px; box-shadow: var(--shadow); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.pagination li a, .pagination li { min-width: 36px; height: 36px; display: inline-grid; place-items: center; border-radius: 11px; color: #d5d7df; background: #242936; }
.pagination li a.active, .pagination li a:hover { color: #11131b; background: var(--blue); }

.neo-book-hero { position: relative; min-height: 500px; padding: 42px 0; overflow: hidden; }
.banner_border_bg { position: absolute; inset: 0; opacity: .18; filter: blur(36px); transform: scale(1.08); }
.banner_detail_form { width: 1180px; min-height: 420px; margin: 0 auto; padding: 28px; display: grid; grid-template-columns: 250px 1fr; gap: 28px; }
.banner_detail_form .cover img { width: 230px; height: 316px; object-fit: cover; border-radius: 18px; box-shadow: 10px 10px 0 rgba(98,215,255,.22); }
.banner_detail_form .info h1 { color: #fff; font-size: 42px; line-height: 1.12; margin-bottom: 12px; }
.banner_detail_form .subtitle, .banner_detail_form .tip { color: #d0d3dc; margin: 6px 0; }
.banner_detail_form .tip a { color: var(--blue); }
.banner_detail_form .content { max-height: 120px; color: var(--muted); margin-top: 16px; font-size: 15px; }
.banner_detail_form .bottom { position: static !important; width: auto !important; display: flex; gap: 12px; margin-top: 24px; }
.view-comment .container { display: grid; grid-template-columns: 1fr 300px; gap: 18px; }
.view-comment-sub { grid-column: 2; grid-row: 1 / span 2; }
.left-bar, .view-comment-main { grid-column: 1; padding: 22px; }
.sub-manga { padding: 18px; margin-bottom: 16px; }
.sub-manga .top { color: #fff; font-size: 20px; font-weight: 900; margin-bottom: 12px; }
.sub-manga li { display: grid; grid-template-columns: 64px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.detail-list-title { text-align: right; margin-bottom: 12px; }
.detail-list-title a, .detail-more { color: var(--blue); }
.view-win-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.view-win-list a { display: block; padding: 11px; border-radius: 12px; background: #242936; color: #d8dbe3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.view-win-list a:hover { color: #11131b; background: var(--blue); }
.postlist .dashed, .view-comment-main > .list > li { display: grid; grid-template-columns: 46px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.view-comment-main .cover img { width: 46px; height: 46px; border-radius: 50%; }
.comment-input, textarea { width: 100%; min-height: 90px; resize: vertical; color: #fff; border: 1px solid var(--line); border-radius: 13px; background: #11131b; padding: 13px; outline: 0; }

.neo-dashboard { display: grid; grid-template-columns: 270px 1fr; gap: 20px; }
.user-sidebar { width: 270px; padding: 18px; }
.article-main { width: auto; float: none; }
.user-card__badge { color: var(--red); letter-spacing: .14em; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.user-card .avatar img { width: 82px; height: 82px; display: block; margin: 16px auto 10px; border-radius: 24px; }
.user-card h1, .user-card span { color: #fff; }
.user-card__desc { color: var(--muted) !important; }
.user-menu { margin-top: 16px; display: grid; gap: 7px; }
.user-menu a { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 13px; color: #d5d8e1; background: #202431; }
.user-menu a.active, .user-menu a:hover { color: #11131b; background: var(--blue); }
.neo-dashboard-card, .neo-bookshelf-card { padding: 24px; }
.user-info-form > div { display: grid; grid-template-columns: 105px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.user-info-form label { color: var(--blue); font-weight: 900; }
.user-info-form span, samp { color: #fff; }
.user-info-form input { width: 100%; max-width: 360px; height: 40px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: #11131b; color: #fff; padding: 0 12px; }
.box-simple-tabs, .table-tabs { display: flex; gap: 8px; }
.box-simple-tabs a, .table-tabs a { display: inline-flex; padding: 7px 12px; border-radius: 11px; color: #d5d8e1; background: #242936; }
.box-simple-tabs a.active, .table-tabs a.active { color: #11131b; background: var(--blue); }
.box-sub-head { padding: 12px; border-radius: 14px; background: #202431 !important; }
.box-head-sort { display: flex; gap: 12px; align-items: center; color: var(--muted); }
.search-input { display: flex; height: 38px; overflow: hidden; border-radius: 12px; background: #11131b; }
.search-input input { width: 190px; border: 0; outline: 0; background: transparent; color: #fff; padding: 0 12px; }
.search-input button { width: 42px; border: 0; background: var(--blue); color: #11131b; }
table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 14px; }
th, td { padding: 14px 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.07); color: #d5d8e1; }
th { color: #fff; background: #242936; font-weight: 900; }
td a { color: var(--blue); }
.desc { padding: 16px; border-radius: 14px; background: #202431; color: #d5d8e1; margin-bottom: 18px; }
.desc .title, .count, .count-info { color: #fff; font-weight: 900; }
hr { border: 0; border-top: 1px solid var(--line); }

.neo-auth-page { padding: 32px 0; }
.account-tip { width: 620px; margin: 0 auto 12px; color: var(--red); }
.account-box { width: 620px; min-height: 0; margin: 0 auto; padding: 34px; display: block; }
.account-box .head { color: #fff; font-size: 34px; line-height: 1; margin-bottom: 24px; }
.account-box .left { display: none; }
.account-login-form input:not([type="checkbox"]):not([type="radio"]), .account-box input:not([type="checkbox"]):not([type="radio"]), .vip-recharge-con input[type="text"], .vip-recharge-con input[type="password"] { width: 100%; height: 46px; border: 1px solid var(--line); border-radius: 13px; outline: 0; background: #11131b; color: #fff; padding: 0 14px; }
.account-login-form p { margin-bottom: 14px; }
.account-login-form #captcha { height: 42px; margin-left: 10px; border-radius: 11px; vertical-align: middle; }
.account-login-form input[name="captcha"] { width: 150px !important; }
.account-login-form .button { width: 100%; height: 48px; }
.options { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.options a { color: var(--yellow); }
.options label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.options input[type="checkbox"] { appearance: none; width: 17px; height: 17px; margin: 0; display: inline-grid; place-items: center; border: 1px solid #485064; border-radius: 5px; background: #11131b; cursor: pointer; }
.options input[type="checkbox"]:checked { background: var(--blue); border-color: var(--blue); }
.options input[type="checkbox"]:checked:before { content: ""; width: 8px; height: 5px; border-left: 2px solid #11131b; border-bottom: 2px solid #11131b; transform: rotate(-45deg) translate(1px, -1px); }
.options .tabs-link { margin-left: auto; }

.neo-payment-page { padding: 32px 0; }
.vip-recharge-con { padding: 28px; }
.recharge-body .top, .recharge-body .head, .recharge-footer { color: #d5d8e1; margin: 16px 0 12px; }
.label { color: var(--blue); font-weight: 900; }
.channel-list, .amount-list { display: flex; flex-wrap: wrap; gap: 14px; }
.channel-list li, .amount-list li { margin: 0 !important; }
.channel-list label > div, .amount-list label > div { min-width: 180px; min-height: 84px; display: grid !important; place-items: center; padding: 16px; border-radius: 16px; background: #202431; color: #d5d8e1; cursor: pointer; }
.amount-list label > div { min-height: 108px; }
.channel-list input, .amount-list input { display: none; }
.channel-list input:checked + div, .amount-list input:checked + div { color: #11131b; background: var(--yellow); }
.time span { font-size: 21px; color: inherit; font-weight: 1000; }
.total { color: var(--yellow); font-size: 26px; font-weight: 1000; }
.recharge-footer .tip { display: block; color: var(--muted); margin-top: 10px; }
.vip-banner-big { min-height: 390px; padding: 54px 0; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.vip-banner-big:before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,16,.94), rgba(9,10,16,.44)); }
.vip-banner-big .container { position: relative; }
.aside-box.converted { width: 380px; padding: 24px; }
.aside-box h3, .vip-box-title { color: #fff; font-size: 28px; margin-bottom: 16px; }
.aside-box input { width: 100%; height: 44px; border: 1px solid var(--line); border-radius: 12px; outline: 0; background: #11131b; color: #fff; padding: 0 12px; }
.aside-box button { width: 100%; height: 42px; margin-top: 12px; border: 0; border-radius: 11px; color: #11131b; background: var(--blue); font-weight: 900; cursor: pointer; }
.aside-box .desc { margin-top: 16px; }
.aside-box dt { color: var(--blue); font-weight: 900; }
.aside-box dd { color: #d5d8e1; }
.neo-recommend-page { padding-top: 30px; }

.article { background: transparent !important; padding: 22px 0 48px !important; }
.bread, .wrap { width: 1180px !important; }
.bread { height: auto !important; color: var(--muted) !important; text-indent: 0 !important; }
.wrap { display: grid; grid-template-columns: 1fr 300px; gap: 18px; padding-top: 12px !important; }
.news-list, .news-info { float: none !important; width: auto !important; padding: 24px !important; background: var(--card) !important; }
.side-bar { float: none !important; width: auto !important; margin-left: 0 !important; }
.news-list h2, .new-book h3, .hot-news h3 { color: #fff; font-size: 23px; margin-bottom: 14px; }
.news-list ul li { height: auto !important; min-height: 118px; border-top: 1px solid rgba(255,255,255,.07) !important; }
.news-list .tit a, .news-info .title h1 { color: #fff !important; }
.news-list .info, .news-list .text, .news-info .description, .news-info .content, .hot-news li a, .new-book p { color: #d5d8e1 !important; }
.news-info .book { border: 0 !important; border-radius: 16px; overflow: hidden; background: #202431; }
.news-info .book dt img { border-radius: 13px; object-fit: cover; }
.news-info .book dd .view { color: #11131b !important; background: var(--blue) !important; border-radius: 11px !important; }
.new-book, .hot-news { padding: 18px !important; background: var(--card) !important; }
.side-bar .new-book ul li { height: auto !important; min-height: 100px; border-top: 1px solid rgba(255,255,255,.07) !important; }
.side-bar .new-book ul li .pic { width: 62px !important; height: 84px !important; }
.side-bar .new-book ul li h5, .side-bar .new-book ul li p { margin-left: 76px !important; }

.read-view { min-width: 1000px; padding-top: 88px; background: #090a10; }
.read-view .header { position: fixed; top: 0; left: 0; right: 0; z-index: 40; min-height: 74px; border-bottom: 1px solid var(--line); background: rgba(9,10,16,.9); backdrop-filter: blur(16px); }
.read-view .row { width: 1080px; margin: 0 auto; padding: 12px 0; }
.read-view .crumbs { color: var(--muted); font-size: 13px; }
.read-view .title { color: #fff; font-size: 21px; line-height: 1.35; }
.neo-reader-canvas { width: 980px; padding: 22px 0 66px; }
.comiclist { display: flex; justify-content: center; }
.comicpage { width: 100%; text-align: center; }
.comicpage > div { margin: 0 auto 16px; }
.comicpage img { max-width: 100%; border-radius: 6px; box-shadow: 0 18px 58px rgba(0,0,0,.42); }
.fanye { display: flex; justify-content: center; gap: 10px; margin: 22px 0 !important; }
.fanye a { min-width: 88px; height: 38px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px !important; color: #fff !important; border: 0 !important; border-radius: 11px; background: #202431 !important; }
.read-section.sidebar-main { position: fixed; top: 88px; left: 0; z-index: 35; width: 212px; height: calc(100vh - 88px); border-right: 1px solid var(--line); background: #11131b; }
.sidebar-header { display: flex; justify-content: space-between; padding: 15px; color: #fff; border-bottom: 1px solid var(--line); }
.sidebar-header i { font-style: normal; }
.sidebar-content ul a { display: block; padding: 10px 15px; color: #d5d8e1; border-bottom: 1px solid rgba(255,255,255,.06); }
.sidebar-content ul a:hover { color: #11131b; background: var(--blue); }
.sidebar-btn { position: absolute; left: 212px; top: 118px; width: 40px; padding: 11px 0; text-align: center; color: #11131b; background: var(--blue); border-radius: 0 12px 12px 0; cursor: pointer; font-weight: 900; }
.neo-pay-stage { min-height: calc(100vh - 88px); display: grid; place-items: center; padding: 70px 0; }
.neo-pay-card { width: 620px; padding: 28px; }
.neo-pay-card .top, .neo-pay-card .main { position: relative; padding: 22px; border-radius: 18px; background: #202431; margin-bottom: 16px; }
.neo-pay-card .subtitle { color: #fff; font-size: 23px; font-weight: 1000; }
.neo-pay-card .tip { color: #d5d8e1; }
.neo-pay-card .code { width: 112px; height: 112px; border-radius: 14px; margin: 16px 0; }
.view-sales { color: var(--muted); }
.view-sales span { color: var(--red); text-transform: uppercase; margin-right: 8px; }
.alertTop_1 { position: fixed; top: 94px; left: 50%; z-index: 999; transform: translateX(-50%); padding: 11px 20px; border-radius: 12px; background: #202431; color: #fff; box-shadow: var(--shadow); }

@media (max-width: 1200px) {
    html { min-width: 0; }
    .container, .neo-container, .banner_detail_form, .bread, .wrap { width: calc(100vw - 32px) !important; }
    .neo-header__inner { width: calc(100vw - 32px); height: auto; min-height: 76px; flex-wrap: wrap; padding: 12px 0; }
    .neo-brand { width: 100%; flex-basis: 100%; }
    .neo-nav, .neo-actions { flex-wrap: wrap; }
    .home-hero__inner, .wrap, .view-comment .container, .neo-dashboard, .banner_detail_form { grid-template-columns: 1fr; }
    .home-rank-grid { grid-template-columns: 1fr; }
    .home-hero__title { width: auto; font-size: 40px; }
    .home-hero__desc { width: auto; }
    .mh-list, .index-original-list { grid-template-columns: repeat(2, 1fr); }
    .view-comment-sub, .left-bar, .view-comment-main { grid-column: auto; grid-row: auto; }
    .view-win-list { grid-template-columns: repeat(2, 1fr); }
    .user-sidebar { width: auto; }
    .account-box, .account-tip, .neo-pay-card { width: calc(100vw - 32px); }
    .read-view { min-width: 0; }
    .read-view .row, .neo-reader-canvas { width: calc(100vw - 32px); }
    .read-section.sidebar-main { transform: translateX(-212px); }
    .read-section.sidebar-main[style*="left: 0px"] { transform: none; }
}
