.hyWrap {
  padding: 0.34rem 0 1rem;
  background: #ffffff;
}
.hyWrap .main {
  max-width: 16rem;
}
.insideTabs {
  height: 0.6rem;
  display: flex;
  align-items: center;
  border-bottom: 0.01rem solid #e5e5e5;
  overflow-x: auto;
}
.insideTabs a {
  height: 100%;
  padding: 0 0.28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.15rem;
  line-height: 0.22rem;
  color: #777777;
  transition: all 0.3s linear;
}
.insideTabs a::after {
  content: "";
  width: 0;
  height: 0.02rem;
  position: absolute;
  left: 50%;
  bottom: -0.01rem;
  transform: translateX(-50%);
  background: #003580;
  transition: all 0.3s linear;
}
.insideTabs a.active,
.insideTabs a:hover {
  font-weight: 600;
  color: #003580;
}
.insideTabs a.active::after,
.insideTabs a:hover::after {
  width: 100%;
}
.insideTabs a:first-child {
  padding-left: 0;
}
.solutionHero {
  height: 3.32rem;
  margin-top: 0.66rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 53, 128, 0.96) 0%,
      rgba(0, 53, 128, 0.72) 37%,
      rgba(0, 53, 128, 0.1) 100%
    ),
    #d9e6f5;
}
.solutionHero > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.solutionHeroText {
  position: absolute;
  left: 0.82rem;
  top: 50%;
  transform: translateY(-50%);
}
.solutionHeroText h1 {
  font-weight: 600;
  font-size: 0.4rem;
  color: #ffffff;
}
.tagList {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.tagList span {
  width: 1.4rem;
  height: 0.48rem;
  border-radius: 0.25rem 0.25rem 0.25rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  font-weight: 500;
  font-size: 0.18rem;
  color: #878787;
  cursor: pointer;
  transition: all 0.3s linear;
}
.tagList span.active {
  background: #f5b546;
  color: #ffffff;
}

.solutionList {
  margin-top: 0.3rem;
}
.solutionList[data-solution-panel] {
  display: none;
}
.solutionList[data-solution-panel].active {
  display: block;
}
.solutionCard {
  padding: 0.45rem;
  margin-bottom: 0.26rem;
  display: grid;
  grid-template-columns: 1fr 3.74rem;
  gap: 0.72rem;
  align-items: center;
  background: #f7f7f7;
}
.solutionInfo h2 {
  font-weight: 500;
  font-size: 0.28rem;
  line-height: 0.34rem;
  color: #222222;
}
.solutionInfo > span {
  width: 0.4rem;
  height: 0.02rem;
  background: #c41e2a;
  border-radius: 0rem 0rem 0rem 0rem;
  display: block;
  margin-top: 0.15rem;
}
.solutionInfo > p {
  margin-top: 0.3rem;
  font-weight: 500;
  font-size: 0.18rem;
  color: #333333;
}
.specGrid {
  margin-top: 0.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.11rem 0.2rem;
  align-items: start;
}
.specItem {
  border: 0.01rem solid #c7d8ed;
  background: #f1f6ff;
}
.specItem.active {
  background: #eaf3ff;
}
.specHead {
  padding: 0.16rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.specHead b {
  flex: 1;
  font-weight: 400;
  font-size: 0.18rem;
  color: #003580;
  position: relative;
  padding-left: 0.13rem;
}
.specHead b::before {
  content: "";
  width: 0.04rem;
  height: 0.04rem;
  position: absolute;
  left: 0;
  top: 0.08rem;
  border-radius: 50%;
  background: #003580;
}
.specHead img {
  width: 0.12rem;
  height: 0.12rem;
  display: block;
  transition: all 0.3s linear;
}
.specBody {
  padding: 0 0.15rem 0.14rem;
  display: none;
}
.specBody p {
  font-weight: 400;
  font-size: 0.16rem;
  color: #666666;
  line-height: 0.26rem;
}
.solutionPic {
  width: 3.74rem;
  height: 2.8rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solutionPic img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.solutionCta {
  margin-top: 0.4rem;
  padding: 0.46rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(
      90deg,
      rgba(0, 53, 128, 0.96) 0%,
      rgba(0, 77, 164, 0.92) 100%
    ),
    #003580;
  position: relative;
}
.solutionCta > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionCta > div {
  position: relative;
  z-index: 10;
}
.solutionCta h2 {
  font-weight: 600;
  font-size: 0.24rem;
  color: #ffffff;
}
.solutionCta p {
  margin-top: 0.15rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
}
.ctaBtns {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ctaBtns a {
  width: 1.22rem;
  height: 0.4rem;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  background: #ffffff;
  font-weight: 400;
  font-size: 0.16rem;
  color: #003580;
}
.ctaBtns a:last-child {
  background: #c41e2a;
  color: #ffffff;
}
.ctaBtns a:last-child .imgBox {
  background: #fff;
}
.ctaBtns a:hover img {
  transform: rotate(45deg);
}
.ctaBtns a .imgBox {
  width: 0.28rem;
  height: 0.28rem;
  background: #003580;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.ctaBtns a .imgBox img {
  width: 0.2rem;
  height: 0.2rem;
  transition: all 0.6s;
}

.specBody p.xqd {
  font-weight: 400;
  font-size: 0.16rem;
  color: #003580;
  margin-top: 0.14rem;
  margin-bottom: 0.14rem;
}
@media (max-width: 1024px) {
  .hyWrap {
    padding: 0.28rem 0 0.78rem;
  }
  .insideTabs a {
    padding: 0 0.2rem;
  }
  .solutionHero {
    height: 2.8rem;
    margin-top: 0.42rem;
  }
  .solutionCard {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .solutionPic {
    width: 100%;
  }
  .solutionCta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.26rem;
    padding: 0.32rem;
  }
}
@media (max-width: 560px) {
  .solutionHeroText {
    left: 0.3rem;
  }
  .solutionHeroText h1 {
    font-size: 0.3rem;
    line-height: 0.42rem;
  }
  .tagList {
    flex-wrap: wrap;
  }
  .solutionCard {
    padding: 0.28rem 0.2rem;
  }
  .specGrid {
    grid-template-columns: 1fr;
  }
  .ctaBtns {
    width: 100%;
    flex-wrap: wrap;
  }
}
