/* ============================================================
   论文写作辅导 — 学术纸张主题覆盖层 (lw overlay)
   作用范围：body.lw-public（前台首页 / 查订单页）
   设计令牌与 lunwen.obny.cn 旧站新版保持一致：
   纸底 #f6f3ec / 深墨绿 #0b423c / 墨绿 #14655b / 金棕 #a8874e
   H5 优先：所有可点元素 ≥44px，分类/支付按钮为大触控块
   ============================================================ */

p, ul {
    margin-top: 0
}

.lw-public {
    --lw-paper: #f6f3ec;
    --lw-card: #fffdf8;
    --lw-ink: #242f2d;
    --lw-ink-soft: #3d4a47;
    --lw-muted: #78827d;
    --lw-line: #e3dccc;
    --lw-line-soft: #ece6d8;
    --lw-green: #14655b;
    --lw-green-deep: #0b423c;
    --lw-green-wash: #e8f0ec;
    --lw-gold: #a8874e;
    --lw-gold-soft: #c8ab7a;
    --lw-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
    background: var(--lw-paper) !important;
    color: var(--lw-ink);
}

.lw-public ::selection {
    background: #d9e8e2;
}

/* ---------- 顶栏 ---------- */
.lw-public .navbar {
    min-height: 60px;
    border-bottom: 1px solid var(--lw-line);
    background: rgba(246, 243, 236, .95) !important;
    box-shadow: none;
}

.lw-public .navbar-brand a {
    display: inline-flex;
    align-items: center;
}

.lw-public .lw-logo-img {
    display: block;
    width: 210px;
    max-width: 56vw;
    height: 46px;
    object-fit: contain;
}

.lw-public .brand-fallback {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.lw-public .nav-link {
    color: var(--lw-ink-soft) !important;
    font-size: 14px;
    font-weight: 700;
}

.lw-public .nav-link:hover {
    color: var(--lw-green-deep) !important;
}

.lw-public .lw-login-link {
    color: var(--lw-gold) !important;
}

.lw-public .content-wrapper {
    padding-top: 22px;
    padding-bottom: 48px;
}

/* ---------- Hero：深绿学术卷首 ---------- */
.lw-public .lw-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 26px;
    align-items: center;
    margin-bottom: 20px;
    padding: 42px 40px 38px;
    overflow: hidden;
    border-radius: 14px;
    background:
        radial-gradient(560px 300px at 92% -12%, rgba(200, 171, 122, .18), transparent 62%),
        linear-gradient(160deg, var(--lw-green-deep), #0f5349);
    color: #f4f1e8;
    animation: lwHeroEnter 420ms cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes lwHeroEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lw-public .lw-hero::after {
    content: "論";
    position: absolute;
    right: -26px;
    bottom: -78px;
    color: rgba(244, 241, 232, .05);
    font-family: var(--lw-serif);
    font-size: 300px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.lw-public .lw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--lw-gold-soft);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.lw-public .lw-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--lw-gold-soft);
}

.lw-public .lw-hero h1 {
    max-width: 720px;
    margin: 0 0 14px;
    color: #f4f1e8;
    font-family: var(--lw-serif);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .02em;
}

.lw-public .lw-hero p {
    max-width: 680px;
    margin-bottom: 20px;
    color: rgba(244, 241, 232, .82);
    font-size: 15px;
    line-height: 1.9;
}

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

.lw-public .lw-primary-cta,
.lw-public .lw-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.lw-public .lw-primary-cta {
    background: #f4f1e8;
    color: var(--lw-green-deep);
}

.lw-public .lw-primary-cta:hover {
    background: #fff;
    color: var(--lw-green-deep);
    box-shadow: 0 8px 18px rgba(3, 28, 25, .2);
    transform: translateY(-2px);
}

.lw-public .lw-primary-cta:focus-visible {
    outline: 2px solid var(--lw-gold-soft);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .lw-public .lw-hero {
        animation: none;
    }

    .lw-public .lw-primary-cta,
    .lw-public .lw-secondary-cta {
        transition: none;
    }
}

.lw-public .lw-secondary-cta {
    border: 1px solid rgba(244, 241, 232, .45);
    color: #f4f1e8;
}

.lw-public .lw-secondary-cta:hover {
    border-color: rgba(244, 241, 232, .9);
    color: #fff;
}

/* 三个快捷入口（H5 主要触达点） */
.lw-public .lw-belief-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    max-width: 680px;
    margin: 0 0 16px;
    padding: 14px 16px;
    border: 1px solid rgba(200, 171, 122, .48);
    border-radius: 12px;
    background: rgba(244, 241, 232, .1);
}

.lw-public .lw-belief-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(200, 171, 122, .14);
    color: var(--lw-gold-soft);
    font-size: 18px;
}

.lw-public .lw-belief-card b {
    display: block;
    color: #f4f1e8;
    font-family: var(--lw-serif);
    font-size: 15px;
    line-height: 1.45;
}

.lw-public .lw-belief-card span {
    display: block;
    margin-top: 3px;
    color: rgba(244, 241, 232, .72);
    font-size: 12.5px;
    line-height: 1.65;
}

.lw-public .lw-quick-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 680px;
}

.lw-public .lw-quick-actions a {
    display: grid;
    gap: 3px;
    padding: 13px 15px;
    border: 1px solid rgba(244, 241, 232, .22);
    border-radius: 10px;
    background: rgba(244, 241, 232, .07);
    text-decoration: none;
    transition: .2s;
}

.lw-public .lw-quick-actions a:hover {
    border-color: var(--lw-gold-soft);
    background: rgba(244, 241, 232, .12);
}

.lw-public .lw-quick-actions i {
    color: var(--lw-gold-soft);
    font-size: 17px;
}

.lw-public .lw-quick-actions b {
    color: #f4f1e8;
    font-size: 14.5px;
}

.lw-public .lw-quick-actions span {
    color: rgba(244, 241, 232, .66);
    font-size: 12px;
    line-height: 1.5;
}

/* 折叠的更多细节 */
.lw-public .lw-hero-expand {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    max-width: 680px;
}

.lw-public .lw-hero-expand summary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    color: rgba(244, 241, 232, .75);
    font-size: 13.5px;
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

