.carousel-3d-item-content {
  background: #030303 !important;
  border: 2px solid #ff6144;
  min-height: 460px;
}
.carousel-3d-wrapper {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  width: 100%;
  height: auto;
  min-height: auto;
}
.carousel-3d-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.carousel-3d-wrapper .carousel-3d-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
.carousel-3d-wrapper .carousel-3d-stage,
.carousel-3d-wrapper .carousel-3d-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
.carousel-3d-wrapper .carousel-3d-item {
  position: absolute;
  width: 1200px;
  max-width: 90vw;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-3d-wrapper .carousel-3d-item-content {
  width: 100%;
  display: flex;
  position: relative;
  background-color: #474745;
  border-radius: 20px;
}
.carousel-3d-wrapper .carousel-3d-item.carousel-3d-active {
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: brightness(1);
}
.carousel-3d-wrapper .carousel-3d-item.carousel-3d-prev {
  z-index: 2;
  transform: translateX(-65%) scale(0.85);
  opacity: 0.5;
  filter: brightness(0.7);
}
.carousel-3d-wrapper .carousel-3d-item.carousel-3d-next {
  z-index: 2;
  transform: translateX(65%) scale(0.85);
  opacity: 0.5;
  filter: brightness(0.7);
}
.carousel-3d-wrapper .carousel-3d-item.carousel-3d-hidden {
  z-index: 1;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}
.carousel-3d-wrapper .carousel-3d-left {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carousel-3d-wrapper .carousel-3d-left.active-left {
  padding: 0;
}
.carousel-3d-wrapper .carousel-3d-left iframe {
  width: 100%;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  min-height: 400px;
}
.carousel-3d-wrapper .carousel-3d-left img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 20px;
}
.carousel-3d-wrapper .carousel-3d-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.carousel-3d-wrapper .carousel-3d-right h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}
.carousel-3d-wrapper .carousel-3d-right p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.carousel-3d-wrapper .carousel-3d-right .carousel-3d-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  color: orange;
}
.carousel-3d-wrapper .carousel-3d-right .swp-log {
  text-align: center;
}
.carousel-3d-wrapper .carousel-3d-right .swp-log img {
  width: 100px;
}
.carousel-3d-wrapper .carousel-3d-platforms {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.carousel-3d-wrapper .carousel-3d-platforms .carousel-3d-platform-icon .iconfont {
  font-size: 25px;
  color: #ffffff;
  cursor: pointer;
}
.carousel-3d-wrapper .carousel-3d-platforms .icon img {
  width: 155px;
}
.carousel-3d-wrapper .carousel-3d-get-button {
  padding: 12px 30px;
  background: #ff6b6b;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  transition: all 0.3s;
}
.carousel-3d-wrapper .carousel-3d-get-button:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}
.carousel-3d-wrapper .carousel-3d-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.carousel-3d-wrapper .carousel-3d-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.carousel-3d-wrapper .carousel-3d-nav::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.carousel-3d-wrapper .carousel-3d-nav.carousel-3d-prev-btn {
  left: 20px;
}
.carousel-3d-wrapper .carousel-3d-nav.carousel-3d-prev-btn::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.carousel-3d-wrapper .carousel-3d-nav.carousel-3d-next-btn {
  right: 20px;
}
.carousel-3d-wrapper .carousel-3d-nav.carousel-3d-next-btn::before {
  transform: rotate(45deg);
  margin-right: 4px;
}
.carousel-3d-wrapper .carousel-3d-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.carousel-3d-wrapper .carousel-3d-indicators .carousel-3d-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-3d-wrapper .carousel-3d-indicators .carousel-3d-indicator.carousel-3d-active {
  width: 30px;
  border-radius: 5px;
  background: #fff;
}
/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .carousel-3d-item.carousel-3d-prev,
  .carousel-3d-item.carousel-3d-next {
    opacity: 0 !important;
    pointer-events: none;
    transform: translateX(0) scale(0.7) !important;
  }
}
@media (max-width: 968px) {
  .carousel-3d-item-content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .carousel-3d-nav {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .carousel-3d-platforms {
    flex-wrap: wrap;
  }
}
/*# sourceMappingURL=style.css.map */