/* ===== GLOBAL RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #1a2332; background: #fff; overflow-x: hidden; }

    /* ===== NAVBAR ===== */
    .navbar {
      background: #001433;
      padding: 0 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 72px;
      position: relative;
      z-index: 100;
    }
    .nav-left { display: flex; align-items: center; gap: 10px; padding-right: 200px;}
    .nav-logo-img {
      height: 42px;
      width: auto;
      object-fit: contain;
    }
    .nav-brand { color: #fff; }
    .nav-brand h1 { font-size: 18px; font-weight: 700; letter-spacing: 1px; line-height: 1.2; }
    .nav-brand span { font-size: 11px; color: #8aa4c8; font-weight: 500; letter-spacing: 0.5px; }

    /* 导航菜单基础样式 + 下拉容器 */
    .nav-center { display: flex; gap: 60px; list-style: none; align-items: center; }
    .nav-center > li {
      position: relative; /* 下拉菜单绝对定位依托父级 */
    }
    .nav-center a {
      color: #fff; text-decoration: none; font-size: 13px; font-weight: bold;
      letter-spacing: 0.5px; text-transform: uppercase; position: relative;
      padding-bottom: 4px; transition: color 0.2s;
      display: block;
    }
    .nav-center a::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
      background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .nav-center a:hover::after { transform: scaleX(1); }
    .nav-center a.active::after { transform: scaleX(1); }

    /* 产品下拉链接：文字+箭头flex居中 */
    .nav-dropdown-link {
      display: flex !important;
      align-items: center;
      gap: 8px;
    }
    /* 下拉箭头通用样式 */
    .down-arrow {
      width: 14px;
      height: 14px;
      stroke: #ffffff;
      transition: transform 0.25s ease;
    }
    /* hover 箭头向上翻转 */
    .nav-item-dropdown:hover .down-arrow {
      transform: rotate(180deg);
    }

    /* ========== Products 下拉菜单样式 ========== */
    .submenu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #001433;
      min-width: 180px;
      list-style: none;
      padding: 12px 0;
      border-radius: 4px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.25s ease;
      z-index: 101;
    }
    .submenu li a {
      padding: 10px 20px;
      text-transform: none;
      font-size: 13px;
      letter-spacing: 0;
    }
    .submenu li a:hover {
      background: #0a2452;
    }
    /* 鼠标悬浮展开下拉 */
    .nav-item-dropdown:hover .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* ========== 右上角语言下拉模块 ========== */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-left: 150px;
    }
    .search-icon {
      color: #fff;
      cursor: pointer;
    }
    /* 语言下拉容器 */
    .lang-dropdown {
      position: relative;
      cursor: pointer;
      color: #fff;
      font-size: 13px;
    }
    .lang-current {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .lang-svg-arrow {
      width: 13px;
      height: 13px;
      stroke: #fff;
      transition: transform 0.25s ease;
    }
    .lang-dropdown:hover .lang-svg-arrow {
      transform: rotate(180deg);
    }
    .lang-list {
      position: absolute;
      top: 100%;
      right: 0;
      background: #001433;
      min-width: 90px;
      list-style: none;
      padding: 8px 0;
      border-radius: 4px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.25s ease;
      z-index: 101;
    }
    .lang-list li {
      padding: 8px 16px;
    }
    .lang-list li:hover {
      background: #0a2452;
    }
    .lang-dropdown:hover .lang-list {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

/* ===== PAGE GLOBAL RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

/* ===== PAGE: INDEX.HTML (#page-index) ===== */
#page-index .hero {
      min-height: 520px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 0 48px;
    }

#page-index .hero::before {
      display: none;
    }

#page-index .hero-content { position: relative; z-index: 10; max-width: 670px;margin-left: 9vw; }

#page-index .hero h2 { font-size: 52px; font-weight: 800; color: #031748; line-height: 1.1; margin-bottom: 8px; }

#page-index .hero h3 { font-size: 22px; font-weight: 600; color: #1a3a5c; margin-bottom: 32px; }

#page-index .hero-features { display: flex; gap: 32px; margin-bottom: 36px; }

#page-index .hero-feature { display: flex; align-items: center; gap: 10px; }

#page-index .hero-feature .icon-circle {
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }

#page-index .hero-feature .icon-circle img {
      width: 22px;
      height: 22px;
      object-fit: contain;
    }

#page-index .hero-feature span { font-size: 14px; font-weight: 600; color: #1a3a5c; text-transform: uppercase; letter-spacing: 0.5px; }

#page-index .hero-buttons { display: flex; gap: 16px; }

#page-index .btn-primary {
      background: #1a3a5c; color: #fff; border: none; padding: 14px 28px;
      font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
      border-radius: 4px; cursor: pointer; display: flex; align-items: center; gap: 8px;
      transition: background 0.2s, transform 0.2s;
    }

#page-index .btn-primary:hover { background: #0f2540; transform: translateY(-1px); }

#page-index .btn-secondary {
      background: #fff; color: #1a3a5c; border: 2px solid #1a3a5c;
      padding: 12px 26px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
      text-transform: uppercase; border-radius: 4px; cursor: pointer;
      display: flex; align-items: center; gap: 8px; transition: all 0.2s;
    }

#page-index .btn-secondary:hover { background: #1a3a5c; color: #fff; }

#page-index .hero-machines {
      position: absolute; right: 0; bottom: 0;
      display: flex; align-items: flex-end; gap: 20px; z-index: 1;
          margin-right: 3vw;
    }

#page-index .machine-item { text-align: center; }

#page-index .machine-box-sm {
          width: 250px;
    height: 250px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 40px;
}
    

#page-index .machine-box-lg {
          width: 290px;
    height: 360px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 40px;
    }

#page-index .machine-box-xl {
          width: 400px;
    height: 380px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 40px;
    }

#page-index .machine-box-sm img,
#page-index .machine-box-lg img,
#page-index .machine-box-xl img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: bottom center;
    }

#page-index .machine-item label {
      display: inline-block; margin-top: 8px; padding: 6px 16px;
      color: #1a3a5c; font-size: 18px;
      font-weight: 700;      margin-bottom: 18px;
    }

#page-index .products-section { padding: 20px 48px; background: #f5f7fa; }

#page-index .products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1500px; margin: 0 auto; }

#page-index .card-full-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

#page-index .product-card {
      background: #f9f9f8; border-radius: 8px; padding: 12px;
      display: flex; gap: 24px; align-items: flex-start;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s;
    }

#page-index .product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

#page-index .product-img {
      width: 140px; height: 140px; border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }

#page-index .product-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

#page-index .product-info h4 { font-size: 14px; font-weight: 700; color: #0b1755; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }

#page-index .product-info p { font-size: 13px; color: #5a6b7d; line-height: 1.6; margin-bottom: 16px; }

#page-index .product-link {
      font-size: 12px; font-weight: 700; color: #0b1755; text-transform: uppercase;
      text-decoration: none; display: flex; align-items: center; gap: 6px; letter-spacing: 0.5px;
      transition: gap 0.2s;
    }

