/* ============================================================
   万商云集 · 资阳站 样式（石刻柠檬 · 独立主题）
   类前缀固定 zy- ；配色：石刻灰 + 柠檬黄
   ============================================================ */
:root {
  --ink: #26251F;
  --primary: #7D7A72;
  --primary-2: #9A968C;
  --accent: #E8C63A;
  --bg: #F7F5ED;
  --bg-alt: #EFECDD;
  --line: #E1DCC8;
  --heading: #2A291F;
  --muted: #6E6A5A;
  --radius: 10px;
  --shadow: 0 12px 26px rgba(38, 37, 31, .10);
  --gradient: linear-gradient(135deg, #7D7A72, #E8C63A);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.zy-noscroll { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { color: var(--heading); line-height: 1.25; margin: 0 0 .5em; }

p { margin: 0 0 1em; }

/* ---------- 按钮 ---------- */
.zy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4em;
  padding: .7em 1.4em;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.zy-btn--lg { padding: .9em 1.8em; font-size: 16px; }
.zy-btn--primary { background: var(--gradient); color: #2A291F; box-shadow: var(--shadow); }
.zy-btn--primary:hover { transform: translateY(-2px); }
.zy-btn--ghost { background: rgba(255, 255, 255, .65); color: var(--heading); border-color: var(--line); }
.zy-btn--ghost:hover { border-color: var(--accent); }
.zy-btn--outline { background: transparent; color: var(--heading); border-color: var(--primary); }
.zy-btn--outline:hover { background: var(--primary); color: #fff; }

/* ---------- 顶栏 ---------- */
.zy-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1.4rem;
  background: rgba(247, 245, 237, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.zy-topbar__brand { display: flex; align-items: center; flex-shrink: 0; }
.zy-topbar__logo { height: 38px; width: auto; }
.zy-topbar__name { font-weight: 800; color: var(--heading); font-size: 18px; }
.zy-topbar__nav { display: flex; gap: .3rem; margin-left: 1rem; flex: 1; flex-wrap: wrap; }
.zy-topbar__link {
  padding: .4rem .8rem;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 600;
  transition: background .15s ease, color .15s ease;
}
.zy-topbar__link:hover, .zy-topbar__link--on { background: var(--bg-alt); color: var(--heading); }
.zy-topbar__right { display: flex; align-items: center; gap: .8rem; margin-left: auto; }
.zy-topbar__phone { font-weight: 800; color: var(--heading); }
.zy-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 38px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.zy-burger span { display: block; height: 2px; background: var(--heading); border-radius: 2px; }

/* ---------- 移动抽屉 ---------- */
.zy-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 320px;
  height: 100%;
  z-index: 100;
  background: #fff;
  box-shadow: -10px 0 30px rgba(38, 37, 31, .18);
  transition: right .28s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.zy-drawer--open { right: 0; }
.zy-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: var(--heading);
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: .8rem;
}
.zy-drawer__close {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
}
.zy-drawer__nav { display: flex; flex-direction: column; gap: .2rem; }
.zy-drawer__link {
  padding: .8rem 1rem;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  border: 1px solid transparent;
}
.zy-drawer__link:hover, .zy-drawer__link--on { background: var(--bg-alt); border-color: var(--line); }
.zy-drawer__tel {
  margin-top: auto;
  text-align: center;
  padding: .8rem;
  border-radius: var(--radius);
  background: var(--gradient);
  color: #2A291F;
  font-weight: 800;
}
.zy-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(38, 37, 31, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.zy-scrim--show { opacity: 1; visibility: visible; }

/* ---------- 内容容器 ---------- */
.zy-content { overflow: hidden; }
.zy-main { display: block; }

/* ---------- 分屏 Hero ---------- */
.zy-hero { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.zy-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 460px;
}
.zy-hero__art {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.05) 0 2px, transparent 2px 22px),
    repeating-linear-gradient(45deg, rgba(255,255,255,.18) 0 2px, transparent 2px 26px),
    linear-gradient(135deg, #8A877E, #6E6B62);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  overflow: hidden;
}
.zy-hero__art::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,198,58,.55), transparent 70%);
}
.zy-hero__relief {
  position: relative;
  z-index: 2;
  color: #FBF7E6;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.zy-hero__body {
  padding: 3rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zy-hero__badge {
  align-self: flex-start;
  background: var(--accent);
  color: #2A291F;
  font-weight: 700;
  padding: .35em 1em;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 1rem;
}
.zy-hero__title { font-size: 40px; font-weight: 900; margin: 0 0 .4rem; }
.zy-hero__slogan { font-size: 18px; color: var(--primary); font-weight: 700; margin: 0 0 1rem; }
.zy-hero__sub { color: var(--muted); max-width: 46ch; }
.zy-hero__meta { font-weight: 700; color: var(--heading); }
.zy-hero__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.zy-hero--page { border-bottom: 1px solid var(--line); }
.zy-hero--page .zy-hero__inner { grid-template-columns: 1fr 1.2fr; min-height: 320px; }

/* ---------- 大数字 stat ---------- */
.zy-metrics { background: var(--ink); color: #F7F5ED; padding: 2.4rem 1.4rem; }
.zy-metrics__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  text-align: center;
}
.zy-metrics__num { font-size: 42px; font-weight: 900; color: var(--accent); line-height: 1; }
.zy-metrics__unit { font-size: 18px; margin-left: 4px; }
.zy-metrics__label { color: #D9D4C2; margin-top: .4rem; font-size: 14px; }

/* ---------- 通用区块 ---------- */
.zy-sec { padding: 3.4rem 1.4rem; }
.zy-sec--alt { background: var(--bg-alt); }
.zy-sec--band { background: var(--ink); color: #F7F5ED; }
.zy-sec--band .zy-sec__title, .zy-sec--band .zy-sec__eyebrow { color: #FBF7E6; }
.zy-sec--band .zy-sec__lead { color: #D9D4C2; }
.zy-sec__inner { max-width: 1180px; margin: 0 auto; }
.zy-sec__inner--center { text-align: center; max-width: 760px; }
.zy-sec__head { margin-bottom: 2rem; }
.zy-sec__head--center { text-align: center; }
.zy-sec__eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
  border-left: 4px solid var(--accent);
  padding-left: .6rem;
  margin-bottom: .6rem;
}
.zy-sec__title { font-size: 28px; font-weight: 800; }
.zy-sec__lead { color: var(--muted); max-width: 60ch; }
.zy-sec__head--center .zy-sec__lead { margin: 0 auto; }
.zy-sec__more { display: inline-block; margin-top: 1rem; color: var(--primary); font-weight: 700; }
.zy-sec__phone { display: inline-block; font-size: 34px; font-weight: 900; color: var(--accent); margin: .6rem 0 1rem; }
.zy-sec__cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---------- 关于 ---------- */
.zy-about { display: grid; grid-template-columns: 1.4fr .9fr; gap: 2rem; align-items: start; }
.zy-about__full {
  position: relative;
  max-height: 160px;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .3s ease;
}
.zy-about__full--open { max-height: 2000px; }
.zy-about__full::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48px;
  background: linear-gradient(transparent, var(--bg));
}
.zy-about__full--open::after { display: none; }
.zy-about__toggle { margin: .6rem 0 1rem; }
.zy-about__btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .5em 1.1em;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
}
.zy-about__link { margin-top: .4rem; }
.zy-about__media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- 卡片网格（石刻质感 + 柠檬角标） ---------- */
.zy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.zy-grid--products { margin-top: 2rem; }
.zy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.zy-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(38, 37, 31, .16); }
.zy-card__media {
  position: relative;
  height: 150px;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.04) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #BFBBAE, #9A968C);
}
.zy-card__img { width: 100%; height: 100%; object-fit: cover; }
.zy-card__badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--accent);
  color: #2A291F;
  font-weight: 800;
  font-size: 12px;
  padding: .25em .7em;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(38, 37, 31, .2);
}
.zy-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.zy-card__title { font-size: 18px; font-weight: 800; }
.zy-card__title a:hover { color: var(--primary); }
.zy-card__desc { color: var(--muted); font-size: 14px; margin-bottom: .6rem; }
.zy-card__tag { display: inline-block; font-size: 12px; color: var(--primary); background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: .2em .8em; }

