.fuzzer-main {
  background-color: #000000;
  color: #fff;
}
.fuzzer-content {
  width: 1280px;
  margin: 0 auto;
}

/* 第一部分：Wisdom模糊测试 */
.fuzz-test-container {
  background-color: #000000;
  color: #fff;
  width: 100%;
  height: 760px;
  display: flex;
  align-items: center;
  position: relative;
}
.fuzz-test-container.is-not-index {
  height: 683px;
}
.fuzz-test-container img {
  position: absolute;
  z-index: 1;
}
.fuzz-test-card {
  width: 1280px;
  margin: 0 auto;
  color: #fff;
  z-index: 2;
}
.fuzz-test-title {
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 24px;
}
.fuzz-test-desc {
  font-size: 16px;
  line-height: 22px;
  max-width: 650px;
  margin-bottom: 40px;
}

/* 第二部分：产品功能区域 */
.product-content {
}
/* 2.1产品功能大标题 */
.product-title {
  text-align: center;
  display: grid;
  gap: 24px;
}
.product-title-name {
  font-size: 48px;
  line-height: 56px;
}
.product-title-text {
  font-size: 14px;
  line-height: 22px;
}
/* 2.3轮播图 */
.carousel-container {
  display: flex;
  gap: 78px;
}
/* 2.3.1左侧标题指示器样式 */
.left-title-indicators {
  width: 464px;
}
.title-indicator {
  width: 462px;
  height: 94px;
  padding: 36px 26px 36px 36px;
  flex-shrink: 0;
  font-weight: 400;
  cursor: pointer;
}
.title-indicator.active {
  height: auto;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}
.title-indicator-text {
  font-size: 22px;
}
.title-indicator .description {
  display: none; /* 默认隐藏描述 */
  margin: 24px 0 26px;
  font-size: 14px;
}
.title-indicator.active .description {
  display: block; /* 激活状态显示描述 */
}
/* 2.3.2右侧区域 */
.carousel-main {
  width: 736px;
  flex-shrink: 0;
  overflow: hidden;
}
/* 2.3.2.1 图片*/
.carousel-wrapper {
  display: flex;
  width: 736px;
  height: 558px;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* 2.3.2.2 小圆点指示器 */
.carousel-indicators-box {
  width: 736px;
  padding: 48px 323px 81px;
}
.carousel-indicators {
  display: flex;
  gap: 10px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.indicator.active {
  background-color: white;
  transform: scale(1.2);
}

/* 第三部分 */
.fuzz-platform-container {
  width: 100%;
}
/* 3.1  */
.platform-header {
}
.platform-header-box {
  display: grid;
  gap: 24px;
  text-align: center;
}
.platform-title {
  font-size: 48px;
  line-height: 56px;
}
.platform-subtitle {
  font-size: 14px;
  line-height: 22px;
}
/* 3.2 */
.features-grid {
  height: 528px;
  display: flex;
  gap: 32px;
}
.feature-card {
  width: 405px;
  height: 528px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
.feature-title {
  height: 54px;
  padding-bottom: 20px;
  font-size: 22px;
}
.feature-icon-area {
  width: 341px;
  height: 314px;
  background-color: rgba(255, 255, 255, 0.12);
}
.feature-icon-area.standard img {
  width: 341px;
  height: 314px;
}
.feature-desc {
  height: 96px;
  padding: 20px 0;
  font-size: 14px;
}
