/* DCIM产品详情页样式 */

/* 设计令牌 - 颜色系统 */
:root {
  --dcim-primary: #6246E8;
  --dcim-primary-light: #E8F5E9;
  --dcim-primary-dark: #388E3C;
  --dcim-text-primary: #181818;
  --dcim-text-secondary: #666666;
  --dcim-text-tertiary: #999999;
  --dcim-background: #FFFFFF;
  --dcim-background-secondary: #F5F5F5;
  --dcim-border: #E5E5E5;
  --dcim-border-light: #F0F0F0;
}

/* 基础样式 */
.dcim-product-detail {
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dcim-text-primary);
  background: var(--dcim-background);
}

.dcim-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.dcim-section-title {
  font-size: 32px;
  line-height: 44px;
  font-weight: 600;
  color: var(--dcim-text-primary);
  margin: 0 0 40px 0;
  text-align: center;
}

/* Hero/Banner Section */
.dcim-hero-section {
  position: relative;
  background-color: #F5F4FF;
  background-image: url('/frontStatic/cn/image/newIndex/Header.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 820px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.dcim-hero-section::before {
  content: none;
}

.dcim-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.dcim-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dcim-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.dcim-hero-title {
  font-size: 64px;
  line-height: 80px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.dcim-hero-subtitle {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.dcim-hero-en-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px 0;
}

.dcim-hero-features {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
}

.dcim-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 产品介绍区域 */
.dcim-intro-section {
  width: 100%;
  height: 445px;
  max-width: 1920px;
  margin: 0 auto;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  padding: 0;
}

.dcim-intro-container {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.dcim-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  height: 100%;
  width: 100%;
}

.dcim-intro-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 40px 0 40px 60px;
  box-sizing: border-box;
}

.dcim-intro-image img {
  width: 294px;
  height: 275px;
  object-fit: contain;
}

.dcim-intro-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 200px 0 0;
  height: 100%;
  box-sizing: border-box;
}

.dcim-intro-text p {
  width: 752px;
  height: 220px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'PingFang SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  overflow: hidden;
  box-sizing: border-box;
  background: linear-gradient(to right, rgba(98, 70, 232, 0.35), rgba(98, 70, 232, 0.1));
  border-radius: 8px;
  padding: 20px;
  word-break: break-word;
}

.dcim-hero-icons {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

.dcim-hero-icon-item {
  position: relative;
  width: 200px;
  height: 200px;
  background: rgba(98, 70, 232, 0.15);
  border: 2px solid rgba(98, 70, 232, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(98, 70, 232, 0.25);
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.95);
}

.dcim-hero-icon-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(98, 70, 232, 0.4);
  border-color: rgba(98, 70, 232, 0.6);
  background: rgba(98, 70, 232, 0.2);
}

.dcim-hero-icon-item.top {
  align-self: flex-start;
  margin-left: 60px;
}

.dcim-hero-icon-item svg {
  width: 120px;
  height: 120px;
  opacity: 0.9;
}

.dcim-btn-outline {
  background: #FFFFFF;
  border: 2px solid var(--dcim-primary);
  color: var(--dcim-primary);
}