#page-index .product-link:hover { gap: 10px; }

#page-index .applications-section { padding: 60px 48px; background: #fff; }

#page-index .section-title {
      text-align: center; font-size: 14px; font-weight: 700; color: #0b1755;
      text-transform: uppercase; letter-spacing: 2px; margin-bottom: 32px;
      position: relative;
    }

#page-index .section-title::before,
#page-index .section-title::after {
      content: ''; display: inline-block; width: 60px; height: 1px; background: #c5d0dc;
      vertical-align: middle; margin: 0 16px;
    }

#page-index .apps-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: 1500px; margin: 0 auto; }

#page-index .app-card {
      position: relative; border-radius: 8px; overflow: hidden;
      height: 140px; cursor: pointer; transition: transform 0.3s;
    }

#page-index .app-card:hover { transform: scale(1.03); }

#page-index .app-card .app-bg {
      position: absolute; inset: 0; background-size: cover; background-position: center;
      transition: transform 0.5s;
    }

#page-index .app-card:hover .app-bg { transform: scale(1.1); }

#page-index .app-card .app-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.3) 50%, rgba(10,22,40,0.1) 100%);
    }

#page-index .app-card .app-content {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
      display: flex; align-items: center; gap: 10px; color: #fff;
    }

#page-index .app-card .app-icon {
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
    }

#page-index .app-card .app-icon svg { width: 14px; height: 14px; }

#page-index .app-card span { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

#page-index .app-card .arrow { margin-left: auto; font-size: 16px; opacity: 0.7; }

#page-index .features-bar {
      padding: 40px 48px; background: #fff;
      border-top: 1px solid #e8eef5; border-bottom: 1px solid #e8eef5;
    }

#page-index .features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; max-width: 1500px; margin: 0 auto; }

#page-index .feature-item { display: flex; gap: 14px; align-items: flex-start; }

#page-index .feature-item .feat-icon {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

#page-index .feature-item .feat-icon svg { width: 20px; height: 20px; color: #1a3a5c; }

#page-index .feature-item h5 { font-size: 12px; font-weight: 700; color: #1a3a5c; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }

#page-index .feature-item p { font-size: 12px; color: #6a7b8d; line-height: 1.5; }

#page-index .hero-desc {
    font-size:22px;
    color:#4d5778;
    line-height:1.7;
}

/* ===== PAGE: ABOUT.HTML (#page-about) ===== */
/* per-page * reset removed (redundant with global reset) */

#page-about .about-banner {
      width: 100%;
      min-height: 480px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 70px;
      overflow: hidden;
    }

#page-about .banner-text-box {
      position: relative;
      z-index: 2;
      color: #fff;
      max-width: 460px;
      margin-left: 8vw;
    }

#page-about .banner-text-box h1 {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.1;
    }

#page-about .banner-slogan {
      font-size: 26px;
      font-weight: 300;
      line-height: 1.4;
      margin-bottom: 28px;
    }

#page-about .banner-desc {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.93;
      font-weight: 300;
    }

#page-about .advantage-row {
      padding: 50px 60px;
      background: #ffffff;
    }

#page-about .advantage-container {
      max-width: 1600px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      /* 竖线分割依靠border实现，取消gap间隙 */
      gap: 0;
    }

#page-about .adv-item {
      display: flex;
      align-items: center; /* 图标文字垂直居中 */
      justify-content: center; /* 每一栏内部整体水平居中 */
      gap: 16px;
      padding: 0 30px;
      /* 左右分隔竖线 */
      border-right: 1px solid #e8eef5;
    }

#page-about .adv-item:last-child {
      border-right: none;
    }

#page-about .adv-icon {
      width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    color: #3d4c78;
    line-height: 1;
    }

#page-about .adv-text h4 {
          font-size: 20px;
    font-weight: 700;
    color: #3d4c78;
    line-height: 1.3;
    }

#page-about .mission-vision-section {
      padding: 45px 60px;
      background: #f5f7fa;
      border-top: 1px solid #e8eef5;
      border-bottom: 1px solid #e8eef5;
    }

#page-about .mv-wrap {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

#page-about .mv-block h3 {
      font-size: 24px;
      font-weight: 700;
      color: #0b1755;
      margin-bottom: 16px;
    }

#page-about .mv-block p {
      font-size: 16px;
      color: #445568;
      line-height: 1.7;
    }

#page-about .stats-section {
      background-color: #011b38;
      padding: 55px 60px;
    }

#page-about .stats-wrap {
      max-width: 1600px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      text-align: center;
      color: #ffffff;
    }

#page-about .stat-item .num {
      font-size: 52px;
      font-weight: 800;
      margin-bottom: 8px;
    }

#page-about .stat-item .label {
      font-size: 16px;
      font-weight: 300;
      opacity: 0.9;
      line-height: 1.5;
    }

/* ===== PAGE: APPLICATIONS.HTML (#page-applications) ===== */
/* per-page * reset removed (redundant with global reset) */

#page-applications .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 48px;
    }

#page-applications .app-banner {
      width: 100%;
      min-height: 460px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 70px;
      overflow: hidden;
    }

#page-applications .banner-text-wrap {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 420px;
          margin-left: 10vw;
    }

#page-applications .banner-text-wrap h1 {
      font-size: 46px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 16px;
    }

#page-applications .banner-subtitle {
      font-size: 24px;
      font-weight: 300;
      line-height: 1.4;
      margin-bottom: 26px;
    }

#page-applications .banner-desc {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.9;
      font-weight: 300;
    }

#page-applications .apps-cards-section {
      padding: 55px 0;
      background: #ffffff;
    }

#page-applications .apps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

#page-applications .app-card-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      height: 320px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

#page-applications .app-card-item:hover {
      transform: translateY(-6px);
    }

#page-applications .card-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

#page-applications .app-card-item:hover .card-bg-img {
      transform: scale(1.08);
    }

#page-applications .card-overlay {
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      height: 140px;
      background: linear-gradient(to top, rgba(5, 17, 35, 0.9) 0%, transparent 100%);
      padding: 30px 26px;
      display: flex;
      align-items: flex-end;
      gap: 14px;
    }

#page-applications .card-icon {
      font-size: 32px;
      color: #fff;
    }

#page-applications .card-name {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }

/* ===== PAGE: CONTACT.HTML (#page-contact) ===== */
/* per-page * reset removed (redundant with global reset) */

body#page-contact {
      background: #f5f7fa;
    }

#page-contact .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 48px;
    }

#page-contact .contact-top-section {
      width: 100%;
      background: linear-gradient(135deg, #061730 0%, #152b52 100%);
      padding: 70px 0;
      position: relative;
    }

#page-contact .contact-top-inner {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 0;
      align-items: stretch;
    }

#page-contact .contact-left {
      color: #ffffff;
      padding: 0 20px 0 0;
    }

#page-contact .contact-left h1 {
      font-size: 44px;
      font-weight: 800;
      margin-bottom: 16px;
    }

#page-contact .contact-left .sub-heading {
      font-size: 26px;
      font-weight: 300;
      margin-bottom: 24px;
      opacity: 0.95;
    }

