* {
  cursor: none !important;
}

body {
  margin: 0;
}

a {
  cursor: none;
  color: black;
  text-decoration: none;
  display: inline-block;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}



.out-box {
  display: flex;
  flex-direction: column;
}




.carousel-container {
  position: relative;
  width: 100%;
  height: 48.5vw;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.08);
  background: #fff;
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.7s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  touch-action: pan-y pinch-zoom;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-slide.active {
  display: flex;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-dots {
  position: absolute;
  transform: none;
  display: flex;
  gap: 0.8vw;
  transition: all 0.7s cubic-bezier(.77, 0, .18, 1);
}

/* 第一张图片时dot位置在右下角 */
.carousel-dots.slide-1 {
  left: auto;
  right: 10vw;
  bottom: 4vw;
}

/* 第二张图片时dot位置在左下角 */
.carousel-dots.slide-2 {
  left: 10vw;
  right: auto;
  bottom: 4vw;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 6px;
  cursor: none !important;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: #4CAF50;
}

.carousel-dot:nth-child(1).active {
  background: #4CAF50;
}

.carousel-dot:nth-child(2).active {
  background: #FF9800;
}

.carousel-caption {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  padding: 1.8vw 2.5vw 1.8vw 1.8vw;
  border-radius: 0.2vw;
}

.carousel-caption-title {
  font-size: 6vw;
  font-weight: 700;
  margin-bottom: 1vw;
  color: #fff;
  text-shadow: 0 0.2vw 0.5vw rgba(0, 0, 0, 0.18);
  letter-spacing: 0.1vw;
}

.carousel-caption-desc {
  display: flex;
  flex-wrap: wrap;
  max-width: 40vw;
  font-size: 2.6vw;
  font-weight: 400;
  margin-bottom: 2vw;
  margin-top: 1.8vw;
  color: #fff;
  text-shadow: 0 0.1vw 0.3vw rgba(0, 0, 0, 0.12);
  letter-spacing: 0.1vw;
}

.carousel-caption-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF8D00;
  color: #fff;
  font-size: 3vw;
  font-weight: 400;
  letter-spacing: 0.1vw;
  border-radius: 0.1vw;
  padding: 2vw 8vw;
  border-radius: 2vw;
  text-decoration: none;
  box-shadow: 0 0.1vw 0.3vw rgba(255, 199, 130, 0.15);
  transition: background 0.2s;
  margin-top: 6vw;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.carousel-caption-btn:hover {
  background: #FF8D00;
}

.carousel-caption-right {
  left: auto;
  right: 5vw;
  align-items: flex-end;
  text-align: right;
}

.carousel-caption-btn-green {
  background: #4CAF50;
  color: #fff;
}

.carousel-caption-btn-green:hover {
  background: #388E3C;
}



/* 移动端按钮点击效果 */
@media (max-width: 960px) {
  .carousel-caption-btn:active {
    background: #e67e00;
    transform: scale(0.98);
  }
  
  .carousel-caption-btn-green:active {
    background: #2e7d32;
    transform: scale(0.98);
  }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2vw;
  font-weight: 600;
  font-size: 4.5vw;
  margin: 2vw 0vw;
}

.product-content-box {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 3vw;
  padding: 3vw;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

/* 产品卡片图片悬停放大 */
.product-content-img {
  transition: transform 0.3s;
  
  z-index: 1;
  width: 90vw;
  height: 55vw;
}

.product-content:hover .product-content-img {
  /* 由JS控制scale，CSS兜底 */
  outline: none;
}

@media (max-width: 960px) {
  .product-content:hover .product-content-img {
    transform: none !important;
  }

  .product-inshow-preview {
    display: none !important;
  }
}

/* inshow预览图片浮层 */
.product-inshow-preview {
  pointer-events: none;
  animation: fadeInInshow 0.25s;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -110%);
  z-index: 20;
  background: transparent;
}

@keyframes fadeInInshow {
  from {
    opacity: 0;
    transform: scale(0.95) translate(-50%, -110%);
  }

  to {
    opacity: 1;
    transform: scale(1) translate(-50%, -110%);
  }
}

/* ma弹窗遮罩 */
.product-popup-mask {
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  animation: fadeInMask 0.2s;
}

@keyframes fadeInMask {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ma弹窗内容 */
.product-popup-box {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  animation: popupShow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes popupShow {
  from {
    opacity: 0;
    transform: scale(0.92) translate(-50%, -50%);
  }

  to {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
  }
}

.product-popup-box img {
  width: 40vw;
  height: 40vw;
  display: block;
}

.product-popup-close {
  position: absolute;
  right: 2vw;
  top: 2vw;
  font-size: 2vw;
  cursor: none !important;
  color: #888;
  transition: color 0.2s;
  z-index: 1;
}

.product-popup-close:hover {
  color: #FF8D00;
}

.product-content-text-title {
  font-size: 4.5vw;
  margin-top: 3vw;
  letter-spacing: 0.1vw;
  font-weight: 600;
}

.product-content-text {
  display: flex;
  gap: 6vw;
  margin-bottom: 5vw;

}

.product-content-text-content {
  font-size: 3vw;
  letter-spacing: 0.1vw;
  max-width: 54vw;
  color: #707070;
  margin-top: 3vw;
}

.product-content-text-btn {
  display: flex;
  border-radius: 2.5vw;
  margin-top: auto;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #9DE787;
  padding: 2vw 6vw;
  font-size: 4vw;
  font-weight: 300;
  letter-spacing: 0.1vw;
}

.product-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6vw;
  margin: 2vw 0 0 0;
}

.product-page-btn {
  background: #FFC782;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 6vw;
  height: 6vw;
  font-size: 4vw;
  font-weight: 500;
  padding: 4VW;
  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 0.1vw 0.3vw rgba(255, 199, 130, 0.10);
}

.product-page-btn:hover:not(:disabled),
.product-page-btn:active:not(:disabled) {
  background: #FF8D00;
  color: #fff;
}

.product-page-info {
  font-size: 3vw;
  color: #222;
  font-weight: 400;
  min-width: 60px;
  text-align: center;
}

.guodu2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 10vw;
}

.guodu2-img {
  width: 90vw;
  position: absolute;
  bottom: -1vw;
}

.guodu2-text {
  font-size: 4.5vw;
  font-weight: 600;
}

.AI-box {
  margin: 4vw 0 2vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-search-bar {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 2vw;
}

.search-icon {
  position: absolute;
  left: 3vw;
  top: 1.6vw;
  width: 4vw;
  height: auto;
}

.ai-search-input {
  height: 3vw;
  min-height: 6vw;
  width: 50vw;
  border: 2px solid #FFD1A6;
  border-radius: 4vw;
  font-size: 1vw;
  padding: 0 2vw 0 2.5vw;
  outline: none;
  background: #fff;
  transition: border 0.2s;
}

.ai-search-input:focus {
  border-color: #FF8D00;
}

.ai-search-btn {
  width: 13vw;
  margin-left: 1vw;
  background: #FFC782;
  color: #fff;
  border: none;
  border-radius: 3vw;
  font-size: 2.8vw;
  font-weight: 500;
  padding: 0 2vw;
  height: 3vw;
  min-height: 7vw;
  cursor: none !important;
  transition: background 0.2s;
  letter-spacing: 0.1vw;
}

.ai-search-btn:hover {
  background: #FF8D00;
}

.ai-category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 1vw;
}

.ai-category-item {
  height: 6vw;
  width: 12vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #FFD1A6;
  border-radius: 4vw;
  background: #fff;
  color: #FF8D00;
  font-size: 2.8vw;
  font-weight: 500;
  cursor: none !important;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.ai-category-item.active,
.ai-category-item:hover {
  background: #FFC782;
  color: #fff;
  border-color: #FFC782;
}



.ai-card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5vw;
  margin: 3vw 0 2vw 0;
  /* 确保容器高度稳定，避免页面跳动 */
  min-height: 60vw;
  transition: opacity 0.2s ease;
}

.ai-card {
  background: #FAF8F4;
  border-radius: 3vw;
  box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.06);
  padding: 3vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, opacity 0.2s ease;
  /* 确保卡片渲染平滑 */
  will-change: opacity;
}

