/* 基础样式 */
.GGW_NVSW_comparison_wrap {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #2d3748;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.GGW_NVSW_comparison_header {
  text-align: center;
  margin-bottom: 40px;
}

.GGW_NVSW_main_title {
  font-size: 32px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.GGW_NVSW_subtitle {
  font-size: 18px;
  color: #718096;
  margin: 0;
  font-weight: 500;
}

/* 对比网格布局 */
.GGW_NVSW_comparison_grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: stretch;
}

/* 卡片样式 */
.GGW_NVSW_card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.GGW_NVSW_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.GGW_NVSW_card_header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.GGW_NVSW_icon_wrap {
  width: 42px;
  height: 42px;
  background: #ebf8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3182ce;
  flex-shrink: 0;
}

.GGW_NVSW_external .GGW_NVSW_icon_wrap {
  background: #ebf8ff;
  color: #3182ce;
}

.GGW_NVSW_internal .GGW_NVSW_icon_wrap {
  background: #f0fff4;
  color: #38a169;
}

.GGW_NVSW_card_title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #2d3748;
}

/* 图片区域优化 */
.GGW_NVSW_card_image {
  position: relative;
  height: 300px;
  padding: 0;
  margin: 20px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-grow: 1;
}

.GGW_NVSW_zoom_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
}

.GGW_NVSW_card:hover .GGW_NVSW_zoom_img {
  transform: scale(1.05);
}

.GGW_NVSW_image_badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(2px);
}

.GGW_NVSW_card_body {
  padding: 24px;
  background: #f9fafc;
}

/* 特性列表 */
.GGW_NVSW_feature_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.GGW_NVSW_feature_item {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px dashed #e2e8f0;
}

.GGW_NVSW_feature_item:last-child {
  border-bottom: none;
}

.GGW_NVSW_check_icon {
  width: 22px;
  height: 22px;
  background: #48bb78;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* 对比分隔线 */
.GGW_NVSW_compare_divider {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.GGW_NVSW_compare_divider:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
  transform: translateX(-50%);
}

.GGW_NVSW_divider_text {
  position: relative;
  z-index: 1;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #4a5568;
  font-size: 18px;
  box-shadow: 0 0 0 6px white, 0 4px 10px rgba(0,0,0,0.1);
  text-transform: uppercase;
}

/* 响应式设计 */
@media (max-width: 900px) {
  .GGW_NVSW_comparison_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .GGW_NVSW_compare_divider {
    height: 1px;
    width: 100%;
    margin: 10px 0;
  }
  
  .GGW_NVSW_compare_divider:before {
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
    transform: none;
  }
  
  .GGW_NVSW_divider_text {
    margin: 0 auto;
  }
  
  .GGW_NVSW_card_image {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .GGW_NVSW_main_title {
    font-size: 26px;
  }
  
  .GGW_NVSW_card_image {
    height: 220px;
  }
  
  .GGW_NVSW_card_header {
    padding: 20px 20px 0;
  }
  
  .GGW_NVSW_card_body {
    padding: 20px;
  }
}