/* ================= 软创科技 · 产品门户 全站样式 ================= */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-deep: #1e3a8a;
  --bg: #f4f6fb;
  --card: #ffffff;
  --line: #e5e9f2;
  --text: #1e293b;
  --muted: #64748b;
  --success: #16a34a;
  --danger: #dc2626;
  --amber: #d97706;
  --violet: #7c3aed;
  --teal: #0d9488;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(15, 23, 42, .06), 0 8px 24px -12px rgba(15, 23, 42, .12);
  --shadow-lg: 0 12px 40px -12px rgba(15, 23, 42, .22);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
          "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
code { background: #eef2ff; color: var(--primary-dark); padding: 1px 6px; border-radius: 4px; font-size: 12px; }

/* ---------------- 顶部导航 ---------------- */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.topbar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 28px; padding: 0 24px; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep)); color: #fff; font-weight: 800; font-size: 15px; letter-spacing: .5px; }
.brand-mark.big { width: 52px; height: 52px; font-size: 22px; border-radius: 14px; }
.brand-mark.sm { width: 30px; height: 30px; font-size: 13px; border-radius: 8px; }
.brand-text { font-weight: 700; font-size: 16px; display: flex; flex-direction: column; line-height: 1.2; }
.brand-text i { font-style: normal; font-size: 11px; color: var(--muted); font-weight: 500; }
.topnav { display: flex; gap: 6px; flex: 1; }
.topnav a { padding: 7px 14px; border-radius: 8px; color: var(--muted); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.topnav a:hover { background: #eef2ff; color: var(--primary); }
.topnav a.active { background: #eef2ff; color: var(--primary); }
.userbox { display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.usermeta { display: flex; flex-direction: column; line-height: 1.25; }
.usermeta b { font-size: 13px; }
.usermeta i { font-style: normal; font-size: 11px; color: var(--muted); }
.btn-exit { font-size: 12px; color: var(--muted); border: 1px solid var(--line); padding: 5px 12px; border-radius: 7px; }
.btn-exit:hover { color: var(--danger); border-color: #fecaca; background: #fef2f2; }

/* ---------------- 主体 / 页脚 ---------------- */
.page { max-width: 1200px; margin: 0 auto; padding: 26px 24px 60px; min-height: calc(100vh - 120px); }
.page-center { min-height: 100vh; display: flex; }
.footer { text-align: center; color: var(--muted); font-size: 12px; padding: 22px; border-top: 1px solid var(--line); background: #fff; }

/* ---------------- Toast ---------------- */
.flash-layer { position: fixed; top: 72px; right: 22px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.toast { min-width: 240px; max-width: 380px; padding: 11px 38px 11px 14px; border-radius: 10px; color: #fff;
  font-size: 13px; box-shadow: var(--shadow-lg); position: relative; animation: slideIn .3s ease; }
.toast-success { background: linear-gradient(135deg, #16a34a, #15803d); }
.toast-error { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.toast-x { position: absolute; right: 12px; top: 10px; cursor: pointer; opacity: .8; font-size: 15px; }
.toast.out { opacity: 0; transform: translateX(20px); transition: all .4s; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: none; } }

/* ---------------- 登录页 ---------------- */
.login-bg { flex: 1; display: flex; align-items: center; justify-content: center; padding: 30px 18px;
  background: radial-gradient(1000px 500px at 85% -10%, #3b82f6 0%, transparent 55%),
              radial-gradient(800px 500px at -10% 110%, #7c3aed 0%, transparent 50%),
              linear-gradient(150deg, #0f172a 0%, #111c3a 60%, #0b1530 100%); }
.login-wrap { width: 880px; max-width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(2, 8, 30, .55); }
.login-side { background: linear-gradient(160deg, #1e3a8a 0%, #1d4ed8 55%, #2563eb 100%); color: #fff; padding: 44px 40px; position: relative; overflow: hidden; }
.login-side::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  border: 40px solid rgba(255,255,255,.08); right: -120px; top: -120px; }
.login-side::before { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.06); left: -80px; bottom: -60px; }
.login-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.login-brand h1 { font-size: 22px; }
.login-slogan { font-size: 14px; opacity: .92; margin-bottom: 26px; line-height: 1.9; }
.login-features { list-style: none; position: relative; z-index: 1; }
.login-features li { padding: 8px 0 8px 26px; position: relative; font-size: 13px; opacity: .9; }
.login-features li::before { content: "✓"; position: absolute; left: 0; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,.18); font-size: 11px; display: flex; align-items: center; justify-content: center; top: 10px; }
.login-dots { margin-top: 30px; display: flex; gap: 8px; }
.login-dots i { width: 34px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.3); }
.login-dots i:first-child { background: #fff; }
.login-panel { background: #fff; padding: 44px 40px; }
.login-panel h2 { font-size: 20px; margin-bottom: 4px; }
.login-sub { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.login-tip { margin-top: 22px; font-size: 12px; color: var(--muted); background: #f8fafc; border: 1px dashed var(--line);
  border-radius: 10px; padding: 10px 14px; line-height: 1.8; }
.login-tip b { color: var(--text); }

/* ---------------- 表单通用 ---------------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.field input[type="text"], .field input[type="password"], .field input[type="email"],
.field input[type="url"], .field input[type="number"], .field select, .field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; font-size: 14px;
  font-family: var(--font); background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, .13); }
.field input:disabled { background: #f1f5f9; color: var(--muted); }
.hint { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; }
.captcha-row { display: flex; gap: 10px; }
.captcha-row input { flex: 1; text-transform: uppercase; letter-spacing: 4px; font-weight: 700; }
.captcha-row img { height: 46px; border-radius: 9px; border: 1px solid var(--line); cursor: pointer; flex-shrink: 0; }
.switch { display: flex !important; align-items: center; gap: 8px; cursor: pointer; font-weight: 500 !important; }
.switch input { width: 16px; height: 16px; accent-color: var(--primary); }

/* ---------------- 按钮 ---------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 9px 18px;
  border-radius: 9px; border: 1px solid var(--line); background: #fff; color: var(--text);
  font-size: 14px; font-weight: 600; cursor: pointer; transition: all .15s; font-family: var(--font); }
.btn:hover { border-color: #c7d2fe; color: var(--primary); background: #f8faff; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border: none; color: #fff; }
.btn-primary:hover { color: #fff; filter: brightness(1.07); box-shadow: 0 6px 18px -6px rgba(37, 99, 235, .5); }
.btn-ghost { background: transparent; }
.btn-block { width: 100%; padding: 12px; font-size: 15px; margin-top: 6px; }
.btn-mini { padding: 4px 10px; font-size: 12px; border-radius: 7px; font-weight: 500; }
.btn-danger { color: var(--danger); border-color: #fecaca; }
.btn-danger:hover { background: #fef2f2; color: var(--danger); border-color: #fca5a5; }

/* ---------------- 首页 ---------------- */
.hero { background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #2563eb 100%); border-radius: 18px;
  color: #fff; padding: 38px 36px; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.hero::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  border: 46px solid rgba(255,255,255,.07); right: -110px; top: -130px; }
.hero h1 { font-size: 26px; margin-bottom: 8px; letter-spacing: .5px; }
.hero p { opacity: .88; font-size: 14px; }
.hero-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.hero-search { display: flex; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  padding: 6px; border-radius: 12px; backdrop-filter: blur(6px); min-width: 330px; }
.hero-search input { flex: 1; background: transparent; border: none; color: #fff; padding: 7px 12px; font-size: 13px; font-family: var(--font); }
.hero-search input::placeholder { color: rgba(255,255,255,.6); }
.hero-search input:focus { outline: none; }
.hero-search button { border: none; background: #fff; color: var(--primary-dark); font-weight: 700; font-size: 13px;
  padding: 8px 16px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.clear-kw { color: rgba(255,255,255,.85); font-size: 12px; align-self: center; padding: 0 6px; }

.catalog { margin-top: 26px; }
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.cat-tab { padding: 8px 16px; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 7px; transition: all .15s; }
.cat-tab:hover { color: var(--primary); border-color: #c7d2fe; }
.cat-tab.on { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 5px 14px -5px rgba(37,99,235,.55); }
.badge { background: rgba(100, 116, 139, .14); border-radius: 999px; font-size: 11px; padding: 1px 8px; font-weight: 700; }
.cat-tab.on .badge { background: rgba(255,255,255,.25); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 22px; }
.product-card { background: var(--card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; border: 1px solid var(--line); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-cover { position: relative; display: block; aspect-ratio: 8/5; overflow: hidden; }
.card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-card:hover .card-cover img { transform: scale(1.05); }
.card-cat { position: absolute; left: 12px; top: 12px; background: rgba(15, 23, 42, .55); color: #fff;
  font-size: 11px; padding: 3px 10px; border-radius: 999px; backdrop-filter: blur(4px); }
.card-body { padding: 15px 17px 17px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.45; }
.card-title:hover { color: var(--primary); }
.card-customer { color: var(--muted); font-size: 12.5px; margin: 7px 0 9px; display: flex; align-items: center; gap: 5px; }
.card-summary { color: #475569; font-size: 13px; line-height: 1.7; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px;
  padding-top: 13px; border-top: 1px dashed var(--line); }
.btn-visit { display: inline-flex; align-items: center; gap: 6px; background: #eef2ff; color: var(--primary-dark);
  font-size: 12.5px; font-weight: 600; padding: 6px 13px; border-radius: 8px; }
.btn-visit:hover { background: #e0e7ff; }
.btn-visit.muted { background: #f1f5f9; color: var(--muted); }
.btn-detail { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.btn-detail:hover { color: var(--primary); }

.empty-box { background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center;
  padding: 70px 20px; color: var(--muted); }
.empty-box.tall { margin-top: 60px; padding: 90px 20px; }
.empty-box b { display: block; font-size: 17px; color: var(--text); margin: 14px 0 6px; }
.empty-box .code { font-size: 56px; font-weight: 800; color: #cbd5e1; letter-spacing: 2px; }
.empty-actions { margin-top: 20px; display: flex; gap: 10px; justify-content: center; }

/* ---------------- 详情页 ---------------- */
.crumb { color: var(--muted); font-size: 13px; margin-bottom: 18px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumb i { font-style: normal; color: #cbd5e1; }
.crumb span { color: var(--text); font-weight: 600; }
.detail { background: #fff; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.detail-main { display: grid; grid-template-columns: minmax(320px, 460px) 1fr; gap: 34px; padding: 34px; }
.detail-cover { width: 100%; border-radius: 14px; box-shadow: var(--shadow); }
.detail-cat { display: inline-block; background: #eef2ff; color: var(--primary-dark); font-size: 12px;
  font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.detail-info h1 { font-size: 24px; line-height: 1.4; margin-bottom: 18px; }
.meta { border-top: 1px solid var(--line); }
.meta-row { display: flex; padding: 12px 0; border-bottom: 1px solid var(--line); }
.meta-row dt { width: 110px; color: var(--muted); display: flex; align-items: center; gap: 6px; font-size: 13px; }
.meta-row dd { flex: 1; font-weight: 500; word-break: break-all; }
.detail-info .btn { margin-top: 18px; }
.detail-body { padding: 6px 34px 34px; }
.detail-body h2 { font-size: 17px; margin: 22px 0 12px; padding-left: 12px; border-left: 4px solid var(--primary); }
.detail-body p { color: #475569; line-height: 2; margin-bottom: 10px; }
.detail-body .lead { font-size: 15px; color: var(--text); font-weight: 500; background: #f8faff;
  border-radius: 10px; padding: 14px 18px; line-height: 1.9; }
.related { padding: 24px 34px 34px; border-top: 1px solid var(--line); background: #fafbfe; }
.related h2 { font-size: 16px; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.related-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column; transition: all .15s; }
.related-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.related-card img { width: 100%; height: 130px; object-fit: cover; display: block; }
.related-card > div { padding: 11px 13px; display: flex; flex-direction: column; }
.related-card b { font-size: 13.5px; color: var(--text); }
.related-card:hover b { color: var(--primary); }
.related-card span { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ---------------- 后台 ---------------- */
.admin-wrap { display: grid; grid-template-columns: 218px 1fr; gap: 22px; align-items: start; }
.admin-side { background: #0f172a; border-radius: 16px; color: #cbd5e1; padding: 20px 14px; position: sticky; top: 82px; }
.side-head { display: flex; align-items: center; gap: 10px; padding: 4px 8px 16px; border-bottom: 1px solid #1e293b; margin-bottom: 14px; }
.side-head b { color: #fff; font-size: 14px; display: block; }
.side-head i { font-style: normal; font-size: 10.5px; color: #64748b; letter-spacing: 1px; }
.side-nav { display: flex; flex-direction: column; gap: 4px; }
.side-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px;
  color: #94a3b8; font-size: 13.5px; font-weight: 500; }
.side-nav a svg { width: 16px; height: 16px; opacity: .8; }
.side-nav a:hover { background: #1e293b; color: #e2e8f0; }
.side-nav a.on { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 6px 16px -6px rgba(37,99,235,.6); }
.side-back { display: block; text-align: center; margin-top: 16px; padding-top: 14px; border-top: 1px solid #1e293b;
  color: #64748b; font-size: 12.5px; }
.side-back:hover { color: #cbd5e1; }
.admin-main { min-width: 0; }
.admin-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.admin-head h1 { font-size: 20px; }
.admin-head p { font-size: 13px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; margin-bottom: 20px; }
.stat-card { border-radius: 14px; padding: 18px 20px; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.stat-card i { font-style: normal; font-size: 12.5px; opacity: .9; display: block; }
.stat-card b { font-size: 30px; font-weight: 800; display: block; margin: 4px 0 2px; }
.stat-card span { font-size: 12px; opacity: .85; }
.stat-card::after { content: ""; position: absolute; width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,.12); right: -26px; bottom: -30px; }
.c-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.c-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.c-violet { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.c-amber { background: linear-gradient(135deg, #f59e0b, #b45309); }

.dash-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.panel { background: #fff; border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.panel-head { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--line); }
.panel-head h2 { font-size: 15px; }

.toolbar { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.toolbar input { padding: 9px 13px; border: 1px solid var(--line); border-radius: 9px; width: 260px; font-size: 13.5px; font-family: var(--font); }
.toolbar input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }

.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; font-size: 12.5px; color: var(--muted); font-weight: 600; padding: 12px 16px;
  background: #f8fafc; border-bottom: 1px solid var(--line); white-space: nowrap; }
.table td { padding: 12px 16px; border-bottom: 1px solid #f1f5f9; font-size: 13.5px; vertical-align: middle; }
.table tbody tr:hover { background: #f8faff; }
.table tr:last-child td { border-bottom: none; }
.row-off td { opacity: .55; }
.row-new { background: #f8fbff !important; }
.tright { text-align: right; }
.tcenter { text-align: center; color: var(--muted); padding: 30px !important; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.thumb { width: 74px; height: 46px; object-fit: cover; border-radius: 7px; border: 1px solid var(--line); }
.tag { display: inline-block; background: #eef2ff; color: var(--primary-dark); font-size: 12px;
  padding: 2px 10px; border-radius: 999px; font-weight: 600; }
.tag-solid { background: #1e293b; color: #fff; }
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 5px; }
.dot.on { background: var(--success); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.dot.off { background: #cbd5e1; }
.inline { display: inline-block; }
.inline-flex { display: flex; gap: 8px; }
.inline-flex input[type="text"] { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-family: var(--font); }
.inline-flex input[type="number"] { padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; width: 78px; font-family: var(--font); }
.table .btn-mini { margin-left: 4px; }

.perm-chip { display: inline-block; background: #f1f5f9; border: 1px solid var(--line); color: #475569;
  font-size: 11.5px; padding: 2px 9px; border-radius: 999px; margin: 2px 3px 2px 0; }
.perm-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.perm-item { display: flex; gap: 12px; border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px;
  cursor: pointer; transition: all .15s; align-items: flex-start; }
.perm-item input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--primary); }
.perm-item:hover { border-color: #c7d2fe; }
.perm-item.checked { border-color: var(--primary); background: #f5f8ff; }
.perm-item b { display: block; font-size: 13.5px; }
.perm-item span { font-size: 12px; color: var(--muted); }

.form-panel { padding: 26px 28px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 6px 22px; margin-bottom: 8px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.form-actions { display: flex; gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.upload-preview { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.upload-preview img { width: 140px; border-radius: 9px; border: 1px solid var(--line); }
input[type="file"] { font-size: 13px; }

/* ---------------- 响应式 ---------------- */
@media (max-width: 900px) {
  .login-wrap { grid-template-columns: 1fr; }
  .login-side { display: none; }
  .detail-main { grid-template-columns: 1fr; padding: 22px; }
  .dash-cols { grid-template-columns: 1fr; }
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-side { position: static; }
  .side-nav { flex-direction: row; flex-wrap: wrap; }
  .side-back { display: none; }
  .table { display: block; overflow-x: auto; }
}
