:root {
    --aq-green: #27ae60;
    --aq-green-2: #2ecc71;
    --aq-green-d: #219a52;
    --aq-grad: linear-gradient(135deg, #27ae60, #2ecc71);
    --aq-grad-d: linear-gradient(135deg, #219a52, #27ae60);

    --aq-ink: #2c3e50;
    --aq-ink-2: #666;
    --aq-ink-3: #95a5a6;
    --aq-bg: #f6fbf8;
    --aq-card: #ffffff;
    --aq-soft: #f8f9fa;
    --aq-line: #e8efe9;

    --aq-free-1: #52c41a;  --aq-free-2: #73d13d;
    --aq-paid-1: #fa8c16;  --aq-paid-2: #ffa940;
    --aq-vip-1: #fa1616;   --aq-vip-2: #ff4050;

    --aq-radius: 12px;
    --aq-radius-lg: 15px;
    --aq-radius-pill: 50px;
    --aq-shadow: 0 4px 20px rgba(39, 174, 96, .08);
    --aq-shadow-md: 0 8px 30px rgba(39, 174, 96, .15);
    --aq-shadow-hover: 0 12px 40px rgba(39, 174, 96, .2);
    --aq-border: 1px solid rgba(39, 174, 96, .12);

    --aq-font: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --aq-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

    --aq-container: 1200px;
    --aq-gap: 28px;
    --aq-ease: cubic-bezier(.25, .8, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--aq-font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--aq-ink);
    background: var(--aq-bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; line-height: 1.25; }
p { margin: 0; }
ul, ol { margin: 0; }
::selection { background: rgba(46, 204, 113, .25); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(39, 174, 96, .35); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(39, 174, 96, .55); }

.aq-page { display: flex; flex-direction: column; min-height: 100vh; }
.aq-main { flex: 1; }
.aq-container { width: 100%; max-width: var(--aq-container); margin: 0 auto; padding: 0 20px; }
.aq-section { padding: 64px 0; }
.aq-section--tight { padding: 44px 0; }
.aq-section--soft { background: var(--aq-card); }

.aq-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--aq-ink);
    position: relative;
    margin-bottom: 14px;
}
.aq-section-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    margin: 16px auto 0;
    background: var(--aq-grad);
    border-radius: 4px;
}
.aq-section-sub { text-align: center; color: var(--aq-ink-2); font-size: 15px; margin-bottom: 44px; }
.aq-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.aq-section-head h2 { font-size: 24px; }
.aq-section-head .sub { color: var(--aq-ink-2); font-size: 14px; margin-top: 4px; }
.aq-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--aq-green);
    font-size: 14px;
    font-weight: 600;
    transition: gap .25s var(--aq-ease);
}
.aq-more:hover { gap: 11px; }

.aq-wave {
    position: absolute;
    height: 110px;
    width: 100%;
    overflow: hidden;
    bottom: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}
