@charset "utf-8";

:root {
    --bg-primary: #070b14;
    --bg-secondary: #0d1322;
    --bg-card: rgba(14, 20, 36, 0.88);
    --bg-card-strong: rgba(18, 25, 44, 0.96);
    --bg-soft: rgba(255, 255, 255, 0.04);
    --border-soft: rgba(132, 154, 196, 0.18);
    --border-strong: rgba(0, 224, 255, 0.22);
    --text-primary: #edf4ff;
    --text-secondary: #93a4c3;
    --text-muted: #6e7f9f;
    --accent-cyan: #00d8ff;
    --accent-blue: #3f7cff;
    --accent-purple: #915dff;
    --accent-green: #31d7a2;
    --accent-red: #ff6b81;
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.34);
    --shadow-glow: 0 0 0 1px rgba(0, 224, 255, 0.05), 0 18px 36px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(63, 124, 255, 0.20), transparent 30%),
        radial-gradient(circle at top right, rgba(145, 93, 255, 0.16), transparent 28%),
        linear-gradient(180deg, #060910 0%, #0a101c 42%, #0b1220 100%);
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.65;
    position: relative;
}

body,
html {
    color-scheme: dark;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.22;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

lia {
    list-style: disc;
}

.noML {
    margin-left: initial !important;
}

.hide {
    display: none;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color .25s ease, border-color .25s ease, background .25s ease, opacity .25s ease, transform .25s ease;
}

a:hover {
    color: #ffffff;
}

.layui-row {
    margin: 0 16px;
}

.layui-tab-title .layui-this {
    color: var(--text-primary);
}

.layui-tab-title li {
    color: var(--text-secondary);
}

.layui-tab-title .layui-this:after {
    border-color: transparent transparent var(--accent-cyan) transparent;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 11, 20, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.header .header-box {
    min-height: 74px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(63, 124, 255, 0.18), rgba(0, 224, 255, 0.18));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 26px rgba(0,0,0,0.28);
    overflow: hidden;
    flex: 0 0 auto;
}

.brand-mark img {
    width: 82%;
    max-height: 82%;
    object-fit: contain;
    display: block;
}

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-copy strong {
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: 0;
}

.brand-copy small {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header .header-box .query {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav-link:hover {
    border-color: rgba(0,224,255,0.3);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.nav-link-primary {
    background: linear-gradient(135deg, rgba(63, 124, 255, 0.18), rgba(0, 224, 255, 0.14));
    border-color: rgba(0,224,255,0.22);
    color: var(--text-primary);
}

#content {
    position: relative;
    padding: 22px 0 10px;
}

.main .main-box {
    margin-top: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-glow);
    border-radius: 22px;
    padding: 20px 0;
    overflow: hidden;
}

.main-box:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.main .title,
.main .cate,
.main .goods,
.main .announcement-shell,
.main .hero-shell,
.main .notice-card-home {
    margin: 0 24px;
}

.main .title,
.main .title-2,
.pay-title {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main .title svg,
.main .title img,
.main .title-2 svg,
.pay-title svg {
    vertical-align: middle;
    flex: 0 0 auto;
}

.main .title-2 {
    justify-content: space-between;
    margin-bottom: 22px;
}

.main .announcement-shell {
    display: grid;
    gap: 14px;
}

.store-topbar {
    margin: 0 24px 24px;
    padding: 26px 28px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.07);
    background:
        radial-gradient(circle at top right, rgba(0, 224, 255, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(145, 93, 255, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.02));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.store-topbar-copy {
    min-width: 0;
}

.store-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,224,255,0.18);
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 700;
}

.store-topbar h1 {
    margin: 14px 0 8px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    color: var(--text-primary);
}

.store-topbar p {
    margin: 0;
    max-width: 640px;
    color: var(--text-secondary);
    font-size: 14px;
}

.store-topbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.hero-card,
.notice-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.hero-card::before,
.notice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(0, 224, 255, 0.16), transparent 38%),
        radial-gradient(circle at bottom left, rgba(145, 93, 255, 0.14), transparent 36%);
}

.hero-card {
    min-height: 268px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    width: fit-content;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,224,255,0.18);
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 12px;
}

.hero-title {
    margin-top: 16px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.14;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #8cecff 40%, #bfd2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    margin-top: 14px;
    max-width: 640px;
    font-size: 15px;
    color: var(--text-secondary);
}

.hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-link,
.hero-link-alt {
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.hero-link {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #05101d;
    box-shadow: 0 14px 28px rgba(0, 128, 255, 0.28);
}

.hero-link-alt {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-primary);
}

