.mobile-container,
.phoneheader {
  display: none;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  html {
    font-size: 50px;
  }
  .wrap {
    width: 92.5%;
  }
  header {
    display: none;
  }
  .dian {
    display: block;
    height: 70px;
  }
  .phoneheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    z-index: 999;
    /* box-shadow: 0 1px 3px #000; */
    padding: 0 25px;
  }
  .phoneheader .logo {
    width: 120px;
  }
  .phoneheader .logo img {
    width: 100%;
    display: block;
  }
  .phoneheader .menu img {
    width: 20px;
    filter: brightness(0);
  }
  .mobile-nav .sub {
    display: none;
  }
  .mobile-nav .sub > a {
    display: block;
    text-align: left;
    padding-left: 20px;
    font-weight: normal;
  }
  .pheader-right {
    display: flex;
    align-items: center;
  }
  .pheader-right .search-btn {
    margin-right: 25px;
    filter: brightness(0);
    width: 25px;
  }
  .mobile-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 18, 69, 0.45);
    z-index: 99999;
  }
  .mobile-container .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    padding: 0;
    overflow-y: auto;
    box-shadow: -6px 0 32px rgba(0, 18, 69, 0.12);
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 18px;
  }
  .mobile-nav-logo {
    display: block;
    width: 140px;
    flex-shrink: 0;
  }
  .mobile-nav-logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .mobile-nav-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin: -6px -6px -6px 0;
    border: none;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-nav-close:active {
    background: #f3f4f6;
  }
  .mobile-nav-close img {
    width: 12px;
    display: block;
  }
  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 8px 0 40px;
  }
  .mobile-nav-list li {
    margin: 0;
    padding: 0;
  }
  .mobile-nav-list li a {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    font-family:
      "PingFang SC",
      "Microsoft YaHei",
      -apple-system,
      BlinkMacSystemFont,
      sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
  }
  .mobile-nav-list li a:active {
    background: #f8f9fc;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .wrap {
    width: 80%;
  }
}

/* 后台单页富文本：与整站留白、最小高度，避免页脚视觉上顶到首图 */
.page-cms-body {
  background: #fff;
  clear: both;
}
.page-cms-body .page-cms-inner {
  min-height: 48vh;
  padding-top: 40px;
  padding-bottom: 60px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.page-cms-body .page-cms-inner p {
  margin: 0 0 1em;
}
.page-cms-body .page-cms-inner img {
  max-width: 100%;
  height: auto;
}
