.weishipin-main {
  background-color: #f4f2ff;
}

.weishipin-banner {
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.banner-img {
  display: block;
  width: 100%;
  height: auto;
}

.weishipin-content {
  width: 1340px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 100px;
  box-sizing: border-box;
}

.weishipin-featured {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.featured-img {
  display: block;
  width: 100px;
  height: 100px;
}

.weishipin-featured-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-title {
  font-weight: 700;
  line-height: 56px;
  font-size: 48px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #2244f8 0%, #a785ff 100%);
}

.featured-subtitle {
  font-weight: 500;
  text-align: center;
  line-height: 56px;
  font-size: 30px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #2244f8 0%, #a785ff 100%);
}

.weishipin-items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.weishipin-item {
  flex-shrink: 0;
  width: calc(100% / 3 - 40px * 2 / 3);
  border-radius: 16px;
  overflow: hidden;
  padding: 4px;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #fff;
  position: relative;
}

.weishipin-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #3b5cf9 0%, #e8bbd8 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 12px;
}

.item-img-box {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 420 / 236;
  border-radius: 16px;
  overflow: hidden;
}

.item-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-title {
  position: relative;
  z-index: 2;
  padding: 18px 0 16px;
  color: #1d2129;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.weishipin-item:hover {
  box-shadow: 0 2px 16px 4px #3e1e9e14;
}

.weishipin-item:hover::before {
  opacity: 1;
}

.weishipin-item:hover .item-title {
  color: #ffffff;
}

.footer-pc {
  display: block;
}

.footer-mobile {
  display: none;
}

@media screen and (max-width: 425px) {
  body {
    min-width: auto;
  }

  .toper-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: center;
  }

  .weishipin-main {
    min-height: calc(100vh - 60px - 294px);
  }

  .weishipin-content {
    width: 100%;
    padding: 40px 24px 50px 24px;
  }

  .weishipin-featured {
    margin-bottom: 20px;
  }

  .featured-img {
    width: 50px;
    height: 50px;
  }

  .featured-title {
    font-size: 24px;
    line-height: 28px;
  }

  .featured-subtitle {
    font-size: 15px;
    line-height: 28px;
  }

  .weishipin-items {
    gap: 20px;
  }

  .weishipin-item {
    width: 100%;
    border-radius: 8px;
  }

  .item-img-box {
    border-radius: 8px;
  }

  .item-title {
    font-size: 15px;
    line-height: 20px;
    padding: 10px 0 8px;
  }

  .footer-pc {
    display: none;
  }

  .footer-mobile {
    display: block;
  }

  .footer-mobile .footer {
    width: 100%;
    background: #053ca5;
    padding-top: 26px;
  }

  .footer-mobile .footer>a {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    color: #fff;
  }

  .footer-mobile .footer p {
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    color: #fff;
  }

  .footer-mobile .footer p a {
    color: #fff;
  }

  .footer-mobile .footer>p>a>img {
    vertical-align: top;
    margin-top: 2px;
    margin-right: 4px;
  }

  .footer-mobile .footer a {
    display: inline-block;
    text-align: center;
    vertical-align: top;
  }

  .footer-mobile .footer span {
    display: inline-block;
    text-align: center;
  }

  .footer-mobile .footer p span img {
    margin-top: 10px !important;
    margin-right: 10px !important;
  }

  .footer-mobile .dzjgs {
    margin-top: 7px !important;
  }

  body.UseInMobile .footer-mobile .footer {
    height: auto;
  }
}