.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: 1.4rem;
  }
  .phoneheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 1.4rem;
    background: #fff;
    z-index: 999;
    box-shadow: 0 1px 3px #ccc;
    padding: 0 0.5rem;
  }
  .phoneheader .logo {
    width: 1.6rem;
  }
  .phoneheader .logo img {
    width: 100%;
    display: block;
  }
  .phoneheader .menu img {
    width: 0.5rem;
  }
  .mobile-nav .sub {
    display: none;
  }
  .mobile-nav .sub > a {
    display: block;
    text-align: left;
    padding-left: 0.4rem;
    font-weight: normal;
  }
  .pheader-right {
    display: flex;
    align-items: center;
  }
  .pheader-right .search-btn {
    margin-right: 0.5rem;
    filter: brightness(0);
    width: 0.5rem;
  }
  .mobile-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
  }
  .mobile-container .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 1rem 0.12rem;
    overflow-y: scroll;
  }
  .mobile-container .mobile-nav img {
    width: 0.4rem;
    position: absolute;
    right: 0.4rem;
    top: 0.4rem;
  }
  .mobile-container .mobile-nav ul li {
    border-bottom: 1px solid #eeeeee;
    line-height: 0.8rem;
    text-align: left;
    padding-left: 0.6rem;
  }
  .mobile-container .mobile-nav ul li a {
    font-size: 0.34rem;
    font-family: Bo;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .wrap {
    width: 80%;
  }
}

.kwj-inquiry-toast {
  position: fixed;
  left: 50%;
  bottom: 0.48rem;
  z-index: 9999;
  transform: translateX(-50%) translateY(0.2rem);
  padding: 0.12rem 0.28rem;
  border-radius: 0.24rem;
  background: rgba(34, 34, 34, 0.92);
  color: #fff;
  font-size: 0.14rem;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.kwj-inquiry-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
