.i_service_tSceneSetup {
  text-align: center;
  padding-top: 15px;
  color: #C9CED7;
  font-size: 18px;
  padding-bottom: 40px;
  padding-top: 70px;
}

.i_service_tSceneSetup h2 {
  height: 45px;
  line-height: 45px;
  font-size: 24px;
  font-family: PingFang SC, PingFang SC;
  color: rgba(0,0,0,0.85);
  font-weight: 500;
  letter-spacing: 1px;
  padding-bottom: 16px;
}

.i_service_t p {
  font-size: 14px;
}

.g-nav-list {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  height: 54px;
  background: #fff;
  border-radius: 56px;
  padding: 4px;
  box-sizing: border-box;
}

.g-nav-list-track {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.g-nav-list-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #1a66ff;
  border-radius: 50px;
  z-index: 0;
  transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
    width 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform, width;
}

.g-nav-list-ul {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  transition: transform 0.35s ease;
}

.g-nav-list-item {
  flex-shrink: 0;
}

.g-nav-list-item > a {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px;
  text-decoration: none;
  border-radius: 50px;
  transition: color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.g-nav-list-item > a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(26, 102, 255, 0.08);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.g-nav-list-item:not(.is-active):hover > a::after {
  opacity: 1;
  transform: scale(1);
}

.g-nav-list-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  /* border: 1px dashed rgba(26, 102, 255, 0.35); */
  border-radius: 6px;
  flex-shrink: 0;
  transition: border-color 0.28s ease, transform 0.28s ease;
}

.g-nav-list-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: filter 0.28s ease, transform 0.28s ease;
}

.g-nav-list-text {
  font-size: 14px;
  line-height: 1;
  font-family: PingFang SC, PingFang SC;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.75);
  transition: color 0.28s ease;
}

.g-nav-list-item.is-active .g-nav-list-text {
  color: #fff;
}

.g-nav-list-item.is-active .g-nav-list-icon {
  /* border-color: rgba(255, 255, 255, 0.55); */
}

.g-nav-list-item.is-active .g-nav-list-icon img {
  /* filter: brightness(0) invert(1); */
}

.g-nav-list-item:not(.is-active):hover .g-nav-list-icon {
  /* transform: scale(1.06); */
}

.g-nav-list-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 6px 0 10px;
}

.g-nav-list-arrow {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.g-nav-list-arrow img {
  display: block;
  width:20px;
  height:20px;
  object-fit: contain;
}

.g-nav-list-arrow.j-scene-nav-prev img {
  /* transform: rotate(180deg); */
}

.g-nav-list-arrow:hover:not(:disabled) {
  /* background: rgba(26, 102, 255, 0.1); */
  transform: scale(1.05);
}

.g-nav-list-arrow:active:not(:disabled) {
  transform: scale(0.95);
}

.g-nav-list-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.g-nav-list-item.is-active > a {
  animation: sceneNavPulse 0.42s ease;
}
.g-nav-list-banner{
  width: 1024px;
  height: 504px;
  margin: 36px auto 0;
  overflow: hidden;
}
.g-nav-list-banner img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.g-nav-list-banner img.is-animate {
  animation: sceneBannerEnter 0.55s ease;
}
.g-code-img{
  margin: 55px auto;
 
}
.g-code-img-text{
  margin-top: 16px;
  text-align: center;
  font-family: PingFang SC, PingFang SC;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0,0,0,0.85);
}
.g-code-img-img{
  margin: 0 auto;
  width: 120px;
  height: 120px;
  background: #FFFFFF;
}
@keyframes sceneBannerEnter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes sceneNavPulse {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  .g-nav-list {
    height: 48px;
    border-radius: 48px;
  }

  .g-nav-list-item > a {
    height: 40px;
    padding: 0 14px;
    gap: 6px;
  }

  .g-nav-list-text {
    font-size: 13px;
  }
}