.aq-wave #aq_wave_1,
.aq-wave #aq_wave_2 {
    position: absolute;
    width: 200%;
    height: 100%;
    background-size: 50% 100%;
}
.aq-wave #aq_wave_1 {
    top: 20px;
    left: -100%;
    opacity: 1;
    animation: aq-water-right 20s infinite linear;
    background: url(/assets/theme/aqua/img/1646268-20190807133952249-1243696775.png) repeat-x;
}
.aq-wave #aq_wave_2 {
    top: 30px;
    left: 0;
    opacity: 1;
    animation: aq-water-left 30s infinite linear;
    background: url(/assets/theme/aqua/img/1646268-20190807133945197-1434861417.png) repeat-x;
}
@keyframes aq-water-right {
    0%   { transform: translateX(0)   translateZ(0) scaleY(1); }
    50%  { transform: translateX(25%) translateZ(0) scaleY(.85); }
    100% { transform: translateX(50%) translateZ(0) scaleY(1); }
}
@keyframes aq-water-left {
    from { transform: translate(0%, 0); }
    to   { transform: translate(-50%, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .aq-wave #aq_wave_1, .aq-wave #aq_wave_2 { animation: none; }
}

.aq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--aq-font);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 13px 26px;
    border: none;
    border-radius: var(--aq-radius);
    background: var(--aq-soft);
    color: var(--aq-ink);
    transition: all .3s var(--aq-ease);
}
.aq-btn:hover { transform: translateY(-2px); }
.aq-btn.is-primary { background: var(--aq-grad); color: #fff; box-shadow: 0 4px 15px rgba(39, 174, 96, .3); }
.aq-btn.is-primary:hover { background: var(--aq-grad-d); box-shadow: 0 8px 24px rgba(39, 174, 96, .4); }
.aq-btn.is-ghost { background: var(--aq-card); color: var(--aq-green); border: 1px solid rgba(39, 174, 96, .3); }
.aq-btn.is-ghost:hover { background: rgba(39, 174, 96, .06); }
.aq-btn.is-light { background: rgba(255, 255, 255, .2); color: #fff; backdrop-filter: blur(8px); }
.aq-btn.is-light:hover { background: rgba(255, 255, 255, .3); }
.aq-btn.is-sm { padding: 9px 18px; font-size: 13px; }
.aq-btn.is-block { display: flex; width: 100%; }

.aq-card {
    background: var(--aq-card);
    border-radius: var(--aq-radius);
    box-shadow: var(--aq-shadow);
    border: var(--aq-border);
}
.aq-card--pad { padding: 28px; }
.aq-card.is-hover { transition: transform .3s var(--aq-ease), box-shadow .3s var(--aq-ease); }
.aq-card.is-hover:hover { transform: translateY(-4px); box-shadow: var(--aq-shadow-hover); }

.aq-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--aq-radius-pill);
    color: #fff;
    background: var(--aq-grad);
}
.aq-badge.is-free { background: linear-gradient(135deg, var(--aq-free-1), var(--aq-free-2)); }
.aq-badge.is-paid { background: linear-gradient(135deg, var(--aq-paid-1), var(--aq-paid-2)); }
.aq-badge.is-vip  { background: linear-gradient(135deg, var(--aq-vip-1), var(--aq-vip-2)); }

.aq-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--aq-green);
    background: rgba(39, 174, 96, .08);
    padding: 4px 11px;
    border-radius: var(--aq-radius-pill);
}

.aq-method {
    display: inline-block;
    font-family: var(--aq-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 3px 9px;
    border-radius: 6px;
    color: #fff;
}
.aq-method.get    { background: #3498db; }
.aq-method.post   { background: #2ecc71; }
.aq-method.put    { background: #f39c12; }
.aq-method.delete { background: #e74c3c; }
.aq-method.patch  { background: #9b59b6; }

.aq-input, .aq-textarea, .aq-select {
    width: 100%;
    font-family: var(--aq-font);
    font-size: 15px;
    color: var(--aq-ink);
    background: var(--aq-card);
    border: 1px solid var(--aq-line);
    border-radius: var(--aq-radius);
    padding: 13px 16px;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}
.aq-input:focus, .aq-textarea:focus, .aq-select:focus {
    border-color: var(--aq-green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, .12);
}
.aq-textarea { resize: vertical; min-height: 120px; }
.aq-field-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }

.aq-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12), 0 2px 8px rgba(39, 174, 96, .1), inset 0 1px 0 rgba(255, 255, 255, .8);
    transition: all .4s var(--aq-ease);
    border: 1px solid rgba(255, 255, 255, .2);
}
.aq-search:focus-within {
    box-shadow: 0 12px 48px rgba(39, 174, 96, .2), 0 4px 16px rgba(39, 174, 96, .3);
    transform: translateY(-3px);
}
.aq-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--aq-font);
    font-size: 16px;
    padding: 15px 22px;
    color: var(--aq-ink);
}
.aq-search input::placeholder { color: rgba(44, 62, 80, .45); }
.aq-search button {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10%;
    background: var(--aq-grad);
    color: #fff;
    font-size: 20px;
    transition: all .3s var(--aq-ease);
}
.aq-search button:hover { transform: scale(1.06); box-shadow: 0 6px 20px rgba(39, 174, 96, .4); }

.aq-table { width: 100%; border-collapse: collapse; }
.aq-table th, .aq-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--aq-line); }
.aq-table th { background: var(--aq-soft); font-weight: 600; color: var(--aq-ink); font-size: 14px; }
.aq-table tr:last-child td { border-bottom: none; }
.aq-table tbody tr { transition: background .2s; }
.aq-table tbody tr:hover { background: rgba(39, 174, 96, .03); }
.aq-table-wrap { overflow-x: auto; border-radius: var(--aq-radius); border: 1px solid var(--aq-line); }

