/* 工业设备模板 - 视觉对齐 yanshi.92wailian.com/k527 */
:root {
  --ind-primary: #fd5519;
  --ind-primary-dark: #e04a12;
  --ind-dark: #1b1f24;
  --ind-dark-2: #252a31;
  --ind-text: #555;
  --ind-title: #1b1f24;
  --ind-border: #ececec;
  --ind-bg: #f7f8fa;
}

body.tpl-industrial {
  background: var(--ind-bg);
  color: var(--ind-text);
  font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
  line-height: 1.7;
}

body.tpl-industrial .boxed-wrapper {
  overflow-x: hidden;
}

body.tpl-industrial .auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== 顶栏 ========== */
body.tpl-industrial .main-header {
  background: var(--ind-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

body.tpl-industrial .header-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 20px;
}

body.tpl-industrial .logo-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

body.tpl-industrial .site-logo {
  height: 48px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}

body.tpl-industrial .site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

body.tpl-industrial .site-nav a {
  color: #d5d9de;
  font-size: 15px;
  padding: 10px 16px;
  letter-spacing: 1px;
  transition: color 0.2s;
  position: relative;
}

body.tpl-industrial .site-nav a:hover,
body.tpl-industrial .site-nav a.active {
  color: #fff;
}

body.tpl-industrial .site-nav a.active::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--ind-primary);
}

body.tpl-industrial .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

body.tpl-industrial .header-right > button,
body.tpl-industrial .header-right .btn-search,
body.tpl-industrial .main-header .btn-search,
body.tpl-industrial button.btn-search,
body.tpl-industrial a.btn-search,
body.tpl-industrial .header-right > *:not(.btn-service) {
  display: none !important;
}

body.tpl-industrial .theme-btn,
body.tpl-industrial .btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ind-primary);
  color: #fff !important;
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

body.tpl-industrial .theme-btn:hover,
body.tpl-industrial .btn-service:hover {
  background: var(--ind-primary-dark);
}

/* ========== 轮播 ========== */
body.tpl-industrial .banner-section {
  position: relative;
  overflow: hidden;
  background: #111;
}