.dcim-btn-outline:hover {
  background: var(--dcim-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(98, 70, 232, 0.3);
}

/* DCIM 应用场景区域 */
.dcim-scenarios-section {
  width: 100%;
  height: 1494px;
  max-width: 1920px;
  margin: 0 auto;
  background: #F7F9F8;
  padding: 100px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.dcim-scenarios-header {
  margin-bottom: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dcim-section-title-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.dcim-deco-dots {
  width: 120px;
  height: 12px;
  background-image: radial-gradient(circle, #6246E8 1.2px, transparent 1.2px);
  background-size: 10px 8px;
  opacity: 0.6;
}

.dcim-scenarios-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}

.dcim-scenario-item {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  width: 1200px;
  height: 190px;
  padding: 0 40px;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  border: none;
}

.dcim-scenario-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(98, 70, 232, 0.08);
}

.dcim-scenario-icon {
  width: 117px;
  height: 124px;
  margin-right: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  padding: 0;
}

.dcim-scenario-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dcim-scenario-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.dcim-scenario-title {
  width: 880px;
  height: 24px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  color: #181818;
  margin: 0;
  display: block;
}

.dcim-scenario-desc {
  width: 880px;
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  margin: 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* DCIM产品功能区域 */
.dcim-features-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.dcim-features-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dcim-cockpit-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dcim-cockpit-subtitle {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #333333;
  margin: 0 0 16px 0;
  text-align: left;
  border-left: 4px solid #6246E8;
  padding-left: 12px;
}

.dcim-cockpit-carousel {
  position: relative;
  width: 100%;
  height: 520px;
  margin-bottom: 16px;
  perspective: 1500px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcim-cockpit-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.dcim-cockpit-item {
  position: absolute;
  width: 800px;
  height: 450px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  filter: blur(4px) brightness(0.5);
  transform: translate3d(0, 0, -300px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcim-cockpit-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dcim-cockpit-item.active {
  z-index: 10;
  opacity: 1;
  transform: translate3d(0, 0, 100px) scale(1.1);
  pointer-events: auto;
  filter: none;
}

.dcim-cockpit-item.prev {
  z-index: 5;
  opacity: 0.7;
  transform: translate3d(-450px, 0, -150px) scale(0.85);
  pointer-events: auto;
  filter: blur(2px) brightness(0.8);
}

.dcim-cockpit-item.next {
  z-index: 5;
  opacity: 0.7;
  transform: translate3d(450px, 0, -150px) scale(0.85);
  pointer-events: auto;
  filter: blur(2px) brightness(0.8);
}

.dcim-cockpit-desc {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
  margin: 0 0 24px 0;
  text-align: left;
  background: #F9F9F9;
  padding: 12px 24px;
  border-radius: 8px;
  border-left: 4px solid #6246E8;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.dcim-cockpit-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.dcim-cockpit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D9D9D9;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dcim-cockpit-dot.active {
  background: #6246E8;
  width: 30px;
  border-radius: 5px;
}

.dcim-features-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.dcim-btn-light {
  background: #E8F5E9;
  color: #6246E8;
  border: none;
}

.dcim-btn-light:hover {
  background: #C8E6C9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(98, 70, 232, 0.15);
}

/* 之前的功能样式清理 */

/* DCIM技术特点区域 */
.dcim-tech-features-section {
  padding: 80px 0;
  background: #F7F9F8;
}

.dcim-tech-features-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dcim-tech-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dcim-tech-feature-card {
  background: var(--dcim-background);
  border: 1px solid var(--dcim-border);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.dcim-tech-feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.dcim-tech-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dcim-primary-light);
  border-radius: 50%;
}

.dcim-tech-feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.dcim-tech-feature-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dcim-text-primary);
  margin: 0 0 16px 0;
}

.dcim-tech-feature-desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--dcim-text-secondary);
  margin: 0;
}

/* DCIM客户案例区域 */
.dcim-cases-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.dcim-cases-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dcim-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.dcim-case-card {
  background: var(--dcim-background);
  border: 1px solid var(--dcim-border);
  border-radius: 8px;
  width: 587px;
  height: 300px;
  padding: 48px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dcim-case-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.dcim-case-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dcim-primary-light);
  border-radius: 50%;
}

.dcim-case-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.dcim-case-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--dcim-text-primary);
  margin: 0 0 16px 0;
}

.dcim-case-desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--dcim-text-secondary);
  margin: 0;
}

/* 相关推荐区域 */
.dcim-recommendations-section {
  padding: 60px 0;
  background: #F7F9F8;
}

.dcim-recommendations-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dcim-recommendations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dcim-recommendation-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dcim-background);
  border: 1px solid var(--dcim-border);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: var(--dcim-text-primary);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.dcim-recommendation-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(98, 70, 232, 0.1);
  transition: width 0.4s ease;
  z-index: -1;
}

.dcim-recommendation-item:hover {
  color: var(--dcim-primary);
  border-color: var(--dcim-primary);
}

.dcim-recommendation-item:hover::before {
  width: 100%;
}

