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

.header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(180deg, #111929 5%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.3s;
}

.header.notop {
  background: rgba(1, 11, 33, 0.6);
}

.header h1 {
  color: #fff;
  font-weight: bold;
  font-size: 0;
}

.header .w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.header .w .logo {
  padding-top: 0.2rem;
  width: fit-content;
  display: flex;
  align-items: baseline;
}

.header .w .logo img {
  width: 30%;
  height: auto;
}

.header .w .logo span {
  color: #7fbf42;
  margin-left: 0.1rem;
  font-size: 0.2rem;
  font-weight: bold;
}

.header .w nav {
  display: flex;
  align-items: center;
}

.header .w nav .navList {
  display: flex;
}

.header .w nav .navList li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0.1rem;
}

.header .w nav .navList li a {
  color: #fff;
  display: block;
  height: 100%;
  padding: 0.3rem 0.1rem;
  font-size: 0.16rem;
  white-space: nowrap;
}

.header .w nav .navList li a:hover {
  color: #7fbf42;
}

.header .w nav .navList li .mask {
  top: 0.8rem;
  height: auto;
  position: absolute;
  width: fit-content;
  background: #8b8b8b;
  white-space: nowrap;
  padding: 0.1rem;
  text-align: center;
  display: none;
  box-sizing: border-box;
  border-top: 0.04rem solid #7fbf42;
  box-shadow: 0 0 5px #666666;
  color: #fff;
}

.header .w nav .navList li .mask a {
  color: #fff;
  display: block;
  padding: 0.1rem;
}

.header .w nav .navList li .mask a:hover {
  color: #7fbf42;
  text-decoration: underline;
}

.header .w nav .navList li.active .title a {
  color: #7fbf42;
}

.header .w nav .navList .first .mask {
  width: max-content;
  padding: 0.3rem;
  text-align: left;
  left: 0;
}

.header .w nav .navList .first .mask a {
  padding: 0;
}

.header .w nav .navList .first .mask .box .title {
  margin-bottom: 0.3rem;
}

.header .w nav .navList .first .mask .ls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0.2rem;
  column-gap: 0.4rem;
}

.header .w nav .menu {
  display: flex;
  align-items: center;
  margin-left: 0.3rem;
}

.header .w nav .menu .icons {
  margin: 0 0.2rem;
}

.header .w nav .menu .icons img {
  width: 0.1rem;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.header .w nav .menu .icon img {
  width: 0.3rem;
  height: auto;
  vertical-align: middle;
}

.header .w nav .menu a {
  color: #fff;
  margin-left: 0.1rem;
  font-size: 0.16rem;
  white-space: nowrap;
}

.header .w nav .menu::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.18rem;
  margin: 0 0.2rem;
  background: #fff;
}

.footer {
  border-top: 0.04rem solid #7fbf42;
}

.footer .footer-content {
  padding: 0.4rem 0 0.5rem;
  display: flex;
  justify-content: space-between;
}