body.tpl-industrial .banner-placeholder {
  min-height: 520px;
  background: linear-gradient(135deg, #1a1f26 0%, #2d3540 50%, #1a1f26 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 600;
}

body.tpl-industrial .banner-slider .banner-item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

body.tpl-industrial .banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  font-size: 30px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.tpl-industrial .banner-prev { left: 24px; }
body.tpl-industrial .banner-next { right: 24px; }
body.tpl-industrial .banner-dots span.active { background: var(--ind-primary); }

/* ========== 内页标题 ========== */
body.tpl-industrial .page-hero {
  background: linear-gradient(135deg, #1b1f24 0%, #2d3540 100%);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

body.tpl-industrial .page-hero h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

body.tpl-industrial .page-hero p {
  font-size: 16px;
  opacity: 0.85;
}

/* ========== 区块标题 ========== */
body.tpl-industrial .sec-title.centred { text-align: center; margin-bottom: 40px; }
body.tpl-industrial .sec-title.left { text-align: left; margin-bottom: 24px; }
body.tpl-industrial .sec-title p {
  color: var(--ind-primary);
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
body.tpl-industrial .sec-title h2 {
  font-size: 32px;
  color: var(--ind-title);
  font-weight: 600;
  line-height: 1.3;
}
body.tpl-industrial .sec-title.light p,
body.tpl-industrial .sec-title.light h2 { color: #fff; }

/* ========== 公司简介 ========== */
body.tpl-industrial .about-section {
  padding: 80px 0;
  background: #fff;
}

body.tpl-industrial .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

body.tpl-industrial .about-images {
  position: relative;
  min-height: 420px;
}

body.tpl-industrial .about-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 72%;
  height: 340px;
  background: linear-gradient(135deg, #4a5560 0%, #1b1f24 100%);
  border-radius: 4px;
}

body.tpl-industrial .about-badge {
  position: absolute;
  left: 30%;
  bottom: 30px;
  background: var(--ind-primary);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(253, 85, 25, 0.35);
}

body.tpl-industrial .badge-icon {
  font-size: 20px;
}

body.tpl-industrial .about-company {
  font-size: 16px;
  color: var(--ind-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

body.tpl-industrial .about-text,
body.tpl-industrial .intro-text,
body.tpl-industrial .intro-empty {
  font-size: 15px;
  color: var(--ind-text);
  line-height: 1.9;
  margin-bottom: 24px;
}

body.tpl-industrial .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

body.tpl-industrial .feature-item h5 {
  font-size: 16px;
  color: var(--ind-title);
  margin-bottom: 8px;
}

body.tpl-industrial .feature-item h5 span {
  color: var(--ind-primary);
  margin-right: 6px;
  font-weight: 700;
}

body.tpl-industrial .feature-item p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

body.tpl-industrial .about-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--ind-border);
}

body.tpl-industrial .about-ceo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #888;
}

body.tpl-industrial .ceo-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #888, #555);
}

body.tpl-industrial .about-stat {
  text-align: center;
  padding: 12px 24px;
  border-left: 3px solid var(--ind-primary);
}

body.tpl-industrial .about-stat strong {
  display: block;
  font-size: 42px;
  color: var(--ind-primary);
  line-height: 1;
  font-weight: 700;
}

body.tpl-industrial .about-stat span {
  font-size: 13px;
  color: #888;
}

/* ========== 产品展示 ========== */
body.tpl-industrial .project-section {
  padding: 70px 0 50px;
  background: var(--ind-bg);
}

body.tpl-industrial .product-gallery-home,
body.tpl-industrial .product-gallery-page {
  display: grid;
}

body.tpl-industrial .product-gallery-home {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

body.tpl-industrial .product-gallery-home .project-card {
  border-radius: 4px;
}

body.tpl-industrial .project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  color: #fff;
}

body.tpl-industrial .project-card img,
body.tpl-industrial .project-card .proj-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  background: #3a4550;
}

body.tpl-industrial .project-card:hover img,
body.tpl-industrial .project-card:hover .proj-cover {
  transform: scale(1.08);
}

body.tpl-industrial .project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  z-index: 1;
}

body.tpl-industrial .project-card .proj-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 20px;
  z-index: 2;
}

body.tpl-industrial .project-card .proj-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