/* ---------- 服务流程线条（兼容） ---------- */
.zy-lines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.zy-lines__item, .zy-card--product { display: flex; flex-direction: column; }

/* ---------- 展示墙 ---------- */
.zy-showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.zy-showcase__item { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.zy-showcase__img { width: 100%; height: 160px; object-fit: cover; }
.zy-showcase__cap { padding: .5rem .8rem; font-size: 13px; color: var(--muted); }

/* ---------- 新闻网格 ---------- */
.zy-newsgrid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.6rem; align-items: start; }
.zy-news { display: flex; flex-direction: column; gap: .2rem; }
.zy-news__item { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); }
.zy-news__link { font-weight: 600; color: var(--ink); }
.zy-news__link:hover { color: var(--primary); }
.zy-news__date { color: var(--muted); font-size: 13px; white-space: nowrap; }
.zy-featured { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.zy-featured__title { font-size: 20px; }
.zy-featured__title a:hover { color: var(--primary); }
.zy-featured__meta { color: var(--muted); font-size: 13px; }
.zy-featured__body { color: var(--muted); }
.zy-featured__more { color: var(--primary); font-weight: 700; }

/* ---------- FAQ ---------- */
.zy-faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.zy-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .2rem 1.1rem;
  box-shadow: var(--shadow);
}
.zy-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--heading);
  padding: .8rem 0;
  list-style: none;
  position: relative;
}
.zy-faq__item summary::-webkit-details-marker { display: none; }
.zy-faq__item summary::after { content: "+"; position: absolute; right: 0; font-size: 22px; color: var(--accent); }
.zy-faq__item[open] summary::after { content: "−"; }
.zy-faq__body { color: var(--muted); padding-bottom: 1rem; }

