@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700&display=swap');

:root {
  --bai: #ffffff;
  --hei: #181818;
  --hui: #666666;
  --qianhui: #f2f3f5;
  --lan: #086baf;
  --bianju: 40px;
}

html {
  -webkit-overflow-scrolling: touch;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif SC", "KaiTi", "STKaiti", "楷体", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333;
  line-height: 1.6;
  background: var(--bai);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.daohang {
  background: var(--lan);
  height: 70px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  flex-shrink: 0;
}

.daohang-nei {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 var(--bianju);
}

.biaozhi {
  color: var(--bai);
  display: flex;
  align-items: center;
  gap: 10px;
}

.biaozhi-tu {
  height: 44px;
  width: auto;
}

.biaozhi-wenzi {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.biaozhi-biaoyu {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
  text-align: justify;
  text-align-last: justify;
}

.biaozhi-yingwen {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.55;
}

.caidan {
  display: flex;
  gap: 30px;
  margin-left: 40px;
}

.caidan > li {
  position: relative;
}

.caidan > li > a {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  padding: 22px 0 20px;
  display: block;
  position: relative;
}

.caidan > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--bai);
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.caidan > li > a:hover::after,
.caidan > li.huodong > a::after {
  width: 100%;
}

.caidan > li > a:hover,
.caidan > li.huodong > a {
  color: var(--bai);
}

.xiala:hover .jucaidan {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
}

.jucaidan {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.8);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
  z-index: 999;
  border-top: 2px solid var(--lan);
}

.jucaidan-nei {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 28px 40px;
}

.jucaidan-zu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.jucaidan-biaoti {
  font-size: 17px;
  color: var(--hei);
  font-weight: 700;
  white-space: nowrap;
}

.jucaidan-zu a {
  font-size: 15px;
  color: #666;
  padding: 0;
  border-bottom: none;
  white-space: nowrap;
}

.jucaidan-zu a:hover {
  color: var(--lan);
}

.tubiao {
  display: flex;
  gap: 15px;
  color: var(--bai);
  opacity: 0.7;
  cursor: pointer;
}

.hambao {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
}

.hambao span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bai);
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}

.shouji-zhezhao {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1500;
}

.shouji-zhezhao.dakai { display: block; }