.ai-card:hover {
  box-shadow: 0 0.4vw 1.2vw rgba(255, 199, 130, 0.18);
}

.ai-card-img {
  width: 60vw;
  height: 45vw;
  border-radius: 3vw;
  background: #FFE7CC;
  margin-bottom: 1vw;
}

.ai-card-title {
  font-size: 3.6vw;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5vw;
}

.ai-card-desc {
  font-size: 1vw;
  color: #666;
  display: flex;
  align-items: center;
}

.ai-card-desc-content {
  font-size: 3vw;
  color: #707070;
  margin-right: 1vw;
  width: 48vw;

}

.ai-card-link {
  background: #9DE787;
  border-radius: 50%;
  width: 10vw;
  height: 10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1vw;

}

.ai-card-link-icon {
  width: 6vw;
  height: 6vw;
}

.ai-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin: 4vw 0 0 0;
}

.ai-page-btn {
  background: transparent;
  color: #FFC782;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 8vw;
  height: 8vw;
  min-width: 40px;
  min-height: 40px;
  font-size: 4vw;
  font-weight: 500;
  cursor: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin: 0 0.2vw;
}

.ai-page-btn:hover:not(.disabled) {
  background-color: #FFC782;
  color: #fff;
}

.ai-page-btn.disabled {
  background: transparent;
  color: #ccc;
  border-color: transparent;
  cursor: none !important;
}

.ai-page-number {
  background: transparent;
  color: #FFC782;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 8vw;
  height: 8vw;
  min-width: 5vw;
  min-height: 5vw;
  font-size: 4vw;
  font-weight: 500;
  cursor: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin: 0 0.2vw;
}

.ai-page-number.active {
  background: #FFC782;
  color: #fff;
  border-color: #FFC782;
}

.ai-page-number:hover:not(.active) {
  border-color: #FFC782;
  color: #FFC782;
}

.title-line {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: -2vw;
  left: 18vw;
}

.title-line-item1 {
  width: 70vw;
  height: 0.8vw;
  background: #c7e7c7;
  margin-bottom: 0.3vw;
  margin-left: auto;
}

.title-line-item-icon2 {
  width: 0.8vw;
  height: 0.8vw;
  background: #c7e7c7;
  border-radius: 50%;
  justify-content: center;
  margin-right: 1.6vw;
  margin-top: 0.8vw;
}



.title-line-item-icon2 {
  width: 0.8vw;
  height: 0.8vw;
  background: #c7e7c7;
  border-radius: 50%;
  justify-content: center;
  margin-right: 1.6vw;
  margin-top: 0.6vw;
}

.industry-insight-title-line-item-icon3 {
  height: 0.8vw;
  width: 30.6vw;
  margin-top: 0.5vw;
  background: #FFC782;
}


.box-icon-show {
  display: flex;
  margin-top: 7vw;
  position: relative;
}


.box-icon-show-icon {
  width: 16vw;
  margin-left: 10vw;
}

.box-icon-show-guodu1 {
  width: 15vw;
  position: absolute;
  top: -4vw;
  right: 9vw;
}



.ai-page-ellipsis {
  color: #FF8D00;
  font-size: 4vw;
  font-weight: 500;
  margin: 0 0.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .ai-card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
#getExample{
  width: 100vw;
}

