.operationSupport {
  overflow: hidden;
}
.product-banner {
  width: 100%;
  height: 60vw;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  background: #0b1e9a;
}
.product-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(108deg, #2a1794 0%, #1731d7 48%, #0444d9 100%);
}
.product-inner::before {
  content: "";
  position: absolute;
  left: -8%;
  top: -28%;
  width: 46%;
  height: 110%;
  background: radial-gradient(
    circle,
    rgba(143, 78, 255, 0.38),
    rgba(143, 78, 255, 0) 68%
  );
  pointer-events: none;
}
.product-inner::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -18%;
  width: 46%;
  height: 70%;
  background: radial-gradient(
    circle,
    rgba(0, 225, 255, 0.18),
    rgba(0, 225, 255, 0) 70%
  );
  pointer-events: none;
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
.banner-inner .banner-inner-list {
  width: 47%;
  box-sizing: border-box;
}
.banner-inner h1 {
  margin: 0 0 11px;
  font-weight: 800;
  font-size: 40px;
  color: #ffffff;
  line-height: 52px;
  letter-spacing: 3px;
}
.banner-inner h2 {
  margin: 0 0 22px;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  line-height: 32px;
}
.banner-inner p {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 32px;
}
.banner-inner-list-icon {
  flex: 1;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  right: -40px;
  bottom: 0;
  z-index: 1;
}
.banner-inner-list-icon img {
  display: block;
  width: auto;
  height: 100%;
  filter: drop-shadow(0 24px 42px rgba(0, 10, 80, 0.28));
}
.operationSupport-enhanced .operation-banner {
  transform: translateY(calc(var(--operation-banner-y, 0px) * -0.12));
}
.product-plate {
  width: 100%;
  box-sizing: border-box;
  padding: 76px 0;
  overflow: hidden;
  background: #ffffff;
}
.plate-one {
  border-top: 1px solid #eef2ff;
}
.plate-two,
.plate-four {
  background: #f6f8ff;
}
.plate-three {
  background: #ffffff;
}
.plate-one-inner {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
.plate-one-content {
  flex: 0 0 48%;
  max-width: 620px;
}
.plate-one-content h2 {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 30px;
  color: #333333e3;
  line-height: 42px;
}
.plate-one-content > p {
  margin: 0;
  font-size: 16px;
  color: #333333e3;
  line-height: 32px;
}
.plate-one-services {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  margin: 15px 0 26px;
}
.service-item {
  min-width: 0;
  text-align: center;
}
.service-item img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 7px;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
  float: none;
}
.service-item span {
  display: block;
  font-size: 14px;
  color: #333333e3;
  line-height: 20px;
  white-space: nowrap;
}
.service-item:hover img {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 12px rgba(54, 91, 255, 0.16));
}
.plate-one-points p {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  font-size: 14px;
  color: #333333e3;
  line-height: 20px;
}
.plate-one-points p + p {
  margin-top: 16px;
}
.plate-one-points img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-top: 1px;
}
.plate-one-visual {
  flex: 1;
  position: relative;
  min-height: 380px;
}
.plate-one-main-img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: cover;

  float: none;
}
.plate-one-card-img {
  position: absolute;
  right: -51px;
  bottom: -64px;
  width: 264px;
  height: auto;
  animation: operation-card-float 4.8s ease-in-out infinite;
  float: none;
}
.plate-two-card-img {
  width: 243px;
}
.plate-three-card-img {
  width: 214px;
}
.plate-four-card-img {
  width: 264px;
}
@keyframes operation-card-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes operation-banner-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media screen and (max-width: 1200px) {
  .banner-inner .banner-inner-list {
    width: 48%;
    position: relative;
    z-index: 3;
  }
  .banner-inner h1 {
    font-size: 34px;
    line-height: 46px;
  }
  .banner-inner h2 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .banner-inner p {
    font-size: 15px;
    line-height: 30px;
  }
  .banner-inner-list-icon img {
    width: 60%;
    margin-right: 28px;
  }
  .plate-one-inner {
    gap: 42px;
  }
  .plate-one-content {
    flex-basis: 50%;
  }
  .plate-one-services {
    gap: 10px;
  }
  .service-item img {
    width: 48px;
    height: 48px;
  }
  .service-item span {
    font-size: 13px;
  }
  .plate-one-card-img {
    right: -8px;
    width: 190px;
  }
  .plate-two-card-img {
    width: 175px;
  }
  .plate-three-card-img {
    width: 160px;
  }
  .plate-four-card-img {
    width: 190px;
  }
}