.shouji-caidan {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 80vw;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.shouji-caidan.dakai { transform: translateX(0); }

.shouji-caidan-tou {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 16px;
  font-weight: 600;
}

.shouji-caidan-guanbi {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.shouji-caidan-liebiao {
  list-style: none;
  padding: 8px 0;
}

.shouji-caidan-liebiao > li {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.shouji-caidan-liebiao > li > a {
  display: block;
  padding: 15px 24px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.shouji-caidan-liebiao > li > a:active { background: rgba(0,0,0,0.05); }

.shouji-zhu {
  display: flex;
  align-items: center;
  padding: 0 24px;
  cursor: pointer;
  min-height: 48px;
}

.shouji-zhu a {
  flex: 1;
  padding: 15px 0;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.shouji-jiantou {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #bbb;
  transition: transform .25s ease;
}

.shouji-zhankai.dakai > .shouji-zhu .shouji-jiantou {
  transform: rotate(90deg);
}

.shouji-erji {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: rgba(255, 255, 255, 0.25);
}

.shouji-zhankai.dakai > .shouji-erji {
  max-height: 500px;
}

.shouji-fenlei {
  padding: 15px 32px 4px 32px;
  font-size: 12px;
  color: #999;
  font-weight: 600;
}

.shouji-erji > li > a {
  display: block;
  padding: 12px 32px 12px 44px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.shouji-erji > li > a:active { background: rgba(0,0,0,0.05); }

.haibao {
  overflow: hidden;
}

.haibao-huadong {
  display: flex;
  transition: transform 0.6s ease;
}

.haibao-tu {
  width: 100%;
  flex-shrink: 0;
  display: block;
}
}

.lunbo2 {
  object-position: 50% 0%;
}

.jianjie-biaoti,
.zhanhui-biaoti,
.shangcheng-biaoti {
  text-align: center;
  font-weight: 400;
  color: var(--hei);
}

.jianjie-biaoti,
.zhanhui-biaoti {
  font-size: 40px;
  margin: 0 0 48px;
}

.shangcheng-biaoti {
  font-size: 28px;
  margin-bottom: 40px;
}

.jianjie-biaoti::before,
.jianjie-biaoti::after,
.zhanhui-biaoti::before,
.zhanhui-biaoti::after,
.shangcheng-biaoti::before,
.shangcheng-biaoti::after {
  content: "\2014";
  margin: 0 15px;
  color: #999;
}

.zhanhui-biaoti {
  padding-top: 60px;
  background: var(--bai);
}

.anli {
  padding: 40px 0;
  text-align: center;
  background: var(--bai);
}

.anli-biaoti {
  font-size: 40px;
  font-weight: 400;
  color: var(--hei);
  margin: 0;
  padding-bottom: 24px;
  box-shadow: 0 4px 8px -6px rgba(0,0,0,0.15);
}

.anli-biaoti::before,
.anli-biaoti::after {
  content: "\2014";
  margin: 0 15px;
  color: #999;
}

.anli-wangge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 960px;
  max-width: 90%;
  margin: 48px auto 0;
}

.anli-ka {
  text-align: center;
  cursor: pointer;
}

.anli-tu {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f2f3f5;
  border-radius: 4px;
  margin-bottom: 12px;
  object-fit: cover;
}

.anli-shipin {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #000;
  border-radius: 4px;
  margin-bottom: 12px;
  object-fit: cover;
  outline: none;
}

.anli-ming {
  font-size: 14px;
  color: var(--hui);
}

.anli-miaoshu {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
  line-height: 1.6;
}

.jianjie {
  padding: 60px 0;
}

.jianjie-wen {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.wen1 {
  font-size: 17px;
  color: #2a2a2a;
  white-space: nowrap;
  text-align: center;
  margin: 0;
}

.wen2 {
  display: block;
  white-space: nowrap;
  text-align: center;
  margin: 0 0 24px;
}

.wen3 {
  display: block;
  white-space: nowrap;
  text-align: center;
  margin: 0 0 24px;
}

.wen4 {
  white-space: nowrap;
  text-align: center;
  margin: 0 0 24px;
}

.wen5 {
  text-align: center;
  margin: 0;
}

.wen6 {
  text-align: center;
  margin: 0;
}

.wen7 {
  text-align: center;
  margin: 0 0 24px;
}

.wen8 {
  text-align: center;
  margin: 0;
}

.changfang {
  width: 100%;
  margin-bottom: 60px;
}

.changfang-biaoti {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 48px;
  color: var(--hei);
}

.changfang-biaoti::before,
.changfang-biaoti::after {
  content: "\2014";
  margin: 0 15px;
  color: #999;
}

.changfang-wangge {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 1000px;
  max-width: 92%;
  margin: 0 auto 48px;
}

.cp-shipin-ka {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.cp-shipin {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border-radius: 6px;
  outline: none;
}

.cp-shipin-ming {
  display: block;
  font-size: 14px;
  color: var(--hui);
  margin-top: 10px;
}

.yingpian {
  width: 100%;
  margin-bottom: 40px;
}

.yingpian-shipin {
  width: 99%;
  display: block;
  margin: 0 auto;
}

.hidden { display: none; }

.chanpin {
  display: flex;
  gap: 20px;
  padding: 60px 0;
  margin-bottom: 0;
  min-height: 300px;
}

.chanpin-wangge-rongqi {
  flex: 1;
}

.chanpin-wangge {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  scroll-margin-top: 90px;
}

.chanpin-ka {
  background: var(--bai);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.chanpin-ka:hover {
  margin-top: -5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-color: var(--lan);
}

.chanpin-ka-tu {
  width: 100%;
  height: 260px;
  background: var(--bai);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  overflow: hidden;
}

.chanpin-ka-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.chanpin-ka-wen {
  padding: 14px;
  text-align: center;
  font-size: 15px;
  color: #666;
}

.zhankai-an {
  text-align: center;
  padding: 10px;
  color: #999;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.zhankai-an:hover {
  color: var(--lan);
}

.shangcheng {
  text-align: center;
  margin-bottom: 0;
}

.shangcheng-rukou {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 30px;
  align-items: center;
}

.shangcheng-xiang {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}

.shangcheng-tu {
  width: 100%;
  height: auto;
  display: block;
}

.shangcheng-biaoqian {
  font-size: 14px;
  color: #999;
  margin-top: 8px;
}

.yejiao {
  background: var(--hei);
  color: #999;
  padding: 56px 0 20px;
  font-size: 13px;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  margin-top: auto;
  flex-shrink: 0;
}

.yejiao-nei {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
}

.yejiao-shang {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin-bottom: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
}

.lianxi h3,
.shejiao h3 {
  color: var(--bai);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lianxi h3::after,
.shejiao h3::after {
  content: "";
  display: inline-block;
  height: 1em;
  width: 2px;
  background: var(--lan);
}

.lianxi p {
  margin-bottom: 10px;
  font-weight: 500;
}

.shejiao-tubiao {
  display: flex;
  gap: 15px;
}

.shejiao-tubiao .t {
  width: 36px;
  height: 36px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bai);
  cursor: pointer;
  transition: background .3s;
  position: relative;
}

.shejiao-tubiao .t img {
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}

.shejiao-tubiao .t:hover {
  background: var(--lan);
}

.shejiao-tubiao .t.no-hover:hover {
  background: #333;
}

.shejiao-tubiao .t .erweima {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  z-index: 999;
  background: var(--bai);
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.shejiao-tubiao .t .erweima::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--bai);
}

.shejiao-tubiao .t .erweima img {
  width: 110px;
  height: 110px;
  max-width: 110px;
  max-height: 110px;
  display: block;
}

.shejiao-tubiao .t:hover .erweima {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.yejiao-xia {
  text-align: center;
  font-size: 12px;
  color: var(--hui);
}

.yejiao-xia a {
  color: var(--hui);
  text-decoration: none;
  vertical-align: middle;
}

.yejiao-gongan {
  height: 14px;
  width: auto;
  vertical-align: middle;
  margin-right: 4px;
}

.tw-zhezhao {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.75);
  z-index: 300;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.tw-zhezhao.show { display: flex; }

.tw-tanchuang {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  width: 720px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.tw-guanbi {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 26px;
  line-height: 1;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.tw-guanbi:hover { color: #333; }

.tw-zhutu {
  position: relative;
  text-align: center;
  background: #f2f3f5;
  border-radius: 6px;
  overflow: hidden;
}

.tw-zhutu img {
  max-width: 100%;
  max-height: 480px;
  display: block;
  margin: 0 auto;
}

.tw-jian {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 56px;
  font-size: 34px;
  line-height: 56px;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border: none;
  cursor: pointer;
}

.tw-jian:hover { background: rgba(0,0,0,0.6); }

.tw-jian.tou { left: 8px; }
.tw-jian.you { right: 8px; }

.tw-xia {
  text-align: center;
  margin-top: 16px;
}

.tw-ming {
  font-size: 18px;
  font-weight: 400;
  color: var(--hei);
  margin: 0 0 8px;
}

.tw-miaoshu {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  margin: 0 0 12px;
}

.tw-suolue {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.tw-suo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
}

.tw-suo.dong {
  border-color: #8c735a;
  opacity: 1;
}

.err-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px 24px;
}

.err-code {
  font-size: 120px;
  font-weight: 200;
  color: #d5d5d5;
  line-height: 1;
  margin-bottom: 16px;
}

.err-title {
  font-size: 22px;
  color: #333;
  margin-bottom: 12px;
}

.err-desc {
  font-size: 14px;
  color: #999;
  margin-bottom: 36px;
}

.err-link {
  display: inline-block;
  padding: 10px 32px;
  background: #8c735a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.err-link:hover {
  background: #755f4a;
}

.privacy-wrap {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 24px;
  color: #333;
}

.privacy-wrap h1 {
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.privacy-wrap h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 28px 0 12px;
}

.privacy-wrap p {
  font-size: 14px;
  line-height: 2;
  color: #666;
  text-indent: 2em;
}

.privacy-wrap .update-date {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-bottom: 40px;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hambao { display: flex; }
  .caidan { display: none; }
  .jucaidan { display: none !important; }

  .daohang { height: 56px; }
  .daohang-nei { padding: 0 20px; }

  .biaozhi-tu { height: 36px; }
  .biaozhi-biaoyu { font-size: 13px; }
  .biaozhi-yingwen { font-size: 9px; }

  .chanpin-wangge { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .chanpin-ka-tu { height: 200px; }

  .anli-wangge { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wenzhang-wangge { grid-template-columns: repeat(2, 1fr); }

  .wen1, .wen2, .wen3, .wen4, .wen5, .wen6, .wen7, .wen8,
  .bs1, .bs2, .bs3, .bs4, .bs5, .bs6, .bs7 { white-space: normal; }
  .wen2, .wen3 { display: block; }
  .jianjie-wen, .pinpaigushi-wen { padding: 0 16px; }
  .jianjie-biaoti, .zhanhui-biaoti { font-size: 28px; margin-bottom: 32px; }
  .pinpaigushi-biaoti { font-size: 26px; }
}

@media (max-width: 768px) {
  .daohang { height: 52px; }
  .biaozhi-tu { height: 30px; }
  .biaozhi-biaoyu { font-size: 11px; }
  .biaozhi-yingwen { font-size: 7px; }

  .jianjie { padding: 40px 20px; }
  .jianjie-biaoti, .zhanhui-biaoti { font-size: 26px; margin-bottom: 28px; }
  .zhanhui-biaoti { padding-top: 0; }
  .jianjie-biaoti::before, .jianjie-biaoti::after,
  .zhanhui-biaoti::before, .zhanhui-biaoti::after,
  .shangcheng-biaoti::before, .shangcheng-biaoti::after { margin: 0 8px; }
  .jianjie-wen { font-size: 14px; padding: 0 16px; }
  .wen1, .wen2, .wen3, .wen4, .wen5, .wen6, .wen7, .wen8 { white-space: normal; font-size: 14px; }

  .wen2 { margin: 0 0 16px; display: block; }
  .wen3 { display: block; }
  .wen4 { margin: 0 0 16px; }
  .wen7 { margin: 0 0 16px; }

  .changfang { margin-bottom: 40px; }

  .chanpin { padding: 40px 0; margin-bottom: 0; min-height: auto; }
  .chanpin-wangge { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .chanpin-ka-wen { font-size: 13px; padding: 10px; }
  .chanpin-ka-tu { height: 180px; }

  .anli { padding: 40px 0; }
  .anli-biaoti { font-size: 26px; padding-bottom: 16px; }
  .anli-biaoti::before, .anli-biaoti::after { margin: 0 8px; }
  .anli-wangge { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }

  .shangcheng { margin-bottom: 24px; }
  .shangcheng-biaoti { font-size: 22px; margin-bottom: 24px; }
  .shangcheng-rukou { gap: 16px; }
  .shangcheng-xiang { width: 80px; }
  .shangcheng-biaoqian { font-size: 12px; }

  .yejiao { padding: 36px 0 16px; font-size: 12px; }
  .yejiao-shang { flex-direction: column; gap: 24px; margin-bottom: 24px; padding-bottom: 24px; }
  .lianxi h3, .shejiao h3 { font-size: 14px; margin-bottom: 14px; }

  .err-code { font-size: 80px; }
  .err-title { font-size: 18px; }

  .privacy-wrap { margin: 40px auto; }
  .privacy-wrap h1 { font-size: 22px; }
  .privacy-wrap h2 { font-size: 16px; }
  .privacy-wrap p { font-size: 13px; text-indent: 1.5em; }
}

@media (max-width: 480px) {
  .daohang { height: 50px; }
  .biaozhi-tu { height: 28px; }
  .biaozhi-biaoyu { font-size: 10px; }
  .biaozhi-yingwen { font-size: 6px; }

  .chanpin-wangge { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .chanpin-ka-tu { height: 140px; }

  .anli-wangge { grid-template-columns: 1fr 1fr; gap: 10px; }

  .yejiao-shang { gap: 18px; }
  .shejiao-tubiao { gap: 10px; }
  .shejiao-tubiao .t { width: 32px; height: 32px; }
  .shejiao-tubiao .t img { max-width: 16px; max-height: 16px; }

  .shouji-caidan { width: 260px; }
  .shouji-caidan-tou { padding: 16px 20px; font-size: 15px; }
  .shouji-caidan-guanbi { font-size: 24px; }
  .shouji-caidan-liebiao > li > a { padding: 13px 20px; font-size: 15px; }
  .shouji-zhu { padding: 0 20px; min-height: 44px; }
  .shouji-zhu a { padding: 13px 0; font-size: 15px; }
  .shouji-fenlei { padding: 12px 28px 4px 28px; font-size: 11px; }
  .shouji-erji > li > a { padding: 10px 28px 10px 38px; font-size: 13px; }

  .shangcheng-rukou { gap: 12px; }
  .shangcheng-xiang { width: 64px; }
  .jianjie { padding: 36px 16px; }
  .jianjie-biaoti, .zhanhui-biaoti, .anli-biaoti { font-size: 22px; margin-bottom: 24px; }
  .jianjie-wen { font-size: 13px; padding: 0 8px; }
  .wen1, .wen2, .wen3, .wen4, .wen5, .wen6, .wen7, .wen8 { font-size: 13px; }
  .shangcheng-biaoti { font-size: 20px; margin-bottom: 20px; }
  .chanpin { padding: 36px 0; margin-bottom: 0; }
  .anli { padding: 36px 0; }
  .shangcheng { margin-bottom: 20px; }
}