#page-contact .contact-desc {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.85;
      margin-bottom: 48px;
      max-width: 360px;
    }

#page-contact .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

#page-contact .info-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
    }

#page-contact .info-icon {
      font-size: 22px;
      margin-top: 4px;
      opacity: 0.9;
      width: 26px;
      flex-shrink: 0;
    }

#page-contact .info-text h5 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 6px;
    }

#page-contact .info-text p {
      font-size: 15px;
      opacity: 0.82;
      line-height: 1.5;
    }

#page-contact .contact-right {
      background: #ffffff;
      border-radius: 8px;
      padding: 40px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }

#page-contact .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 20px;
    }

#page-contact .form-full {
      grid-column: 1 / -1;
    }

#page-contact .form-item label {
      display: block;
      font-size: 14px;
      color: #222;
      margin-bottom: 6px;
    }

#page-contact .form-item input,
#page-contact .form-item select,
#page-contact .form-item textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #dde3ed;
      border-radius: 4px;
      font-size: 15px;
      color: #1a2336;
      background: #fcfdff;
    }

#page-contact .form-item textarea {
      min-height: 120px;
      resize: vertical;
    }

#page-contact .submit-btn {
      margin-top: 16px;
      background-color: #061730;
      color: #fff;
      border: none;
      padding: 16px 36px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background 0.2s ease;
    }

#page-contact .submit-btn:hover {
      background: #0f2548;
    }

#page-contact .map-image-section {
      width: 100%;
      padding: 0;
      background: #f5f7fa;
    }

#page-contact .map-image-section img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

@media (max-width: 992px) {
  #page-contact .contact-top-inner {
        grid-template-columns: 1fr;
      }
  #page-contact .contact-left {
        padding: 0 0 40px 0;
      }
  #page-contact .contact-desc {
        max-width: 100%;
      }
}

@media (max-width: 576px) {
  #page-contact .form-grid {
        grid-template-columns: 1fr;
      }
  #page-contact .contact-right {
        padding: 24px;
      }
}

/* ===== PAGE: DOWN.HTML (#page-down) ===== */
#page-down .download-box {
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
}

#page-down .download-title {
    font-size:26px;
    margin-bottom:24px;
    font-weight:600;
}

#page-down .download-table {
    width:100%;
    border-collapse: collapse;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,0.08);
}

#page-down .download-table th,
#page-down .download-table td {
    padding:16px 20px;
    text-align:left;
    border-bottom:1px solid #eee;
}

#page-down .download-table th {
    background:#f7f8fa;
    font-weight:600;
}

#page-down .download-table tr:hover {
    background:#f9fafb;
}

#page-down .download-btn {
    display:inline-block;
    padding:8px 16px;
    background:#2b74da;
    color:#fff;
    border-radius:4px;
    text-decoration:none;
}

#page-down .download-btn:hover {
    background:#1d5fb9;
}

body#page-down {
    background-color: #d4dce7;
}

/* ===== PAGE: ME2.HTML (#page-me2) ===== */
/* per-page * reset removed (redundant with global reset) */

#page-me2 .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 48px;
    }

#page-me2 .media-banner {
      width: 100%;
      min-height: 320px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 70px;
      overflow: hidden;
    }

#page-me2 .banner-text {
      position: relative;
      z-index: 2;
      color: #ffffff;
          margin-left: 10vw;
    }

#page-me2 .banner-text h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 12px;
    }

#page-me2 .banner-text .sub-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 18px;
      opacity: 0.92;
    }

#page-me2 .banner-text p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.85;
      max-width: 420px;
    }

#page-me2 .tabs-section {
      background: #fff;
      padding: 32px 0 24px;
    }

#page-me2 .tabs-wrap {
      display: flex;
      gap: 6px;
    }

#page-me2 .tab-btn {
      border: 1px solid #d6dde8;
      background: #ffffff;
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 600;
      color: #233559;
      border-radius: 4px 4px 0 0;
      cursor: pointer;
      transition: all 0.2s ease;
    }

#page-me2 .tab-btn.active {
      background: #061730;
      color: #fff;
      border-color: #061730;
    }

#page-me2 .tab-btn:hover:not(.active) {
      background: #f2f6fc;
    }

#page-me2 .cards-section {
      background: #fff;
      padding: 10px 0 60px;
    }

#page-me2 .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

#page-me2 .media-card {
      background: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
      transition: transform 0.3s ease;
    }

#page-me2 .media-card:hover {
      transform: translateY(-6px);
    }

#page-me2 .card-img-box {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

#page-me2 .card-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

#page-me2 .media-card:hover .card-img-box img {
      transform: scale(1.07);
    }

#page-me2 .card-content {
      padding: 22px 20px;
    }

#page-me2 .card-tag-date {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

#page-me2 .card-tag {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      color: #061730;
      letter-spacing: 0.5px;
    }

#page-me2 .card-date {
      font-size: 12px;
      color: #64748b;
    }

#page-me2 .card-title {
      font-size: 17px;
      font-weight: 600;
      color: #11203b;
      line-height: 1.45;
      margin-bottom: 14px;
    }

#page-me2 .card-link {
      font-size: 14px;
      font-weight: 600;
      color: #061730;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

#page-me2 .card-link:hover {
      gap: 12px;
    }

#page-me2 .view-all-wrap {
      text-align: center;
      margin-top: 50px;
    }

#page-me2 .view-all-btn {
      background: #061730;
      color: #fff;
      border: none;
      padding: 16px 42px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 4px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background 0.2s;
    }

#page-me2 .view-all-btn:hover {
      background: #0f2542;
    }

@media (max-width: 992px) {
  #page-me2 .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 576px) {
  #page-me2 .cards-grid {
        grid-template-columns: 1fr;
      }
  #page-me2 .tabs-wrap {
        flex-wrap: wrap;
      }
}

/* ===== PAGE: MEDIA.HTML (#page-media) ===== */
/* per-page * reset removed (redundant with global reset) */

#page-media .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 48px;
    }

#page-media .media-banner {
      width: 100%;
      min-height: 320px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 70px;
      overflow: hidden;
    }

#page-media .banner-text {
      position: relative;
      z-index: 2;
      color: #ffffff;
          margin-left: 10vw;
    }

#page-media .banner-text h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 12px;
    }

#page-media .banner-text .sub-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 18px;
      opacity: 0.92;
    }

#page-media-detail .banner-text p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.85;
      max-width: 420px;
    }

#page-media .tabs-section {
      background: #fff;
      padding: 32px 0 24px;
    }

#page-media .tabs-wrap {
      display: flex;
      gap: 6px;
    }

#page-media .tab-btn {
      border: 1px solid #d6dde8;
      background: #ffffff;
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 600;
      color: #233559;
      border-radius: 4px 4px 0 0;
      cursor: pointer;
      transition: all 0.2s ease;
    }

#page-media .tab-btn.active {
      background: #061730;
      color: #fff;
      border-color: #061730;
    }

#page-media .tab-btn:hover:not(.active) {
      background: #f2f6fc;
    }

