

/* ==== from resources/industry-qa.html ==== */

:root {
  --primary: #1a56db;
  --primary-light: #3b82f6;
  --primary-dark: #1e40af;
  --accent: #0ea5e9;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  --radius: 12px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
.header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  color: white;
  padding: 48px 0 40px;
  text-align: center;
}
.header h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.header p { font-size: 15px; opacity: 0.9; }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.category-tab {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--text-light);
  transition: all 0.2s;
}
.category-tab:hover { border-color: var(--primary-light); color: var(--primary); }
.category-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.qa-section { display: none; }
.qa-section.active { display: block; }
.qa-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.qa-section-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.qa-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--border);
}
.qa-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}
.qa-question {
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.qa-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.qa-text {
  flex: 1;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.qa-lock {
  flex-shrink: 0;
  color: var(--text-light);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.cta-banner {
  background: linear-gradient(135deg, #1e3a5f 0%, #1a56db 100%);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
  color: white;
}
.cta-banner h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.cta-banner p { font-size: 14px; opacity: 0.9; margin-bottom: 20px; }
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  background: white;
  color: var(--primary);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.footer {
  text-align: center;
  padding: 32px 0;
  color: var(--text-light);
  font-size: 13px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
@media (max-width: 640px) {
  .header h1 { font-size: 22px; }
  .container { padding: 0 16px; }
  .qa-question { padding: 14px 16px; gap: 10px; }
  .qa-text { font-size: 14px; }
}