.hero-points {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-point {
    padding: 14px 14px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.hero-point strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
}

.hero-point span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.notice-card {
    padding: 24px;
}

.notice-card-home {
    margin-top: 18px;
}

.title-divider {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.notice-card .layui-card-header {
    margin: 0;
    padding: 0;
    height: auto;
    line-height: 1.35;
    border: none;
    color: var(--text-primary) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    background: transparent !important;
}

.notice-card .layui-card-body,
.notice-card > div:not(.layui-card-header) {
    margin-top: 16px;
    padding: 0;
    color: var(--text-secondary);
    line-height: 1.9;
}

.notice-card * {
    max-width: 100%;
}

.notice-card p,
.notice-card div,
.notice-card span,
.notice-card strong,
.notice-card li,
.notice-card em,
.notice-card b {
    color: inherit !important;
}

.notice-card,
.notice-card p,
.notice-card div,
.notice-card span,
.notice-card strong,
.notice-card li,
.notice-card em,
.notice-card b,
.notice-card font,
.notice-card section,
.notice-card article {
    background: transparent !important;
}

.notice-card a {
    color: #8cecff !important;
    text-decoration: underline;
}

.notice-card br {
    display: block;
    content: "";
    margin-top: 0.25rem;
}

.notice-card ul,
.notice-card ol {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
}

.notice-card p {
    margin: 0 0 0.78rem;
}

.notice-card p:last-child,
.notice-card div:last-child {
    margin-bottom: 0;
}

.notice-card img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.notice-card .layui-card-body {
    margin-top: 10px;
}

.notice-card [style*="background-color: rgb(255, 255, 255)"],
.notice-card [style*="background-color: rgb(255,255,255)"],
.notice-card [style*="background: rgb(255, 255, 255)"],
.notice-card [style*="background:rgb(255,255,255)"],
.notice-card [style*="background-color:#fff"],
.notice-card [style*="background:#fff"] {
    background-color: transparent !important;
    background: transparent !important;
}

.notice-card [style*="color: rgb(51, 51, 51)"] {
    color: var(--text-primary) !important;
}

.notice-card [style*="color: rgb(145, 156, 167)"],
.notice-card [style*="color: rgb(127, 127, 127)"],
.notice-card [style*="color:#333"],
.notice-card [style*="color: #333"],
.notice-card [style*="color:#000"],
.notice-card [style*="color: #000"] {
    color: var(--text-secondary) !important;
}

.notice-card [style*="color: rgb(0, 112, 192)"],
.notice-card [style*="color:#0070c0"],
.notice-card [style*="color: #0070c0"],
.notice-card [style*="color: rgb(112, 48, 160)"],
.notice-card [style*="color:#7030a0"],
.notice-card [style*="color: #7030a0"] {
    color: #8cecff !important;
}

.notice-card [style*="color: rgb(192, 0, 0)"],
.notice-card [style*="color:#c00000"],
.notice-card [style*="color: #c00000"] {
    color: #ff8aa4 !important;
}

.main .cate {
    padding-top: 18px;
}

.cateBox {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
}

.cateBox::-webkit-scrollbar {
    height: 8px;
}

.cateBox::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
}

.main .cate .cate-box {
    min-width: 146px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    position: relative;
    margin-bottom: 4px;
    flex: 0 0 auto;
}

.main .cate .cate-box-select {
    background: linear-gradient(135deg, rgba(63, 124, 255, 0.24), rgba(0, 224, 255, 0.18));
    border-color: rgba(0,224,255,0.28);
    box-shadow: 0 14px 26px rgba(0,0,0,0.22);
}

.main .cate .cate-box p {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-primary);
    margin-top: 0;
}

.main .cate .cate-box div {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 5px;
}

.main .cate .cate-box-select div {
    color: rgba(255,255,255,0.82);
}

.main .goods {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.shosu {
    width: 242px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    position: relative;
    min-height: 40px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 22px;
}

.shosu img {
    width: 14px;
    position: absolute;
    left: 16px;
    top: 50%;
    margin-top: -7px;
    opacity: 0.72;
}

.shosu input {
    padding-left: 40px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--text-primary);
    border-radius: 999px;
    width: 100%;
    height: 40px;
}

.shosu input::placeholder {
    color: var(--text-muted);
}

.goods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.main .goods .goods-box {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    display: block;
    min-width: 0;
    padding: 14px;
    background: var(--bg-card-strong);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow-soft);
    border-radius: 18px;
    cursor: pointer;
    user-select: none;
    position: relative;
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.main .goods .goods-box:hover {
    transform: translateY(-4px);
    border-color: rgba(0,224,255,0.24);
    box-shadow: 0 24px 40px rgba(0,0,0,0.28);
}

.main .goods .goods-box::after {
    content: "";
    position: absolute;
    inset: auto 14px 0 14px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,224,255,0), rgba(0,224,255,0.22), rgba(0,224,255,0));
}