#page-media .cards-section {
      background: #fff;
      padding: 10px 0 60px;
    }

#page-media .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

#page-media .card-full-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

#page-media .media-card {
      background: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
      transition: transform 0.3s ease;
          height: 380px;
    }

#page-media .media-card:hover {
      transform: translateY(-6px);
    }

#page-media .card-img-box {
      width: 100%;
      height: 220px;
      overflow: hidden;
    }

#page-media .card-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

#page-media .media-card:hover .card-img-box img {
      transform: scale(1.07);
    }

#page-media .card-content {
      padding: 22px 20px;
    }

#page-media .card-tag-date {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

#page-media .card-tag {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      color: #061730;
      letter-spacing: 0.5px;
    }

#page-media .card-date {
      font-size: 12px;
      color: #64748b;
    }

#page-media .card-title {
      font-size: 17px;
      font-weight: 600;
      color: #11203b;
      line-height: 1.45;
      margin-bottom: 14px;
    }

#page-media .card-link {
      font-size: 14px;
      font-weight: 600;
      color: #061730;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

#page-media .card-link:hover {
      gap: 12px;
    }

#page-media .view-all-wrap {
      text-align: center;
      margin-top: 50px;
    }

#page-media .view-all-btn {
      background: #061730;
      color: #fff;
      border: none;
      padding: 16px 42px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 4px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background 0.2s;
    }

#page-media .view-all-btn:hover {
      background: #0f2542;
    }

@media (max-width: 992px) {
  #page-media .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 576px) {
  #page-media .cards-grid {
        grid-template-columns: 1fr;
      }
  #page-media .tabs-wrap {
        flex-wrap: wrap;
      }
}

/* ===== PAGE: MEDIA-DETAIL.HTML (#page-media-detail) ===== */
/* per-page * reset removed (redundant) */

#page-media-detail .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 48px;
    }

#page-media-detail .media-banner {
      width: 100%;
      min-height: 320px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 70px;
      overflow: hidden;
    }

#page-media-detail .media-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(6, 22, 48, 0.88), rgba(6, 22, 48, 0.35));
      z-index: 1;
    }

#page-media-detail .banner-text {
      position: relative;
      z-index: 2;
      color: #ffffff;
      margin-left: 20vw;
    }

#page-media-detail .banner-text h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 12px;
    }

#page-media-detail .banner-text .sub-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 18px;
      opacity: 0.92;
    }

#page-media-detail .banner-text p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.85;
      max-width: 420px;
    }

#page-media-detail .news-detail-wrap {
      padding: 70px 0;
      background: #ffffff;
    }

#page-media-detail .detail-inner {
      max-width: 980px;
      margin: 0 auto;
    }

#page-media-detail .news-head {
      margin-bottom: 36px;
      border-bottom: 1px solid #e7edf5;
      padding-bottom: 24px;
    }

#page-media-detail .news-tag {
      display: inline-block;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      font-weight: 700;
      color: #061730;
      margin-bottom: 12px;
    }

#page-media-detail .news-title {
      font-size: 34px;
      font-weight: 700;
      color: #0a1a38;
      line-height: 1.3;
      margin-bottom: 16px;
    }

#page-media-detail .news-date {
      font-size: 15px;
      color: #63728a;
    }

#page-media-detail .news-content {
      font-size: 17px;
      line-height: 1.85;
      color: #334258;
      margin-bottom: 60px;
    }

#page-media-detail .news-content p {
      margin-bottom: 22px;
    }

#page-media-detail .prev-next-nav {
      display: flex;
      justify-content: space-between;
      border-top: 1px solid #e7edf5;
      padding-top: 36px;
    }

#page-media-detail .nav-btn {
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-decoration: none;
      color: #061730;
      max-width: 42%;
    }

#page-media-detail .nav-label {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #64748b;
    }

#page-media-detail .nav-title {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
      transition: color 0.2s;
    }

#page-media-detail .nav-btn:hover .nav-title {
      color: #0f2542;
    }

#page-media-detail .nav-left {
      align-items: flex-start;
    }

#page-media-detail .nav-right {
      align-items: flex-end;
      text-align: right;
    }

@media (max-width: 768px) {
  #page-media-detail .news-title {
        font-size: 26px;
      }
  #page-media-detail .prev-next-nav {
        flex-direction: column;
        gap: 30px;
      }
  #page-media-detail .nav-btn {
        max-width: 100%;
      }
  #page-media-detail .container {
        padding: 0 24px;
      }
}

/* ===== PAGE: PRODUCTS.HTML (#page-products) ===== */
/* per-page * reset removed (redundant with global reset) */

#page-products .products-banner {
      width: 100%;
      min-height: 490px;
      display: flex;
      align-items: center;
      padding: 0 60px;
      position: relative;
      overflow: hidden;
    }

#page-products .banner-text-wrap {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 620px; /* 加宽容器，放下整行文字 */
      margin-left: 12vw; /* 整体右移，不贴最左边 */
    }

#page-products .banner-text-wrap h1 {
      font-size: 46px;
      font-weight: 800;
      
      margin-bottom: 12px;
    }

#page-products .banner-text-wrap h2 {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 18px;
      opacity: 0.92;
    }

#page-products .banner-text-wrap p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.85;
      margin-bottom: 24px;
          color: #74b8ff;
    }

#page-products .product-cards-section {
      padding: 60px 48px;
      background-color: #ffffff;
    }

#page-products .cards-container {
      max-width: 1500px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

#page-products .category-card {
      background: #f9f9f8;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

#page-products .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

#page-products .card-img-box {
      width: 100%;
      height: 320px;
      padding: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

#page-products .card-img-box img {
      width: 90%;
      height: auto;
      object-fit: contain;
    }

#page-products .card-text-box {
      padding: 0 30px 36px 30px;
    }

#page-products .card-text-box h3 {
      font-size: 20px;
      font-weight: 700;
      color: #0b1755;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      margin-bottom: 16px;
    }

#page-products .card-text-box p {
      font-size: 15px;
      color: #5a6b7d;
      line-height: 1.65;
      margin-bottom: 26px;
    }

#page-products .card-link {
      font-size: 14px;
      font-weight: 700;
      color: #0b1755;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0.5px;
      transition: gap 0.25s ease;
    }

#page-products .card-link:hover {
      gap: 12px;
    }

#page-products .card-full-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

/* ===== PAGE: PRODUCTS-FM.HTML (#page-products-fm) ===== */
/* per-page * reset removed (redundant) */

#page-products-fm .products-banner {
      width: 100%;
      min-height: 550px;
      display: flex;
      align-items: center;
      padding: 0 60px;
      position: relative;
      overflow: hidden;
    }

#page-products-fm .banner-text-wrap {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 620px; /* 加宽容器，放下整行文字 */
      margin-left: 12vw; /* 整体右移，不贴最左边 */
    }

#page-products-fm .banner-text-wrap h1 {
      font-size: 56px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 18px;
    }

#page-products-fm .banner-text-wrap h2 {
      font-size: 28px;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 26px;
      white-space: nowrap; /* 强制整行不换行 */
    }

