/* ==================== 网站维护页面样式 ==================== */

/* Hero区域：左右分栏布局 */
.wm-hero-section {
  background: linear-gradient(180deg, #000000 0%, #0a1a2e 50%, #000000 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.wm-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(100, 200, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 200, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

.wm-hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.wm-hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.wm-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.wm-breadcrumb a:hover {
  color: #64c8ff;
}

.wm-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
}

.wm-hero-icon-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wm-icon-wrapper {
  width: 56px;
  height: 56px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(100, 200, 255, 0.3);
  color: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wm-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke-width: 2;
}

.wm-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0;
  line-height: 1.2;
}

.wm-hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.wm-hero-description p {
  margin: 0;
}

.wm-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wm-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #64c8ff;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.wm-hero-btn-primary:hover {
  background: #236be4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(100, 200, 255, 0.3);
}

.wm-btn-arrow {
  width: 20px;
  height: 20px;
}

.wm-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(100, 200, 255, 0.3);
  transition: all 0.3s ease;
}

.wm-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(100, 200, 255, 0.5);
  transform: translateY(-2px);
}

.wm-btn-arrow-left {
  width: 20px;
  height: 20px;
}

.wm-hero-right {
  position: relative;
}

.wm-dashboard-visual {
  position: relative;
  width: 100%;
  height: 500px;
  background: #1a2332;
  border-radius: 16px;
  border: none;
  padding: 0;
  box-shadow: 0 0 0 1px rgba(100, 200, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(100, 200, 255, 0.1);
  overflow: hidden;
}

.wm-dashboard-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(10, 26, 46, 0.4) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 16px;
}

.wm-dashboard-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(
      ellipse at center,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.2) 70%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 26, 46, 0.4) 0%,
      transparent 15%,
      transparent 85%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    linear-gradient(
      to right,
      rgba(10, 26, 46, 0.3) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.3) 100%
    );
  z-index: 2;
  pointer-events: none;
  border-radius: 16px;
}

.wm-dashboard-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 0;
}

/* 服务概述部分 */
.wm-overview-section {
  padding: 100px 0;
  background: #0f1722;
  position: relative;
}

.wm-overview-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 24px 0;
}

.wm-overview-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 60px 0;
  max-width: 900px;
}

.wm-overview-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wm-overview-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(100, 200, 255, 0.1);
  transition: all 0.3s ease;
}

.wm-overview-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  background: rgba(255, 255, 255, 0.08);
}

.wm-overview-feature-title {
  font-size: 22px;
  font-weight: 600;
  color: #64c8ff;
  margin: 0 0 16px 0;
}

.wm-overview-feature-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* 核心特性部分 */
.wm-features-section {
  padding: 100px 0;
  background: #1a2332;
  position: relative;
}

.wm-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(100, 200, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 200, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

.wm-features-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.wm-features-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0;
}

.wm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.wm-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(100, 200, 255, 0.1);
  transition: all 0.3s ease;
}

.wm-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  background: rgba(255, 255, 255, 0.08);
}

.wm-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(100, 200, 255, 0.3);
  color: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.wm-feature-card:hover .wm-feature-icon {
  background: rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  transform: scale(1.1);
}

.wm-feature-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2;
}

.wm-feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.wm-feature-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* 应用场景部分 */
.wm-scenarios-section {
  padding: 100px 0;
  background: #0f1722;
  position: relative;
}

.wm-scenarios-header {
  margin-bottom: 60px;
}

.wm-scenarios-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0;
  text-align: center;
}

.wm-scenarios-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.wm-scenario-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(100, 200, 255, 0.1);
  transition: all 0.3s ease;
}

.wm-scenario-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  background: rgba(255, 255, 255, 0.08);
}

.wm-scenario-icon {
  width: 56px;
  height: 56px;
  background: rgba(100, 200, 255, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(100, 200, 255, 0.3);
  color: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.wm-scenario-item:hover .wm-scenario-icon {
  background: rgba(100, 200, 255, 0.2);
  border-color: #64c8ff;
  transform: scale(1.1);
}

.wm-scenario-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.wm-scenario-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* 为什么选择我们的服务部分 */
.wm-why-choose-section {
  padding: 100px 0;
  background: #1a2332;
  position: relative;
}

.wm-why-choose-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 60px;
  border: 1px solid rgba(100, 200, 255, 0.1);
}

.wm-why-choose-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 40px 0;
}

.wm-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wm-benefit-item {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.wm-benefit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #64c8ff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(100, 200, 255, 0.5);
}

.wm-benefit-item:hover {
  color: #ffffff;
  padding-left: 40px;
}

.wm-benefit-item:hover::before {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 15px rgba(100, 200, 255, 0.8);
}