body.tpl-industrial .project-card .proj-text p {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.tpl-industrial .project-card .proj-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: var(--ind-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 3;
  transition: transform 0.3s;
}

body.tpl-industrial .project-card:hover .proj-plus {
  transform: translate(-50%, -50%) scale(1);
}

body.tpl-industrial .product-gallery-page {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

body.tpl-industrial .product-gallery-page .project-card {
  border-radius: 4px;
  aspect-ratio: auto;
  min-height: 320px;
}

/* ========== 解决方案区 ========== */
body.tpl-industrial .agency-section {
  padding: 80px 0;
  background: linear-gradient(rgba(27, 31, 36, 0.9), rgba(27, 31, 36, 0.9)),
    linear-gradient(135deg, #2a3038 0%, #1b1f24 100%);
  color: #fff;
}

body.tpl-industrial .agency-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

body.tpl-industrial .agency-left .theme-btn {
  margin-top: 24px;
}

body.tpl-industrial .agency-tabs {
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.tpl-industrial .tab-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

body.tpl-industrial .tab-btn {
  flex: 1;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

body.tpl-industrial .tab-btn.active {
  background: var(--ind-primary);
  color: #fff;
}

body.tpl-industrial .tab-panel {
  display: none;
}

body.tpl-industrial .tab-panel.active {
  display: block;
}

body.tpl-industrial .tab-img {
  height: 160px;
  background: linear-gradient(135deg, #4a5560, #2d3540);
  margin-bottom: 16px;
  border-radius: 2px;
}

body.tpl-industrial .tab-img-2 {
  background: linear-gradient(135deg, #5a6570, #3a4550);
}

body.tpl-industrial .tab-panel p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
  line-height: 1.8;
}

body.tpl-industrial .tab-panel ul {
  list-style: none;
  padding: 0;
}

body.tpl-industrial .tab-panel li {
  font-size: 13px;
  color: #aaa;
  padding: 6px 0 6px 18px;
  position: relative;
}

body.tpl-industrial .tab-panel li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ind-primary);
}

/* ========== 数据统计 ========== */
body.tpl-industrial .funfact-section {
  padding: 60px 0;
  background: #fff;
}

body.tpl-industrial .funfact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

body.tpl-industrial .funfact-item {
  text-align: center;
  padding: 30px 16px;
  border: 1px solid var(--ind-border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.tpl-industrial .funfact-item:hover {
  border-color: var(--ind-primary);
  box-shadow: 0 8px 24px rgba(253, 85, 25, 0.1);
}

body.tpl-industrial .funfact-icon {
  color: var(--ind-primary);
  font-size: 28px;
  margin-bottom: 12px;
}

body.tpl-industrial .funfact-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--ind-title);
  margin-bottom: 6px;
}

body.tpl-industrial .funfact-item p {
  font-size: 14px;
  color: #888;
}

/* ========== 新闻 ========== */
body.tpl-industrial .news-section {
  padding: 70px 0;
  background: var(--ind-bg);
}

body.tpl-industrial .news-home-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

body.tpl-industrial .news-home-grid .news-list-home {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.tpl-industrial .news-home-grid .news-list-home .news-item {
  margin-bottom: 12px;
}

body.tpl-industrial .news-home-grid .news-list-home .news-item:last-child {
  margin-bottom: 0;
}

body.tpl-industrial .news-gallery-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.tpl-industrial .news-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  color: inherit;
}

body.tpl-industrial .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

body.tpl-industrial .news-card .news-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

body.tpl-industrial .news-card .news-img-wrap img,
body.tpl-industrial .news-card .news-img-wrap .news-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd;
}

body.tpl-industrial .news-card .post-date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--ind-primary);
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  min-width: 56px;
}

body.tpl-industrial .news-card .post-date h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

body.tpl-industrial .news-card .post-date p {
  font-size: 11px;
  margin-top: 2px;
}

body.tpl-industrial .news-card .news-body {
  padding: 18px;
}

body.tpl-industrial .news-card .news-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

body.tpl-industrial .news-card .news-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ind-title);
  line-height: 1.5;
}

body.tpl-industrial .news-list-page .news-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s;
}

body.tpl-industrial .news-list-page .news-item:hover {
  box-shadow: 0 4px 16px rgba(253, 85, 25, 0.12);
}

body.tpl-industrial .news-list-page .news-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: var(--ind-dark);
  color: #fff;
  padding: 10px 6px;
}

body.tpl-industrial .news-list-page .news-date .d {
  font-size: 26px;
  font-weight: 700;
  color: var(--ind-primary);
}

body.tpl-industrial .news-list-page .news-date .ym {
  font-size: 11px;
}

body.tpl-industrial .news-list-page .news-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ind-title);
  margin-bottom: 6px;
}

body.tpl-industrial .news-list-page .news-summary {
  font-size: 14px;
  color: #888;
}

/* ========== 联系页 ========== */
body.tpl-industrial .page-main {
  padding: 50px 20px 70px;
}

body.tpl-industrial .contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

body.tpl-industrial .contact-left {
  padding: 48px;
  background: var(--ind-dark);
  color: #fff;
}

body.tpl-industrial .contact-left h3 {
  font-size: 24px;
  margin-bottom: 28px;
}

body.tpl-industrial .contact-item {
  margin-bottom: 24px;
}

body.tpl-industrial .ci-label {
  display: block;
  font-size: 13px;
  color: #999;
  margin-bottom: 6px;
}

body.tpl-industrial .ci-phone {
  font-size: 28px;
  color: var(--ind-primary);
  font-weight: 700;
}

body.tpl-industrial .contact-right {
  padding: 48px;
}

body.tpl-industrial .contact-right h3 {
  font-size: 22px;
  color: var(--ind-title);
  margin-bottom: 16px;
}

body.tpl-industrial .contact-right p {
  font-size: 14px;
  color: #888;
  line-height: 1.9;
  margin-bottom: 28px;
}

body.tpl-industrial .btn-block {
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  letter-spacing: 4px;
  border: none;
  cursor: pointer;
}