.lw-public .lw-hero-expand summary::-webkit-details-marker {
    display: none;
}

.lw-public .lw-hero-expand summary:hover {
    color: #f4f1e8;
}

.lw-public .lw-hero-expand[open] summary .fa-angle-down {
    transform: rotate(180deg);
}

.lw-public .lw-help-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 4px;
}

.lw-public .lw-help-tags b,
.lw-public .lw-help-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 5px 12px;
    border: 1px solid rgba(244, 241, 232, .24);
    border-radius: 999px;
    color: rgba(244, 241, 232, .8);
    font-size: 12.5px;
    font-weight: 400;
}

.lw-public .lw-help-tags b {
    border-color: var(--lw-gold-soft);
    color: var(--lw-gold-soft);
    font-weight: 700;
}

.lw-public .lw-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 14px;
    color: rgba(244, 241, 232, .7);
    font-size: 13px;
}

.lw-public .lw-metrics b {
    color: var(--lw-gold-soft);
    font-family: var(--lw-serif);
    font-size: 21px;
    margin-right: 3px;
}

/* 右侧"购买后你会得到"面板 */
.lw-public .lw-hero-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    align-self: center;
    padding: 22px 22px;
    border-left: 2px solid var(--lw-gold-soft);
    border-radius: 0 12px 12px 0;
    background: rgba(244, 241, 232, .08);
}

.lw-public .lw-hero-panel b {
    color: #f4f1e8;
    font-family: var(--lw-serif);
    font-size: 17px;
    letter-spacing: .02em;
}

.lw-public .lw-hero-panel span {
    position: relative;
    padding-left: 18px;
    color: rgba(244, 241, 232, .78);
    font-size: 13px;
    line-height: 1.6;
}

.lw-public .lw-hero-panel span::before {
    content: "·";
    position: absolute;
    left: 4px;
    color: var(--lw-gold-soft);
    font-weight: 700;
}

/* ---------- 三格特性条 ---------- */
.lw-public .lw-feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--lw-line);
    border-radius: 12px;
    background: var(--lw-card);
}

.lw-public .lw-feature-strip div {
    display: grid;
    gap: 6px;
    min-height: 112px;
    padding: 20px 22px;
    border-right: 1px solid var(--lw-line-soft);
}

.lw-public .lw-feature-strip div:last-child {
    border-right: 0;
}

.lw-public .lw-feature-strip i {
    color: var(--lw-gold);
    font-size: 20px;
}

.lw-public .lw-feature-strip b {
    color: var(--lw-ink);
    font-family: var(--lw-serif);
    font-size: 16px;
}

.lw-public .lw-feature-strip span {
    color: var(--lw-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* ---------- 分节标题与步骤条 ---------- */
.lw-public .lw-section-head {
    margin: 8px 0 14px;
}

.lw-public .lw-section-head > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lw-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.lw-public .lw-section-head > span::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--lw-gold);
}

.lw-public .lw-section-head h2 {
    margin: 6px 0 8px;
    color: var(--lw-ink);
    font-family: var(--lw-serif);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: .03em;
}

.lw-public .lw-section-head p {
    max-width: 640px;
    margin: 0;
    color: var(--lw-muted);
    font-size: 14px;
    line-height: 1.8;
}

.lw-public .lw-stepbar {
    display: flex;
    gap: 8px;
    margin: 14px 0 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lw-public .lw-stepbar::-webkit-scrollbar {
    display: none;
}

.lw-public .lw-stepbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 7px 16px;
    border: 1px solid var(--lw-line);
    border-radius: 999px;
    background: var(--lw-card);
    color: var(--lw-ink-soft);
    font-size: 13.5px;
    white-space: nowrap;
}

.lw-public .lw-stepbar span b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--lw-green-wash);
    color: var(--lw-green-deep);
    font-family: var(--lw-serif);
    font-size: 13px;
}

.lw-public .lw-stepbar span.active {
    border-color: var(--lw-green-deep);
    background: var(--lw-green-deep);
    color: #f4f1e8;
}

.lw-public .lw-stepbar span.active b {
    background: rgba(244, 241, 232, .18);
    color: var(--lw-gold-soft);
}

.lw-public .lw-delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 18px;
}

.lw-public .lw-delivery-grid article {
    min-height: 128px;
    padding: 16px 16px 14px;
    border: 1px solid var(--lw-line);
    border-radius: 12px;
    background: var(--lw-card);
}

.lw-public .lw-delivery-grid span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--lw-green-wash);
    color: var(--lw-green-deep);
    font-size: 12px;
    font-weight: 700;
}

.lw-public .lw-delivery-grid b {
    display: block;
    color: var(--lw-ink);
    font-family: var(--lw-serif);
    font-size: 16px;
    line-height: 1.45;
}

.lw-public .lw-delivery-grid p {
    margin: 7px 0 0;
    color: var(--lw-ink-soft);
    font-size: 13px;
    line-height: 1.7;
}

/* ---------- 卡片基底 ---------- */
.lw-public .card {
    border: 1px solid var(--lw-line);
    border-radius: 12px;
    background: var(--lw-card);
    box-shadow: none;
}

.lw-public .card-header {
    border-bottom: 1px solid var(--lw-line-soft);
    border-radius: 12px 12px 0 0;
    background: transparent;
}

.lw-public .card-title {
    color: var(--lw-ink);
    font-family: var(--lw-serif);
    font-weight: 700;
    letter-spacing: .02em;
}

.lw-public .card-title .fa {
    color: var(--lw-gold);
}

/* 服务说明折叠卡 */
.lw-public .lw-service-note summary {
    cursor: pointer;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}

.lw-public .lw-service-note summary::-webkit-details-marker {
    display: none;
}

.lw-public .lw-collapse-icon {
    float: right;
    color: var(--lw-muted) !important;
    transition: transform .2s;
}

.lw-public .lw-service-note[open] .lw-collapse-icon {
    transform: rotate(180deg);
}