/* 成功案例部分 */
.wm-case-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f1722 0%, #1a2332 100%);
  position: relative;
}

.wm-case-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wm-case-panel {
  background: rgba(26, 35, 50, 0.8);
  border-radius: 16px;
  padding: 40px;
  border: 2px solid rgba(100, 200, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.wm-case-panel-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.wm-case-panel-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px 0;
}

.wm-case-panel-content {
  min-height: 300px;
}

.wm-case-panel-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  height: 300px;
}

.wm-metric-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(100, 200, 255, 0.3);
  border-top-color: #64c8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wm-metric-value {
  font-size: 28px;
  font-weight: 700;
  color: #64c8ff;
  position: absolute;
}

.wm-uptime-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}

.wm-case-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wm-case-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0;
}

.wm-case-tag {
  display: inline-block;
  background: rgba(100, 200, 255, 0.1);
  border: 1px solid rgba(100, 200, 255, 0.3);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  color: #64c8ff;
  width: fit-content;
}

.wm-case-headline {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.wm-case-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.wm-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64c8ff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.wm-case-link:hover {
  color: #ffffff;
  gap: 12px;
}

.wm-case-link-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.wm-case-link:hover .wm-case-link-arrow {
  transform: translateX(5px);
}

/* CTA部分 */
.wm-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1a2e 0%, #1a2332 100%);
  position: relative;
}

.wm-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(100, 200, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 200, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

.wm-cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wm-cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 20px 0;
}

.wm-cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
  line-height: 1.7;
}

.wm-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.wm-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #64c8ff;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.wm-cta-btn-primary:hover {
  background: #236be4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(100, 200, 255, 0.4);
}

.wm-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.wm-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.wm-cta-phone-icon {
  width: 20px;
  height: 20px;
}

.wm-cta-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wm-stat-item {
  text-align: center;
}

.wm-stat-value {
  font-size: 42px;
  font-weight: 700;
  color: #64c8ff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.wm-stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .wm-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wm-dashboard-visual {
    height: 400px;
  }

  .wm-overview-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wm-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wm-case-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wm-cta-stats {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .wm-hero-section {
    padding: 20px 0 80px;
    margin-top: 0;
  }

  .wm-hero-wrapper {
    margin-top: 0;
  }

  .wm-hero-title {
    font-size: 36px;
  }

  .wm-hero-description {
    font-size: 16px;
  }

  .wm-dashboard-visual {
    height: 300px;
  }

  /* 移动端隐藏右侧区域 */
  .wm-hero-right {
    display: none;
  }

  .wm-overview-section,
  .wm-features-section,
  .wm-scenarios-section,
  .wm-why-choose-section,
  .wm-case-section,
  .wm-cta-section {
    padding: 60px 0;
  }

  .wm-overview-title,
  .wm-features-title,
  .wm-scenarios-title,
  .wm-case-title,
  .wm-cta-title {
    font-size: 32px;
  }

  .wm-why-choose-content {
    padding: 40px 32px;
  }

  .wm-why-choose-title {
    font-size: 28px;
  }

  .wm-hero-actions,
  .wm-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wm-hero-btn-primary,
  .wm-hero-btn-secondary,
  .wm-cta-btn-primary,
  .wm-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* 移动端统计数据 */
  .wm-cta-stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .wm-stat-item {
    flex: 1 1 auto;
    min-width: 0;
  }

  .wm-stat-value {
    font-size: 32px;
  }

  .wm-stat-label {
    font-size: 14px;
  }

  /* 移动端横向滚动特性网格 */
  .wm-features-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .wm-features-grid::-webkit-scrollbar {
    height: 4px;
  }

  .wm-features-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }

  .wm-features-grid::-webkit-scrollbar-thumb {
    background: rgba(100, 200, 255, 0.3);
    border-radius: 2px;
  }

  .wm-features-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 200, 255, 0.5);
  }

  .wm-feature-card {
    flex: 0 0 240px;
    width: 240px;
    min-width: 240px;
    scroll-snap-align: start;
  }

  /* 移动端隐藏案例面板 */
  .wm-case-panel {
    display: none;
  }

  /* 移动端横向滚动概述特性网格 */
  .wm-overview-features {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .wm-overview-features::-webkit-scrollbar {
    height: 4px;
  }

  .wm-overview-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
  }

  .wm-overview-features::-webkit-scrollbar-thumb {
    background: rgba(100, 200, 255, 0.3);
    border-radius: 2px;
  }

  .wm-overview-features::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 200, 255, 0.5);
  }

  .wm-overview-feature-card {
    flex: 0 0 250px;
    width: 250px;
    min-width: 250px;
    scroll-snap-align: start;
  }
}