body.tpl-industrial .contact-form {
  margin-top: 8px;
}

body.tpl-industrial .contact-form .cf-row {
  margin-bottom: 16px;
}

body.tpl-industrial .contact-form label {
  display: block;
  font-size: 14px;
  color: var(--ind-title);
  margin-bottom: 8px;
  font-weight: 600;
}

body.tpl-industrial .contact-form input,
body.tpl-industrial .contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s;
}

body.tpl-industrial .contact-form input:focus,
body.tpl-industrial .contact-form textarea:focus {
  outline: none;
  border-color: var(--ind-primary);
  background: #fff;
}

body.tpl-industrial .contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

body.tpl-industrial .contact-form .cf-tip {
  min-height: 20px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #888;
}

body.tpl-industrial .contact-form .cf-tip.success {
  color: #67c23a;
}

body.tpl-industrial .contact-form .cf-tip.error {
  color: #f56c6c;
}

/* ========== 详情页 ========== */
body.tpl-industrial .detail-box {
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.tpl-industrial .page-title {
  font-size: 28px;
  color: var(--ind-title);
  margin-bottom: 12px;
}

body.tpl-industrial .detail-meta {
  color: #999;
  font-size: 13px;
  margin-bottom: 20px;
}

body.tpl-industrial .detail-cover {
  width: 100%;
  margin-bottom: 24px;
}

body.tpl-industrial .back-link a {
  color: var(--ind-primary);
}

body.tpl-industrial .more-link {
  text-align: center;
  margin-top: 28px;
}

body.tpl-industrial .more-link a {
  color: var(--ind-primary);
  font-weight: 600;
}

body.tpl-industrial .empty-tip,
body.tpl-industrial .loading {
  text-align: center;
  color: #999;
  padding: 40px;
  grid-column: 1 / -1;
}

/* ========== 页脚 ========== */
body.tpl-industrial .main-footer {
  margin-top: 0;
}

body.tpl-industrial .footer-top {
  background: linear-gradient(rgba(27, 31, 36, 0.95), rgba(27, 31, 36, 0.95)),
    linear-gradient(135deg, #2a3038, #1b1f24);
  padding: 50px 0;
}

body.tpl-industrial .footer-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

body.tpl-industrial .footer-info > div {
  text-align: center;
  color: #ccc;
}

body.tpl-industrial .footer-info h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

body.tpl-industrial .footer-info p {
  font-size: 14px;
}

body.tpl-industrial .footer-bottom {
  background: #14171b;
  padding: 30px 0;
}

body.tpl-industrial .footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

body.tpl-industrial .footer-nav-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}

body.tpl-industrial .footer-nav-col a {
  display: inline-block;
  color: #888;
  font-size: 13px;
  margin-right: 16px;
}

body.tpl-industrial .footer-nav-col a:hover {
  color: var(--ind-primary);
}

body.tpl-industrial .footer-copy {
  font-size: 13px;
  color: #666;
  text-align: center;
}

body.tpl-industrial .footer-filing-row {
  padding: 16px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 8px;
}

body.tpl-industrial .footer-filing-row .footer-copy {
  width: 100%;
  padding-top: 12px;
}

body.tpl-industrial .footer-copy a {
  color: #888;
  margin: 0 6px;
}

body.tpl-industrial .footer-copy a:hover {
  color: var(--ind-primary);
}

/* ========== 响应式 ========== */
@media (max-width: 1100px) {
  body.tpl-industrial .product-gallery-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body.tpl-industrial .header-box {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  body.tpl-industrial .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
  body.tpl-industrial .about-grid,
  body.tpl-industrial .agency-grid,
  body.tpl-industrial .news-home-grid,
  body.tpl-industrial .contact-page {
    grid-template-columns: 1fr;
  }
  body.tpl-industrial .about-features,
  body.tpl-industrial .funfact-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.tpl-industrial .product-gallery-home,
  body.tpl-industrial .product-gallery-page {
    grid-template-columns: 1fr;
  }
  body.tpl-industrial .banner-slider .banner-item img,
  body.tpl-industrial .banner-placeholder {
    height: 280px;
    min-height: 280px;
  }
  body.tpl-industrial .footer-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  body.tpl-industrial .about-features,
  body.tpl-industrial .funfact-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-industrial .sec-title h2 {
    font-size: 24px;
  }
  font-weight: 600;
  margin-bottom: 10px;
}
.tpl-industrial .page-hero p {
  font-size: 15px;
  opacity: 0.8;
}

/* 布局 */
.tpl-industrial .site-wrap {
  max-width: 1200px;
  padding: 0 20px;
}
.tpl-industrial .page-main {
  padding: 40px 20px 60px;
  margin: 0 auto;
  max-width: 1200px;
}

/* 公司简介条 */
.tpl-industrial .intro-strip {
  background: #fff;
  padding: 50px 0;
}
.tpl-industrial .intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.tpl-industrial .intro-side {
  background: #1a1a1a;
  color: #fff;
  padding: 28px 24px;
  border-radius: 4px;
}
.tpl-industrial .intro-side h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #ff6b00;
}
.tpl-industrial .intro-side ul {
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: #ccc;
}
.tpl-industrial .intro-tag {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.tpl-industrial .intro-main h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .intro-company {
  font-size: 16px;
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 16px;
}
.tpl-industrial .intro-text,
.tpl-industrial .intro-empty {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
}

/* 区块 */
.tpl-industrial .section-block {
  padding: 50px 0;
}
.tpl-industrial .section-alt {
  background: #fff;
}
.tpl-industrial .sec-head {
  text-align: center;
  margin-bottom: 36px;
}
.tpl-industrial .sec-label {
  display: block;
  color: #ff6b00;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.tpl-industrial .sec-head h2 {
  font-size: 26px;
  color: #1a1a1a;
  font-weight: 600;
}

/* 产品卡片 */
.tpl-industrial .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.tpl-industrial .card-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.tpl-industrial .card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.tpl-industrial .card-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e8e8e8;
}
.tpl-industrial .card-body {
  padding: 18px;
}
.tpl-industrial .card-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .card-summary {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 新闻列表 */
.tpl-industrial .news-list-industrial .news-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.tpl-industrial .news-list-industrial .news-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.tpl-industrial .news-list-industrial .news-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 6px;
  line-height: 1.3;
}
.tpl-industrial .news-list-industrial .news-date .d {
  font-size: 26px;
  font-weight: 700;
  color: #ff6b00;
}
.tpl-industrial .news-list-industrial .news-date .ym {
  font-size: 11px;
  opacity: 0.85;
}
.tpl-industrial .news-list-industrial .news-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .news-list-industrial .news-summary {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* 联系页 */
.tpl-industrial .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.tpl-industrial .contact-info h3,
.tpl-industrial .contact-form-box h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.tpl-industrial .contact-row {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.tpl-industrial .contact-row .label {
  display: block;
  color: #999;
  font-size: 13px;
  margin-bottom: 4px;
}
.tpl-industrial .contact-row .phone {
  font-size: 22px;
  color: #ff6b00;
  font-weight: 600;
}
.tpl-industrial .contact-form-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.tpl-industrial .btn-submit {
  display: inline-block;
  background: #ff6b00;
  color: #fff !important;
  padding: 14px 36px;
  font-size: 15px;
  letter-spacing: 2px;
  transition: background 0.2s;
}
.tpl-industrial .btn-submit:hover {
  background: #e55d00;
}

/* 详情 */
.tpl-industrial .detail-box {
  background: #fff;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.tpl-industrial .page-title {
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.tpl-industrial .detail-meta {
  color: #999;
  font-size: 13px;
  margin-bottom: 20px;
}
.tpl-industrial .detail-cover {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}
.tpl-industrial .back-link {
  margin-top: 24px;
  font-size: 14px;
}
.tpl-industrial .back-link a {
  color: #ff6b00;
}

.tpl-industrial .more-link {
  text-align: center;
  margin-top: 24px;
}
.tpl-industrial .more-link a {
  color: #ff6b00;
  font-weight: 600;
  font-size: 15px;
}

/* 页脚 */
.tpl-industrial .site-footer {
  background: #1a1a1a;
  color: #aaa;
  margin-top: 0;
  padding: 40px 20px 24px;
  text-align: left;
}
.tpl-industrial .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tpl-industrial .footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
.tpl-industrial .footer-contact h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}
.tpl-industrial .footer-contact p {
  font-size: 14px;
  color: #aaa;
}
.tpl-industrial .footer-nav {
  margin-bottom: 20px;
}
.tpl-industrial .footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}
.tpl-industrial .footer-col a {
  display: block;
  color: #aaa;
  font-size: 14px;
  padding: 4px 0;
}
.tpl-industrial .footer-col a:hover {
  color: #ff6b00;
}
.tpl-industrial .footer-copy {
  text-align: center;
  font-size: 13px;
  color: #777;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.tpl-industrial .site-footer a {
  color: #aaa;
}
.tpl-industrial .site-footer a:hover {
  color: #ff6b00;
}

@media (max-width: 900px) {
  .tpl-industrial .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 12px;
  }
  .tpl-industrial .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
  }
  .tpl-industrial .site-nav a {
    font-size: 13px;
    padding: 6px 10px;
  }
  .tpl-industrial .intro-grid {
    grid-template-columns: 1fr;
  }
  .tpl-industrial .contact-layout {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .tpl-industrial .footer-contact {
    grid-template-columns: 1fr;
  }
  .tpl-industrial .banner-slider .banner-item img {
    height: 240px;
  }
  .tpl-industrial .banner-placeholder {
    min-height: 240px;
  }
  font-weight: 600;
  margin-bottom: 10px;
}
.tpl-industrial .page-hero p {
  font-size: 15px;
  opacity: 0.8;
}

/* 布局 */
.tpl-industrial .site-wrap {
  max-width: 1200px;
  padding: 0 20px;
}
.tpl-industrial .page-main {
  padding: 40px 20px 60px;
  margin: 0 auto;
  max-width: 1200px;
}

/* 公司简介条 */
.tpl-industrial .intro-strip {
  background: #fff;
  padding: 50px 0;
}
.tpl-industrial .intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.tpl-industrial .intro-side {
  background: #1a1a1a;
  color: #fff;
  padding: 28px 24px;
  border-radius: 4px;
}
.tpl-industrial .intro-side h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #ff6b00;
}
.tpl-industrial .intro-side ul {
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: #ccc;
}
.tpl-industrial .intro-tag {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.tpl-industrial .intro-main h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .intro-company {
  font-size: 16px;
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 16px;
}
.tpl-industrial .intro-text,
.tpl-industrial .intro-empty {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
}

/* 区块 */
.tpl-industrial .section-block {
  padding: 50px 0;
}
.tpl-industrial .section-alt {
  background: #fff;
}
.tpl-industrial .sec-head {
  text-align: center;
  margin-bottom: 36px;
}
.tpl-industrial .sec-label {
  display: block;
  color: #ff6b00;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.tpl-industrial .sec-head h2 {
  font-size: 26px;
  color: #1a1a1a;
  font-weight: 600;
}

/* 产品卡片 */
.tpl-industrial .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.tpl-industrial .card-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.tpl-industrial .card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.tpl-industrial .card-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e8e8e8;
}
.tpl-industrial .card-body {
  padding: 18px;
}
.tpl-industrial .card-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .card-summary {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 新闻列表 */
.tpl-industrial .news-list-industrial .news-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.tpl-industrial .news-list-industrial .news-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.tpl-industrial .news-list-industrial .news-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 6px;
  line-height: 1.3;
}
.tpl-industrial .news-list-industrial .news-date .d {
  font-size: 26px;
  font-weight: 700;
  color: #ff6b00;
}
.tpl-industrial .news-list-industrial .news-date .ym {
  font-size: 11px;
  opacity: 0.85;
}
.tpl-industrial .news-list-industrial .news-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .news-list-industrial .news-summary {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* 联系页 */
.tpl-industrial .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.tpl-industrial .contact-info h3,
.tpl-industrial .contact-form-box h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.tpl-industrial .contact-row {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.tpl-industrial .contact-row .label {
  display: block;
  color: #999;
  font-size: 13px;
  margin-bottom: 4px;
}
.tpl-industrial .contact-row .phone {
  font-size: 22px;
  color: #ff6b00;
  font-weight: 600;
}
.tpl-industrial .contact-form-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.tpl-industrial .btn-submit {
  display: inline-block;
  background: #ff6b00;
  color: #fff !important;
  padding: 14px 36px;
  font-size: 15px;
  letter-spacing: 2px;
  transition: background 0.2s;
}
.tpl-industrial .btn-submit:hover {
  background: #e55d00;
}

/* 详情 */
.tpl-industrial .detail-box {
  background: #fff;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.tpl-industrial .page-title {
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.tpl-industrial .detail-meta {
  color: #999;
  font-size: 13px;
  margin-bottom: 20px;
}
.tpl-industrial .detail-cover {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}
.tpl-industrial .back-link {
  margin-top: 24px;
  font-size: 14px;
}
.tpl-industrial .back-link a {
  color: #ff6b00;
}

.tpl-industrial .more-link {
  text-align: center;
  margin-top: 24px;
}
.tpl-industrial .more-link a {
  color: #ff6b00;
  font-weight: 600;
  font-size: 15px;
}

/* 页脚 */
.tpl-industrial .site-footer {
  background: #1a1a1a;
  color: #aaa;
  margin-top: 0;
  padding: 40px 20px 24px;
  text-align: left;
}
.tpl-industrial .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tpl-industrial .footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
.tpl-industrial .footer-contact h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}
.tpl-industrial .footer-contact p {
  font-size: 14px;
  color: #aaa;
}
.tpl-industrial .footer-nav {
  margin-bottom: 20px;
}
.tpl-industrial .footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}
.tpl-industrial .footer-col a {
  display: block;
  color: #aaa;
  font-size: 14px;
  padding: 4px 0;
}
.tpl-industrial .footer-col a:hover {
  color: #ff6b00;
}
.tpl-industrial .footer-copy {
  text-align: center;
  font-size: 13px;
  color: #777;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.tpl-industrial .site-footer a {
  color: #aaa;
}
.tpl-industrial .site-footer a:hover {
  color: #ff6b00;
}

@media (max-width: 900px) {
  .tpl-industrial .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 12px;
  }
  .tpl-industrial .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
  }
  .tpl-industrial .site-nav a {
    font-size: 13px;
    padding: 6px 10px;
  }
  .tpl-industrial .intro-grid {
    grid-template-columns: 1fr;
  }
  .tpl-industrial .contact-layout {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .tpl-industrial .footer-contact {
    grid-template-columns: 1fr;
  }
  .tpl-industrial .banner-slider .banner-item img {
    height: 240px;
  }
  .tpl-industrial .banner-placeholder {
    min-height: 240px;
  }
  font-weight: 600;
  margin-bottom: 10px;
}
.tpl-industrial .page-hero p {
  font-size: 15px;
  opacity: 0.8;
}