/* ---------- 广告图 ---------- */
.zy-banner { padding: 0 1.4rem 3rem; }
.zy-banner__img { width: 100%; max-width: 1180px; margin: 0 auto; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- 列表（newslist） ---------- */
.zy-list { display: flex; flex-direction: column; gap: 1.4rem; max-width: 860px; margin: 0 auto; }
.zy-list__item { display: grid; grid-template-columns: 200px 1fr; gap: 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; box-shadow: var(--shadow); }
.zy-list__thumb img { width: 100%; height: 130px; object-fit: cover; border-radius: 8px; }
.zy-list__title { font-size: 19px; }
.zy-list__title a:hover { color: var(--primary); }
.zy-list__meta { display: flex; gap: .8rem; align-items: center; color: var(--muted); font-size: 13px; margin: .3rem 0; }
.zy-list__tag, .zy-post__tag { background: var(--accent); color: #2A291F; padding: .15em .7em; border-radius: 999px; font-weight: 700; }
.zy-list__desc { color: var(--muted); font-size: 14px; }
.zy-list__more { display: inline-block; margin-top: .4rem; color: var(--primary); font-weight: 700; }

/* ---------- 分页 ---------- */
.zy-pager { display: flex; gap: .5rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.zy-pager a, .zy-pager span { padding: .5em .9em; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); }
.zy-pager .current, .zy-pager a:hover { background: var(--gradient); color: #2A291F; border-color: transparent; font-weight: 700; }

/* ---------- 文章 / 双栏 ---------- */
.zy-crumbs { font-size: 13px; color: var(--muted); margin-bottom: 1.2rem; }
.zy-crumbs a:hover { color: var(--primary); }
.zy-crumbs span { margin: 0 .4rem; }
.zy-sidewrap { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.zy-post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.zy-post__title { font-size: 30px; }
.zy-post__meta { display: flex; gap: .8rem; align-items: center; color: var(--muted); font-size: 13px; margin-bottom: 1.2rem; }
.zy-post__body { color: var(--ink); }
.zy-post__body img { max-width: 100%; border-radius: 8px; margin: 1rem 0; }
.zy-post__cta { display: flex; gap: .8rem; margin-top: 1.6rem; }

/* ---------- 侧栏 ---------- */
.zy-aside { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.zy-aside__title { font-size: 17px; border-left: 4px solid var(--accent); padding-left: .6rem; }
.zy-aside__list { list-style: none; margin: 0; padding: 0; }
.zy-aside__item { padding: .6rem 0; border-bottom: 1px dashed var(--line); }
.zy-aside__link { font-weight: 600; }
.zy-aside__link:hover { color: var(--primary); }
.zy-aside__date { display: block; color: var(--muted); font-size: 12px; }

/* ---------- 产品详情 ---------- */
.zy-prodhero { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.zy-prodhero__media img { width: 100%; border-radius: 8px; }
.zy-prodhero__kicker { display: inline-block; background: var(--accent); color: #2A291F; font-weight: 700; padding: .25em .9em; border-radius: 999px; font-size: 13px; }
.zy-prodhero__title { font-size: 28px; margin: .6rem 0; }
.zy-prodhero__desc { color: var(--muted); }
.zy-prodhero__list { list-style: none; margin: 1rem 0; padding: 0; }
.zy-prodhero__row { display: flex; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); }
.zy-prodhero__k { color: var(--primary); font-weight: 700; min-width: 76px; }
.zy-prodhero__cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.zy-prodshow { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; margin-top: 2rem; align-items: start; }
.zy-prodshow__main { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.zy-prodshow__title { font-size: 22px; }
.zy-prodshow__body { color: var(--ink); }
.zy-prodshow__body img { max-width: 100%; border-radius: 8px; }

/* ---------- 企业分站列表 ---------- */
.zy-sites { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.4rem; }
.zy-sites__item { background: rgba(255,255,255,.08); border: 1px solid rgba(232,198,58,.4); color: #FBF7E6; padding: .5em 1.1em; border-radius: 999px; font-weight: 600; }
.zy-sites__item:hover { background: var(--accent); color: #2A291F; }

/* ---------- 联系 ---------- */
.zy-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.zy-contact__row { display: flex; gap: 1rem; padding: .6rem 0; border-bottom: 1px dashed var(--line); }
.zy-contact__label { color: var(--primary); font-weight: 700; min-width: 70px; }
.zy-contact__phone { font-size: 22px; font-weight: 900; color: var(--heading); }
.zy-contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.zy-contact__formtitle { font-size: 20px; }
.zy-field { display: block; margin-bottom: 1rem; }
.zy-field__label { display: block; font-weight: 700; color: var(--muted); margin-bottom: .3rem; font-size: 14px; }
.zy-field__input { width: 100%; padding: .7em .9em; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: var(--bg); }
.zy-field__input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.zy-contact__submit { width: 100%; }
.zy-contact__hint { min-height: 1.4em; color: var(--primary); font-weight: 700; margin: .6rem 0 0; }

/* ---------- 分站互链 / 页脚 ---------- */
.zy-citylinks { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.6rem 0; }
.zy-citylinks__item {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(232,198,58,.35);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  color: #FBF7E6;
  min-width: 140px;
}
.zy-citylinks__item:hover { background: var(--accent); color: #2A291F; }
.zy-citylinks__item--cur { background: var(--accent); color: #2A291F; font-weight: 800; }
.zy-citylinks__region { font-weight: 800; }
.zy-citylinks__site { font-size: 12px; opacity: .85; }

.zy-foot { background: var(--ink); color: #D9D4C2; padding: 2.6rem 1.4rem 2rem; }
.zy-foot__inner { max-width: 1180px; margin: 0 auto; }
.zy-foot__brand { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.zy-foot__brand img { height: 40px; }
.zy-foot__name { color: #FBF7E6; font-weight: 800; }
.zy-foot__name b { color: var(--accent); }
.zy-foot__addr { color: #B7B2A2; font-size: 13px; width: 100%; }
.zy-foot__nap { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.zy-foot__naprow { color: #B7B2A2; font-size: 13px; margin: 0; }
.zy-foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem; margin-top: .6rem; }
.zy-foot__copyright { font-size: 13px; color: #B7B2A2; margin: 0; }
.zy-foot__link { color: var(--accent); }
.zy-foot__tel { font-size: 22px; font-weight: 900; color: var(--accent); }

/* ---------- 响应式 ---------- */
@media (max-width: 960px) {
  .zy-topbar__nav { display: none; }
  .zy-burger { display: flex; }
  .zy-hero__inner, .zy-hero--page .zy-hero__inner { grid-template-columns: 1fr; }
  .zy-hero__art { min-height: 200px; }
  .zy-metrics__inner { grid-template-columns: repeat(2, 1fr); }
  .zy-grid, .zy-lines, .zy-showcase { grid-template-columns: repeat(2, 1fr); }
  .zy-about, .zy-contact, .zy-newsgrid, .zy-sidewrap, .zy-prodhero, .zy-prodshow { grid-template-columns: 1fr; }
  .zy-aside { order: 2; }
}
@media (max-width: 560px) {
  .zy-hero__title { font-size: 32px; }
  .zy-metrics__inner { grid-template-columns: 1fr; }
  .zy-grid, .zy-lines, .zy-showcase, .zy-list__item { grid-template-columns: 1fr; }
  .zy-list__thumb { max-width: 240px; }
  .zy-sec__title { font-size: 24px; }
}