/* ---------- 分类 / 服务项目选择 ---------- */
.lw-public .category,
.lw-public #product {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lw-public .button-click,
.lw-public .btn-success,
.lw-public .anticipation thead th button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 9px 18px;
    border: 1px solid var(--lw-green-deep) !important;
    border-radius: 8px !important;
    background-color: var(--lw-green-deep) !important;
    color: #f4f1e8 !important;
    font-weight: 700;
    box-shadow: none !important;
    transition: .2s;
    -webkit-tap-highlight-color: transparent;
}

.lw-public .button-click:hover,
.lw-public .btn-success:hover {
    border-color: var(--lw-green) !important;
    background-color: var(--lw-green) !important;
    color: #fff !important;
}

/* 分类按钮：未选中为纸底描边，选中为深绿 */
.lw-public .category-button {
    min-height: 46px;
    border: 1px solid var(--lw-line) !important;
    background-color: var(--lw-card) !important;
    color: var(--lw-ink-soft) !important;
    font-weight: 700;
}

.lw-public .category-button:hover {
    border-color: var(--lw-gold) !important;
    background-color: var(--lw-card) !important;
    color: var(--lw-ink) !important;
}

.lw-public .category-button.checked {
    border-color: var(--lw-green-deep) !important;
    background-color: var(--lw-green-deep) !important;
    color: #f4f1e8 !important;
}

/* 服务项目卡：竖排名称 + 价格 */
.lw-public .lw-product-card {
    display: inline-flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 150px;
    min-height: 66px;
    padding: 12px 16px;
    border: 1px solid var(--lw-line) !important;
    border-radius: 10px !important;
    background-color: var(--lw-card) !important;
    color: var(--lw-ink) !important;
    font-weight: 400;
    text-align: left;
}

.lw-public .lw-product-card strong {
    color: var(--lw-ink);
    font-size: 14.5px;
    line-height: 1.45;
}

.lw-public .lw-product-card em {
    color: var(--lw-green-deep);
    font-family: var(--lw-serif);
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
}

.lw-public .lw-product-card:hover {
    border-color: var(--lw-gold) !important;
    background-color: var(--lw-card) !important;
}

.lw-public .lw-product-card.checked {
    border-color: var(--lw-green-deep) !important;
    background-color: var(--lw-green-wash) !important;
}

.lw-public .lw-product-card.checked strong {
    color: var(--lw-green-deep);
}

.lw-public .lw-product-standard {
    display: grid;
    gap: 2px;
    margin-top: 6px;
    padding-top: 7px;
    border-top: 1px dashed var(--lw-line);
    color: var(--lw-muted);
    font-size: 12px;
    line-height: 1.45;
}

.lw-public .lw-product-standard b {
    color: var(--lw-gold);
    font-size: 12px;
    line-height: 1.35;
}

.lw-public .lw-product-standard span {
    color: var(--lw-ink-soft);
}

.lw-public .commodity-icon {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    border-radius: 4px !important;
    background: transparent;
}

/* ---------- 服务详情 / 材料填写 ---------- */
.lw-public .lw-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--lw-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
}

.lw-public .lw-detail-kicker::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--lw-gold);
}

.lw-public .productName {
    color: var(--lw-ink);
    font-family: var(--lw-serif);
    font-weight: 700;
}

.lw-public .lw-detail-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 10px;
}

.lw-public .lw-detail-summary span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--lw-green-wash);
    color: var(--lw-green-deep);
    font-size: 12.5px;
    font-weight: 600;
}

.lw-public .lw-selected-standard-card {
    margin: 10px 0 12px;
    padding: 14px 16px;
    border: 1px solid rgba(168, 135, 78, .35);
    border-radius: 10px;
    background: #fbf7ed;
}

.lw-public .lw-selected-standard-card > span {
    display: inline-flex;
    margin-bottom: 7px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(168, 135, 78, .14);
    color: var(--lw-gold);
    font-size: 12px;
    font-weight: 700;
}

.lw-public .lw-selected-standard-card b {
    display: block;
    color: var(--lw-ink);
    font-family: var(--lw-serif);
    font-size: 15px;
    line-height: 1.55;
}

.lw-public .lw-selected-standard-card ul {
    margin: 9px 0 0;
    padding-left: 18px;
    color: var(--lw-ink-soft);
    font-size: 13px;
    line-height: 1.75;
}

.lw-public .lw-selected-standard-card p {
    margin: 9px 0 0;
    color: var(--lw-muted);
    font-size: 12px;
    line-height: 1.65;
}

.lw-public .lw-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 26px;
    margin-bottom: 12px;
    padding: 10px 14px;
    border: 1px dashed var(--lw-line);
    border-radius: 8px;
    background: rgba(232, 240, 236, .4);
}

.lw-public .lw-order-meta p {
    margin: 4px 0;
    color: var(--lw-ink-soft);
    font-size: 13.5px;
}

.lw-public .lw-form-title {
    margin: 14px 0 10px;
    padding-top: 12px;
    border-top: 1px dashed var(--lw-line);
    color: var(--lw-ink);
    font-family: var(--lw-serif);
    font-size: 16px;
    font-weight: 700;
}

.lw-public .payAmount,
.lw-public .price {
    color: var(--lw-green-deep) !important;
    font-family: var(--lw-serif);
}

.lw-public .price_tips {
    color: var(--lw-ink-soft) !important;
    background: var(--lw-green-wash) !important;
    border-radius: 4px;
    padding: 2px 6px;
}

.lw-public .badge-success {
    background-color: var(--lw-green) !important;
}

.lw-public .badge-danger {
    background-color: var(--lw-gold) !important;
}

.lw-public .captchaImage {
    border: 1px solid var(--lw-line) !important;
    border-radius: 6px;
    background: #fff;
    filter: none;
}

/* 表单控件（含系统注入的 .form-control.round） */
.lw-public .form-control,
.lw-public textarea,
.lw-public select {
    min-height: 44px;
    border: 1px solid var(--lw-line) !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    color: var(--lw-ink);
    transition: border-color .2s, box-shadow .2s;
}

.lw-public .form-control:focus,
.lw-public textarea:focus,
.lw-public select:focus {
    outline: none;
    border-color: var(--lw-green) !important;
    box-shadow: 0 0 0 3px rgba(20, 101, 91, .12) !important;
}