/* 布局 */
.tpl-industrial .site-wrap {
  max-width: 1200px;
  padding: 0 20px;
}
.tpl-industrial .page-main {
  padding: 40px 20px 60px;
  margin: 0 auto;
  max-width: 1200px;
}

/* 公司简介条 */
.tpl-industrial .intro-strip {
  background: #fff;
  padding: 50px 0;
}
.tpl-industrial .intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.tpl-industrial .intro-side {
  background: #1a1a1a;
  color: #fff;
  padding: 28px 24px;
  border-radius: 4px;
}
.tpl-industrial .intro-side h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #ff6b00;
}
.tpl-industrial .intro-side ul {
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: #ccc;
}
.tpl-industrial .intro-tag {
  display: inline-block;
  background: #ff6b00;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.tpl-industrial .intro-main h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .intro-company {
  font-size: 16px;
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 16px;
}
.tpl-industrial .intro-text,
.tpl-industrial .intro-empty {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
}

/* 区块 */
.tpl-industrial .section-block {
  padding: 50px 0;
}
.tpl-industrial .section-alt {
  background: #fff;
}
.tpl-industrial .sec-head {
  text-align: center;
  margin-bottom: 36px;
}
.tpl-industrial .sec-label {
  display: block;
  color: #ff6b00;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.tpl-industrial .sec-head h2 {
  font-size: 26px;
  color: #1a1a1a;
  font-weight: 600;
}

