/*
 * 来源：从原页面内联 <style> 迁出，并按用途拆分为独立 CSS。
 * 原始哈希：b9cec4e83e68，用于追溯迁出前的样式内容。
 * 原始位置：index.html。
 * 维护说明：该文件依赖 HTML 中的 <link> 加载顺序，调整后请做页面回归检查。
 */
#supertech-about {
  padding: 80px 20px;
  background-color: #f8fafc;
  font-family: system-ui, -apple-system, sans-serif;
}

.st-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.st-text {
  flex: 1.2;
}

.st-image {
  flex: 0.8;
  position: relative;
}

.st-subtitle {
  color: #FF5B00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.st-title {
  font-size: 2.5rem;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.st-description {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* 优势列表：用图标和短句强化企业能力卖点。 */
.st-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.st-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1e293b;
}

.st-feat-item svg {
  width: 20px;
  height: 20px;
  fill: #FF5B00;
}

/* 图片装饰：为企业展示图增加层次感。 */
.st-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 20px 20px 0 #FF5B00;
  /* 橙色装饰块：呼应品牌色并增强图片边界。 */
}

@media (max-width: 992px) {
  .st-container {
    flex-direction: column;
    text-align: center;
  }

  .st-features {
    justify-items: center;
  }

  .st-image {
    order: -1;
    width: 100%;
    max-width: 500px;
  }

  .st-image img {
    box-shadow: 10px 10px 0 #FF5B00;
  }
}