.lw-public label {
    color: var(--lw-ink-soft);
    font-size: 13.5px;
    font-weight: 600;
}

/* 购买份数 / 验证码输入框在 H5 下太窄，覆盖行内宽度 */
.lw-public .buyNum {
    width: 96px !important;
    display: inline-block;
}

.lw-public .captcha {
    width: 130px !important;
    display: inline-block;
}

/* ---------- 支付方式 ---------- */
.lw-public .pay_type {
    gap: 10px;
}

.lw-public .pay_type .button-click {
    min-height: 50px;
    min-width: 150px;
    margin: 4px 0;
    font-size: 15px;
}

/* ---------- 查订单页 ---------- */
.lw-public .order-success .hr-top {
    margin: 12px 0;
    padding: 16px 18px;
    border: 1px solid var(--lw-line);
    border-radius: 10px;
    background: #fff;
}

.lw-public .order-success .hr-top > div {
    padding: 3px 0;
    color: var(--lw-ink-soft);
}

.lw-public .order-success .trade_no {
    font-family: var(--lw-serif);
    color: var(--lw-green-deep);
}

.lw-public .notfound {
    color: var(--lw-muted);
    font-family: var(--lw-serif);
    font-size: 22px;
    padding: 18px 0;
}

.lw-public .input-group .btn-success {
    border-radius: 0 8px 8px 0 !important;
    min-width: 88px;
}

/* ---------- 咨询弹窗（layer 注入） ---------- */
.lw-consult-modal {
    display: grid;
    gap: 10px;
    padding: 22px 20px;
    box-sizing: border-box;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    text-align: center;
    background: #fffdf8;
}

.lw-consult-modal .lw-consult-title {
    color: #0b423c;
    font-family: "Noto Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
    font-size: 17px;
    font-weight: 700;
}

.lw-consult-modal .lw-consult-title .fa {
    color: #a8874e;
}

.lw-consult-modal .lw-consult-qr {
    width: 250px;
    height: auto;
    max-width: 82%;
    margin: 0 auto;
    border: 1px solid #e3dccc;
    border-radius: 8px;
}

.lw-consult-modal p {
    margin: 0;
    color: #3d4a47;
    font-size: 14px;
}

.lw-consult-modal > span {
    color: #78827d;
    font-size: 12px;
}

.lw-consult-wecom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 11px 18px;
    border: 1px solid #16865a;
    border-radius: 7px;
    background: #16865a;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(22, 134, 90, .2);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.lw-consult-wecom-button:hover,
.lw-consult-wecom-button:focus-visible {
    border-color: #0f6e49;
    background: #0f6e49;
    color: #fff !important;
    transform: translateY(-1px);
}

.lw-consult-qr-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a7655;
    font-size: 12px;
    font-weight: 700;
}

.lw-consult-qr-label::before,
.lw-consult-qr-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e3dccc;
}

body.lw-consult-open .lw-mobile-sticky-buy,
body.lw-consult-open .lw-floating-consult,
body.lw-consult-open .lw-floating-wecom {
    visibility: hidden !important;
    pointer-events: none !important;
}

.lw-consult-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 9px;
    margin-top: 2px;
}

.lw-consult-hours {
    padding: 9px 10px;
    border-left: 3px solid #a8874e;
    background: #f5f1e7;
    color: #5f625d;
    font-size: 12px;
    line-height: 1.55;
    text-align: left;
}

.lw-consult-hours.is-open {
    border-left-color: #16865a;
    background: #edf7f2;
    color: #155c43;
}

.lw-consult-actions .lw-consult-wecom-button,
.lw-consult-actions .lw-consult-chat-button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 9px 10px;
    font-size: 13px;
    line-height: 1.35;
}

.lw-consult-chat-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid #0b423c;
    border-radius: 7px;
    background: #0b423c;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.lw-consult-chat-button:hover,
.lw-consult-chat-button:focus-visible {
    background: #14655b;
    border-color: #14655b;
}

@media (max-width: 768px) {
    .lw-consult-modal {
        gap: 7px;
        padding: 14px;
    }

    .lw-consult-modal .lw-consult-qr {
        width: 205px;
        max-width: 72%;
    }
}

@media (max-width: 340px) {
    .lw-consult-actions {
        grid-template-columns: 1fr;
    }
}

.lw-consult-choice-list {
    display: grid;
    gap: 10px;
}

.lw-consult-choice {
    display: grid;
    gap: 3px;
    padding: 14px 16px;
    border: 1px solid #e3dccc;
    border-radius: 10px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: .2s;
}

.lw-consult-choice:hover {
    border-color: #a8874e;
}

.lw-consult-choice .fa {
    color: #a8874e;
    font-size: 17px;
}

.lw-consult-choice b {
    color: #242f2d;
    font-size: 15px;
}

.lw-consult-choice span {
    color: #78827d;
    font-size: 12.5px;
    line-height: 1.55;
}

/* ---------- 浮动咨询按钮 / 移动端购买栏 ---------- */
.lw-public .lw-floating-consult {
    position: fixed;
    right: 16px;
    bottom: 84px;
    z-index: 890;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 16px;
    border: 1px solid var(--lw-green-deep);
    border-radius: 999px;
    background: var(--lw-card);
    color: var(--lw-green-deep);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(11, 66, 60, .22);
    cursor: pointer;
}

.lw-public .lw-floating-consult .fa {
    font-size: 16px;
}

.lw-public .lw-floating-wecom {
    position: fixed;
    right: 16px;
    bottom: 140px;
    z-index: 889;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid var(--lw-gold);
    border-radius: 999px;
    background: var(--lw-card);
    color: var(--lw-green-deep);
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(11, 66, 60, .16);
    cursor: pointer;
}

.lw-public .lw-floating-wecom .fa {
    color: #16865a;
    font-size: 15px;
}

.lw-public .lw-mobile-sticky-buy {
    display: none;
}

/* ---------- 桌面端隐藏移动购买栏 / 收尾 ---------- */
.lw-public .sliderbar-container .title {
    background: var(--lw-green-deep) !important;
}

/* ============================================================
   H5（≤768px）
   ============================================================ */
