body {
  margin: 0;
}

a {
  cursor: none;
  color: black;
  text-decoration: none;
  display: inline-block;
}

button {
  cursor: none;
}

span {
  cursor: none;
}

.out-box {
  display: flex;
  flex-direction: column;
}

.box-icon-show {
  display: flex;
  margin-top: 5vw;
  position: relative;
}

.bottom-box-icon-show-icon {
  width: 16vw;
}

.box-icon-show-icon {
  width: 16vw;
  margin-left: 5vw;
  z-index: 2;
}

.industry-insight-title-line {
  display: flex;
  flex-direction: column;
  margin-left: 16vw;
}

.title-line {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 1vw;
  left: 18vw;
}

.industry-insight-title-line-item1 {
  width: 56.2vw;
  height: 0.3vw;
  background: #c7e7c7;
  margin-bottom: 0.3vw;
  margin-left: auto;
}

.title-line-item1 {
  position: absolute;
  bottom: -1vw;
  left: 0vw;
  width: 63vw;
  height: 0.3vw;
  background: #c7e7c7;
  margin-bottom: 0.3vw;
  margin-left: auto;
}

.industry-insight-title-line-item-icon2 {
  width: 0.5vw;
  height: 0.5vw;
  background: #c7e7c7;
  border-radius: 50%;
  justify-content: center;
  margin-right: 1.6vw;
  margin-top: 0.3vw;
}

.title-line-item-icon2 {
  position: absolute;
  left: 38vw;
  bottom: -2.1vw;
  width: 0.5vw;
  height: 0.5vw;
  background: #c7e7c7;
  border-radius: 50%;
  justify-content: center;
  margin-right: 1.6vw;
  margin-top: 0.3vw;
}

.industry-insight-title-line-item-icon3 {
  position: absolute;
  bottom: -2vw;
  left: 40vw;
  height: 0.2vw;
  width: 30.6vw;
  margin-top: 0.3vw;
  background: #FFC782;
}

.box-icon-show-guodu1 {
  width: 15vw;
  position: absolute;
  top: -4vw;
  right: 5vw;
}

.bottom-box-left-contact {
  display: flex;
  align-items: center;
  margin-bottom: 2.9vw;
  gap: 1.6vw;
}

.carousel-container {
  display: block;
  object-fit: fill;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.08);
  background: #fff;
}