.aq-crumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--aq-ink-2);
    padding: 18px 0;
}
.aq-crumb a { color: var(--aq-ink-2); transition: color .2s; }
.aq-crumb a:hover { color: var(--aq-green); }
.aq-crumb .sep { color: var(--aq-ink-3); }
.aq-crumb .now { color: var(--aq-green); font-weight: 600; }
.aq-crumb .idx { margin-left: auto; color: var(--aq-ink-3); font-size: 13px; }

.aq-pager { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; margin: 48px 0; }
.aq-pager-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 20px;
    border-radius: var(--aq-radius);
    background: var(--aq-card);
    border: 1px solid var(--aq-line);
    color: var(--aq-ink);
    font-size: 14px;
    font-weight: 600;
    transition: all .25s var(--aq-ease);
}
.aq-pager-btn:hover { background: var(--aq-grad); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(39, 174, 96, .25); }
.aq-pager-btn.is-disabled { opacity: .45; pointer-events: none; }
.aq-pager-info { font-size: 14px; color: var(--aq-ink-2); }
.aq-pager-info .cur { color: var(--aq-green); font-weight: 700; }

.aq-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
}
.aq-topbar-inner { display: flex; align-items: center; gap: 18px; height: 70px; }
.aq-brand { display: flex; align-items: center; gap: 10px; }
.aq-brand-logo { height: 56px; width: auto; }
.aq-brand-mark {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--aq-grad);
    color: #fff;
    font-size: 19px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, .3);
}
.aq-brand-title { font-size: 19px; font-weight: 700; display: block; }
.aq-brand-tag { font-size: 11px; color: var(--aq-ink-3); }

.aq-nav { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.aq-nav-item { position: relative; }
.aq-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    color: var(--aq-ink);
    padding: 9px 15px;
    border-radius: var(--aq-radius);
    transition: all .25s var(--aq-ease);
}
.aq-nav-link:hover, .aq-nav-item:hover > .aq-nav-link { color: var(--aq-green); background: rgba(39, 174, 96, .07); }
.aq-nav-link i.caret { font-size: 15px; transition: transform .25s; }
.aq-nav-item.has-dropdown:hover .aq-nav-link i.caret { transform: rotate(180deg); }
.aq-nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    background: var(--aq-card);
    border-radius: var(--aq-radius);
    box-shadow: var(--aq-shadow-md);
    border: 1px solid var(--aq-line);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s var(--aq-ease);
}
.aq-nav-item.has-dropdown:hover .aq-nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.aq-nav-dropdown::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.aq-nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--aq-ink);
    padding: 10px 13px;
    border-radius: 8px;
    transition: all .2s;
}
.aq-nav-dropdown-link:hover { background: rgba(39, 174, 96, .07); color: var(--aq-green); }
.aq-nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.aq-nav-avatar { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.aq-nav-actions .aq-nav-dropdown { left: auto; right: 0; }

.aq-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: rgba(39, 174, 96, .08);
    border: none;
    border-radius: 10px;
}
.aq-mobile-toggle .bar { width: 21px; height: 2.5px; background: var(--aq-green); border-radius: 2px; }
.aq-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 40, 30, .45);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 300;
}
.aq-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.aq-mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(84vw, 340px);
    height: 100%;
    background: var(--aq-card);
    transform: translateX(105%);
    transition: transform .3s var(--aq-ease);
    z-index: 310;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.aq-mobile-drawer.is-open { transform: translateX(0); }
