@charset "utf-8";
/* ==========================================================================
   components.css —— 按钮 / 卡片 / 标签页 / 表单 / 分页 / 面包屑 / 图标
   ========================================================================== */

/* =======================  图标蒙版（单色图标统一着色）  ======================= */
.im {
  display: inline-block;
  background: #444;
  -webkit-mask: var(--src) center center / contain no-repeat;
          mask: var(--src) center center / contain no-repeat;
}
.im-white { background: #fff; }
.im-green { background: var(--green); }

/* =======================  按钮  ======================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 34px;
  height: 50px;
  font-size: 22px;
  line-height: 1;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-d); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-d); color: #fff; }
.btn-lg { height: 58px; padding: 0 40px; font-size: 24px; }
.btn-sm { height: 42px; padding: 0 22px; font-size: 20px; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .6; pointer-events: none; }

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 32px;
  font-size: 22px;
  color: #fff;
  background: var(--green);
  border-radius: 100px;
  transition: background var(--trans);
}
.btn-more:hover { background: var(--green-d); color: #fff; }

/* =======================  标签页  ======================= */
.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 130px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  margin-bottom: 56px;
}
.tabs .tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 6px 16px;
  font-size: 24px;
  color: rgba(255, 255, 255, .88);
  cursor: pointer;
  background: none;
  border: 0;
  transition: color var(--trans);
}
.tabs .tab .im { width: 54px; height: 51px; background: rgba(255, 255, 255, .82); transition: background var(--trans); }
.tabs .tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: transparent;
}
.tabs .tab.on { color: var(--green); }
.tabs .tab.on .im { background: var(--green); }
.tabs .tab.on::after { background: var(--green); }
.tabs .tab:hover { color: var(--green); }
.tabs .tab:hover .im { background: var(--green); }

.tabs-light { border-bottom-color: var(--line); }
.tabs-light .tab { color: var(--muted); font-size: 26px; line-height: 1.15; padding-bottom: 6px; }
.tabs-light .tab.on { color: var(--green); }
.tabs-light .tab:hover { color: var(--green); }
.tabs-light .tab .im { background: #4A4A4A; }
.tabs-light .tab.on .im, .tabs-light .tab:hover .im { background: var(--green); }

/* =======================  产品卡片  ======================= */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.prod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 465px;
  padding: 44px 34px 40px;
  background: #fff;
  overflow: hidden;
  text-align: center;
  transition: box-shadow var(--trans), transform var(--trans);
}
.prod-card:hover { box-shadow: 0 14px 34px rgba(0, 0, 0, .10); }
.prod-card .pc-img {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  margin-bottom: 26px;
}
.prod-card .pc-img img { max-width: 273px; max-height: 192px; width: auto; height: auto; object-fit: contain; }
.prod-card .pc-name { font-size: 20px; line-height: 1.6; color: var(--ink); font-weight: 400; }

/* 产品卡悬停态：绿色遮罩 + 白色产品名 + 白色按钮 + 浅色产品水印（设计稿） */
.prod-card .pc-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  opacity: 0;
  transition: opacity var(--trans);
}
.prod-card:hover .pc-hover { opacity: 1; }
.prod-card .pc-hover .pc-bg {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 78%;
  pointer-events: none;
  filter: brightness(0) invert(1);
  opacity: .16;
}
.prod-card .pc-hover .pc-title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  line-height: 1.7;
  color: #fff;
  padding: 0 30px;
  text-align: center;
  margin-bottom: 30px;
}
.prod-card .pc-hover .pc-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 28px;
  background: #fff;
  border-radius: 999px;
  font-size: 20px;
  color: var(--green);
}
.prod-card .pc-hover .pc-btn .ico { width: 18px; height: 18px; }