#page-products-fm .banner-text-wrap p {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.7;
      opacity: 0.95;
      white-space: nowrap; /* 描述文字也一行展示 */
    }

#page-products-fm .product-cards-section {
      padding: 60px 48px;
      background-color: #ffffff;
    }

#page-products-fm .cards-container {
      max-width: 1500px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

#page-products-fm .category-card {
      background: #f9f9f8;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

#page-products-fm .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

#page-products-fm .card-img-box {
      width: 100%;
      height: 320px;
      padding: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

#page-products-fm .card-img-box img {
      width: 90%;
      height: auto;
      object-fit: contain;
    }

#page-products-fm .card-text-box {
      padding: 0 30px 36px 30px;
    }

#page-products-fm .card-text-box h3 {
      font-size: 20px;
      font-weight: 700;
      color: #0b1755;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      margin-bottom: 16px;
    }

#page-products-fm .card-text-box p {
      font-size: 15px;
      color: #5a6b7d;
      line-height: 1.65;
      margin-bottom: 26px;
    }

#page-products-fm .card-link {
      font-size: 14px;
      font-weight: 700;
      color: #0b1755;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: 0.5px;
      transition: gap 0.25s ease;
    }

#page-products-fm .card-link:hover {
      gap: 12px;
    }

#page-products-fm .card-full-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

/* ===== PAGE: PRODUCTS-DETAIL.HTML (#page-products-detail) ===== */
/* per-page * reset removed (redundant) */

#page-products-detail .detail-banner {
      width: 100%;
      min-height: 490px;
      display: flex;
      align-items: center;
      padding: 0 60px;
      position: relative;
      overflow: hidden;
    }

#page-products-detail .detail-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(5,15,35,0.9) 0%, rgba(5,15,35,0.4) 70%);
      z-index: 1;
    }

#page-products-detail .banner-text-wrap {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 650px;
      margin-left: 12vw;
    }

#page-products-detail .banner-text-wrap h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
    }

#page-products-detail .banner-text-wrap p {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.7;
      opacity: 0.95;
    }

#page-products-detail .product-detail-section {
      padding: 70px 48px;
      background: #ffffff;
    }

#page-products-detail .detail-container {
      max-width: 1500px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: flex-start;
    }

#page-products-detail .detail-img-box {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

#page-products-detail .detail-img-box img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

#page-products-detail .detail-info h2 {
      font-size: 32px;
      font-weight: 700;
      color: #061733;
      margin-bottom: 22px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

#page-products-detail .detail-desc {
      font-size: 16px;
      color: #445568;
      line-height: 1.8;
      margin-bottom: 30px;
    }

#page-products-detail .spec-list {
      list-style: none;
      margin-bottom: 40px;
    }

#page-products-detail .spec-list li {
      font-size: 15px;
      color: #334459;
      line-height: 1.8;
      padding: 8px 0;
      border-bottom: 1px solid #e8edf3;
      display: flex;
      gap: 10px;
    }

#page-products-detail .spec-list li strong {
      min-width: 160px;
      color: #061733;
    }

#page-products-detail .back-btn-wrap {
      text-align: center;
      margin-top: 20px;
    }

#page-products-detail .back-list-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 38px;
      background: #061733;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 4px;
      transition: background 0.25s ease;
    }

#page-products-detail .back-list-btn:hover {
      background: #0a2047;
    }

@media (max-width: 992px) {
  #page-products-detail .detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
}

/* ===== PAGE: TOOLING.HTML (#page-tooling) ===== */
/* per-page * reset removed (redundant with global reset) */

body#page-tooling {
      background: #f5f7fa;
    }

#page-tooling .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 48px;
    }

#page-tooling .tooling-banner {
      width: 100%;
      min-height: 550px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 70px;
      overflow: hidden;
    }

#page-tooling .banner-text {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 480px;
      margin-left: 10vw;
    }

#page-tooling .banner-text h1 {
      font-size: 46px;
      font-weight: 800;
      margin-bottom: 12px;
    }

#page-tooling .banner-text .sub-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 18px;
      opacity: 0.92;
    }

#page-tooling .banner-text p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.85;
      margin-bottom: 24px;
    }

#page-tooling .hero-machines {
      position: absolute; right: 70px; bottom: 0;
      display: flex; align-items: flex-end; gap: 0; z-index: 3;
    }
#page-tooling .machine-item { text-align: center; }
#page-tooling .machine-box-sm {
      width: 450px;
    height: 380px;
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
#page-tooling .machine-box-lg {
      width: 540px; height: 540px;
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
#page-tooling .machine-box-sm img,
#page-tooling .machine-box-lg img {
      max-width: 100%; max-height: 100%; object-fit: contain;
    }
@media (max-width: 992px) {
  #page-tooling .hero-machines { display: none; }
}

#page-tooling .category-tabs {
      background: #ffffff;
      padding: 32px 0 24px;
      border-bottom: 1px solid #e8eef5;
    }

#page-tooling a.tab-btn {
      text-decoration: none;
      display: inline-block;
    }

#page-tooling .tabs-wrap {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

#page-tooling .tab-btn {
      border: 1px solid #d6dde8;
      background: #ffffff;
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 600;
      color: #233559;
      border-radius: 4px 4px 0 0;
      cursor: pointer;
      transition: all 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

#page-tooling .tab-btn.active {
      background: #061730;
      color: #fff;
      border-color: #061730;
    }

#page-tooling .tab-btn:hover:not(.active) {
      background: #f2f6fc;
    }

#page-tooling .products-section {
      background: #ffffff;
      padding: 10px 0 60px;
    }

#page-tooling .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 26px;
    }

#page-tooling .card-full-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

#page-tooling .product-card {
      background: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
      transition: transform 0.3s ease;
    }

#page-tooling .product-card:hover {
      transform: translateY(-6px);
    }

#page-tooling .product-img-box {
      width: 100%;
      height: 260px;
      background: #f9fafb;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 30px;
      overflow: hidden;
    }

#page-tooling .product-img-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.5s ease;
    }

#page-tooling .product-card:hover .product-img-box img {
      transform: scale(1.05);
    }

#page-tooling .product-content {
      padding: 22px 20px;
    }

#page-tooling .product-content h3 {
      font-size: 17px;
      font-weight: 600;
      color: #11203b;
      margin-bottom: 10px;
      line-height: 1.45;
    }

#page-tooling .product-content p {
      font-size: 14px;
      color: #5a6b7d;
      line-height: 1.6;
      margin-bottom: 14px;
    }

#page-tooling .view-details {
      font-size: 14px;
      font-weight: 600;
      color: #061730;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

#page-tooling .view-details:hover {
      gap: 12px;
    }

#page-tooling .features-bar {
      padding: 22px 0;
      background: #fff;
      border-top: 1px solid #e8eef5;
    }

#page-tooling .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

#page-tooling .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

#page-tooling .feature-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #061730;
      font-size: 20px;
    }

#page-tooling .feature-item h5 {
      font-size: 14px;
      font-weight: 700;
      color: #1a3a5c;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