.aq-mobile-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
}
.aq-mobile-close {
    width: 38px;
    height: 38px;
    font-size: 22px;
    color: var(--aq-ink-2);
    background: var(--aq-soft);
    border: none;
    border-radius: 10px;
    transition: all .25s var(--aq-ease);
}
.aq-mobile-close:hover { color: var(--aq-green); background: rgba(39, 174, 96, .1); }
.aq-mobile-nav { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.aq-mobile-nav-link { display: block; font-size: 16px; font-weight: 500; padding: 13px 14px; border-radius: 10px; }
.aq-mobile-nav-link:hover { background: rgba(39, 174, 96, .07); color: var(--aq-green); }
.aq-mobile-nav-link.level-2 { font-size: 14px; padding-left: 28px; color: var(--aq-ink-2); }
.aq-mobile-nav-row { display: flex; align-items: center; }
.aq-mobile-nav-row .aq-mobile-nav-link { flex: 1; }
.aq-mobile-subnav-toggle { width: 42px; height: 42px; background: var(--aq-soft); border: none; border-radius: 8px; }
.aq-mobile-subnav-toggle i { transition: transform .25s; }
.aq-mobile-nav-group.is-open .aq-mobile-subnav-toggle i { transform: rotate(180deg); }
.aq-mobile-subnav { display: none; }
.aq-mobile-nav-group.is-open .aq-mobile-subnav { display: block; }
.aq-mobile-actions { margin-top: auto; padding: 22px; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--aq-line); }

.aq-footer {
    position: relative;
    background: linear-gradient(to bottom, transparent 0, var(--aq-green) 1px);
    color: #fff;
    padding: 130px 0 28px;
}
.aq-footer .aq-wave {
    top: 0;
    bottom: auto;
    transform: rotate(180deg);
}
.aq-footer .aq-wave #aq_wave_1,
.aq-footer .aq-wave #aq_wave_2 { filter: brightness(0) invert(1); }
.aq-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.aq-footer-col-title { font-size: 13px; font-weight: 700; letter-spacing: .04em; margin-bottom: 16px; opacity: .95; }
.aq-footer-links { display: flex; flex-direction: column; gap: 11px; }
.aq-footer-links a { font-size: 14px; color: rgba(255, 255, 255, .82); border-bottom: 1px dotted rgba(255, 255, 255, .35); width: fit-content; transition: color .2s; }
.aq-footer-links a:hover { color: #fff; }
.aq-footer-socials { display: flex; gap: 12px; padding: 26px 0; }
.aq-footer-socials a {
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    transition: all .25s var(--aq-ease);
}
.aq-footer-socials a:hover { background: #fff; color: var(--aq-green); transform: translateY(-3px); }
.aq-footer-colophon {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--aq-ease), transform .7s var(--aq-ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

.aq-mono { font-family: var(--aq-mono); }
.aq-muted { color: var(--aq-ink-2); }
.aq-empty {
    text-align: center;
    padding: 64px 24px;
    color: var(--aq-ink-2);
    background: var(--aq-card);
    border-radius: var(--aq-radius);
    border: 1px dashed rgba(39, 174, 96, .25);
    margin-bottom: 24px;
}
.aq-empty i { font-size: 40px; color: rgba(39, 174, 96, .35); display: block; margin-bottom: 12px; }

.aq-acard {
    display: flex;
    flex-direction: column;
    background: var(--aq-card);
    border-radius: var(--aq-radius);
    box-shadow: var(--aq-shadow);
    border: var(--aq-border);
    overflow: hidden;
    transition: transform .3s var(--aq-ease), box-shadow .3s var(--aq-ease);
}
.aq-acard:hover { transform: translateY(-5px); box-shadow: var(--aq-shadow-hover); }
.aq-acard-cover { aspect-ratio: 16 / 9; overflow: hidden; background: var(--aq-soft); }
.aq-acard-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--aq-ease); }
.aq-acard:hover .aq-acard-cover img { transform: scale(1.06); }
.aq-acard-cover .placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; font-weight: 700;
    color: #fff;
    background: var(--aq-grad);
}
.aq-acard-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.aq-acard-cat { align-self: flex-start; font-size: 12px; font-weight: 600; color: var(--aq-green); background: rgba(39, 174, 96, .08); padding: 4px 11px; border-radius: var(--aq-radius-pill); margin-bottom: 12px; }
.aq-acard-title { font-size: 18px; line-height: 1.4; margin-bottom: 10px; transition: color .2s; }
.aq-acard:hover .aq-acard-title { color: var(--aq-green); }
.aq-acard-desc {
    font-size: 14px; color: var(--aq-ink-2); line-height: 1.65; flex: 1; margin-bottom: 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.aq-acard-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--aq-ink-3); padding-top: 12px; border-top: 1px solid var(--aq-line); }