.carousel-wrapper {
  display: flex;
  height: 100%;
  transition: transform 1.5s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
  cursor: none;
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-slide {
  cursor: none;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-slide.active {
  display: flex;
  cursor: none;
  width: 100%;
}

.carousel-slide img {
  cursor: none;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.carousel-btn {
  cursor: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5vw;
  height: 2.5vw;
  min-width: 32px;
  min-height: 32px;
  font-size: 1.5vw;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.carousel-btn.prev {
  left: 1vw;
}

.carousel-btn.next {
  right: 1vw;
}

.carousel-dots {
  cursor: none;
  position: absolute;
  left: 50%;
  bottom: 1vw;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8vw;
}

.carousel-dot {
  cursor: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 6px;

  transition: background 0.3s;
}

.carousel-dot.active {
  cursor: none;
  background: #4CAF50;
}

.carousel-dot:nth-child(1).active {
  background: #4CAF50;
  cursor: none;
}

.carousel-dot:nth-child(2).active {
  background: #FF9800;
  cursor: none;
}

.carousel-caption {
  cursor: none;
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  min-width: 18vw;
  padding: 1.8vw 2.5vw 1.8vw 1.8vw;
  border-radius: 0.8vw;
}

.carousel-caption-title {
  font-size:3.2vw;
  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 {
  font-size: 1.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: 0.9vw;
  font-weight: 600;
  letter-spacing: 0.1vw;
  border-radius: 0.5vw;
  padding: 0.7vw 2.5vw;
  text-decoration: none;
  box-shadow: 0 0.1vw 0.3vw rgba(255, 199, 130, 0.15);
  transition: background 0.2s;
}

.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;
}

.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: 2.5vw;
}

.product-content-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.3vw;
  padding: 3vw;
}

.product-content {
  cursor: none;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

/* 产品卡片图片悬停放大 */
.product-content-img {
  transition: transform 0.3s;

  z-index: 1;
  width: 45vw;
  height: 25vw;
}

.product-content:hover .product-content-img {
  /* 由JS控制scale，CSS兜底 */
  outline: none;
}

/* 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: 100%;
  height: 100vh;
  z-index: 9999;
  animation: fadeInMask 0.2s;
}

@keyframes fadeInMask {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ma弹窗内容 */
.product-popup-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  width: 20vw;
  height: 20vw;
  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;
  justify-content: 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: 20vw;
  height: 40vw;
  display: block;
  margin: 0 auto 0 auto;
}

.product-content-text-title {
  font-size: 2vw;
  letter-spacing: 0.1vw;
  font-weight: 600;
}

.product-content-text {
  display: flex;
  gap: 1vw;
}

.product-content-text-content {
  font-size: 1.1vw;
  letter-spacing: 0.1vw;
  max-width: 30vw;
  color: #707070;
}

.product-content-text-btn {
  display: flex;
  width: 10vw;
  height: 3vw;
  border-radius: 0.5vw;
  margin-left: auto;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #9DE787;
  padding: 0.2vw 1.5vw;
  font-size: 1.2vw;
  letter-spacing: 0.1vw;
}

.product-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin: 2vw 0 0 0;
}

.product-page-btn {
  background: #fff;
  color: #FF8D00;
  border: none;
  border-radius: 50%;
  width: 3vw;
  height: 3vw;
  min-width: 40px;
  min-height: 40px;
  font-size: 1.5vw;
  font-weight: 700;

  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-btn:disabled {
  background: #fff;
  color: #FFD1A6;
  cursor: none;
  opacity: 1;
}

.product-page-info {
  font-size: 1.2vw;
  color: #222;
  font-weight: 600;
  min-width: 60px;
  text-align: center;
}

.guodu2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 10vw;
}

.guodu2-img {
  width: 90vw;
  margin: 0 10vw;
  position: absolute;
  bottom: -1vw;
}

.guodu2-text {
  font-size: 2vw;
  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;
  width: 2vw;
  height: auto;
  left: 2vw;
}

.ai-search-input {
  height: 3vw;
  min-height: 38px;
  width: 37vw;
  border: 2px solid #FFD1A6;
  border-radius: 2vw;
  font-size: 1.2vw;
  padding: 0 2vw 0 5.5vw;
  outline: none;
  background: #fff;
  transition: border 0.2s;
}

.ai-search-input:focus {
  border-color: #FF8D00;
}

.ai-search-btn {
  width: 10vw;
  margin-left: 1vw;
  background: #FFC782;
  color: #fff;
  border: none;
  border-radius: 2vw;
  font-size: 1.2vw;
  font-weight: 600;
  padding: 0 2vw;
  height: 3vw;
  min-width: 90px;
  min-height: 38px;

  transition: background 0.2s;
}

.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 {
  display: inline-block;
  padding: 0.7vw 2vw;
  border: 2px solid #FFD1A6;
  border-radius: 2vw;
  background: #fff;
  color: #FF8D00;
  font-size: 1.1vw;
  font-weight: 500;

  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-agent-section {
  display: flex;
  gap: 2vw;
  margin-top: 3vw;
}

.ai-agent-section-card {
  display: flex;
  flex-direction: column;
  background-color: #FAF8F4;
  padding: 1vw;
  border-radius: 1vw;
}

.ai-agent-section-card-img {
  width: 20vw;
  height: 11vw;
}

.ai-agent-section-card-title {
  display: flex;
  align-items: center;
  font-size: 1.1vw;
  font-weight: 500;
  margin-top: 1vw;
}

.ai-agent-section-card-desc {
  display: flex;
  max-width: 20vw;
  align-items: center;
}

.ai-agent-section-card-desc-content {
  font-size: 0.8vw;
  color: #707070;
  margin-right: 1vw;
}

.ai-agent-section-card-desc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4vw;
  height: 3vw;
  border-radius: 50%;
  background-color: #9DE787;
  margin-left: auto;
}

.ai-agent-section-card-desc-btn-icon {
  width: 1.4vw;
  height: 1.3vw;
}

.ai-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  margin: 3vw 0 2vw 0;
}

.ai-card {
  background: #FAF8F4;
  border-radius: 1vw;
  box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.06);
  padding: 1.2vw 1vw 1vw 1vw;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  min-width: 0;
}

.ai-card:hover {
  box-shadow: 0 0.4vw 1.2vw rgba(255, 199, 130, 0.18);
}

.ai-card-img {
  width: 19vw;
  height: 14vw;
  border-radius: 0.7vw;
  background: #FFE7CC;
  margin-bottom: 1vw;
}

.ai-card-title {
  font-size: 1.2vw;
  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: 0.8vw;
  color: #707070;
  margin-right: 1vw;
  width: 15vw;

}

.ai-card-link {
  background: #9DE787;
  border-radius: 50%;
  width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;

}

.ai-card-link-icon {
  width: 2vw;
  height: 2vw;
}

.ai-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  margin: 2vw 0 0 0;
}

.ai-page-btn {
  background: transparent;
  color: #FFC782;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 3vw;
  height: 3vw;
  min-width: 32px;
  min-height: 32px;
  font-size: 1.5vw;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin: 0 0.5vw;
}

.ai-page-btn:hover:not(.disabled) {
  background-color: #FF8D00;
  color: #fff;
}

.ai-page-btn.disabled {
  background: transparent;
  color: #ccc;
  border-color: transparent;
  cursor: none;
}

.ai-page-number {
  background: transparent;
  color: #FFC782;
  border: 2px solid transparent;
  border-radius: 50%;
  width: 3vw;
  height: 3vw;
  min-width: 32px;
  min-height: 32px;
  font-size: 1.5vw;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin: 0 0.5vw;
}

.ai-page-number.active {
  background: #FFC782;
  color: #fff;
  border-color: #FFC782;
}

.ai-page-number:hover:not(.active) {
  border-color: #FFC782;
  color: #FFC782;
}

.ai-page-ellipsis {
  color: #FFC782;
  font-size: 1.5vw;
  font-weight: 600;
  margin: 0 0.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  width: 100% !important;
  overflow: hidden;
}