﻿
.container{
  width:100%;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
}
.grid{display:grid;gap:30px}

/* ========= Typography ========= */
h1{
  font-size:clamp(32px,4vw,52px);
  line-height:var(--lh-tight);
  letter-spacing:-.6px;
  font-weight:850;
}
h2{
  font-size:clamp(22px,2.2vw,30px);
  line-height:var(--lh-tight);
  letter-spacing:-.2px;
  font-weight:850;
}
p{color:var(--text-sub);font-size:var(--fs-16)}
.sub{color:var(--text-sub);opacity:.92}
.kicker{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 12px;border-radius:999px;
  font-size:var(--fs-13);font-weight:800;
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(135deg,rgba(37,99,235,.95) 0%,rgba(29,78,216,.95) 100%);
  box-shadow:0 12px 30px rgba(37,99,235,.20);
}

/* ========= Buttons ========= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  border-radius:10px;
  height:36px;
  padding:0 16px;
  font-size:var(--fs-14);
  font-weight:520;
  border:1px solid transparent;
  letter-spacing:.1px;
  transition:all .18s ease;
  will-change:transform;
  white-space:nowrap;
}
.btn .btn-ico{
  width:18px;height:18px;
  stroke:currentColor;fill:none;
  stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
}
.btn-lg{height:48px;padding:0 22px;font-size:var(--fs-15);border-radius:12px}
.btn-sm{height:40px;padding:0 16px;font-size:var(--fs-13);border-radius:10px}

.btn-primary{
  background:linear-gradient(135deg,var(--primary-color) 0%,#1d4ed8 100%);
  color:#fff;
  box-shadow:0 14px 34px rgba(37,99,235,.20);
}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 18px 46px rgba(37,99,235,.24);filter:saturate(1.05)}
.btn-outline{
  background:rgba(255,255,255,.70);
  border-color:rgba(15,23,42,.14);
  color:var(--text-main);
  box-shadow:var(--shadow-xs);
}
.btn-outline:hover{
  border-color:rgba(37,99,235,.36);
  color:var(--primary-color);
  transform:translateY(-1px);
  background:#fff;
}
.btn-on-dark{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.20);
  color:#fff;
}
.btn-on-dark:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.30);
  transform:translateY(-1px);
}

/* ========= Hero ========= */
.hero{
  padding:92px 0 90px;
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(920px 560px at 14% 18%,rgba(37,99,235,.50) 0%,rgba(37,99,235,0) 60%),
    radial-gradient(820px 520px at 92% 26%,rgba(14,165,233,.22) 0%,rgba(14,165,233,0) 64%),
    radial-gradient(920px 560px at 54% 120%,rgba(0,0,0,.58) 0%,rgba(0,0,0,0) 62%),
    linear-gradient(135deg,#0b1220 0%,#071026 52%,#050913 100%);
}
.hero::before{
  content:"CN2-GIA";
  position:absolute;
  right:-64px;top:18px;
  font-size:120px;letter-spacing:10px;
  color:rgba(255,255,255,.06);
  transform:rotate(-10deg);
  user-select:none;pointer-events:none;
  font-weight:850;white-space:nowrap;
}
.hero::after{
  content:"";
  position:absolute;inset:0;
  background-image:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.10) 0 1px,transparent 2px),
    radial-gradient(circle at 60% 40%,rgba(255,255,255,.08) 0 1px,transparent 2px),
    radial-gradient(circle at 80% 70%,rgba(255,255,255,.06) 0 1px,transparent 2px);
  background-size:140px 140px;
  opacity:.28;
  pointer-events:none;
  mask-image:radial-gradient(closest-side at 60% 30%,rgba(0,0,0,1) 0%,rgba(0,0,0,0) 72%);
}
.hero .grid{
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero h1{color:#fff;margin-bottom:14px}
.hero p{
  color:rgba(255,255,255,.78);
  margin-bottom:18px;
  max-width:820px;
  font-weight:450;
}
.pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}
.pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 11px;border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.78);
  font-size:var(--fs-12);
}
.pill::before{content:"✓";color:rgba(255,255,255,.92);font-weight:900}

.hero-visual{
  display:flex;justify-content:flex-end;
}
.hero-visual img{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 26px 72px rgba(0,0,0,.36);
}