@media (max-width: 768px) {
    html,
    body.lw-public {
        max-width: 100%;
        overflow-x: hidden;
    }

    .lw-public .content-wrapper {
        padding-top: 14px;
        /* 给底部固定购买栏留出空间 */
        padding-bottom: 96px;
    }

    .lw-public .lw-logo-img {
        height: 40px;
    }

    .lw-public .navbar .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .lw-public .navbar .row::-webkit-scrollbar {
        display: none;
    }

    .lw-public .navbar .nav-link {
        white-space: nowrap;
    }

    .lw-public .lw-hero {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 26px 20px 24px;
        border-radius: 12px;
    }

    .lw-public .lw-hero::after {
        font-size: 200px;
        right: -40px;
        bottom: -56px;
    }

    .lw-public .lw-hero h1 {
        font-size: 28px;
        line-height: 1.35;
    }

    .lw-public .lw-hero p {
        font-size: 14px;
    }

    .lw-public .lw-hero-actions a {
        flex: 1 1 auto;
    }

    .lw-public .lw-quick-actions {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lw-public .lw-belief-card {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
        margin-bottom: 12px;
        padding: 12px 14px;
    }

    .lw-public .lw-belief-card i {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .lw-public .lw-quick-actions a {
        grid-template-columns: 26px auto 1fr;
        align-items: center;
        gap: 4px 8px;
        padding: 11px 14px;
    }

    .lw-public .lw-quick-actions b {
        font-size: 14px;
    }

    .lw-public .lw-quick-actions span {
        grid-column: 3;
        justify-self: end;
        text-align: right;
    }

    .lw-public .lw-hero-panel {
        border-left: none;
        border-top: 2px solid var(--lw-gold-soft);
        border-radius: 0 0 12px 12px;
        padding: 16px 16px;
    }

    .lw-public .lw-feature-strip {
        grid-template-columns: 1fr;
    }

    .lw-public .lw-feature-strip div {
        min-height: auto;
        padding: 15px 16px;
        border-bottom: 1px solid var(--lw-line-soft);
    }

    .lw-public .lw-feature-strip div {
        border-right: 0;
    }

    .lw-public .lw-feature-strip div:last-child {
        border-bottom: 0;
    }

    .lw-public .lw-section-head h2 {
        font-size: 23px;
    }

    .lw-public .lw-delivery-grid {
        grid-template-columns: 1fr;
        gap: 9px;
        margin: 12px 0 14px;
    }

    .lw-public .lw-delivery-grid article {
        min-height: auto;
        padding: 13px 14px;
    }

    .lw-public .lw-product-standard {
        width: 100%;
    }

    /* 详情卡：H5 下表单在前、图文详情在后 */
    .lw-public .lw-detail-card .commodity .row {
        display: flex;
        flex-direction: column-reverse;
    }

    .lw-public .lw-detail-card .description img {
        max-width: 100% !important;
        height: auto !important;
    }

    .lw-public .pay_type .button-click {
        flex: 1 1 100%;
        min-height: 52px;
    }

    .lw-public .sliderbar-container {
        display: none !important;
    }

    .lw-public input,
    .lw-public textarea,
    .lw-public select {
        max-width: 100%;
        font-size: 16px; /* 防止 iOS 聚焦自动放大 */
    }

    .lw-public .lw-floating-consult {
        bottom: 78px;
        right: 14px;
        min-height: 44px;
        padding: 9px 14px;
    }

    body.lw-public .lw-mobile-sticky-buy {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 12px;
        z-index: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 52px;
        border-radius: 10px;
        background: var(--lw-green-deep);
        color: #f4f1e8;
        font-size: 16.5px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 14px 30px rgba(11, 66, 60, .35);
    }
}
p, ul {
    margin-bottom: 1rem
}

img {
    vertical-align: middle
}

.content-icp {
    color: #a19d9d;
    font-weight: bolder;
    text-align: center;
    max-width: 1110px;
    margin: 30px auto 0 auto;
    border-radius: 20px;
    padding: 5px;
}

@font-face {
    font-family: HarmonyOS;
    font-style: normal;
    font-display: swap;
    src: url(/assets/static/font/HarmonyOS_Sans_SC_Medium.subset.woff2) format('woff2')
}

body {
    text-align: left;
    font-family: HarmonyOS !important;
}

button, input {
    overflow: visible
}

nav {
    display: block
}

label {
    margin-bottom: .5rem
}

.badge {
    vertical-align: baseline
}

label {
    display: inline-block
}

.navbar-nav {
    -webkit-box-direction: normal
}

.btn-outline-success {
    background-image: none
}

.navbar-nav {
    list-style: none
}


*, ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent
}


body {
    margin: 0;
    color: #212529;
    background-color: #F4F5FA
}

h1, h3, h5 {
    margin-top: 0;
    margin-bottom: .75rem
}

.btn:focus, .btn:hover, a {
    text-decoration: none
}

.btn:not(:disabled):not(.disabled), .close:not(:disabled):not(.disabled), .fc button:not(:disabled):not(.disabled), .navbar-toggler:not(:disabled):not(.disabled), .page-link:not(:disabled):not(.disabled), button:hover {
    cursor: pointer
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus {
    outline: 0
}

img {
    border-style: none
}

button {
    border-radius: 0
}

button:focus {
    outline: dotted 1px;
    outline: -webkit-focus-ring-color auto 5px
}

button, input, select {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, select {
    text-transform: none
}

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

[type=button]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

.badge, .btn, .navbar-brand {
    white-space: nowrap
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

h1, h3, h5 {
    margin-bottom: .75rem
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}


.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col, .col-3, .col-md-2, .col-md-5, .col-md-7 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.col-3 {
    -webkit-box-flex: 0
}

.col-3 {
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.offset-9 {
    margin-left: 75%
}

.form-control {
    display: block;
    width: 100%;
    height: -webkit-calc(2.25rem + 2px);
    height: -moz-calc(2.25rem + 2px);
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: rgba(255, 255, 255, 0.17);
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #CED4DA;
    border-radius: .25rem;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        -o-transition: none;
        -moz-transition: none;
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    color: #495057;
    background-color: #FFF;
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(102, 110, 232, .25);
    box-shadow: 0 0 0 .2rem rgba(102, 110, 232, .25)
}

.form-control::-webkit-input-placeholder {
    color: #6C757D;
    opacity: 1
}

.form-control:-moz-placeholder {
    color: #6C757D;
    opacity: 1
}

.form-control::-moz-placeholder {
    color: #6C757D;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #6C757D;
    opacity: 1
}

.form-control:disabled {
    opacity: 1
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #FFF
}

.form-group {
    margin-bottom: 1rem
}

.navbar-nav {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -moz-box-direction: normal
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -moz-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        -o-transition: none;
        -moz-transition: none;
        transition: none
    }
}

.btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 .2rem rgba(102, 110, 232, .25);
    box-shadow: 0 0 0 .2rem rgba(102, 110, 232, .25)
}

.btn:disabled {
    opacity: .65
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #3A44E1;
    border-color: #2F39E0
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(102, 110, 232, .5);
    box-shadow: 0 0 0 .2rem rgba(102, 110, 232, .5)
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .fc button:not(:disabled):not(.disabled).active, .fc button:not(:disabled):not(.disabled):active, .fc-toolbar .fc-state-active:not(:disabled):not(.disabled), .fc-toolbar .ui-state-active:not(:disabled):not(.disabled) {
    color: #FFF;
    background-color: #6C757D;
    border-color: #666E76
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .fc button:not(:disabled):not(.disabled).active:focus, .fc button:not(:disabled):not(.disabled):active:focus, .fc-toolbar .fc-state-active:not(:disabled):not(.disabled):focus, .fc-toolbar .ui-state-active:not(:disabled):not(.disabled):focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(134, 142, 150, .5);
    box-shadow: 0 0 0 .2rem rgba(134, 142, 150, .5)
}

.btn-success:hover {
    color: #FFF;
    background-color: #22B07D;
    border-color: #20A576
}

.btn-success:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(40, 208, 148, .5);
    box-shadow: 0 0 0 .2rem rgba(40, 208, 148, .5)
}

.btn-success:disabled {
    color: #212529;
    background-color: #28D094;
    border-color: #28D094
}

.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #20A576;
    border-color: #1E9B6E
}

.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(40, 208, 148, .5);
    box-shadow: 0 0 0 .2rem rgba(40, 208, 148, .5)
}

.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #0C84D1;
    border-color: #0B7CC5
}