.dcim-recommendation-text {
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.dcim-recommendation-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

/* 底部体验区域 */
.dcim-cta-section {
  padding: 60px 0;
  background: #6246E8;
}

.dcim-cta-content {
  text-align: center;
}

.dcim-cta-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 24px 0;
}

/* 按钮样式 */
.dcim-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.dcim-btn-primary {
  background: var(--dcim-primary);
  color: #FFFFFF;
}

.dcim-btn-primary:hover {
  background: var(--dcim-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(98, 70, 232, 0.3);
}

.dcim-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(98, 70, 232, 0.2);
}

.dcim-btn-white {
  background: #FFFFFF;
  color: #6246E8;
}

.dcim-btn-white .dcim-btn-icon {
  filter: invert(58%) sepia(43%) saturate(515%) hue-rotate(76deg) brightness(93%) contrast(86%);
}

.dcim-btn-white:hover {
  background: #F5F5F5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dcim-btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.dcim-btn svg {
  flex-shrink: 0;
}

.dcim-btn-icon {
  width: 18px;
  height: 17px;
  flex-shrink: 0;
  display: inline-block;
}

/* 响应式设计 */
@media (max-width: 1199px) {
  .dcim-container {
    padding: 0 24px;
  }

  .dcim-cockpit-showcase {
    flex-direction: column;
  }

  .dcim-cockpit-left,
  .dcim-cockpit-right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .dcim-cockpit-main {
    width: 100%;
  }

  .dcim-tech-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dcim-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dcim-recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .dcim-container {
    padding: 0 16px;
  }

  .dcim-hero-section {
    padding: 60px 0;
    height: auto;
    min-height: 600px;
  }

  .dcim-intro-section {
    height: auto;
    min-height: 445px;
    padding: 40px 0;
  }

  .dcim-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dcim-intro-image {
    padding: 20px;
  }

  .dcim-intro-image img {
    width: 100%;
    max-width: 294px;
    height: auto;
    aspect-ratio: 294 / 275;
  }

  .dcim-intro-text {
    padding: 0 20px;
    justify-content: center;
  }

  .dcim-intro-text {
    padding: 0 20px;
    justify-content: center;
  }

  .dcim-intro-text p {
    width: 100%;
    max-width: 752px;
    height: auto;
    min-height: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgba(98, 70, 232, 0.35), rgba(98, 70, 232, 0.1));
    border-radius: 8px;
    padding: 20px;
    word-break: break-word;
  }

  .dcim-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dcim-hero-content {
    text-align: center;
  }

  .dcim-hero-icons {
    align-items: center;
    gap: 24px;
  }

  .dcim-hero-icon-item {
    width: 150px;
    height: 150px;
  }

  .dcim-hero-icon-item.top {
    margin-left: 0;
    align-self: center;
  }

  .dcim-hero-icon-item svg {
    width: 80px;
    height: 80px;
  }

  .dcim-hero-title {
    font-size: 48px;
    line-height: 64px;
  }

  .dcim-hero-subtitle {
    font-size: 28px;
    line-height: 40px;
  }

  .dcim-hero-en-title {
    font-size: 16px;
    line-height: 24px;
  }

  .dcim-hero-features {
    font-size: 14px;
    line-height: 22px;
  }

  .dcim-hero-buttons {
    justify-content: center;
  }

  .dcim-scenarios-section {
    height: auto;
    padding: 60px 0;
  }

  .dcim-scenarios-list {
    gap: 24px;
  }

  .dcim-scenario-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .dcim-scenario-title,
  .dcim-scenario-desc {
    width: 100%;
    height: auto;
    white-space: normal;
  }

  .dcim-scenario-icon {
    margin-right: 0;
    margin-bottom: 24px;
  }

  .dcim-section-title {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 32px;
  }

  .dcim-cockpit-carousel {
    height: 400px;
  }

  .dcim-cockpit-item {
    width: 90%;
  }

  .dcim-cockpit-item.prev,
  .dcim-cockpit-item.next {
    display: none;
  }

  .dcim-tech-features-grid,
  .dcim-cases-grid,
  .dcim-recommendations-grid {
    grid-template-columns: 1fr;
  }

  .dcim-features-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dcim-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .dcim-cta-text {
    font-size: 20px;
    line-height: 30px;
  }
}