#page-tooling .feature-item p {
      font-size: 13px;
      color: #6a7b8d;
      line-height: 1.5;
    }

@media (max-width: 992px) {
  #page-tooling .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
  #page-tooling .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 576px) {
  #page-tooling .products-grid {
        grid-template-columns: 1fr;
      }
  #page-tooling .features-grid {
        grid-template-columns: 1fr;
      }
}

/* ===== TOOLING PAGE: MACHINE SHOWCASE (3-col) ===== */
#page-tooling .machines-showcase {
  background: #f5f7fa;
  padding: 64px 0;
}
#page-tooling .showcase-header {
  text-align: center;
  margin-bottom: 48px;
}
#page-tooling .showcase-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #061730;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#page-tooling .showcase-header p {
  font-size: 16px;
  color: #5a6b7d;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
#page-tooling .machines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
#page-tooling .machine-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
#page-tooling .machine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
#page-tooling .machine-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: #1a3a5c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#page-tooling .machine-img-wrap {
  width: 100%;
  height: 280px;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}
#page-tooling .machine-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
#page-tooling .machine-card:hover .machine-img-wrap img {
  transform: scale(1.05);
}
#page-tooling .machine-info {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#page-tooling .machine-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #061730;
  margin-bottom: 4px;
}
#page-tooling .machine-info .machine-sub {
  font-size: 14px;
  color: #5a6b7d;
  margin-bottom: 16px;
}
#page-tooling .machine-features {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}
#page-tooling .machine-features li {
  font-size: 14px;
  color: #3a4a5d;
  padding: 5px 0 5px 24px;
  position: relative;
  line-height: 1.5;
}
#page-tooling .machine-features li::before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 5px;
  color: #1a3a5c;
  font-size: 14px;
}
#page-tooling .machine-btn {
  display: inline-block;
  text-align: center;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
#page-tooling .machine-btn-primary {
  background: #061730;
  color: #fff;
  border: 2px solid #061730;
}
#page-tooling .machine-btn-primary:hover {
  background: #0a2050;
  border-color: #0a2050;
}
#page-tooling .machine-btn-outline {
  background: transparent;
  color: #061730;
  border: 2px solid #061730;
}
#page-tooling .machine-btn-outline:hover {
  background: #061730;
  color: #fff;
}
@media (max-width: 992px) {
  #page-tooling .machines-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* ===== TOOLING PAGE: COMPARISON TABLE ===== */
#page-tooling .comparison-section {
  background: #fff;
  padding: 64px 0;
}
#page-tooling .comparison-header {
  text-align: center;
  margin-bottom: 40px;
}
#page-tooling .comparison-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #061730;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#page-tooling .comparison-header p {
  font-size: 16px;
  color: #5a6b7d;
  max-width: 600px;
  margin: 0 auto;
}
#page-tooling .comparison-table-wrap {
  max-width: 1100px;
  margin: 0 auto 36px;
  overflow-x: auto;
}
#page-tooling .comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
#page-tooling .comparison-table th {
  background: #061730;
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#page-tooling .comparison-table th:first-child {
  background: #0a2050;
}
#page-tooling .comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e8eef5;
  color: #3a4a5d;
}
#page-tooling .comparison-table td:first-child {
  font-weight: 700;
  color: #061730;
  background: #f5f7fa;
}
#page-tooling .comparison-table tbody tr:nth-child(even) {
  background: #fafbfc;
}
#page-tooling .comparison-table tbody tr:nth-child(even) td:first-child {
  background: #f0f3f8;
}
#page-tooling .comparison-cta {
  text-align: center;
}
#page-tooling .btn-consult {
  display: inline-block;
  padding: 14px 36px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #061730;
  border: 2px solid #061730;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
#page-tooling .btn-consult:hover {
  background: #061730;
  color: #fff;
}

/* ===== TOOLING PAGE: TOOLING SOLUTIONS ===== */
#page-tooling .tooling-solutions {
  background: #f5f7fa;
  padding: 64px 0;
}
#page-tooling .tooling-sol-wrap {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 50px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
#page-tooling .tooling-sol-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
#page-tooling .tooling-sol-img img {
  width: 100%;
  height: auto;
  display: block;
}
#page-tooling .tooling-sol-content h2 {
  font-size: 30px;
  font-weight: 800;
  color: #061730;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#page-tooling .tooling-sol-content p {
  font-size: 16px;
  color: #5a6b7d;
  line-height: 1.7;
  margin-bottom: 28px;
}
#page-tooling .tooling-sol-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
#page-tooling .btn-tooling-primary {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #061730;
  color: #fff;
  border: 2px solid #061730;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
#page-tooling .btn-tooling-primary:hover {
  background: #0a2050;
  border-color: #0a2050;
}
#page-tooling .btn-tooling-outline {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  color: #061730;
  border: 2px solid #061730;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
#page-tooling .btn-tooling-outline:hover {
  background: #061730;
  color: #fff;
}
@media (max-width: 768px) {
  #page-tooling .tooling-sol-wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== TOOLING PAGE: CONVERSION BANNER ===== */
#page-tooling .conversion-banner {
  background: #061730;
  padding: 56px 0;
}
#page-tooling .conversion-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
}
#page-tooling .conversion-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
#page-tooling .conversion-text p {
  font-size: 16px;
  color: #a0b4cc;
  line-height: 1.6;
}
#page-tooling .conversion-btns {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
#page-tooling .btn-contact {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #1a3a5c;
  color: #fff;
  border: 2px solid #1a3a5c;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
#page-tooling .btn-contact:hover {
  background: #2a4f7c;
  border-color: #2a4f7c;
}
#page-tooling .btn-quote {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}
#page-tooling .btn-quote:hover {
  background: #fff;
  color: #061730;
}
@media (max-width: 768px) {
  #page-tooling .conversion-wrap {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== PAGE: TOOLING-FM.HTML (#page-tooling-fm) ===== */
/* per-page * reset removed (redundant) */

body#page-tooling-fm {
      background: #f5f7fa;
    }

#page-tooling-fm .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 48px;
    }

#page-tooling-fm .tooling-banner {
      width: 100%;
      min-height: 420px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 70px;
      overflow: hidden;
    }

#page-tooling-fm .banner-text {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 480px;
      margin-left: 10vw;
    }

#page-tooling-fm .banner-text h1 {
      font-size: 46px;
      font-weight: 800;
      margin-bottom: 12px;
    }

#page-tooling-fm .banner-text .sub-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 18px;
      opacity: 0.92;
    }

#page-tooling-fm .banner-text p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.85;
      margin-bottom: 24px;
    }

#page-tooling-fm .category-tabs {
      background: #ffffff;
      padding: 32px 0 24px;
      border-bottom: 1px solid #e8eef5;
    }

#page-tooling-fm a.tab-btn {
      text-decoration: none;
      display: inline-block;
    }

#page-tooling-fm .tabs-wrap {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

#page-tooling-fm .tab-btn {
      border: 1px solid #d6dde8;
      background: #ffffff;
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 600;
      color: #233559;
      border-radius: 4px 4px 0 0;
      cursor: pointer;
      transition: all 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