/* 产品卡片 */
.tpl-industrial .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.tpl-industrial .card-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.tpl-industrial .card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.tpl-industrial .card-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e8e8e8;
}
.tpl-industrial .card-body {
  padding: 18px;
}
.tpl-industrial .card-title {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .card-summary {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 新闻列表 */
.tpl-industrial .news-list-industrial .news-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}
.tpl-industrial .news-list-industrial .news-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.tpl-industrial .news-list-industrial .news-date {
  flex-shrink: 0;
  width: 70px;
  text-align: center;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 6px;
  line-height: 1.3;
}
.tpl-industrial .news-list-industrial .news-date .d {
  font-size: 26px;
  font-weight: 700;
  color: #ff6b00;
}
.tpl-industrial .news-list-industrial .news-date .ym {
  font-size: 11px;
  opacity: 0.85;
}
.tpl-industrial .news-list-industrial .news-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.tpl-industrial .news-list-industrial .news-summary {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* 联系页 */
.tpl-industrial .contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #fff;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.tpl-industrial .contact-info h3,
.tpl-industrial .contact-form-box h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.tpl-industrial .contact-row {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}
.tpl-industrial .contact-row .label {
  display: block;
  color: #999;
  font-size: 13px;
  margin-bottom: 4px;
}
.tpl-industrial .contact-row .phone {
  font-size: 22px;
  color: #ff6b00;
  font-weight: 600;
}
.tpl-industrial .contact-form-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.tpl-industrial .btn-submit {
  display: inline-block;
  background: #ff6b00;
  color: #fff !important;
  padding: 14px 36px;
  font-size: 15px;
  letter-spacing: 2px;
  transition: background 0.2s;
}
.tpl-industrial .btn-submit:hover {
  background: #e55d00;
}

/* 详情 */
.tpl-industrial .detail-box {
  background: #fff;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.tpl-industrial .page-title {
  font-size: 26px;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.tpl-industrial .detail-meta {
  color: #999;
  font-size: 13px;
  margin-bottom: 20px;
}
.tpl-industrial .detail-cover {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}
.tpl-industrial .back-link {
  margin-top: 24px;
  font-size: 14px;
}
.tpl-industrial .back-link a {
  color: #ff6b00;
}

.tpl-industrial .more-link {
  text-align: center;
  margin-top: 24px;
}
.tpl-industrial .more-link a {
  color: #ff6b00;
  font-weight: 600;
  font-size: 15px;
}

/* 页脚 */
.tpl-industrial .site-footer {
  background: #1a1a1a;
  color: #aaa;
  margin-top: 0;
  padding: 40px 20px 24px;
  text-align: left;
}
.tpl-industrial .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.tpl-industrial .footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
.tpl-industrial .footer-contact h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
}
.tpl-industrial .footer-contact p {
  font-size: 14px;
  color: #aaa;
}
.tpl-industrial .footer-nav {
  margin-bottom: 20px;
}
.tpl-industrial .footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}
.tpl-industrial .footer-col a {
  display: block;
  color: #aaa;
  font-size: 14px;
  padding: 4px 0;
}
.tpl-industrial .footer-col a:hover {
  color: #ff6b00;
}
.tpl-industrial .footer-copy {
  text-align: center;
  font-size: 13px;
  color: #777;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.tpl-industrial .site-footer a {
  color: #aaa;
}
.tpl-industrial .site-footer a:hover {
  color: #ff6b00;
}

@media (max-width: 900px) {
  .tpl-industrial .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 12px;
  }
  .tpl-industrial .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 0;
  }
  .tpl-industrial .site-nav a {
    font-size: 13px;
    padding: 6px 10px;
  }
  .tpl-industrial .intro-grid {
    grid-template-columns: 1fr;
  }
  .tpl-industrial .contact-layout {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .tpl-industrial .footer-contact {
    grid-template-columns: 1fr;
  }
  .tpl-industrial .banner-slider .banner-item img {
    height: 240px;
  }
  .tpl-industrial .banner-placeholder {
    min-height: 240px;
  }
}