.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(30, 159, 242, .5);
    box-shadow: 0 0 0 .2rem rgba(30, 159, 242, .5)
}

.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #FF7216;
    border-color: #FF6A09
}

.btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(255, 145, 73, .5);
    box-shadow: 0 0 0 .2rem rgba(255, 145, 73, .5)
}

.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #FF1635;
    border-color: #FF092A
}

.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(255, 73, 97, .5);
    box-shadow: 0 0 0 .2rem rgba(255, 73, 97, .5)
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #DAE0E5;
    border-color: #D3D9DF
}

.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #1D2124;
    border-color: #171A1D
}

.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-base:not(:disabled):not(.disabled).active, .btn-base:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #858585;
    border-color: #7E7E7E
}

.btn-base:not(:disabled):not(.disabled).active:focus, .btn-base:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(158, 158, 158, .5);
    box-shadow: 0 0 0 .2rem rgba(158, 158, 158, .5)
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #666EE8;
    border-color: #666EE8
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(102, 110, 232, .5);
    box-shadow: 0 0 0 .2rem rgba(102, 110, 232, .5)
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #868E96;
    border-color: #868E96
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(134, 142, 150, .5);
    box-shadow: 0 0 0 .2rem rgba(134, 142, 150, .5)
}

.btn-outline-success:hover {
    border-color: #28D094
}

.btn-outline-success:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(40, 208, 148, .5);
    box-shadow: 0 0 0 .2rem rgba(40, 208, 148, .5)
}

.btn-outline-success:disabled {
    color: #28D094;
    background-color: transparent
}

.btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #28D094;
    border-color: #28D094
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(40, 208, 148, .5);
    box-shadow: 0 0 0 .2rem rgba(40, 208, 148, .5)
}

.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #1E9FF2;
    border-color: #1E9FF2
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(30, 159, 242, .5);
    box-shadow: 0 0 0 .2rem rgba(30, 159, 242, .5)
}

.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #FF9149;
    border-color: #FF9149
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(255, 145, 73, .5);
    box-shadow: 0 0 0 .2rem rgba(255, 145, 73, .5)
}

.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #FF4961;
    border-color: #FF4961
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(255, 73, 97, .5);
    box-shadow: 0 0 0 .2rem rgba(255, 73, 97, .5)
}

.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #F8F9FA;
    border-color: #F8F9FA
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5);
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active {
    color: #FFF;
    background-color: #343A40;
    border-color: #343A40
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-base:not(:disabled):not(.disabled).active, .btn-outline-base:not(:disabled):not(.disabled):active {
    color: #212529;
    background-color: #9E9E9E;
    border-color: #9E9E9E
}

.btn-outline-base:not(:disabled):not(.disabled).active:focus, .btn-outline-base:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(158, 158, 158, .5);
    box-shadow: 0 0 0 .2rem rgba(158, 158, 158, .5)
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox
}

.input-group {
    position: relative;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0
}

.input-group > .form-control:focus {
    z-index: 3
}

.navbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    -webkit-flex-wrap: wrap
}

.navbar-toggler-icon {
    content: ''
}

.nav-link {
    display: inline-block;
    padding: .5rem 1rem
}

.nav-link:focus, .nav-link:hover {
    text-decoration: none
}

.navbar {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1.5rem;
    font-size: 1.25rem;
    line-height: inherit
}

.card, .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox
}

.navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none
}


.navbar-nav {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0
}

.navbar-collapse {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem
}

.navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background: center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%
}


.card {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
}

.navbar-light .navbar-brand, .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox=\'0 0 30 30\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cpath stroke=\'rgba(0, 0, 0, 0.5)\' stroke-width=\'2\' stroke-linecap=\'round\' stroke-miterlimit=\'10\' d=\'M4 7h22M4 15h22M4 23h22\'/%3E%3C/svg%3E')
}