.footer .footer-content .le {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-content .le .logo {
  width: 2.5rem;
  height: 1.46rem;
}

.footer .footer-content .le .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .footer-content .le .phones {
  display: flex;
  align-items: center;
}

.footer .footer-content .le .phones img {
  width: 0.2rem;
  height: 0.24rem;
}

.footer .footer-content .le .phones span {
  margin-left: 0.1rem;
  font-size: 0.24rem;
  color: #7fbf42;
}

.footer .footer-content .le .ewm {
  margin-top: 0.33rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .footer-content .le .ewm img {
  width: 1.32rem;
  height: 1.32rem;
}

.footer .footer-content .le .ewm p {
  font-size: 0.18rem;
  color: #333;
  margin-top: 0.23rem;
}

.footer .footer-content .navs {
  margin-left: 1.7rem;
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.footer .footer-content .navs h5 a {
  font-size: 0.24rem;
  color: #333;
}

.footer .footer-content .navs .subnavs {
  margin-top: 0.41rem;
}

.footer .footer-content .navs .subnavs li a {
  font-size: 0.16rem;
  color: #333;
  display: block;
  margin: 0.1rem 0;
}

.footer .footer-content .navs .subnavs li a:hover {
  color: #7fbf42;
}

.footer .phone {
  display: none;
}

.footer .copyright {
  background-color: #d2d2d2;
}

.footer .copyright .w {
  padding: 0.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.14rem;
  color: #666666;
}

.footer .copyright .w .toTop {
  font-size: 0.14rem;
}

.footer .copyright .w .toTop img {
  width: 0.34rem;
  height: 0.28rem;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .w {
    width: 92.5%;
  }

  header {
    display: none;
  }

  .phoneheader {
    display: block;
    height: 1rem;
    background-color: #fff;
    position: fixed;
    z-index: 99;
    inset: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.2rem;
    border-bottom: 0.01rem solid #e6e6e6;
  }

  .phoneheader .le {
    width: fit-content;
    display: flex;
    align-items: flex-end;
    position: relative;
  }

  .phoneheader .le span {
    position: absolute;
    font-size: 0.28rem;
    right: 6%;
    top: 53%;
    display: block;
    color: #7fbf42;
    font-weight: bold;
  }

  .phoneheader .logo {
    padding-top: 0.3rem;
    height: auto;
    width: fit-content;
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
  }

  .phoneheader .logo img {
    width: 45%;
    display: block;
    height: auto;
  }

  .phoneheader .menu {
    width: 0.5rem;
    vertical-align: middle;
  }

  .phoneheader .menu img {
    width: 100%;
    display: block;
    height: auto;
  }

  .mobile-container {
    position: fixed;
    z-index: 9999999;
    top: 1rem;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: 0.3s;
    transform: translateX(100%);
    display: block;
  }

  .mobile-container.active {
    transform: translateX(0);
  }

  .mobile-container .footer-list {
    color: #999;
    padding-top: 0.6rem;
  }

  .mobile-container .footer-list a {
    color: #000;
  }

  .mobile-container .footer-list li {
    position: relative;
    padding: 0 0.4rem;
  }

  .mobile-container .footer-list li.nosec .top a {
    flex: 1;
    font-size: 0.35rem;
    font-weight: bold;
    color: #7fbf42;
  }

  .mobile-container .footer-list .top {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid #d6d6d6;
    -webkit-tap-highlight-color: rgba(0, 28, 88, 0.2);
  }

  .mobile-container .footer-list .top a {
    font-size: 0.35rem;
  }

  .mobile-container .footer-list .top .icon {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    padding-right: 0.2rem;
  }

  .mobile-container .footer-list .top .icon.active span {
    transform: rotateZ(90deg);
  }

  .mobile-container .footer-list .top span {
    transition: 0.3s;
    font-size: 0.38rem;
    text-align: right;
    color: #000;
  }

  .mobile-container .footer-list .second {
    display: none;
    padding-top: 0.15rem;
  }

  .mobile-container .footer-list .second a {
    display: block;
    font-size: 0.32rem;
    color: #000;
    line-height: 2em;
    padding: 0.1rem 0;
    padding-left: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer {
    border-top: 0.04rem solid #7fbf42;
  }

  .footer .footer-content {
    padding: 0.4rem 0 0.5rem;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }

  .footer .footer-content .le {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    margin-right: auto;
    width: 100%;
  }

  .footer .footer-content .le .phones {
    display: none;
  }

  .footer .footer-content .le .ewm {
    margin-top: 0.33rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer .footer-content .le .ewm img {
    width: 2rem;
    height: 2rem;
  }

  .footer .footer-content .le .ewm p {
    font-size: 0.28rem;
    color: #333;
    margin-top: 0.05rem;
  }

  .footer .footer-content .logo {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
  }

  .footer .footer-content .logo img {
    width: 50%;
    height: 100%;
    object-fit: contain;
  }

  .footer .footer-content .navs {
    margin-top: 0.1rem;
    margin-left: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer .footer-content .navs .inner {
    margin-top: 0.3rem;
  }

  .footer .footer-content .navs h5 a {
    font-size: 0.28rem;
    color: #333;
  }

  .footer .footer-content .navs .subnavs {
    margin-top: 0.1rem;
    display: flex;
    flex-wrap: wrap;
  }

  .footer .footer-content .navs .subnavs li {
    margin-right: 0.2rem;
  }

  .footer .footer-content .navs .subnavs li a {
    font-size: 0.28rem;
    color: #333;
    display: block;
    margin: 0.1rem 0;
  }

  .footer .footer-content .navs .subnavs li a:hover {
    color: #7fbf42;
  }

  .footer .phone {
    display: block;
  }

  .footer .pc {
    display: none;
  }

  .footer .copyright {
    background-color: #d2d2d2;
  }

  .footer .copyright .w {
    padding: 0.1rem 0;
    display: block;
    font-size: 0.24rem;
    color: #666666;
    text-align: center;
  }

  .footer .copyright .w .toTop {
    display: none;
  }
}

@media screen and (min-width: 937px) and (max-width: 1170px) {
  .w {
    width: 90%;
  }
}