#page-tooling-fm .tab-btn.active {
      background: #061730;
      color: #fff;
      border-color: #061730;
    }

#page-tooling-fm .tab-btn:hover:not(.active) {
      background: #f2f6fc;
    }

#page-tooling-fm .products-section {
      background: #ffffff;
      padding: 10px 0 60px;
    }

#page-tooling-fm .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 26px;
    }

#page-tooling-fm .card-full-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

#page-tooling-fm .product-card {
      background: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 14px rgba(0,0,0,0.06);
      transition: transform 0.3s ease;
    }

#page-tooling-fm .product-card:hover {
      transform: translateY(-6px);
    }

#page-tooling-fm .product-img-box {
      width: 100%;
      height: 260px;
      background: #f9fafb;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 30px;
      overflow: hidden;
    }

#page-tooling-fm .product-img-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.5s ease;
    }

#page-tooling-fm .product-card:hover .product-img-box img {
      transform: scale(1.05);
    }

#page-tooling-fm .product-content {
      padding: 22px 20px;
    }

#page-tooling-fm .product-content h3 {
      font-size: 17px;
      font-weight: 600;
      color: #11203b;
      margin-bottom: 10px;
      line-height: 1.45;
    }

#page-tooling-fm .product-content p {
      font-size: 14px;
      color: #5a6b7d;
      line-height: 1.6;
      margin-bottom: 14px;
    }

#page-tooling-fm .view-details {
      font-size: 14px;
      font-weight: 600;
      color: #061730;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

#page-tooling-fm .view-details:hover {
      gap: 12px;
    }

#page-tooling-fm .features-bar {
      padding: 22px 0;
      background: #fff;
      border-top: 1px solid #e8eef5;
    }

#page-tooling-fm .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

#page-tooling-fm .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

#page-tooling-fm .feature-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: #061730;
      font-size: 20px;
    }

#page-tooling-fm .feature-item h5 {
      font-size: 14px;
      font-weight: 700;
      color: #1a3a5c;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

#page-tooling-fm .feature-item p {
      font-size: 13px;
      color: #6a7b8d;
      line-height: 1.5;
    }

@media (max-width: 992px) {
  #page-tooling-fm .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
  #page-tooling-fm .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 576px) {
  #page-tooling-fm .products-grid {
        grid-template-columns: 1fr;
      }
  #page-tooling-fm .features-grid {
        grid-template-columns: 1fr;
      }
}

/* ===== PAGE: TOOLING-DETAIL.HTML (#page-tooling-detail) ===== */
/* per-page * reset removed (redundant) */

#page-tooling-detail .detail-banner {
      width: 100%;
      min-height: 550px;
      display: flex;
      align-items: center;
      padding: 0 60px;
      position: relative;
      overflow: hidden;
    }

#page-tooling-detail .detail-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(5,15,35,0.9) 0%, rgba(5,15,35,0.4) 70%);
      z-index: 1;
    }

#page-tooling-detail .banner-text-wrap {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 650px;
      margin-left: 12vw;
    }

#page-tooling-detail .banner-text-wrap h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
    }

#page-tooling-detail .banner-text-wrap p {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.7;
      opacity: 0.95;
    }

#page-tooling-detail .hero-machines {
      position: absolute; right: 60px; bottom: 0;
      display: flex; align-items: flex-end; gap: 0; z-index: 3;
    }
#page-tooling-detail .machine-item { text-align: center; }
#page-tooling-detail .machine-box-sm {
          width: 450px;
    height: 380px;
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
#page-tooling-detail .machine-box-lg {
          width: 540px;
    height: 540px;
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
#page-tooling-detail .machine-box-sm img,
#page-tooling-detail .machine-box-lg img {
      max-width: 100%; max-height: 100%; object-fit: contain;
    }
@media (max-width: 992px) {
  #page-tooling-detail .hero-machines { display: none; }
}

#page-tooling-detail .product-detail-section {
      padding: 70px 48px;
      background: #ffffff;
    }

#page-tooling-detail .detail-container {
      max-width: 1500px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: flex-start;
    }

#page-tooling-detail .detail-img-box {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

#page-tooling-detail .detail-img-box img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

#page-tooling-detail .detail-info h2 {
      font-size: 32px;
      font-weight: 700;
      color: #061733;
      margin-bottom: 22px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

#page-tooling-detail .detail-desc {
      font-size: 16px;
      color: #445568;
      line-height: 1.8;
      margin-bottom: 30px;
    }

#page-tooling-detail .spec-list {
      list-style: none;
      margin-bottom: 40px;
    }

#page-tooling-detail .spec-list li {
      font-size: 15px;
      color: #334459;
      line-height: 1.8;
      padding: 8px 0;
      border-bottom: 1px solid #e8edf3;
      display: flex;
      gap: 10px;
    }

#page-tooling-detail .spec-list li strong {
      min-width: 160px;
      color: #061733;
    }

#page-tooling-detail .back-btn-wrap {
      text-align: center;
      margin-top: 20px;
    }

#page-tooling-detail .back-list-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 38px;
      background: #061733;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 4px;
      transition: background 0.25s ease;
    }

#page-tooling-detail .back-list-btn:hover {
      background: #0a2047;
    }

@media (max-width: 992px) {
  #page-tooling-detail .detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
}

/* ===== PAGE: TOOLING-PRODUCT.HTML (#page-tooling-product) ===== */
/* 单独产品详情页 — 三栏布局 */

#page-tooling-product .container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 48px;
    }

#page-tooling-product .tooling-banner {
      width: 100%;
      min-height: 420px;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 70px;
      overflow: hidden;
    }

#page-tooling-product .banner-text {
      position: relative;
      z-index: 2;
      color: #ffffff;
      max-width: 580px;
      margin-left: 10vw;
    }

#page-tooling-product .banner-text h1 {
      font-size: 46px;
      font-weight: 800;
      margin-bottom: 12px;
    }

#page-tooling-product .banner-text .sub-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 18px;
      opacity: 0.92;
    }

#page-tooling-product .banner-text p {
      font-size: 16px;
      line-height: 1.7;
      opacity: 0.85;
      margin-bottom: 24px;
    }

#page-tooling-product .hero-machines {
      position: absolute; right: 70px; bottom: 0;
      display: flex; align-items: flex-end; gap: 0; z-index: 3;
    }
#page-tooling-product .machine-item { text-align: center; }
#page-tooling-product .machine-box-sm {
      width: 450px;
    height: 380px;
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
#page-tooling-product .machine-box-lg {
      width: 540px; height: 540px;
      border-radius: 8px 8px 0 0;
      overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
    }
#page-tooling-product .machine-box-sm img,
#page-tooling-product .machine-box-lg img {
      max-width: 100%; max-height: 100%; object-fit: contain;
    }
@media (max-width: 992px) {
  #page-tooling-product .hero-machines { display: none; }
}

#page-tooling-product .category-tabs {
      background: #ffffff;
      padding: 32px 0 24px;
      border-bottom: 1px solid #e8eef5;
    }