.card {
    position: relative;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #FFF;
    -webkit-background-clip: border-box;
    background-clip: border-box
}

.card-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem
}

.card-header {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, .03)
}

.card-title {
    margin-bottom: .75rem;
    font-weight: bolder !important;
}

.card-header {
    margin-bottom: 0
}

.card-header {
    border-bottom: 1px solid rgba(0, 0, 0, .125)
}

.card-header:first-child {
    border-radius: -webkit-calc(.25rem - 1px) -webkit-calc(.25rem - 1px) 0 0;
    border-radius: -moz-calc(.25rem - 1px) -moz-calc(.25rem - 1px) 0 0;
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.badge {
    line-height: 1
}

.badge {
    display: inline-block;
    text-align: center;
    border-radius: .25rem
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.badge-success {
    color: #212529;
    background-color: #28D094;
}

.badge-info {
    color: #FFF;
    background-color: #1E9FF2
}

.badge-danger {
    color: #FFF;
    background-color: #FF4961
}

.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover {
    color: #000;
    text-decoration: none;
    opacity: .75
}

.badge, p {
    letter-spacing: .3px
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
}

.bg-light {
    background-color: #F8F9FA !important
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
}

.my-2 {
    margin-top: .75rem !important
}

.my-2 {
    margin-bottom: .75rem !important
}

.mr-auto {
    margin-right: auto !important
}


.text-right {
    text-align: right !important
}

.text-white {
    color: #FFF !important
}

@media print {
    img {
        page-break-inside: avoid
    }

    *, ::after, ::before {
        text-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    h3, p {
        orphans: 3;
        widows: 3
    }

    h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    .container, body {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }
}

.btn-success {
    background-color: #28D094 !important;
    color: #FFF !important;
    border-color: #28D094
}

.btn-outline-success:focus {
    background-color: transparent !important;
    color: #28D094 !important
}

.btn-outline-success:focus {
    -webkit-box-shadow: transparent !important;
    box-shadow: transparent !important
}

.btn-outline-success {
    border: 1px solid #28D094;
    background-color: transparent;
    color: #28D094;
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.btn-outline-success:hover {
    background-color: #26C38B !important;
    color: #FFF !important
}

.card {
    /*  font-size: 1rem;
      font-weight: 400;*/
}


body {
    font-family: 'Open+Sans', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.5em;
    color: rgba(97, 97, 97, .87);
    min-height: 100vh
}

h1, h3, h5 {
    font-family: Montserrat, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif
}

.content-wrapper {
    /* padding: 0 15px*/
}

h1, h3, h5 {
    font-weight: 300;
    line-height: 1.15em;
    color: #454545
}

a {
    color: #666EE8
}

a:focus, a:hover {
    color: #5059E5;
    text-decoration: none
}

p {
    font-size: 1rem
}

.badge {
    padding: 6px 10px;
    font-size: 85%;
    font-weight: 500
}

.badge-pill {
    padding: 3px 6px
}

.btn[class*=btn-] {
    margin-bottom: 1rem
}

.input-group {
    margin-bottom: 1rem
}

.input-group .btn[class*=btn-] {
    margin-bottom: 0
}

.btn:active {
    background-image: initial
}

.card {
    border: 0;
    margin: 15px 0;
    -webkit-box-shadow: 0 6px 0 0 rgb(0 0 0 / 1%), 0 15px 32px 0 #eda9c324;
    box-shadow: 0 6px 0 0 rgb(0 0 0 / 1%), 0 15px 32px 0 #eda9c324;
    border-radius: 20px;

}

.card .card-header {
    padding: 1.5rem;
    border-bottom: none;
    background-color: transparent
}

.card .card-body {
    padding: 0;
    height: auto
}

.card .card-block {
    padding: 1rem 1.5rem 1.5rem
}

select.form-control {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.form-control:disabled {
    background-color: #ECEFF1
}

.navbar {
    border: 0;
    border-radius: 0
}

.navbar .navbar-brand {
    position: relative
}

.navbar .navbar-nav {
    display: block;
    margin-right: -18px
}

h1 {
    font-size: 2.5rem
}

h3 {
    font-size: 1.75rem
}

h5 {
    font-size: 1.25rem
}

li {
    line-height: 2rem
}

.text-success {
    color: #28D094 !important
}

html {
    width: 100%;
}

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent
}

:focus {
    outline: 0
}

a:active, a:focus, button::-moz-focus-inner, button:active, button:focus, button:hover, select::-moz-focus-inner {
    outline: 0 !important
}

.btn-round {
    border-radius: 30px
}

.form-control:focus {
    border-color: #666EE8 !important
}

.wrapper.menu-collapsed .app-sidebar:not(:hover) .navigation li .has-sub > a, .wrapper.menu-collapsed .app-sidebar:not(:hover) .navigation li > a, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover) .navigation li .has-sub > a, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover) .navigation li > a {
    padding: 7px 0
}

.wrapper.menu-collapsed .app-sidebar:not(:hover) .navigation li.has-sub > a:after, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover) .navigation li.has-sub > a:after {
    display: none
}

.wrapper.menu-collapsed .app-sidebar:not(:hover) .navigation li.nav-collapsed-open > a, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover) .navigation li.nav-collapsed-open > a {
    -webkit-box-shadow: 0 6px 14px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 6px 14px 2px rgba(0, 0, 0, .2);
    border-radius: 50%;
    padding: 4px 0 4px 4px;
    margin-left: 8px;
    margin-right: 12px
}

.wrapper.menu-collapsed .app-sidebar:not(:hover) .navigation li.nav-collapsed-open > a i, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover) .navigation li.nav-collapsed-open > a i {
    color: #FF4961 !important
}

.wrapper.menu-collapsed .app-sidebar:not(:hover) .navigation > li > a, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover) .navigation > li > a {
    padding: 4px;
    margin-left: 8px;
    margin-right: 12px
}

.wrapper.menu-collapsed .app-sidebar:not(:hover) .navigation > li.active ~ .nav-collapsed-open > a, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover) .navigation > li.active ~ .nav-collapsed-open > a {
    background-color: transparent !important
}

