.model3d-show-section{
  position: relative;
  width: 100%;
  height: 800px;
  overflow: clip;
}
.model3d-iframe-content{
  width: 100%;
  height: 100%;
}
.model3d-show-section__content{
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index:5;
}
.model3d-model{
  width: 70vw;
  aspect-ratio: 4/3;
  z-index: 10;
  position: absolute;
  left: var(--model3d_pc_x);
  top: var(--model3d_pc_y);
  transform: translate3D(-50%, -50%, 0);
}
.model3d-show-wrapper{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  overflow: clip;
}
.model3d-default-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model3d-show-section .button {
  word-break: break-word;
  white-space: normal;
}
.model3d-show-section .model3d-show__track {
  aspect-ratio: var(--desktop-aspect-ratio);
  overflow-y: hidden;
}
.model3d-show__item {
  width: 100%;
}
.model3d-show__image {
  position: relative;
  width: var(--slideshow-image-width);
  height: var(--slideshow-image-height);
}
.model3d-show__image--mobile img,
.model3d-show__image--mobile svg,
.model3d-show__image--desktop img,
.model3d-show__image--desktop svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model3d-show__image--mobile {
  display: none;
  width: 100%;
  height: 100%;
}
.model3d-show__image--desktop {
  display: block;
  width: 100%;
  height: 100%;
}
.model3d-show__image-container {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  background-color: rgb(var(--color-image-background));
}
.model3d-show__image-mask {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(
    0,
    0,
    0,
    calc(var(--slideshow-image-mask-opacity) / 100)
  );
  transform: translate(-50%, -50%);
}
.model3d-show__group {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
}
/* .model3d-show-section-column .model3d-show__group{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;

} */
.model3d-show__group > h2 {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.23);
}
.model3d-show__pager {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 50%;
  z-index: 3;
  display: flex;
  gap: 6px;
  align-items: center;
  transform: translate(-50%, 0);
}
.model3d-show__pager--dots {
  inset-block-end: 20px;
}
.model3d-show__pager--dot {
  display: block;
  width: 6px;
  height: 6px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  border: 0;
  border-radius: 50%;
  opacity: 0.4;
  transition: opacity, width, height, 0.3s;
}
.model3d-show__pager--dot.is-active {
  width: 10px;
  height: 10px;
  opacity: 1;
}
.model3d-show__pager--progresses {
  gap: 10px;
}
.model3d-show__pager--progress {
  display: block;
  width: 120px;
  height: 6px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background-color: rgb(255 255 255 / 50%);
  border: 0;
}
.model3d-show__pager--progress.is-active {
  opacity: 1;
}
.model3d-show__pager--progress.is-active .model3d-show__pager--progress-inner-static {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.model3d-show__pager--arrows {
  inset-block-end: 0;
  inset-inline: auto 40px;
  width: fit-content;
  transform: translateY(50%);
}
.model3d-show__pager--arrow {
  width: 40px;
  height: 40px; 
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  filter: drop-shadow(0 4px 10px rgb(0 0 0 / 15%));
  border: 0;
  border-radius: 50%;
}
.model3d-show__pager--arrow[name="previous"] {
  transform: rotate(90deg);
}
.model3d-show__pager--arrow[name="next"] {
  transform: rotate(-90deg);
}
.model3d-show__image-text-mask {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.model3d-show__image-text-mask-deep {
  background: radial-gradient(
    77.64% 77.64% at 50% 50%,
    rgb(0 0 0 / 30%) 59.64%,
    rgb(0 0 0 / 0%) 100%
  );
  filter: blur(120px);
  border-radius: 50%;
}
.model3d-show__image-text-mask-light {
  background: radial-gradient(
    77.64% 77.64% at 50% 50%,
    rgb(255 255 255 / 30%) 59.64%,
    rgb(255 255 255 / 0%) 100%
  );
  filter: blur(120px);
  border-radius: 50%;
}
.model3d-show-section .vis-preview-btn{
  bottom: 40px;
}
@media (max-width: 959px) {
  .model3d-model{
    left: var(--model3d_mobile_x);
    top: var(--model3d_mobile_y);
    width: calc(100vw - 40px);
  }
  .model3d-show .model3d-show__track {
    aspect-ratio: var(--mobile-aspect-ratio);
  }
  .model3d-show__image--mobile {
    display: block;
  }

  .model3d-show__image--desktop {
    display: none;
  }
  .model3d-show__pager--progress {
    width: 60px;
  }

  .model3d-show__pager--arrows {
    inset-inline: auto 20px;
  }

  .model3d-show__pager--arrow {
    width: 32px;
    height: 32px;
  }

  .model3d-show__pager--arrow svg {
    width: 10px;
    height: 10px;
  }
}
.model3d-show-button {
  position: absolute;
  transform: translate3D(-50%, -50%, 0);
  z-index: 1001;
  left: var(--pc_x);
  top: var(--pc_y);
}
@media (max-width: 959px) {
  .model3d-show-section{
    height: 480px;
  }
  .model3d-show-button {
    left: var(--mobile_x);
    top: var(--mobile_y);
  }
}
.model3d-show-button-icon {
  padding: 20px;
}
.model3d-show-button-icon i {
  width: 16px;
  height: 16px;
  display: block;
  cursor: pointer;
  border-radius: 999px;
  background-color: #0f76ff;
  border: 1px solid #fff;
}
.model3d-show-button-icon::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 999px;
  animation: ripple 1.6s infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 #fff;
    opacity: 0.5;
  }
  70% {
    box-shadow: 0 0 0 8px #fff;
    opacity: 0.5;
  }
  95% {
    box-shadow: 0 0 0 8px #fff;
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 0 #fff;
    opacity: 0;
  }
}
.model3d-show-button-img {
  position: relative;
}
.model3d-show-button-img:hover .model3d-show-button-bubble {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.model3d-show-button-bubble {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.2s;
  position: absolute;
  left: calc(-150px + 28px);
  bottom: 50px;
  padding: 4px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 300px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
/* .model3d-show-button-bubble::after {
  content: "";
  position: absolute;
  left: calc(50% - 8px);
  bottom: -16px;
  border: 8px solid transparent;
  border-top-color: #fff;
} */
.model3d-show-button-bubble img,
.model3d-show-button-bubble svg {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}
.model3d-show-button-bubble-left {
  font-weight: 600;
  font-size: 16px;
  color: #232833;
  flex: 1;
  min-width: 0;
  padding-left: 12px;
}
.model3d-show-button-bubble-left div:nth-child(1) {
  padding-bottom: 4px;
  /* 单行溢出省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 960px) {
  .model3d-show-button-bubble {
    width: 260px;
    left: calc(-130px + 28px);
  }
}