/* =======================  特色卡片（三栏）  ======================= */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
/* 特色卡：默认 = 灰底(#F9F9F9) + 黑标题 + 灰正文 + 绿图标；悬停 = 绿底白字白图标（设计稿） */
.feat-card {
  padding: 46px 40px 56px;
  background: var(--bg-card);
  text-align: center;
  transition: background var(--trans);
}
.feat-card .fc-icon { height: 64px; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; }
.feat-card .fc-icon .im { width: 90px; height: 64px; background: var(--green); transition: background var(--trans); }
.feat-card h3 { font-size: var(--fs-h3); margin-bottom: 19px; transition: color var(--trans); }
.feat-card p { font-size: 21px; line-height: 40px; color: #686868; transition: color var(--trans); }
.feat-card:hover { background: var(--green); }
.feat-card:hover .fc-icon .im { background: #fff; }
.feat-card:hover h3 { color: #fff; }
.feat-card:hover p { color: rgba(255, 255, 255, .94); }

/* =======================  新闻卡片  ======================= */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
/* 新闻卡：默认 = 灰底(#F9F9F9) + 黑标题；悬停 = 绿底白字（设计稿） */
.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  overflow: hidden;
  transition: background var(--trans), box-shadow var(--trans);
}
.news-card:hover { background: var(--green); box-shadow: 0 14px 34px rgba(0, 0, 0, .10); }
.news-card .nc-pic { position: relative; aspect-ratio: 513 / 346; overflow: hidden; }
.news-card .nc-pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-card .nc-badge {
  position: absolute;
  left: 0; top: 0;
  padding: 8px 24px;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  background: var(--green);
  white-space: nowrap;      /* 徽标强制单行，防止绝对定位收缩到单字宽 */
}
.news-card .nc-body { flex: 1 1 auto; padding: 16px 34px 36px; }
.news-card .nc-date { font-size: 22px; line-height: 30px; color: #999999; margin-bottom: 12px; transition: color var(--trans); }
.news-card .nc-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color var(--trans);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card .nc-sum {
  font-size: 22px;
  line-height: 34px;
  color: #666666;
  transition: color var(--trans);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover .nc-date { color: rgba(255, 255, 255, .85); }
.news-card:hover .nc-title { color: #fff; }
.news-card:hover .nc-sum { color: rgba(255, 255, 255, .92); }

.news-listcard { background: var(--bg-card); display: flex; flex-direction: column; }
.news-listcard .nl-head {
  padding: 8px 24px;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
  background: var(--blue);
  align-self: flex-start;
  white-space: nowrap;
}
.news-listcard ul { padding: 22px 32px 28px; flex: 1 1 auto; }
.news-listcard li { padding: 21px 0; border-bottom: 1px solid var(--line); }
.news-listcard li:last-child { border-bottom: 0; }
.news-listcard .nl-date { display: block; font-size: 22px; line-height: 30px; color: #999999; margin-bottom: 6px; }
.news-listcard .nl-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =======================  新闻长列表（新闻页）  ======================= */
.news-rows { border-top: 1px solid var(--line); }
.news-row {
  display: flex;
  gap: 64px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.news-row .nr-pic { flex: 0 0 402px; width: 402px; height: 217px; overflow: hidden; background: var(--bg-soft); }
.news-row .nr-pic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.news-row:hover .nr-pic img { transform: scale(1.04); }
.news-row .nr-main { flex: 1 1 auto; min-width: 0; padding-top: 23px; }
.news-row .nr-title { font-size: 30px; line-height: 1.3; color: var(--green); margin-bottom: 15px; }
.news-row .nr-title:hover { opacity: .82; }
.news-row .nr-sum {
  font-size: 22px;
  line-height: 32px;
  color: var(--muted);
  margin-bottom: 33px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-row .nr-date { font-size: 20px; color: var(--gray); }

/* =======================  下载列表  ======================= */
.dl-row {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 166px;
  padding: 32px 75px;
  background: var(--bg-soft);
  margin-bottom: 39px;
  transition: background var(--trans), box-shadow var(--trans);
}
.dl-row:hover { background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, .1); }
.dl-row .dl-play { flex: 0 0 auto; display: flex; }
.dl-row .dl-div { width: 1px; height: 62px; background: var(--line); flex: 0 0 auto; margin-right: 40px; }
.dl-row .dl-main { flex: 1 1 auto; min-width: 0; }
.dl-row .dl-title { display: block; font-size: 26px; line-height: 1.4; color: var(--ink); margin-bottom: 6px; }
.dl-row .dl-size { display: block; font-size: 22px; line-height: 1.3; color: var(--gray); }
.dl-row .dl-act { flex: 0 0 auto; display: flex; align-items: center; color: var(--ink); }
.dl-row:hover .dl-act, .dl-row.is-hl .dl-act { color: var(--green); }
/* 设计稿首条为绿色态（图标+标题），悬停同样生效 */
.dl-row:hover .dl-title, .dl-row.is-hl .dl-title { color: var(--green); }

/* =======================  招聘卡片  ======================= */
.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 28px;
  overflow: hidden;
  transition: box-shadow var(--trans);
}
.job-card:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, .08); }
.job-top {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 30px 40px;
  border-bottom: 1px solid var(--line-2);
  flex-wrap: wrap;
}
.job-name { font-size: var(--fs-h3); font-weight: 700; color: var(--ink); flex: 0 0 auto; }
.job-meta { display: flex; align-items: center; gap: 34px; flex: 1 1 auto; flex-wrap: wrap; }
.job-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 22px; color: var(--text-2); }
.job-sub { display: flex; align-items: center; gap: 16px; padding: 18px 40px; flex-wrap: wrap; }
.job-sub .jt { padding: 4px 16px; font-size: 22px; color: var(--text-2); background: var(--bg-soft); }
.job-sub .jt-first { background: transparent; padding-left: 0; }
.job-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 22px;
  color: var(--green);
  cursor: pointer;
}
.job-toggle svg { transition: transform var(--trans); }
.job-card.open .job-toggle svg { transform: rotate(180deg); }
.job-body { padding: 0 40px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.job-card.open .job-body { max-height: 2000px; padding: 10px 40px 40px; }
.job-body h4 { font-size: 26px; color: var(--ink); margin: 26px 0 10px; }
.job-body p { font-size: 24px; line-height: 2; color: var(--text); }
.job-body ol li { font-size: 24px; line-height: 2; color: var(--text); }

/* =======================  表单  ======================= */
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 30px; margin-bottom: 40px; }
.form-row-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 30px; margin-bottom: 44px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label { font-size: 22px; color: var(--ink); }
.field label .req { color: var(--pink); margin-left: 3px; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="password"],
.field select,
.field textarea {
  width: 100%;
  padding: 6px 16px;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.field textarea { resize: vertical; min-height: 150px; font-family: inherit; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(143, 195, 31, .18);
}
.field input::placeholder, .field textarea::placeholder { color: #BBB; }

.on-dark .field label { color: rgba(255, 255, 255, .94); }
.on-dark .field input, .on-dark .field textarea {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.on-dark .field input::placeholder, .on-dark .field textarea::placeholder { color: rgba(255, 255, 255, .55); }
.on-dark .field input:focus, .on-dark .field textarea:focus { border-color: var(--green); }

.cta .field textarea { min-height: 100px; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* =======================  分页  ======================= */
.prod-dots { display: flex; align-items: center; justify-content: center; gap: 12px; padding-top: 24px; }
.prod-dots .dot {
  width: 9px; height: 9px;
  padding: 0; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.prod-dots .dot:hover { transform: scale(1.35); background: rgba(255, 255, 255, .75); }
.prod-dots .dot.on { background: var(--green); transform: none; cursor: default; }

.pager { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 60px 0 0; }
.pager a, .pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px; height: 54px;
  padding: 0 14px;
  font-size: 22px;
  color: var(--text-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: all var(--trans);
}
.pager a:hover { color: #fff; background: var(--green); border-color: var(--green); }
.pager .cur { color: #fff; background: var(--green); border-color: var(--green); }
.pager .dots { background: transparent; border: 0; min-width: 26px; padding: 0; }
.pager .dots:hover { background: transparent; color: var(--text-2); }
.pager .nav-btn { font-size: 22px; line-height: 1; }

/* =======================  面包屑  ======================= */
.crumb { padding: 30px 0; font-size: var(--fs-sm); color: var(--gray); }
.crumb a { color: var(--gray); }
.crumb a:hover { color: var(--green); }
.crumb i { font-style: normal; margin: 0 10px; color: #CFCFCF; }
.crumb .cur { color: var(--text-2); }

/* =======================  空状态 / Toast  ======================= */
.empty {
  padding: 90px 24px;
  text-align: center;
  color: var(--gray);
  font-size: 22px;
  background: var(--bg-soft);
  line-height: 1.9;
}

.toast {
  position: fixed;
  left: 50%; bottom: 48px;
  transform: translate(-50%, 20px);
  padding: 16px 34px;
  font-size: 22px;
  color: #fff;
  background: rgba(0, 0, 0, .84);
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 9999;
  max-width: 90vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.is-ok { background: var(--green); }
.toast.is-err { background: #E4574F; }

/* =======================  侧边工具  ======================= */
.side-tools {
  position: fixed;
  right: 26px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 200;
}
.side-tools a, .side-tools button {
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  transition: all var(--trans);
}
.side-tools a:hover, .side-tools button:hover { color: #fff; background: var(--green); border-color: var(--green); }
.side-tools .has-qr { position: relative; }
.side-tools .qr-pop {
  position: absolute;
  right: 68px; bottom: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
  display: none;
}
.side-tools .has-qr:hover .qr-pop { display: block; }
.side-tools .qr-pop img { width: 160px; height: 160px; object-fit: contain; display: block; }
.side-tools .qr-pop span { display: block; text-align: center; font-size: 16px; color: var(--gray); margin-top: 8px; }
.side-tools .ico { width: 26px; height: 26px; }

/* =======================  通用图标  ======================= */
.ico { display: inline-block; vertical-align: middle; flex: 0 0 auto; width: 22px; height: 22px; }
.ico-16 { width: 16px; height: 16px; }
.ico-18 { width: 18px; height: 18px; }
.ico-20 { width: 20px; height: 20px; }
.ico-24 { width: 24px; height: 24px; }
.ico-28 { width: 28px; height: 28px; }

/* =======================  响应式  ======================= */
@media (max-width: 1700px) {
  .tabs { gap: 76px; }
  .tabs .tab { font-size: 26px; }
  .tabs .tab .im { width: 60px; height: 50px; }
  .btn { height: 48px; padding: 0 32px; font-size: 21px; }
  .btn-lg { height: 56px; padding: 0 38px; font-size: 23px; }
  .btn-more { height: 48px; padding: 0 28px; font-size: 19px; }
  .prod-card { min-height: 420px; padding: 38px 30px 34px; }
  .prod-card .pc-name { font-size: 19px; }
  .prod-card .pc-hover .pc-title { font-size: 21px; }
  .prod-card .pc-hover .pc-btn { height: 42px; font-size: 19px; }
  .rec-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1400px) {
  .tabs { gap: 60px; margin-bottom: 44px; }
  .tabs .tab { font-size: 22px; gap: 10px; padding-bottom: 16px; }
  .tabs .tab .im { width: 52px; height: 42px; }
  .btn { height: 44px; padding: 0 28px; font-size: 18px; }
  .btn-lg { height: 50px; padding: 0 32px; font-size: 20px; }
  .btn-sm { height: 36px; padding: 0 18px; font-size: 17px; }
  .btn-more { height: 44px; padding: 0 24px; font-size: 17px; }
  .prod-grid, .feat-grid, .news-grid { gap: 24px; }
  .prod-card { min-height: 360px; }
  .prod-card .pc-img img { max-height: 200px; max-width: 240px; }
  .prod-card .pc-name { font-size: 18px; }

  .prod-card .pc-hover .pc-title { font-size: 18px; margin-bottom: 16px; }
  .prod-card .pc-hover .pc-btn { height: 38px; font-size: 17px; padding: 0 22px; }
  .feat-card { padding: 40px 28px 44px; }
  .feat-card .fc-icon { height: 52px; margin-bottom: 20px; }
  .feat-card .fc-icon .im { width: 74px; height: 52px; }
  .feat-card h3 { font-size: var(--fs-h3); margin-bottom: 14px; }
  .feat-card p { font-size: 17px; }
  .news-card .nc-body { padding: 20px 24px 26px; }
  .news-card .nc-date { font-size: 17px; margin-bottom: 8px; }
  .news-card .nc-title { font-size: 21px; margin-bottom: 10px; }
  .news-card .nc-sum { font-size: 17px; }
  .news-card .nc-badge { font-size: 17px; padding: 6px 18px; }
  .news-listcard .nl-head { font-size: 17px; padding: 6px 18px; }
  .news-listcard ul { padding: 18px 24px 22px; }
  .news-listcard li { padding: 12px 0; }
  .news-listcard .nl-date { font-size: 17px; }
  .news-listcard .nl-title { font-size: 17px; }
  .news-row { gap: 44px; padding: 32px 0; }
  .news-row .nr-pic { flex: 0 0 320px; width: 320px; height: 173px; }
  .news-row .nr-title { font-size: 24px; margin-bottom: 10px; }
  .news-row .nr-sum { font-size: 17px; margin-bottom: 12px; }
  .news-row .nr-date { font-size: 17px; }
  .dl-row { gap: 24px; padding: 18px 32px; margin-bottom: 20px; min-height: 96px; }
  .dl-row .dl-title { font-size: 21px; }
  .dl-row .dl-size { font-size: 17px; }
  .job-top { gap: 24px; padding: 22px 30px; }
  .job-name { font-size: var(--fs-h3); }
  .job-meta span { font-size: 17px; }
  .job-sub { padding: 14px 30px; }
  .job-sub .jt { font-size: 17px; }
  .job-toggle { font-size: 17px; }
  .job-body { padding: 0 30px; }
  .job-card.open .job-body { padding: 8px 30px 30px; }
  .job-body h4 { font-size: 21px; }
  .job-body p, .job-body ol li { font-size: 19px; }
  .field label { font-size: 17px; }
  .field input, .field select, .field textarea { font-size: 17px; padding: 11px 15px; }
  .field textarea { min-height: 120px; }
  .empty { font-size: 18px; padding: 70px 20px; }
  .pager a, .pager span { min-width: 42px; height: 42px; font-size: 18px; }
  .crumb { font-size: var(--fs-sm); padding: 24px 0; }
  .side-tools a, .side-tools button { width: 46px; height: 46px; }
  .toast { font-size: 18px; padding: 13px 28px; }
}
@media (max-width: 1180px) {
  .prod-grid, .feat-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-card { min-height: 300px; }
  .news-row .nr-pic { flex: 0 0 190px; width: 190px; height: 140px; }
}
@media (max-width: 900px) {
  .prod-grid, .feat-grid, .news-grid { grid-template-columns: 1fr; gap: 18px; }
  .prod-card { min-height: 260px; padding: 26px 20px 26px; }
  .prod-card .pc-img img { max-height: 180px; }
  .prod-card .pc-name { font-size: 16px; }
  .prod-card.is-feature { padding: 30px 24px; }
  .prod-card.is-feature .pc-title { font-size: 16px; }
  .prod-card.is-feature .pc-btn { height: 38px; font-size: 15px; padding: 0 20px; }
  .feat-card { padding: 30px 22px; }
  .feat-card h3 { font-size: 19px; }
  .feat-card p { font-size: 15px; }
  .news-row { gap: 16px; padding: 20px 0; }
  .news-row .nr-pic { flex: 0 0 130px; width: 130px; height: 96px; }
  .news-row .nr-title { font-size: 17px; margin-bottom: 6px; }
  .news-row .nr-sum { font-size: 14px; -webkit-line-clamp: 2; margin-bottom: 6px; }
  .news-row .nr-date { font-size: 14px; }
  .dl-row { gap: 14px; padding: 14px 16px; min-height: 82px; margin-bottom: 14px; }
  .dl-row .dl-div { display: none; }
  .dl-row .dl-title { font-size: 16px; margin-bottom: 4px; }
  .dl-row .dl-size { font-size: 14px; }
  .dl-row .play-ico { width: 34px !important; height: 34px !important; }
  .job-top { gap: 12px; padding: 16px 18px; }
  .job-name { font-size: 18px; }
  .job-meta { gap: 12px; }
  .job-sub { padding: 12px 18px; gap: 10px; }
  .job-body { padding: 0 18px; }
  .job-card.open .job-body { padding: 6px 18px 22px; }
  .job-body h4 { font-size: 17px; margin: 16px 0 8px; }
  .job-body p, .job-body ol li { font-size: 15px; line-height: 1.9; }
  .form-row, .form-row-2 { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .field label { font-size: 15px; }
  .field input, .field select, .field textarea { font-size: 15px; padding: 10px 13px; }
  .field textarea { min-height: 110px; }
  .pager { gap: 8px; padding: 36px 0 0; }
  .pager a, .pager span { min-width: 34px; height: 34px; font-size: 14px; padding: 0 8px; }
  .tabs { gap: 26px; margin-bottom: 26px; }
  .tabs .tab { font-size: 16px; gap: 8px; padding-bottom: 12px; }
  .tabs .tab .im { width: 40px; height: 32px; }
  .btn { height: 40px; padding: 0 22px; font-size: 15px; }
  .btn-lg { height: 46px; padding: 0 26px; font-size: 16px; }
  .btn-more { height: 40px; padding: 0 20px; font-size: 15px; }
  .empty { font-size: 15px; padding: 50px 16px; }
  .crumb { font-size: 13px; padding: 16px 0; }
  .side-tools { right: 12px; bottom: 90px; gap: 10px; }
  .side-tools a, .side-tools button { width: 40px; height: 40px; }
  .side-tools .ico { width: 20px; height: 20px; }
  .toast { font-size: 15px; padding: 11px 22px; bottom: 28px; }
}