.goodsItem {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.imgBox {
    width: 84px;
    flex: 0 0 84px;
}

.imgBox img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
}

.goodDesc {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
}

.main .goods .goods-name {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0 0 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 800;
}

.goods-price {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.main .goods .goods-price {
    color: var(--accent-cyan);
    font-size: 16px;
    font-weight: 800;
    display: inline-block;
}

.main .goods .goods-num {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    gap: 14px;
}

.main .goods .goods-num div {
    flex: 1 1 auto;
    height: 6px;
    background: rgba(255,255,255,0.08);
    position: relative;
    border-radius: 999px;
    margin-top: 0;
}

.main .goods .goods-num div p {
    display: inline-block;
    position: absolute;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 999px;
}

.main .goods .goods-num span {
    color: var(--accent-green);
    font-size: 12px;
    margin-left: 0;
    white-space: nowrap;
}

.main-box .goods-img {
    margin: 8px 0 0 24px;
    width: calc(100% - 24px);
    height: 0;
    position: relative;
    padding-bottom: calc(100% - 48px);
}

.main-box .goods-img img {
    width: calc(100% - 20px);
    height: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
    background: rgba(255,255,255,0.04);
}

.main-box .goods-msg {
    margin: 8px 24px 0 12px;
}

.main-box .goods-msg .goods-name {
    font-weight: 800;
    font-size: 26px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
}

.small-tips {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    margin-left: 6px;
    line-height: 1.3;
}

.tips-pink {
    background: rgba(255, 107, 129, 0.14);
    color: #ff8ca0;
}

.tips-green {
    background: rgba(49, 215, 162, 0.14);
    color: #7df0c8;
}

.tips-yellow {
    background: rgba(255, 204, 74, 0.16);
    color: #ffd779;
}

.tips-blue {
    background: rgba(0, 216, 255, 0.14);
    color: #8cecff;
}

.tips-red {
    background: rgba(255, 90, 124, 0.14);
    color: #ff8aa4;
}

.price {
    margin-top: 14px;
}

.price .price-sign,
.price .price-num {
    color: #ff758a;
}

.price .price-sign {
    font-size: 18px;
}

.price .price-num {
    font-size: 28px;
    font-weight: 800;
}

.l-msg {
    color: var(--text-secondary);
    width: 92px;
    display: inline-block;
    vertical-align: middle;
}

.entry {
    margin-top: 16px;
}

.input input,
.order-number,
.layui-input,
.layui-textarea,
.order-info {
    display: inline-block;
    padding: 0 14px;
    min-height: 44px;
    width: 320px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
    border-radius: 12px;
    overflow: hidden;
}

.input input::placeholder,
.layui-input::placeholder,
.layui-textarea::placeholder {
    color: var(--text-muted);
}

.order-number {
    width: 64px;
    text-align: center;
    float: left;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 0;
}

.btn.btn-outline-secondary {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    width: 46px;
    min-height: 44px;
}

.btn a,
.btn button,
.buy button,
.no-stock {
    min-height: 46px;
    margin-top: 15px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #07101b;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    transition: all 300ms ease;
    box-shadow: 0 14px 30px rgba(63, 124, 255, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn a:hover,
.btn button:hover,
.buy button:hover {
    transform: translateY(-2px);
}

.no-stock {
    background: linear-gradient(135deg, #4a5369, #707a92);
    color: #eef4ff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.buy {
    text-align: center;
    margin-top: 18px;
}

.pay-title {
    margin: 0 24px;
    padding-bottom: 14px;
}

.layui-card,
.layui-table,
.layui-table-view,
.layui-tab,
.width {
    background: transparent;
    color: var(--text-primary);
}

.layui-card {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
    margin-bottom: 12px;
}

.layui-card-header {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: auto;
    line-height: 1.5;
    padding: 14px 18px;
}

.layui-card-body {
    position: relative;
    padding: 16px 20px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.layui-table {
    margin: 0;
}

.layui-table td,
.layui-table th {
    border-color: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    background: transparent;
}

.layui-table tbody tr:hover,
.layui-table-hover {
    background: rgba(255,255,255,0.02);
}

.layui-btn {
    border-radius: 999px;
    border: none;
}

.layui-btn-xs {
    padding: 0 14px;
    height: 32px;
    line-height: 32px;
}

.layui-btn-primary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--text-primary);
}

.layui-btn-normal,
.goods-btn,
.qfk-btn {
    background: linear-gradient(135deg, rgba(63,124,255,0.96), rgba(0,224,255,0.9));
}

.sh-btn {
    background: linear-gradient(135deg, rgba(49,215,162,0.95), rgba(0,224,182,0.92));
}

.del-btn {
    background: linear-gradient(135deg, rgba(255,107,129,0.94), rgba(255,142,114,0.92));
}

.pay-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
    padding: 9px 14px;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-primary);
}

.pay-select {
    border: 1px solid rgba(0,224,255,0.28);
    background: linear-gradient(135deg, rgba(63,124,255,0.18), rgba(0,224,255,0.14));
    color: var(--accent-cyan);
}

.intro {
    padding: 10px 24px 4px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0;
    font-weight: 500;
}

.intro img {
    max-width: 100%;
    border-radius: 14px;
}

.order-list {
    margin-left: initial;
    margin-right: initial;
    margin-top: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 5px;
}

.order-info {
    width: 100%;
    min-height: 96px;
    overflow-wrap: break-word;
    padding: 12px 14px;
    overflow: auto;
    resize: none !important;
    line-height: 1.75;
}

.laypro_footer {
    margin-top: 10px;
}

.footer-shell {
    max-width: 720px;
    margin: 0 auto;
    padding: 18px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-title {
    margin: 0;
    color: var(--text-primary);
    font-weight: 700;
}

.footer-copy,
.footer-meta {
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.layui-layer.home-tips {
    background: rgba(10, 16, 28, 0.96) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 24px 48px rgba(0,0,0,0.42) !important;
    color: var(--text-primary) !important;
}

.layui-layer.home-tips .layui-layer-title {
    height: auto !important;
    line-height: 1.5 !important;
    padding: 16px 20px !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    color: var(--text-primary) !important;
    font-weight: 800 !important;
}

.layui-layer.home-tips .layui-layer-content {
    padding: 18px 20px !important;
    color: var(--text-secondary) !important;
}

.layui-layer.home-tips .layui-layer-setwin .layui-layer-close1 {
    filter: invert(1);
    opacity: 0.8;
}

.container {
    margin-top: 32px;
}

.width {
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    font-size: .95rem;
    max-width: 48rem;
    padding: 1.5rem;
    margin: auto;
}

.atitle {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.content {
    margin-top: 15px;
    color: var(--text-secondary);
}

.err_title {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 800;
    margin-top: 20px;
}

.err_content {
    margin-top: 20px;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.loading {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    cursor: pointer;
    color: var(--text-secondary);
}

.loading:hover {
    color: var(--text-primary);
}

.section-panel,
.auth-panel,
.detail-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
}

@media (max-width: 992px) {
    .store-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-topbar-actions {
        justify-content: flex-start;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .layui-row {
        margin: 0 12px;
    }

    .header .header-box {
        min-height: 68px;
        padding: 12px 0;
        gap: 12px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .brand-copy strong {
        font-size: 0.92rem;
    }

    .brand-copy small {
        display: none;
    }

    .header .header-box .query {
        gap: 8px;
    }

    .nav-link {
        min-height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }

    #content {
        padding-top: 16px;
    }

    .main .title,
    .main .cate,
    .main .goods,
    .main .announcement-shell,
    .main .hero-shell,
    .main .notice-card-home,
    .pay-title {
        margin-left: 16px;
        margin-right: 16px;
    }

    .hero-card,
    .notice-card {
        padding: 20px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 26px;
    }

    .store-topbar {
        margin-left: 16px;
        margin-right: 16px;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .store-topbar h1 {
        font-size: 28px;
    }

    .main .goods .goods-box {
        padding: 12px;
    }

    .main-box .goods-msg {
        margin-left: 24px;
        margin-top: 18px;
    }

    .main-box .goods-msg .goods-name {
        font-size: 22px;
    }

    .input input,
    .layui-input,
    .layui-textarea {
        width: calc(100% - 108px);
    }

    .shosu {
        width: 100%;
        margin-left: 0;
        margin-top: 12px;
    }

    .main .title-2 {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 540px) {
    .header .header-box {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header .header-box .query {
        width: auto;
        justify-content: flex-end;
    }

    .nav-link {
        flex: 0 0 auto;
    }

    .store-topbar-actions a {
        width: 100%;
        justify-content: center;
    }

    .goodsItem {
        flex-direction: column;
        align-items: flex-start;
    }

    .imgBox {
        width: 100%;
        flex-basis: auto;
    }

    .imgBox img {
        aspect-ratio: 16 / 9;
    }

    .goodDesc {
        width: 100%;
    }

    .input input,
    .layui-input,
    .layui-textarea {
        width: 100%;
        margin-top: 8px;
    }

    .l-msg {
        width: 100%;
        margin-bottom: 6px;
    }

    .entry {
        display: block;
    }

    .pay-title,
    .main .title,
    .main .title-2 {
        font-size: 15px;
    }
}