/* ========= Sections ========= */
.section{padding:92px 0}
.section.products{
  background:linear-gradient(180deg,var(--bg-light) 0%,#fff 100%);
}
.section.sla-ax{
  background:
    radial-gradient(900px 520px at 15% 10%,rgba(37,99,235,.22) 0%,rgba(37,99,235,0) 58%),
    radial-gradient(900px 520px at 90% 40%,rgba(255,255,255,.08) 0%,rgba(255,255,255,0) 62%),
    linear-gradient(135deg,#0b1220 0%,#0b1b3a 55%,#0b1220 100%);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section.sla-ax h2{color:#fff}
.section.sla-ax .sub{color:rgba(255,255,255,.72)}

/* ========= Products Head / Tier Switch ========= */
.products-head{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:start;
  margin-bottom:24px;
}
.products-head h2{margin-bottom:8px;	float: left;}
.products-head p{font-size:var(--fs-15);color:var(--text-sub);float: left;}

/* ========= 价格级别：无边框，无卡片，仅一排按钮，无图标 ========= */
.jiage-dengji{
  font-size:12px;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  padding:0;
}
.jiage-dengji-biaoqian{
  font-size:var(--fs-13);
  color:var(--text-muted);
  font-weight:650;
}
.dengji-anniuqu{
  display:flex;
               
  gap:8px;
  margin-top:10px;

  -webkit-overflow-scrolling:touch;
  padding-bottom:4px;
}
.dengji-anniuqu button{
  display:inline-flex;
  font-size:12px;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:5px;
  white-space:nowrap;
  border:1px solid rgba(15,23,42,.10);

  background:rgba(255,255,255,.78);
  color:var(--text-sub);

  box-shadow:0 10px 22px rgba(15,23,42,.06);
  transition:all .18s ease;
}

/* 强制隐藏按钮中的图标（HTML 不改也不会显示） */
.dengji-anniuqu button svg,
.dengji-anniuqu button .btn-tubiao{
  display:none !important;
}

.dengji-anniuqu button:hover{
  border-color:rgba(37,99,235,.26);
  color:var(--primary-color);
  background:#fff;
  transform:translateY(-1px);
  box-shadow:0 14px 30px rgba(15,23,42,.08);
}

/* 激活态：浅蓝底 + 蓝字 */
.dengji-anniuqu button.active{
  background:rgba(37,99,235,.12);
  border-color:rgba(37,99,235,.22);
  color:var(--primary-color);
  box-shadow:0 16px 34px rgba(37,99,235,.12);
}

.dengji-beizhu{
  margin-top:10px;
  font-size:var(--fs-13);
  color:var(--text-muted);
  line-height:1.6;
}
.dengji-beizhu strong{color:var(--text-main);font-weight:850}

/* ========= Product Tiles ========= */
.jiage-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.tile{
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  background:
    radial-gradient(520px 240px at 20% -10%,rgba(37,99,235,.10) 0%,rgba(37,99,235,0) 60%),
    linear-gradient(180deg,#fff 0%,#fbfcff 60%,#f1f5ff 100%);
  box-shadow:var(--shadow-xs);
  position:relative;
  overflow:visible;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.tile::after{
  content:"";
  position:absolute;right:-1px;bottom:-1px;
  width:96px;height:96px;
  pointer-events:none;
  background:
    linear-gradient(315deg,rgba(15,23,42,.14) 0%,rgba(15,23,42,.06) 34%,rgba(15,23,42,0) 70%),
    linear-gradient(45deg,rgba(37,99,235,.18) 0%,rgba(37,99,235,.06) 40%,rgba(37,99,235,0) 72%);
  clip-path:polygon(100% 0,100% 100%,0 100%);
  opacity:.95;
  filter:drop-shadow(0 10px 18px rgba(15,23,42,.10));
}
.tile:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:rgba(37,99,235,.18);
}
.ribbon{
  position:absolute;left:50%;top:0;
  transform:translate(-50%,-55%);
  z-index:3;
  display:inline-flex;align-items:center;justify-content:center;
  padding:7px 14px;border-radius:10px;
  background:linear-gradient(135deg,#f59e0b 0%,#fbbf24 70%);
  color:#fff;font-size:var(--fs-12);
  box-shadow:0 12px 26px rgba(245,158,11,.22);
  letter-spacing:.3px;
}

/* 产品名称与图标垂直居中 */
.t-head{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 22px 0;
}

/* 左侧图标：精简服务器标志（CSS 绘制） */
.t-ico{
  width:42px;height:42px;
  border-radius:var(--radius-md);

  flex-shrink:0;
  position:relative;
  display:flex;align-items:center;justify-content:center;
}
.t-ico::before{
  content:"";
  width:22px;height:16px;
  border-radius:4px;
  border:2px solid rgba(37,99,235,.80);
  box-shadow:0 6px 0 0 rgba(37,99,235,.80);
  position:absolute;
  top:11px;
}
.t-ico::after{
  content:"";
  position:absolute;
  width:3px;height:3px;border-radius:50%;
  background:rgba(37,99,235,.90);
  box-shadow:
    9px 0 0 rgba(37,99,235,.55),
    0 6px 0 rgba(37,99,235,.90),
    9px 6px 0 rgba(37,99,235,.55);
  left:14px;
  top:18px;
}

.t-name{
  font-size:var(--fs-15);
  font-weight:850;
  line-height:1.35;
  color:var(--text-main);
}
.t-body{padding:18px 22px 22px}

/* ========= Price Card (jiageka) ========= */
.jiageka{
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-xs);
  overflow:hidden;
  margin:12px 0 12px;
  position:relative;
}
.jiageka::before{
  content:"";
  position:absolute;left:0;top:0;bottom:0;
  width:4px;
  background:linear-gradient(180deg,rgba(37,99,235,1) 0%,rgba(14,165,233,1) 100%);
  opacity:.9;
}
.jiageka-main{
  display:grid;
  grid-template-columns: 100px 1px 1fr;
  gap:0;
  padding:16px 16px 14px;
}
.jiageka-fenge{
  background:rgba(15,23,42,.10);
  width:1px;
  margin:4px 0;
}
.jiageka-col{padding:0 6px}
.jiageka-label{
  font-size:var(--fs-12);
  color:var(--text-muted);
  font-weight:750;
  letter-spacing:.2px;
}
.jiageka-val{
  font-size:22px;
  font-weight:950;
  color:var(--primary-color);
  margin-top:6px;
  letter-spacing:-.2px;
}

/* 月付价格红色 */
.jiageka-val-yue{color:#d93025}

.jiageka-sub{
  font-size:var(--fs-12);
  color:var(--text-muted);
  margin-top:6px;
  line-height:1.55;
}
.jiageka-old-yue,
.jiageka-old-nian{
  text-decoration:line-through;
  opacity:.9;
}

/* 优惠价格绿色，不加粗 */
.jiageka-sheng,
.jiageka-sheng-nian{
  color:#16a34a;
  font-weight:400;
}

.nianfu-tag{
  display:inline-flex;
  margin-top:10px;
  padding:5px 10px;
  border-radius:999px;
  font-size:var(--fs-12);
  font-weight:750;
  color:#fff;
  background:linear-gradient(135deg,#1d4ed8 0%,#2563eb 100%);
  border:1px solid rgba(0,0,0,.04);
  box-shadow:0 14px 30px rgba(37,99,235,.14);
}

.jiageka-tip{
  display:none; /* 仍由 JS 控制显示/隐藏 */
  margin:10px 0 14px;
  padding:10px 12px;
  border-radius:12px;

  background: rgba(245,158,11,.14);      /* 浅黄底 */
  border: 1px solid rgba(245,158,11,.35);/* 黄边 */
  color: #92400e;                        /* 深黄褐字 */

  font-size: var(--fs-13);
  line-height: 1.7;
  box-shadow: 0 10px 22px rgba(245,158,11,.12);
}

/* 如果提示里有强调文字/金额，保持更醒目但不突兀 */
.jiageka-tip b,
.jiageka-tip strong{
  color:#7c2d12;
  font-weight:700;
}

/* ========= Specs ========= */
.t-specs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  padding:14px 0 14px;
  border-bottom:1px solid rgba(15,23,42,.08);
  margin-bottom:14px;
}
.t-spec{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-align:left;
}
.t-spec b{font-size:var(--fs-14);color:var(--text-main);font-weight:850}
.t-spec span{font-size:var(--fs-12);color:var(--text-muted)}

/* ========= Features ========= */
.t-feats{margin:0 0 14px}
.t-feats li{
  display:flex;align-items:flex-start;gap:10px;
  font-size:var(--fs-13);
  color:var(--text-sub);
  margin-bottom:10px;
}
.glyph{
  width:18px;height:18px;
  flex-shrink:0;
  border-radius:6px;
  background:rgba(22,163,74,.10);
  border:1px solid rgba(22,163,74,.18);
  position:relative;
  margin-top:1px;
}
.glyph.ico-check::before{
  content:"✓";
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  color:#16a34a;
  font-weight:950;
  font-size:12px;
}

/* ========= Actions ========= */
.t-actions{display:flex;gap:10px;flex-wrap:wrap}
.t-actions .btn{width:100%}

/* ========= AX Metrics (dark section) ========= */
.ax-hero{position:relative}
.ax-hero .kicker{margin-bottom:14px}
.ax-hero h2{margin:8px 0 12px}
.ax-hero .sub{max-width:960px}

.ax-metrics{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:26px;
}
.metric{
  padding:16px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 44px rgba(0,0,0,.18);
}
.metric .cap{font-size:var(--fs-13);opacity:.88;font-weight:650;color:rgba(255,255,255,.88)}
.metric .num{font-size:28px;font-weight:950;color:#4ade80;margin:8px 0 6px;letter-spacing:-.2px}
.metric .hint{font-size:var(--fs-12);opacity:.62;line-height:1.6;color:rgba(255,255,255,.70)}

/* ========= Band CTA（浅色版） ========= */
.band-cta{
  padding:108px 0;
  background:
    radial-gradient(900px 520px at 15% 10%,rgba(37,99,235,.10) 0%,rgba(37,99,235,0) 60%),
    radial-gradient(900px 520px at 90% 40%,rgba(14,165,233,.08) 0%,rgba(14,165,233,0) 62%),
    linear-gradient(180deg,var(--bg-light) 0%,#fff 100%);
  color:var(--text-main);
  border-top:1px solid rgba(15,23,42,.08);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.band-cta .grid{
  grid-template-columns:1.1fr .9fr;
  gap:56px;
  align-items:start;
}
.band-cta h2{color:var(--text-main);margin:10px 0 10px}
.band-cta .sub{color:var(--text-sub)}
.eyebrow{
  display:inline-flex;flex-wrap:wrap;gap:10px;
  font-size:var(--fs-12);
  color:var(--text-muted);
}
.eyebrow span{
  padding:7px 11px;border-radius:999px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow-xs);
}

/* vcheck 四条：两列排列 */
.bp-feats{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.bp-feats li{
  display:flex;gap:14px;
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow-xs);
}
.vcheck{
  width:26px;height:26px;border-radius:50%;
  background:linear-gradient(135deg,rgba(37,99,235,.95) 0%,rgba(29,78,216,.95) 100%);
  box-shadow:0 12px 26px rgba(37,99,235,.20);
  position:relative;flex-shrink:0;
}
.vcheck::after{
  content:"✓";
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  font-size:12px;font-weight:950;
  color:#fff;
}
.bp-feats b{color:var(--text-main);font-weight:900}
.bp-feats p{margin-top:4px;color:var(--text-sub);font-size:var(--fs-13);line-height:1.7}
.bp-cta{margin-top:18px;display:flex;flex-wrap:wrap;gap:12px}

/* band-cta 内原本使用 btn-on-dark 的按钮：在浅色区改成浅底描边 */
.band-cta .btn-on-dark{
  background:rgba(255,255,255,.70);
  border-color:rgba(15,23,42,.14);
  color:var(--text-main);
  box-shadow:var(--shadow-xs);
}
.band-cta .btn-on-dark:hover{
  border-color:rgba(37,99,235,.36);
  color:var(--primary-color);
  transform:translateY(-1px);
  background:#fff;
}

/* 右侧评价卡片：浅色适配 */
.bp-test{display:flex;flex-direction:column;gap:16px}
.say{
  background:rgba(255,255,255,.92);
  padding:20px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:var(--shadow-xs);
}
.stars{color:#f59e0b;margin-bottom:10px;font-weight:900}
.say p{color:var(--text-sub);font-style:italic;margin-bottom:12px;font-size:var(--fs-14);line-height:1.75}
.sig{display:flex;align-items:center;gap:12px;color:var(--text-muted);font-size:var(--fs-13)}
.sig b{font-weight:900;color:var(--text-main)}
.sig small{display:block;color:var(--text-muted);margin-top:2px;font-weight:450;font-size:var(--fs-12)}
.avatar{
  width:42px;height:42px;
  background:rgba(37,99,235,.08);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;border:1px solid rgba(37,99,235,.16);
  color:var(--primary-color);
}

/* ========= FAQ News ========= */
.faq-news{background:linear-gradient(180deg,var(--bg-light) 0%,#fff 100%)}
.faq-grid{display:grid;grid-template-columns:1fr;gap:24px}
.faq-news h2{
  display:flex;align-items:center;gap:12px;
  margin-bottom:14px;
}
.faq-title-icon{
  width:34px;height:34px;
  border-radius:12px;
  background:linear-gradient(135deg,rgba(37,99,235,.18) 0%,rgba(14,165,233,.10) 100%);
  border:1px solid rgba(37,99,235,.16);
  display:flex;align-items:center;justify-content:center;
  color:var(--primary-color);
}
.faq-title-icon svg{width:18px;height:18px}

.accordion{
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow-xs);
}
.acc-item{border-top:1px solid rgba(15,23,42,.10)}
.acc-item:first-child{border-top:0}
.q{
  padding:18px 18px;
  cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
  font-size:var(--fs-15);
  font-weight:850;
  color:var(--text-main);
}
.q:hover{color:var(--primary-color)}
.q h4{font-size:inherit;font-weight:inherit;display:flex;gap:10px;align-items:flex-start}
.q-ico{
  width:22px;height:22px;
  border-radius:8px;
  background:rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
  display:flex;align-items:center;justify-content:center;
  color:var(--primary-color);
  flex-shrink:0;
  margin-top:1px;
}
.q-ico svg{width:14px;height:14px}
.chev{color:var(--text-muted);transition:transform .22s}
.a{
  display:none;
  padding:0 18px 16px;
  color:var(--text-sub);
  font-size:var(--fs-14);
  line-height:1.85;
}
.acc-item.open .a{display:block;animation:accDown .22s ease}
.acc-item.open .chev{transform:rotate(180deg)}
@keyframes accDown{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}

/* ========= Promo Mask ========= */
.promo-mask{
  position:fixed;inset:0;
  background:rgba(15,23,42,.46);
  backdrop-filter:blur(3px);
  display:none;
  align-items:center;justify-content:center;
  z-index:9999;
  padding:18px;
}
.promo-mask.show{display:flex}
.promo-dialog{
  width:min(520px,100%);
  background:rgba(255,255,255,.96);
  border:1px solid rgba(15,23,42,.12);
  border-radius:16px;
  box-shadow:var(--shadow-lg);
  padding:20px 18px;
}
.promo-dialog h3{
  font-size:var(--fs-18);
  font-weight:900;
  margin-bottom:10px;
  letter-spacing:-.2px;
}
.promo-dialog p{
  font-size:var(--fs-14);
  color:var(--text-sub);
  line-height:1.8;
}
.promo-dialog .hi{
  color:var(--primary-color);
  font-weight:900;
}
#promoClose{
  margin-top:14px;
  width:100%;
  height:40px;
  border-radius:12px;
  font-size:var(--fs-14);
  font-weight:750;
  border:1px solid rgba(15,23,42,.12);
  background:rgba(37,99,235,.10);
  color:var(--primary-color);
  transition:all .18s ease;
}
#promoClose:hover{background:rgba(37,99,235,.14);border-color:rgba(37,99,235,.26);transform:translateY(-1px)}

/* ========= Responsive ========= */
@media (max-width:1080px){
  .jiage-grid{grid-template-columns:repeat(2,1fr)}
  .ax-metrics{grid-template-columns:repeat(2,1fr)}
  .ax-metrics .metric:last-child{grid-column:span 2}
}
@media (max-width:980px){
  .hero{padding:74px 0 86px}
  .hero .grid{grid-template-columns:1fr;gap:18px}
  .hero-visual{justify-content:center}
  .hero-visual img{max-width:680px}
  .products-head{grid-template-columns:1fr;gap:16px}
  .band-cta .grid{grid-template-columns:1fr;gap:28px}
  .t-actions .btn{width:100%}

  /* band-cta 内 vcheck 两列在中小屏收敛为一列更稳 */
  .bp-feats{grid-template-columns:1fr}
}
@media (max-width:640px){
  .container{padding:0 18px}
  .jiage-grid{grid-template-columns:1fr}
  .t-specs{grid-template-columns:1fr}
  .btn-lg{width:100%}
  .bp-cta .btn{width:100%}
}