#page-tooling-product a.tab-btn {
      text-decoration: none;
      display: inline-block;
    }

#page-tooling-product .tabs-wrap {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

#page-tooling-product .tab-btn {
      border: 1px solid #d6dde8;
      background: #ffffff;
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 600;
      color: #233559;
      border-radius: 4px 4px 0 0;
      cursor: pointer;
      transition: all 0.2s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

#page-tooling-product .tab-btn.active {
      background: #061733;
      color: #fff;
      border-color: #061733;
    }

#page-tooling-product .tab-btn:hover {
      background: #061733;
      color: #fff;
      border-color: #061733;
    }

#page-tooling-product .product-detail-section {
      padding: 60px 48px;
      background: #ffffff;
    }

#page-tooling-product .detail-container {
      max-width: 1500px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      align-items: flex-start;
    }

/* 左栏：产品概述 */
#page-tooling-product .detail-overview {
      padding-right: 10px;
    }

#page-tooling-product .overview-title {
      font-size: 14px;
      font-weight: 700;
      color: #061733;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 8px;
    }

#page-tooling-product .overview-line {
      width: 50px;
      height: 3px;
      background: #061733;
      margin-bottom: 30px;
    }

#page-tooling-product .detail-model {
      font-size: 42px;
      font-weight: 800;
      color: #061733;
      line-height: 1.1;
      margin-bottom: 6px;
    }

#page-tooling-product .detail-model span {
      font-size: 18px;
      font-weight: 400;
      color: #8899aa;
      margin-left: 8px;
    }

#page-tooling-product .detail-name {
      font-size: 20px;
      font-style: italic;
      color: #061733;
      margin-bottom: 24px;
    }

#page-tooling-product .detail-desc {
      font-size: 15px;
      color: #445568;
      line-height: 1.8;
      margin-bottom: 30px;
    }

#page-tooling-product .detail-apps h4 {
      font-size: 13px;
      font-weight: 700;
      color: #061733;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

#page-tooling-product .detail-apps ul {
      list-style: none;
      padding: 0;
    }

#page-tooling-product .detail-apps li {
      font-size: 14px;
      color: #445568;
      line-height: 2;
      padding-left: 18px;
      position: relative;
    }

#page-tooling-product .detail-apps li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 12px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #061733;
    }

/* 中栏：参数表格 */
#page-tooling-product .detail-specs {
      background: #f8f9fa;
      border-radius: 8px;
      overflow: visible;
    }

#page-tooling-product .specs-title {
      background: #061733;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 14px 20px;
      margin: 0;
    }

#page-tooling-product .specs-table {
      width: 100%;
      border-collapse: collapse;
    }

#page-tooling-product .specs-table th {
      font-size: 12px;
      font-weight: 600;
      color: #8899aa;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 12px 16px;
      border-bottom: 2px solid #e0e6ed;
      text-align: left;
    }

#page-tooling-product .specs-table td {
      font-size: 14px;
      color: #334459;
      padding: 12px 16px;
      border-bottom: 1px solid #e8edf3;
      word-break: break-word;
    }

#page-tooling-product .specs-table td:first-child {
      font-weight: 600;
      color: #061733;
    }

#page-tooling-product .specs-table tbody tr:last-child td {
      border-bottom: none;
    }

/* 右栏：产品图片 */
#page-tooling-product .detail-img-box {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

#page-tooling-product .detail-img-box img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

/* 返回按钮 */
#page-tooling-product .back-btn-wrap {
      text-align: center;
      margin-top: 50px;
    }

#page-tooling-product .back-list-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 38px;
      background: #061733;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 4px;
      transition: background 0.25s ease;
    }

#page-tooling-product .back-list-btn:hover {
      background: #0a2047;
    }

/* 响应式 */
@media (max-width: 992px) {
  #page-tooling-product .detail-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
  #page-tooling-product .detail-img-box {
        grid-column: 1 / -1;
      }
}

@media (max-width: 768px) {
  #page-tooling-product .detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }
  #page-tooling-product .detail-model {
        font-size: 32px;
      }
}

/* ===== HEADER SEARCH BOX (global) ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-box-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-input {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 7px 36px 7px 14px;
    border-radius: 30px;
    outline: none;
    font-size: 14px;
    width: 160px;
    transition: all 0.3s ease;
}

.nav-search-input::placeholder {
    color: rgba(255,255,255,0.65);
}

.nav-search-input:focus {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    width: 185px;
}

.nav-search-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

/* ===== FOOTER (global, loaded last) ===== */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

.wrap {
            max-width: 1580px;
            margin: 0 auto;
            padding: 0 30px;
        }

.footer-top-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 32px 40px;
            color: #fff;
            border-radius: 8px 8px 0 0;
            position: relative;
        }

.footer-top-banner img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            border-radius: 8px 8px 0 0;
        }

.banner-text h2 {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 8px;
        }

.banner-text p {
            font-size: 18px;
            color: #ffffff;
        }

.banner-buttons {
            display: flex;
            gap: 20px;
        }

.btn-blue {
            background: #2588ff;
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

.btn-outline {
            background: transparent;
            color: white;
            border: 1px solid #2588ff;
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

footer {
            background-color: #06162c;
            color: #ffffff;
            padding: 30px 40px;
            /* background-image: url('/uploadfile/20260727/foot.jpg'); */
            background-size: cover;
            background-position: center;
            background-color: #01142f;
        }

.footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
            gap: 35px;
        }

.footer-col {
            position: relative;
        }

.footer-col:not(:first-child)::before {
            content: "";
            position: absolute;
            left: -17px;
            top: 0;
            height: 100%;
            width: 1px;
            background-color: rgba(66, 153, 255, 0.25);
        }

.footer-col-brand .logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
        }

.footer-col-brand .logo-wrap img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

.footer-col-brand .logo-text h3 {
            font-size: 27px;
            line-height: 1;
        }

.footer-col-brand .logo-text span {
            color: #4299ff;
            font-size: 15px;
        }

.contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 16px 0;
            font-size: 15px;
            color: #cbd5e1;
        }

.footer-col h4 {
            font-size: 18px;
            margin-bottom: 22px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2588ff;
            display: inline-block;
        }

.social-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.social-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #cbd5e1;
            text-decoration: none;
            font-size: 15px;
        }

.list-item {
            margin: 16px 0;
        }

.list-item a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 15px;
        }

.list-item {
            padding-bottom: 12px;
            border-bottom: 1px dashed rgba(66, 153, 255, 0.2);
        }

.list-item:last-child {
            border-bottom: none;
        }

.value-list {
            display: flex;
            flex-direction: column;
            gap: 26px;
        }

.value-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

.value-icon {
            width: 42px;
            height: 42px;
            border: 1px solid #2588ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.value-icon svg {
            width: 22px;
            height: 22px;
            stroke: #4299ff;
        }

.value-text span {
            font-size: 16px;
            color: #fff;
            line-height: 1.4;
        }

.copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #1a365d;
            color: #94a3b8;
            font-size: 14px;
        }