
    /* ===== 全局重置 & 字体 ===== */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      background: #f1522f !important;
      font-family: 'pingfang SC', 'helvetica neue', arial, 'hiragino sans gb', 'microsoft yahei ui', 'microsoft yahei', simsun, sans-serif !important;
    }
    ul, li { list-style: none; }
    img { vertical-align: middle; border: none; max-width: 100%; height: auto; }
    a { text-decoration: none; outline: none; transition: all 0.3s ease; }
    a:hover { text-decoration: none; outline: none; }
    .clear { clear: both; }
    i { font-style: normal; }

    /* ===== 自定义容器 ===== */
    .wuhzx-container {
      max-width: 1350px;
      margin: 0 auto;
      padding: 0 15px;
      width: 100%;
    }

    /* ===== 卡片 & 按钮 圆角10px ===== */
    .wuhzx-card, .wuhzx-btn {
      border-radius: 10px !important;
    }
    .wuhzx-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .wuhzx-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    }
    .wuhzx-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    /* ===== Banner 距顶 margin-top: 60px ===== */
    .wuhzx-banner-wrap {
      margin-top: 60px;
    }

    /* ===== 头图区域 ===== */
    .wuhzx-bg-top {
      width: 100%;
      min-height: 869px;
      background: url(/css/2018/images/wuhzx_bg1.jpg) no-repeat top center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .wuhzx-top-anim {
      animation: wuhzxFloat 2s ease-in-out 0s infinite alternate;
      -webkit-animation: wuhzxFloat 2s ease-in-out 0s infinite alternate;
      -moz-animation: wuhzxFloat 2s ease-in-out 0s infinite alternate;
      -o-animation: wuhzxFloat 2s ease-in-out 0s infinite alternate;
      text-align: center;
      padding: 45px 0;
    }
    .wuhzx-top-anim img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }
    @keyframes wuhzxFloat {
      0% { transform: translateY(-5px); opacity: 1; }
      100% { transform: translateY(5px); opacity: 1; }
    }
    @-webkit-keyframes wuhzxFloat {
      0% { transform: translateY(-5px); opacity: 1; }
      100% { transform: translateY(5px); opacity: 1; }
    }
    @-moz-keyframes wuhzxFloat {
      0% { transform: translateY(-5px); opacity: 1; }
      100% { transform: translateY(5px); opacity: 1; }
    }
    @-o-keyframes wuhzxFloat {
      0% { transform: translateY(-5px); opacity: 1; }
      100% { transform: translateY(5px); opacity: 1; }
    }

    /* ===== 介绍区域 ===== */
    .wuhzx-bg-intro {
      background: url(/css/2018/images/wuhzx_bg2.jpg) no-repeat top center;
      background-size: cover;
      padding: 40px 0 60px;
      min-height: 1215px;
    }
    .wuhzx-intro-title {
      background: url(/css/2018/images/wuhzx_tel1.png) no-repeat center bottom;
      background-size: contain;
      height: 72px;
      margin-bottom: 30px;
    }
    .wuhzx-intro-text {
      color: #fff;
      font-size: 18px;
      line-height: 32px;
      max-width: 93%;
      margin: 0 auto;
      text-align: center;
    }

    /* ===== 现场集锦 ===== */
    .wuhzx-gallery-title {
      background: url(/css/2018/images/wuhzx_tel2.png) no-repeat center bottom;
      background-size: contain;
      height: 107px;
      margin: 30px 0 20px;
    }

    /* 轮播图容器 */
    .wuhzx-slider-wrap {
      background: #ffccbc;
      border-radius: 10px;
      padding: 15px 10px;
      max-width: 1138px;
      margin: 0 auto;
      overflow: hidden;
    }
    .wuhzx-slider-main {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }
    .wuhzx-slider-main .wuhzx-slider-track {
      display: flex;
      transition: transform 0.5s ease;
      will-change: transform;
    }
    .wuhzx-slider-main .wuhzx-slider-track img {
      width: 100%;
      flex-shrink: 0;
      aspect-ratio: 1118 / 560;
      object-fit: cover;
    }
    .wuhzx-slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(0,0,0,0.4);
      border-radius: 50%;
      color: #fff;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: background 0.3s;
      border: none;
    }
    .wuhzx-slider-btn:hover {
      background: rgba(0,0,0,0.7);
    }
    .wuhzx-slider-btn.prev { left: 10px; }
    .wuhzx-slider-btn.next { right: 10px; }

    /* 缩略图 */
    .wuhzx-thumb-wrap {
      overflow: hidden;
      margin-top: 12px;
      position: relative;
      padding: 0 30px;
    }
    .wuhzx-thumb-track {
      display: flex;
      gap: 10px;
      transition: transform 0.4s ease;
      will-change: transform;
    }
    .wuhzx-thumb-track .thumb-item {
      flex: 0 0 178px;
      cursor: pointer;
      border-radius: 6px;
      overflow: hidden;
      border: 3px solid transparent;
      transition: border 0.3s;
    }
    .wuhzx-thumb-track .thumb-item.active {
      border-color: #ec6137;
    }
    .wuhzx-thumb-track .thumb-item img {
      width: 100%;
      aspect-ratio: 178 / 115;
      object-fit: cover;
      display: block;
    }
    .wuhzx-thumb-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 40px;
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      z-index: 5;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .wuhzx-thumb-arrow.left { left: 0; }
    .wuhzx-thumb-arrow.right { right: 0; }
    .wuhzx-thumb-arrow:hover { background: rgba(0,0,0,0.8); }

    /* ===== 客户案例区域 ===== */
    .wuhzx-bg-case {
      background: url(/css/2018/images/wuhzx_bg3.jpg) no-repeat top center;
      background-size: cover;
      padding: 40px 0 60px;
      min-height: 691px;
    }
    .wuhzx-case-title {
      background: url(/css/2018/images/wuhzx_tel3.png) no-repeat center;
      background-size: contain;
      height: 75px;
      margin-bottom: 30px;
    }

    /* 客户Logo网格 */
    /* 客户Logo网格 - 修复尺寸问题 */
    .wuhzx-case-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .wuhzx-case-item {
      height: 95px;  /* 固定高度，与原版一致 */
      width: 100%;
      border: 1px solid #ffdaab;
      border-radius: 3px;
      background-repeat: no-repeat;
      background-position: center;
      cursor: pointer;
      transition: all 0.2s ease;
      background-color: transparent;
    }

    .wuhzx-case-item:hover {
      border: 1px solid #fff;
      box-shadow: 0px 0px 15px #a20a0a;
      background-color: #fff;
    }

    /* 移动端适配 */
    @media (max-width: 992px) {
      .wuhzx-case-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
      }
      .wuhzx-case-item {
        height: 80px;
      }
    }

    @media (max-width: 768px) {
      .wuhzx-case-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
      }
      .wuhzx-case-item {
        height: 70px;
      }
    }

    @media (max-width: 576px) {
      .wuhzx-case-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
      }
      .wuhzx-case-item {
        height: 60px;
      }
    }

    @media (max-width: 400px) {
      .wuhzx-case-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
      }
      .wuhzx-case-item {
        height: 50px;
      }
    }

    /* 各Logo背景图 */
    .wuhzx-case-1 { background-image: url(/css/2018/images/wuh_khanl1.png); }
    .wuhzx-case-1:hover { background-image: url(/css/2018/images/wuh_khanl01.png); background-color: #fff; }
    .wuhzx-case-2 { background-image: url(/css/2018/images/wuh_khanl2.png); }
    .wuhzx-case-2:hover { background-image: url(/css/2018/images/wuh_khanl02.png); background-color: #fff; }
    .wuhzx-case-3 { background-image: url(/css/2018/images/wuh_khanl3.png); }
    .wuhzx-case-3:hover { background-image: url(/css/2018/images/wuh_khanl03.png); background-color: #fff; }
    .wuhzx-case-4 { background-image: url(/css/2018/images/wuh_khanl4.png); }
    .wuhzx-case-4:hover { background-image: url(/css/2018/images/wuh_khanl04.png); background-color: #fff; }
    .wuhzx-case-5 { background-image: url(/css/2018/images/wuh_khanl5.png); }
    .wuhzx-case-5:hover { background-image: url(/css/2018/images/wuh_khanl05.png); background-color: #fff; }
    .wuhzx-case-6 { background-image: url(/css/2018/images/wuh_khanl6.png); }
    .wuhzx-case-6:hover { background-image: url(/css/2018/images/wuh_khanl06.png); background-color: #fff; }
    .wuhzx-case-7 { background-image: url(/css/2018/images/wuh_khanl7.png); }
    .wuhzx-case-7:hover { background-image: url(/css/2018/images/wuh_khanl07.png); background-color: #fff; }
    .wuhzx-case-8 { background-image: url(/css/2018/images/wuh_khanl8.png); }
    .wuhzx-case-8:hover { background-image: url(/css/2018/images/wuh_khanl08.png); background-color: #fff; }
    .wuhzx-case-9 { background-image: url(/css/2018/images/wuh_khanl9.png); }
    .wuhzx-case-9:hover { background-image: url(/css/2018/images/wuh_khanl09.png); background-color: #fff; }
    .wuhzx-case-10 { background-image: url(/css/2018/images/wuh_khanl10.png); }
    .wuhzx-case-10:hover { background-image: url(/css/2018/images/wuh_khanl010.png); background-color: #fff; }
    .wuhzx-case-11 { background-image: url(/css/2018/images/wuh_khanl11.png); }
    .wuhzx-case-11:hover { background-image: url(/css/2018/images/wuh_khanl011.png); background-color: #fff; }
    .wuhzx-case-12 { background-image: url(/css/2018/images/wuh_khanl12.png); }
    .wuhzx-case-12:hover { background-image: url(/css/2018/images/wuh_khanl012.png); background-color: #fff; }
    .wuhzx-case-13 { background-image: url(/css/2018/images/wuh_khanl13.png); }
    .wuhzx-case-13:hover { background-image: url(/css/2018/images/wuh_khanl013.png); background-color: #fff; }
    .wuhzx-case-14 { background-image: url(/css/2018/images/wuh_khanl14.png); }
    .wuhzx-case-14:hover { background-image: url(/css/2018/images/wuh_khanl014.png); background-color: #fff; }
    .wuhzx-case-15 { background-image: url(/css/2018/images/wuh_khanl15.png); }
    .wuhzx-case-15:hover { background-image: url(/css/2018/images/wuh_khanl015.png); background-color: #fff; }
    .wuhzx-case-16 { background-image: url(/css/2018/images/wuh_khanl16.png); }
    .wuhzx-case-16:hover { background-image: url(/css/2018/images/wuh_khanl016.png); background-color: #fff; }
    .wuhzx-case-17 { background-image: url(/css/2018/images/wuh_khanl17.png); }
    .wuhzx-case-17:hover { background-image: url(/css/2018/images/wuh_khanl017.png); background-color: #fff; }
    .wuhzx-case-18 { background-image: url(/css/2018/images/wuh_khanl18.png); }
    .wuhzx-case-18:hover { background-image: url(/css/2018/images/wuh_khanl018.png); background-color: #fff; }
    .wuhzx-case-19 { background-image: url(/css/2018/images/wuh_khanl19.png); }
    .wuhzx-case-19:hover { background-image: url(/css/2018/images/wuh_khanl019.png); background-color: #fff; }
    .wuhzx-case-20 { background-image: url(/css/2018/images/wuh_khanl20.png); }
    .wuhzx-case-20:hover { background-image: url(/css/2018/images/wuh_khanl020.png); background-color: #fff; }

    .wuhzx-case-btn {
      display: block;
      width: 185px;
      height: 40px;
      background: #ffc30e;
      border-radius: 30px;
      text-align: center;
      line-height: 40px;
      color: #c90000;
      margin: 30px auto 0;
      font-size: 18px;
      box-shadow: 5px 5px 0px #ac0930;
      transition: all 0.3s;
    }
    .wuhzx-case-btn:hover {
      background: #ffe104;
      transform: translateY(-2px);
      color: #c90000;
    }

    /* ===== 回顾区域 ===== */
    .wuhzx-bg-review {
      background: url(/css/2018/images/wuhzx_bg4.jpg) no-repeat top center;
      background-size: cover;
      padding: 50px 0 60px;
    }
    .wuhzx-review-title {
      background: url(/css/2018/images/wuhzx_tel4.png) no-repeat center;
      background-size: contain;
      height: 169px;
      margin-bottom: 30px;
    }

    .wuhzx-review-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .wuhzx-review-item {
      position: relative;
      text-align: center;
      transition: all 0.3s ease;
      padding-top: 30px;
    }
    .wuhzx-review-item a {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
    }
    .wuhzx-review-item .review-img {
      aspect-ratio: 1 / 1;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center bottom;
      transition: all 0.3s;
    }
    .wuhzx-review-item .review-label {
      font-size: 22px;
      color: #fff;
      margin-top: 12px;
      transition: color 0.3s;
      line-height: 1.4;
    }
    .wuhzx-review-item:hover .review-label {
      color: #ffc30e;
    }

    /* 各年份偏移 & 背景 */
    .wuhzx-review-item.item-2016 { margin-top: 120px; }
    .wuhzx-review-item.item-2017 { margin-top: 90px; }
    .wuhzx-review-item.item-2018a { margin-top: 60px; }
    .wuhzx-review-item.item-2018b { margin-top: 30px; }

    .wuhzx-review-item.item-2016:hover { margin-top: 110px; }
    .wuhzx-review-item.item-2017:hover { margin-top: 80px; }
    .wuhzx-review-item.item-2018a:hover { margin-top: 50px; }
    .wuhzx-review-item.item-2018b:hover { margin-top: 20px; }

    .wuhzx-review-item .review-img-1 { background-image: url(/css/2018/images/wuhzx_jbei1.png); }
    .wuhzx-review-item .review-img-2 { background-image: url(/css/2018/images/wuhzx_jbei2.png); }
    .wuhzx-review-item .review-img-3 { background-image: url(/css/2018/images/wuhzx_jbei3.png); }
    .wuhzx-review-item .review-img-4 { background-image: url(/css/2018/images/wuhzx_jbei4.png); }

    /* ===== 底部方案区域 ===== */
    .wuhzx-bg-solution {
      background: url(/css/2018/images/wuhzx_bg5.jpg) no-repeat top center;
      background-size: cover;
      padding: 50px 0 60px;
    }
    .wuhzx-solution-title {
      background: url(/css/2018/images/wuhzx_tel5.png) no-repeat center;
      background-size: contain;
      height: 113px;
      margin-bottom: 30px;
    }
    .wuhzx-solution-img {
      max-width: 696px;
      margin: 20px auto;
      text-align: center;
    }
    .wuhzx-solution-img img {
      width: 100%;
      height: auto;
      max-width: 696px;
    }
    .wuhzx-solution-btn {
      display: block;
      width: 425px;
      max-width: 90%;
      height: 52px;
      background: #ffc30e;
      border-radius: 30px;
      text-align: center;
      line-height: 52px;
      color: #c90000;
      margin: 30px auto 0;
      font-size: 22px;
      box-shadow: 5px 5px 0px #ac0930;
      transition: all 0.3s;
    }
    .wuhzx-solution-btn:hover {
      background: #ffe104;
      transform: translateY(-3px);
      color: #c90000;
    }

    /* ===== 移动端适配 ===== */
    @media (max-width: 1200px) {
      .wuhzx-bg-top { min-height: 600px; }
      .wuhzx-bg-intro { min-height: auto; padding: 30px 0 50px; }
      .wuhzx-bg-case { min-height: auto; padding: 30px 0 50px; }
      .wuhzx-case-grid { gap: 10px; }
      .wuhzx-review-grid { gap: 15px; }
      .wuhzx-review-item .review-label { font-size: 18px; }
    }

    @media (max-width: 992px) {
      .wuhzx-bg-top { min-height: 480px; }
      .wuhzx-intro-text { font-size: 16px; line-height: 28px; }
      .wuhzx-review-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .wuhzx-review-item.item-2016,
      .wuhzx-review-item.item-2017,
      .wuhzx-review-item.item-2018a,
      .wuhzx-review-item.item-2018b { margin-top: 0; }
      .wuhzx-review-item.item-2016:hover,
      .wuhzx-review-item.item-2017:hover,
      .wuhzx-review-item.item-2018a:hover,
      .wuhzx-review-item.item-2018b:hover { margin-top: -5px; }
      .wuhzx-review-item .review-label { font-size: 16px; }
      .wuhzx-case-grid { grid-template-columns: repeat(4, 1fr); }
      .wuhzx-thumb-track .thumb-item { flex: 0 0 120px; }
    }

    @media (max-width: 768px) {
      .wuhzx-bg-top { min-height: 360px; }
      .wuhzx-top-anim { padding: 30px 0; }
      .wuhzx-intro-text { font-size: 14px; line-height: 24px; max-width: 98%; }
      .wuhzx-case-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .wuhzx-review-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .wuhzx-review-item .review-label { font-size: 14px; }
      .wuhzx-solution-btn { width: 90%; font-size: 18px; height: 46px; line-height: 46px; }
      .wuhzx-thumb-track .thumb-item { flex: 0 0 90px; }
      .wuhzx-slider-btn { width: 36px; height: 36px; font-size: 16px; }
    }

    @media (max-width: 576px) {
      .wuhzx-bg-top { min-height: 280px; }
      .wuhzx-intro-title { height: 50px; }
      .wuhzx-gallery-title { height: 60px; }
      .wuhzx-case-title { height: 50px; }
      .wuhzx-review-title { height: 80px; }
      .wuhzx-solution-title { height: 60px; }
      .wuhzx-case-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
      .wuhzx-review-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .wuhzx-review-item .review-label { font-size: 12px; }
      .wuhzx-solution-btn { font-size: 16px; height: 42px; line-height: 42px; }
      .wuhzx-thumb-track .thumb-item { flex: 0 0 70px; }
      .wuhzx-slider-btn { width: 30px; height: 30px; font-size: 14px; }
    }

    @media (max-width: 400px) {
      .wuhzx-case-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
      .wuhzx-review-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
      .wuhzx-review-item .review-label { font-size: 11px; }
      .wuhzx-thumb-track .thumb-item { flex: 0 0 60px; }
    }

    /* ===== 隐藏原有底部 ===== */
    .hokg_bottom { display: none !important; }
    .zqgq_ban_wap { display: none !important; }