.aq-page-head { padding: 20px 0 36px; }
.aq-page-head .kicker { display: inline-block; font-size: 13px; font-weight: 600; color: var(--aq-green); background: rgba(39, 174, 96, .08); padding: 5px 14px; border-radius: var(--aq-radius-pill); }
.aq-page-head h1 { font-size: clamp(28px, 4vw, 42px); margin: 16px 0 12px; }
.aq-page-head h1 em { font-style: normal; color: var(--aq-green); }
.aq-page-head-desc { font-size: 16px; color: var(--aq-ink-2); max-width: 60ch; }
.aq-page-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; font-size: 14px; color: var(--aq-ink-2); }
.aq-page-meta .num { color: var(--aq-green); font-weight: 700; }

.aq-agrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--aq-gap); margin-bottom: 56px; }

.layui-btn {
    height: auto;
    line-height: 1;
    padding: 12px 22px;
    font-family: var(--aq-font);
    font-weight: 600;
    border-radius: var(--aq-radius);
    background: var(--aq-grad);
    color: #fff;
    transition: all .3s var(--aq-ease);
}
.layui-btn:hover { background: var(--aq-grad-d); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(39, 174, 96, .35); color: #fff; }
.layui-btn-primary { background: var(--aq-card); color: var(--aq-ink); border: 1px solid var(--aq-line); }
.layui-btn-primary:hover { background: var(--aq-soft); color: var(--aq-green); }
.layui-btn-danger { background: linear-gradient(135deg, #e74c3c, #ff6b5b); }
.layui-btn-sm, .layui-btn-xs { padding: 8px 14px; font-size: 13px; }
.layui-input, .layui-textarea, .layui-select {
    height: auto;
    padding: 12px 15px;
    font-family: var(--aq-font);
    border: 1px solid var(--aq-line);
    border-radius: var(--aq-radius);
    transition: border-color .3s, box-shadow .3s;
}
.layui-input:focus, .layui-textarea:focus {
    border-color: var(--aq-green) !important;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, .12) !important;
}
.layui-form-select dl { border-radius: var(--aq-radius); box-shadow: var(--aq-shadow-md); border: 1px solid var(--aq-line); }
.layui-form-select dl dd.layui-this { background: rgba(39, 174, 96, .1); color: var(--aq-green); }
.layui-form-checkbox[lay-skin="primary"] i { border-radius: 4px; }
.layui-form-checked[lay-skin="primary"] i { background: var(--aq-green); border-color: var(--aq-green); }
.layui-layer { border-radius: var(--aq-radius-lg) !important; box-shadow: var(--aq-shadow-md) !important; }
.layui-layer-title { background: var(--aq-soft) !important; color: var(--aq-ink) !important; border-radius: var(--aq-radius-lg) var(--aq-radius-lg) 0 0 !important; border-bottom: 1px solid var(--aq-line) !important; }
.layui-layer-btn .layui-layer-btn0 { background: var(--aq-grad) !important; border: none !important; color: #fff !important; border-radius: 8px !important; }
.layui-laypage a, .layui-laypage span {
    height: 38px; line-height: 38px;
    border-radius: 8px !important;
    border: 1px solid var(--aq-line) !important;
}
.layui-laypage .layui-laypage-curr em:last-child { background: var(--aq-green) !important; }
.layui-tab-title .layui-this { color: var(--aq-green); }
.layui-tab-title .layui-this:after { border-color: var(--aq-green); }

@media (max-width: 1024px) {
    .aq-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .aq-agrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
    .aq-nav, .aq-nav-actions { display: none; }
    .aq-mobile-toggle { display: flex; }
    .aq-topbar-inner { height: 62px; }
    .aq-section { padding: 48px 0; }
    .aq-section-head { margin-bottom: 28px; }
}
@media (max-width: 560px) {
    .aq-agrid { grid-template-columns: 1fr; }
    .aq-section-title { font-size: 24px; }
    .aq-btn { width: 100%; }
}