@media screen and (max-width: 960px) {
  .product-banner {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .product-inner {
    position: relative;
  }
  .banner-inner {
    min-height: 430px;
    padding-top: 86px;
    padding-bottom: 42px;
    gap: 24px;
  }
  .banner-inner .banner-inner-list {
    width: 52%;
    padding-left: 0;
  }
  .banner-inner-list-icon img {
    width: 100%;
    min-width: 0;
    margin-right: 0;
  }
  .product-plate {
    padding: 62px 0;
  }
  .plate-one-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .plate-one-content {
    flex: none;
    max-width: none;
  }
  .plate-one-services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 14px;
  }
  .plate-one-visual {
    min-height: 0;
    align-self: center;
    width: min(100%, 620px);
  }
  .plate-one-main-img {
    max-width: none;
  }
  .plate-one-card-img {
    right: 18px;
    bottom: -18px;
  }
}

@media screen and (max-width: 600px) {
  .product-inner::before,
  .product-inner::after {
    display: none;
  }
  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
    padding-top: 76px;
    padding-bottom: 38px;
  }
  .banner-inner .banner-inner-list {
    width: 100%;

  }
  .banner-inner h1 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 8px;
  }
  .banner-inner h2 {
    font-size: 17px !important;
    line-height: 28px;
    margin-bottom: 14px;
  }
  .banner-inner p {
    font-size: 14px;
    line-height: 26px;
  }
  .banner-inner-list-icon {
    width: 100%;
    justify-content: center;
    right: 0;
  }
  .banner-inner-list-icon img {
    width: 88%;
    max-width: 360px;
    animation: none;
  }
  .product-plate {
    padding: 48px 0;
  }
  .plate-one-content h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 14px;
  }
  .plate-one-content > p {
    font-size: 14px;
    line-height: 28px;
  }
  .plate-one-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    margin: 22px 0 20px;
  }
  .service-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 12px;
    box-sizing: border-box;
    background: #f7f9ff;
    border: 1px solid #e2e9ff;
    border-radius: 6px;
    text-align: left;
  }
  .service-item img {
    width: 36px;
    height: 36px;
    margin: 0;
  }
  .service-item span {
    white-space: normal;
  }
  .plate-one-points p {
    font-size: 14px;
    line-height: 26px;
  }
  .plate-one-points img {
    width: 16px;
    height: 16px;
    margin-top: 5px;
  }
  .plate-one-main-img {
    border-radius: 10px;
  }
  .plate-one-card-img {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 72%;
    max-width: 248px;
    margin: -34px auto 0;
    animation: none;
  }
  .plate-two-card-img {
    width: 50%;
    max-width: 168px;
    margin-top: -96px;
    margin-right: 6%;
  }
  .plate-three-card-img {
    width: 64%;
    max-width: 210px;
    margin-top: -30px;
    margin-right: 5%;
  }
  .plate-four-card-img {
    width: 72%;
    max-width: 248px;
    margin-top: -38px;
    margin-right: 4%;
  }
}

@media screen and (max-width: 380px) {
  .banner-inner h1 {
    font-size: 27px;
    line-height: 36px;
  }
  .plate-one-card-img {
    max-width: 220px;
    margin-top: -28px;
  }
  .plate-two-card-img {
    max-width: 150px;
    margin-top: -76px;
  }
  .plate-three-card-img {
    max-width: 190px;
    margin-top: -24px;
  }
  .plate-four-card-img {
    max-width: 220px;
    margin-top: -30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-inner-list-icon img,
  .plate-one-card-img,
  .service-item img,
  .operationSupport-enhanced .operation-banner {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