.wrapper.menu-collapsed .app-sidebar:not(:hover) .navigation > li.active ~ .nav-collapsed-open > a > i, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover) .navigation > li.active ~ .nav-collapsed-open > a > i {
    color: #FFF !important
}

.wrapper.menu-collapsed .app-sidebar:not(:hover)[data-background-color=white] .navigation li.nav-collapsed-open a, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover)[data-background-color=white] .navigation li.nav-collapsed-open a {
    background-image: -webkit-linear-gradient(45deg, #FC00FF, #00DBDE);
    background-image: -o-linear-gradient(45deg, #FC00FF, #00DBDE);
    background-image: linear-gradient(45deg, #FC00FF, #00DBDE);
    background-repeat: repeat-x;
    color: #FFF
}

.wrapper.menu-collapsed .app-sidebar:not(:hover)[data-background-color=white] .navigation li.nav-collapsed-open a i, .wrapper.menu-collapsed .off-canvas-sidebar:not(:hover)[data-background-color=white] .navigation li.nav-collapsed-open a i {
    color: #FFF !important
}

.wrapper .app-sidebar:not(:hover) .navigation li.nav-collapsed-open > a, .wrapper .off-canvas-sidebar:not(:hover) .navigation li.nav-collapsed-open > a {
    background-color: #FFF;
    -webkit-transition: background-color .4s ease-in;
    -o-transition: background-color .4s ease-in;
    -moz-transition: background-color .4s ease-in;
    transition: background-color .4s ease-in
}

.wrapper .app-sidebar:not(:hover)[data-background-color=white] .navigation li.active a, .wrapper .off-canvas-sidebar:not(:hover)[data-background-color=white] .navigation li.active a {
    background-image: -webkit-linear-gradient(45deg, #FC00FF, #00DBDE);
    background-image: -o-linear-gradient(45deg, #FC00FF, #00DBDE);
    background-image: linear-gradient(45deg, #FC00FF, #00DBDE);
    background-repeat: repeat-x
}

.wrapper .app-sidebar:not(:hover)[data-background-color=white] .navigation > li.nav-collapsed-open > a, .wrapper .app-sidebar:not(:hover)[data-background-color=white] .navigation > li.nav-collapsed-open > a i, .wrapper .off-canvas-sidebar:not(:hover)[data-background-color=white] .navigation > li.nav-collapsed-open > a, .wrapper .off-canvas-sidebar:not(:hover)[data-background-color=white] .navigation > li.nav-collapsed-open > a i {
    color: #000
}

.wrapper .app-sidebar:not([data-background-color=white]):not(:hover) .navigation > li.nav-collapsed-open > a, .wrapper .app-sidebar:not([data-background-color=white]):not(:hover) .navigation > li.nav-collapsed-open > a i, .wrapper .off-canvas-sidebar:not([data-background-color=white]):not(:hover) .navigation > li.nav-collapsed-open > a, .wrapper .off-canvas-sidebar:not([data-background-color=white]):not(:hover) .navigation > li.nav-collapsed-open > a i {
    color: #FF4961
}


.btn:active:focus, .btn:focus {
    outline: 0
}

a {
    cursor: pointer
}

.round {
    border: 1px solid rgba(128, 128, 128, 0.11);
    border-radius: 4px;
    padding: 2px;
    padding-left: 5px;
    font-size: 14px;
    display: inline-block;
    width: 60%;
    height: 30px;
}

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4;
    background-color: #FFF;
    padding: .5rem 1.5rem;
    -webkit-box-shadow: 0 6px 0 0 rgb(0 0 0 / 1%), 0 15px 32px 0 #ea6af50f;
    box-shadow: 0 6px 0 0 rgb(0 0 0 / 1%), 0 15px 32px 0 #ea6af50f;
}

.navbar.navbar-light .nav-link {
    color: rgba(0, 0, 0, .5)
}

.card {
    background-color: rgba(255, 255, 255, 0.85)
}

.card-header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px dashed #efefef !important;
}

.card-title {
    margin-bottom: 0 !important;
}

.card-block {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.navbar {
    position: relative
}

[v-cloak] {
    display: none !important;
}

.button-click {
    position: relative;
    border-radius: 10px;
    border: 1px solid transparent;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 4px 8px;
    margin: 0 12px 8px 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-shadow: 0 1px 4px 0 #ff99e899;
    box-shadow: 0 1px 4px 0 #ff99e899;
    font-weight: bolder;
}

.checked {
    border: 1px dashed #3effb8;
}

.button-click:hover {
    border: 1px dashed #3effb8;
}

.hr-top {
    border-bottom: 1px dashed #e5e5e5;
    padding: 10px 0;
    position: relative;
}

.empty-commodity {
    background-color: #ced4dadb;
    opacity: 0.6;
}

.commodity-icon {
    height: 21px;
    margin-top: -3px;
    border-radius: 6px;
}

.description {
    overflow: hidden;
}

.anticipation tbody tr {
    position: relative;
    border-radius: 4px;
    border: 1px solid transparent;
    display: inline-block;
    cursor: pointer;
    margin: 0 5px 5px 0;
    padding: 0 8px 0 8px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
    width: 100%;
    background-color: white;
    /*  white-space: nowrap;*/
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.anticipation tbody tr label {
    width: 100%;
    display: inline-block;
    margin: 0;
}

.anticipation thead th button:focus {
    outline: 1px solid lavender;
}

.anticipation thead th button {
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    border: 1px solid transparent;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .2);
    color: #a3a0a0;
    width: 49.79321%;
    background-color: white;
    font-size: 14px;
}

table {
    width: 100%;
}

.price_tips {
    color: #f98ac3;
    font-size: 14px;
    display: inline-block;
    border-radius: 10px;
    background: -moz-linear-gradient(top, #ffdede6e 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffdede6e), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #ffdede6e 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #ffdede6e 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #ffdede6e 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #ffdede6e 0%, #ffffff 100%);
}

.price {
    font-weight: bolder;
    font-size: 18px;
}


.otaku {
    background-image: -webkit-gradient(linear, left 0, right 0, from(rgb(166, 4, 249)), to(rgb(251, 223, 11)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
