* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", sans-serif;
}
body {
  color: #333;
  background: #f8f9fa;
}
.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 头部导航 - 新增滚动样式 */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}
header.scroll {
  height: 70px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
header.scroll .nav-wrap {
  height: 70px;
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 80px;
  transition: all 0.3s ease;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #0a8c53;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  height: 50px;
  margin-right: 10px;
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li {
  margin: 0 10px;
  list-style: none;
}
.nav-list a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-list a:hover {
  color: #0a8c53;
}
.nav-list > li {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}
/* 下拉菜单样式 */
.dropdown {
  display: none;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 160px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 0 0 4px 4px;
  padding: 10px 0;
  z-index: 1000;
  flex-direction: column;
  list-style: none !important;
  margin: 0;
}
.nav-list > li:hover .dropdown {
  display: flex;
  animation: fadeInDown 0.3s ease;
}
.dropdown li {
  margin: 0;
  width: 100%;
  list-style: none !important;
  padding: 0;
  position: relative; /* For sub-menu positioning */
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}
.dropdown a:hover {
  background: #f8f9fa;
  color: #0a8c53;
}
.dropdown a.active::after { display: none; }
.icon-down {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px solid #bbb;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.3s;
}
.nav-list > li:hover .icon-down {
  transform: rotate(180deg);
  border-top-color: #0a8c53;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
/* 3rd Level Menu (Flyout) */
.dropdown-sub {
  display: none;
  position: absolute; /* Flyout */
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 0 4px 4px 4px;
  padding: 10px 0;
  z-index: 1001;
  flex-direction: column;
  list-style: none !important;
  margin: 0;
  border-left: none;
}
.dropdown li:hover > .dropdown-sub {
  display: flex;
  animation: fadeInLeft 0.3s ease;
}
.dropdown-sub li a {
  padding: 10px 20px;
  font-size: 14px;
  color: #666;
}
.dropdown-sub li a:hover {
  background: #f8f9fa;
  color: #0a8c53;
  font-weight: normal;
}
.icon-right {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  vertical-align: middle;
  border-left: 4px solid #bbb;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transform: none;
  transition: border-left-color 0.3s;
}
.dropdown li:hover > a .icon-right {
  transform: none;
  border-left-color: #0a8c53;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translate(-10px, 0); }
  to { opacity: 1; transform: translate(0, 0); }
}
/* 新增导航选中样式 */
.nav-list li.active > a {
  color: #0a8c53;
}
.nav-list li.active > a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0a8c53;
}
.nav-contact {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-contact .phone {
  color: #0a8c53;
  font-weight: bold;
  margin-right: 20px;
}
.nav-contact .wechat {
  height: 30px;
  border-radius: 4px;
}
/* 移动端汉堡菜?*/
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: #0a8c53;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Banner?*/
.banner {
  height: 500px;
  background: linear-gradient(rgba(10, 140, 83, 0.8), rgba(10, 140, 83, 0.6)),
    url("https://picsum.photos/id/1059/1920/500") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
/* 新增banner动效 */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  animation: bannerMove 20s infinite linear;
}
@keyframes bannerMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}
.banner-content {
  width: 60%;
  position: relative;
  z-index: 1;
}
.banner h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.banner p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.banner-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #fff;
  color: #0a8c53;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.banner-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* 核心业务板块 */
.business {
  padding: 80px 0;
  background: #fff;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
/* 新增标题动效 */
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #0a8c53;
}
.section-title .line {
  width: 80px;
  height: 3px;
  background: #0a8c53;
  margin: 0 auto;
}
.business-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.business-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}
.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.business-img {
  height: 220px;
  overflow: hidden;
}
.business-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.business-card:hover .business-img img {
  transform: scale(1.05);
}
.business-content {
  padding: 30px;
}
.business-content h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}
.business-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.business-link {
  display: inline-block;
  color: #0a8c53;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.business-link:hover {
  text-decoration: underline;
  transform: translateX(5px);
}

/* 企业实力 */
.strength {
  padding: 80px 0;
  background: #f8f9fa;
}
.strength-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.strength-item {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.strength-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.strength-icon {
  font-size: 48px;
  color: #0a8c53;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.strength-item:hover .strength-icon {
  transform: scale(1.1);
  color: #086e43;
}
.strength-item h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}
.strength-item p {
  color: #666;
}

/* 产品展示 */
.products {
  padding: 80px 0;
  background: #fff;
}
.product-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}
.product-tab {
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  color: #666;
  font-weight: 500;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
}
.product-tab.active {
  color: #0a8c53;
  border-bottom: 2px solid #0a8c53;
}
.product-tab:hover {
  color: #0a8c53;
}
.product-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  background: #fff;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.product-img {
  height: 180px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}
.product-content {
  padding: 20px;
}
.product-content h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}
.product-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.product-params {
  font-size: 12px;
  color: #999;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}

/* 新闻中心 */
.news {
  padding: 80px 0;
  background: #f8f9fa;
}
.news-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.news-img {
  height: 160px;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.news-card:hover .news-img img {
  transform: scale(1.05);
}
.news-content {
  padding: 20px;
}
.news-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  display: inline-block;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 4px;
}
.news-content h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  transition: all 0.3s;
}
.news-card:hover .news-content h3 {
  color: #0a8c53;
}
.news-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* 联系我们 */
.contact {
  padding: 80px 0;
  background: #fff;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}
.contact-icon {
  width: 30px;
  height: 30px;
  background: #0a8c53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-item:hover .contact-icon {
  transform: rotate(10deg);
  background: #086e43;
}
.contact-text h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}
.contact-text p {
  color: #666;
}
.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.contact-form h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #0a8c53;
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 140, 83, 0.1);
}
.form-group textarea {
  height: 120px;
  resize: none;
}
.form-btn {
  width: 100%;
  padding: 12px;
  background: #0a8c53;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
.form-btn:hover {
  background: #086e43;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 140, 83, 0.2);
}
/* 新增表单错误提示样式 */
.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.form-group.error input {
  border-color: #e74c3c;
}
.form-group.error .error-message {
  display: block;
}

/* 页脚 */
.footer {
  background: #333;
  color: #fff;
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer-logo span {
  color: #0a8c53;
}
.footer-about p {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
}
.footer-title {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #0a8c53;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer-list {
  list-style: none;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-list a:hover {
  color: #0a8c53;
  padding-left: 5px;
}
.footer-contact p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.footer-contact p::before {
  content: "?;
  color: #0a8c53;
  margin-right: 8px;
}
/* 新增地图占位样式 */
.footer-map {
  margin-top: 20px;
  height: 120px;
  background: #444;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #ccc;
  font-size: 12px;
}

/* 响应式媒体查?- 平板?68px-1199px?*/
@media (max-width: 1199px) {
  .container {
    width: 100%;
  }
  .business-wrap {
    grid-template-columns: 1fr;
  }
  .strength-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 响应式媒体查?- 手机（≤767px?*/
@media (max-width: 767px) {
  .nav-wrap {
    height: 60px;
  }
  .logo {
    font-size: 20px;
  }
  .logo img {
    height: 40px;
  }
  .nav-list {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-list li {
    margin: 10px 0;
  }
  .nav-contact {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-list.show {
    display: flex;
  }

  .banner {
    height: 350px;
  }
  .banner-content {
    width: 100%;
  }
  .banner h1 {
    font-size: 32px;
  }
  .banner p {
    font-size: 16px;
  }
  .banner-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 28px;
  }
  .section-title .line {
    width: 60px;
  }

  .strength-wrap {
    grid-template-columns: 1fr;
  }
  .product-wrap {
    grid-template-columns: 1fr;
  }
  .news-wrap {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .business-content {
    padding: 20px;
  }
  .business-content h3 {
    font-size: 20px;
  }
  .business-content p {
    font-size: 14px;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 20px;
  }
  .form-group input,
  .form-group textarea {
    padding: 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-logo {
    font-size: 22px;
  }
  .footer-title {
    font-size: 16px;
  }
}

/* 新增回到顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: #0a8c53;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: #086e43;
  transform: translateY(-5px);
}
/* 子页面通用样式 - 2025结构适配 */
.col-banner{position:relative;overflow:hidden}
.col-banner .banner-img{width:100%}
.col-banner .banner-img .pic{
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
/*.col-banner .banner-img .pic img{max-width:100%;max-height:100%;margin:auto;padding:0;width:100%;height:auto;border:none}*/
.col-banner .text{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:2;text-align:center}
.col-banner .text .banner-line{width:70px;height:3px;background: linear-gradient(90deg, #0a8c53 40%, #8bc34a);margin:0 auto;border-radius:3px}
.col-banner .text h3{color:#fff;font-size:38px;font-weight:bold;letter-spacing:3px;margin-bottom:20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3);}

.banner-path{position:relative;padding:0;border-bottom:1px solid #e5e5e5; background:#fff;}
.banner-path .container {display:flex;justify-content:space-between;align-items:center}
.banner-path .banner-nav{position:relative;flex-grow:1}
.banner-path .banner-nav li{display:block;font-size:16px;float:left;line-height:60px;margin-right:40px;z-index:1;position:relative}
.banner-path .banner-nav li a{display:block;color:#333; text-decoration: none;}
.banner-path .banner-nav li.active a{color:#0a8c53;font-weight:bold}
.banner-path .banner-nav li:after{content:"";display:block;width:0;height:2px;transition:.5s;background:#0a8c53;position:absolute;right:0;bottom:0}
.banner-path .banner-nav li.active:after{width:100%;left:0;right:auto}
.banner-path .banner-nav li:hover:after{width:100%;left:0;right:auto}
.banner-path .position{display: flex;justify-content: center;align-items: center;gap: 5px; font-size: 14px;}
.banner-path .position a{color:#888;line-height:60px; text-decoration: none;}
.banner-path .position a:hover{color:#0a8c53}


.cases-detail { padding: 0 0 80px; position: relative; z-index: 2; }
.cases-detail > .container { margin-top: -60px; } /* 详情页上浮效?*/
.cases-list { padding: 40px 0 80px; } /* 列表页不上浮，正常间?*/

.cases-detail-box, .cases-list-box { display: flex; align-items: flex-start; gap: 30px; }
.cases-detail-left { flex: 1; background: #fff; border-radius: 12px; padding: 50px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.cases-list-left { flex: 1; } /* 列表左侧容器，透明，内部放卡片 */

.latest-right { flex: 0 0 320px; position: sticky; top: 100px; margin-top: 0; }

.latest-box { background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); overflow: hidden; }

.cases-detail-title { font-size: 32px; font-weight: bold; margin-bottom: 20px; color: #333; text-align: center; }
.cases-detail-text { padding-bottom: 30px; border-bottom: 1px solid #eee; margin-bottom: 40px; display: flex; gap: 30px; color: #888; font-size: 14px; justify-content: center; }
.cases-detail-text span { display: flex; align-items: center; gap: 6px; }

/* 正文高级排版 */
.cases-detail-main { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 40px; min-height: 300px; }
.cases-detail-main h2, 
.cases-detail-main h3 {
  color: #333;
  margin: 35px 0 20px;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
  font-size: 20px;
}
.cases-detail-main h2::before,
.cases-detail-main h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: #0a8c53;
  border-radius: 2px;
}
.cases-detail-main p { margin-bottom: 20px; text-align: justify; }
.cases-detail-main img { max-width: 100%; border-radius: 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); margin: 25px auto; display: block; }
.cases-detail-main ul, 
.cases-detail-main ol {
    margin: 25px 0;
    padding-left: 20px;
    background: #f9fbfd;
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 4px solid #0a8c53;
}
.cases-detail-main li {
    margin-bottom: 12px;
    list-style: none;
    position: relative;
    padding-left: 15px;
}
.cases-detail-main li::before {
    content: "?;
    color: #0a8c53;
    position: absolute;
    left: 0;
    top: 0px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
}

.cases-detail-page { display: flex; justify-content: space-between; gap: 20px; }
.cases-detail-page a { flex: 1; display: flex; align-items: center; padding: 15px 20px; background: #f8f9fa; border: 1px solid #eee; border-radius: 8px; color: #666; text-decoration: none; transition: all 0.3s; }
.cases-detail-page a:hover { background: #0a8c53; color: #fff; border-color: #0a8c53; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(10,140,83,0.2); }
.cases-detail-page a.prev { justify-content: flex-start; }
.cases-detail-page a.next { justify-content: flex-end; }
.cases-detail-page a span { font-size: 12px; margin: 0 10px; opacity: 0.7; }

/* 右侧最新列?*/
.latest-box { background: #fff; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.05); overflow: hidden; }
.index-mod-title { padding: 20px; border-bottom: 1px solid #eee; }
.index-mod-title .lines { display: flex; align-items: center; height: 24px; }
.index-mod-title .line1 { width: 4px; height: 100%; background: #0a8c53; border-radius: 2px; margin-right: 4px; }
.index-mod-title .line2 { width: 4px; height: 60%; background: #8bc34a; border-radius: 2px; }
.index-mod-title .latest-title { margin-left: 10px; font-size: 18px; font-weight: bold; }

.latest-box ul li { padding: 15px 20px; border-bottom: 1px solid #f5f5f5; transition: all 0.3s; }
.latest-box ul li:last-child { border-bottom: none; }
.latest-box ul li:hover { background: #f9fbfd; }
.latest-box ul li a { display: block; text-decoration: none; }
.latest-img { height: 180px; border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.latest-img .pic { width: 100%; height: 100%; background-position: center; background-size: cover; transition: transform 0.5s; }
.latest-box ul li:hover .latest-img .pic { transform: scale(1.1); }
.latest-tit { font-size: 15px; font-weight: bold; color: #333; margin-bottom: 8px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.latest-box ul li:hover .latest-tit { color: #0a8c53; }
.latest-text { display: flex; justify-content: space-between; font-size: 12px; color: #999; }

@media (max-width: 991px) {
    .cases-detail-box { flex-direction: column; }
    .latest-right { display: none; }
    .banner-path .banner-nav { display: none; }
    .cases-detail-left { padding: 20px; }
    .col-banner .text h3 { font-size: 24px; }
    .col-banner .banner-img .pic { height: 200px; }
    .cases-detail-title { font-size: 20px; }
    .cases-detail-page { flex-direction: column; }
}

/* 列表页项目样?- 独立卡片风格 */
.cases-item { display: flex; gap: 20px; padding: 20px; margin-bottom: 20px; background: #fff; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-decoration: none; transition: all 0.3s; border: 1px solid transparent; }
.cases-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-color: #0a8c53; }
.cases-item:last-child { margin-bottom: 0; }
.cases-item .cases-img { width: 260px; height: 170px; border-radius: 8px; overflow: hidden; flex-shrink: 0; position: relative; }
.cases-item .cases-img .pic { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s; }
.cases-item:hover .cases-img .pic { transform: scale(1.1); }
.cases-content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 5px 0; }
.cases-title { font-size: 20px; font-weight: bold; color: #333; margin-bottom: 10px; transition: color 0.3s; }
.cases-item:hover .cases-title { color: #0a8c53; }
.cases-desc { font-size: 14px; color: #666; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.cases-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #999; margin-top: auto; }
.cases-meta span { display: flex; align-items: center; gap: 5px; }
.cases-button { color: #0a8c53; font-weight: 500; opacity: 0; transform: translateX(-10px); transition: all 0.3s; }
.cases-item:hover .cases-button { opacity: 1; transform: translateX(0); }

@media (max-width: 767px) { 
    .cases-item { flex-direction: column; } 
    .cases-item .cases-img { width: 100%; height: 180px; }
    .cases-desc { -webkit-line-clamp: 2; }
}

/* Product Page Styles */
.product-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.product-card a { text-decoration: none; color: inherit; display: block; }
.product-card .img-box { height: 200px; overflow: hidden; position: relative; }
.product-card .img-box .bg-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s; }
.product-card:hover .img-box .bg-img { transform: scale(1.1); }
.product-card .model-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; justify-content: center; align-items: center; opacity: 0; transition: all 0.3s; }
.product-card:hover .model-overlay { opacity: 1; }
.product-card .model-overlay span { color: #fff; font-size: 16px; font-weight: bold; border: 1px solid rgba(255,255,255,0.8); padding: 5px 15px; border-radius: 4px; transform: translateY(20px); transition: transform 0.3s; }
.product-card:hover .model-overlay span { transform: translateY(0); }
.product-card .info-box { padding: 20px; text-align: center; }
.product-card .info-box h4 { font-size: 18px; color: #333; margin-bottom: 10px; font-weight: bold; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-card .info-box p { font-size: 14px; color: #666; margin-bottom: 15px; height: 40px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-top: 0; }
.product-card .btn-more { display: inline-block; padding: 6px 20px; border: 1px solid #0a8c53; color: #0a8c53; border-radius: 20px; font-size: 14px; transition: all 0.3s; }
.product-card:hover .btn-more { background: #0a8c53; color: #fff; }

@media (max-width: 991px) { .product-wrapper { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .product-wrapper { grid-template-columns: 1fr; } }

/* Sidebar Category Styles */
.cat-list { padding: 10px 0; list-style: none; }
.cat-list li { list-style: none; } /* Force remove bullets */
.cat-item { border-bottom: 1px dashed #eee; }
.cat-item:last-child { border-bottom: none; }
.cat-item > a { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; color: #333; font-size: 15px; font-weight: 500; text-decoration: none; transition: all 0.3s; border-radius: 4px; border-left: 3px solid transparent; }
.cat-item.active > a, .cat-item > a:hover { color: #0a8c53; background: #f0f9f4; border-left-color: #0a8c53; font-weight: 600; }
.cat-item .icon-right { width: 14px; height: 14px; color: #ccc; transition: transform 0.3s; }
.cat-item.active .icon-right { transform: rotate(90deg); color: #0a8c53; }
.sub-cat { padding: 0; display: none; background: #fff; margin: 0; list-style: none !important; }
.sub-cat li { list-style: none !important; margin: 0; padding: 0; }
.sub-cat li a { display: block; padding: 6px 10px 6px 30px; font-size: 13px; color: #666; text-decoration: none; transition: all 0.3s; position: relative; }
.sub-cat li a:hover, .sub-cat li.current a { color: #0a8c53; background: #f9fffb; font-weight: bold; }
.sub-cat li.current a::before { content: ""; position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; border-radius: 50%; background: #0a8c53; }

/* News Page Specifics */
.news-item { display: flex; gap: 20px; padding: 25px; margin-bottom: 20px; background: #fff; border-radius: 8px; border-bottom: 1px solid #f0f0f0; transition: all 0.3s; }
.news-item:hover { background: #f9fbfd; transform: translateX(5px); box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.news-item a { display: flex; gap: 20px; width: 100%; text-decoration: none; color: inherit; }
.news-item .news-img { width: 220px; height: 140px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.news-item .news-img .pic { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s; }
.news-item:hover .news-img .pic { transform: scale(1.1); }
.news-item .news-info { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.news-item .news-info h3 { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 10px; transition: color 0.3s; }
.news-item:hover .news-info h3 { color: #0a8c53; }
.news-item .news-info .desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-item .news-info .meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #999; }
.news-item .news-info .more { color: #0a8c53; opacity: 0; transform: translateX(-10px); transition: all 0.3s; }
.news-item:hover .news-info .more { opacity: 1; transform: translateX(0); }

@media (max-width: 767px) {
  .news-item a { flex-direction: column; }
  .news-item .news-img { width: 100%; height: 180px; }
}

/* Breadcrumb Styles */
.path-list { padding: 15px 0; font-size: 14px; color: #666; display: flex; align-items: center; }
.path-list a { color: #666; text-decoration: none; }
.path-list a:hover, .path-list a.active { color: #0a8c53; }
.path-list .sep { color: #ccc; margin: 0 8px; font-family: sans-serif; }

/* Pagination Styles */
.pages { text-align: center; padding: 40px 0; clear: both; width: 100%; }
.pages ul.pagination { display: inline-block; padding: 0; margin: 0; box-shadow: none; border-radius: 0; }
.pages li { display: inline-block; margin: 0 3px; list-style: none; }
.pages li > a, .pages li > span { display: inline-block; padding: 8px 16px; background-color: #fff; border: 1px solid #e5e5e5; color: #666; text-decoration: none; border-radius: 4px; transition: all 0.3s; font-size: 14px; }
.pages li > a:hover, .pages li.active > span { background-color: #0a8c53; color: #fff; border-color: #0a8c53; }
.pages li.disabled > span { color: #ccc; cursor: not-allowed; background-color: #f9f9f9; border-color: #eee; }

/* 2025 Template Ported Styles */

/* General Wrapper Helper */
.pd80{padding: 80px 0;}
.container-outer {max-width: 1680px;width: 100%;height: 100%;padding: 0 4%;margin: 0 auto;box-sizing: border-box;}

/* View More Button */
.view-more{display:flex;flex-wrap:nowrap}
.view-more a{color:#fff;font-size:0.875rem;background: #0863c4;overflow:hidden;display:flex;align-items:center;justify-content:center;text-transform:uppercase;padding:0.75rem 1.875rem;position:relative;z-index:1;border-radius: 2rem}
.view-more i{font-size:0.75rem;margin-left:8px;position:relative}
.view-more a:after{content:"";display:block;width:0;height:100%;position:absolute;right:0;top:0;background: #34C759;visibility:hidden;z-index:-1;transition:.5s;-webkit-transition:.5s;-moz-transition:.5s;-ms-transition:.5s;-o-transition:.5s}
.view-more a:hover:after{width:100%;visibility:visible;left:0;right:auto}

/* Banner Styles */
.col-banner{position:relative;overflow:hidden}
.col-banner .banner-img{width:100%}
.col-banner .banner-img .pic img{max-width:100%;max-height:100%;margin:auto;padding:0;width:100%;height:auto;border:none}
.col-banner .text{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;align-items:center;z-index:2;text-align:center}
.col-banner .text .banner-line{width:4.375rem;height:3px;background: linear-gradient(90deg, #0863c4 40%, #34C759);margin:0 auto;border-radius:3px}
.col-banner .text h3{color:#fff;font-size:2.375rem;font-weight:bold;letter-spacing:3px;margin-bottom:20px}

/* Breadcrumb Styles (2025) */
.banner-path{position:relative;padding:0;border-bottom:1px solid rgb(229,229,229)}
.banner-path .container{position:relative;display:flex;justify-content:space-between;align-items:center}
.banner-path .banner-nav{position:relative;flex-grow:1}
.banner-path .banner-nav li{display:block;font-size:1rem;float:left;line-height:4.25rem;margin-right:2.5rem;z-index:1;position:relative}
.banner-path .banner-nav li a{display:block;color:#333}
.banner-path .banner-nav li.active a{color:#0863c4;font-weight:bold}
.banner-path .banner-nav li:after{content:"";display:block;width:0;height:2px;transition:.5s;background:#0863c4;position:absolute;right:0;bottom:0}
.banner-path .banner-nav li.active:after{width:100%;left:0;right:auto}
.banner-path .banner-nav li:hover:after{width:100%;left:0;right:auto}
.banner-path .position{display: flex;justify-content: center;align-items: center;gap: 3px;}
.banner-path .position .fa-house-chimney{color:#0863c4;margin-right:5px}
.banner-path .position a{color:#848692;line-height:4.25rem}
.banner-path .position a:hover{color:#0863c4}
.banner-path .position .icon-rArrow{margin:0 0.3125rem;color:#848692;font-size:10px;vertical-align:middle}

/* Product Detail Styles */
.product-detail{overflow:visible}
/* .product-detail .container-outer{display:flex;align-items:flex-start} */
.product-detail .product-detail-box{flex-grow:1}
.product-detail .product-detail-top{display:flex;flex-wrap:wrap;gap:5rem}
.product-detail .product-detail-top .product-detail-slide{flex:1 1 50%;min-width:300px;max-width:46rem;position:relative;width:100%;border-radius:0.75rem;overflow:hidden}
.product-detail .product-detail-top .product-detail-swiper{position:relative;overflow:hidden;width:100%;height:100%}
.product-detail .product-detail-top .product-detail-swiper .pic{position:relative;overflow:hidden;width:100%;height:100%}
.product-detail .product-detail-top .product-detail-swiper .swiper-button-next,.product-detail .product-detail-top .product-detail-swiper .swiper-button-prev{left:auto;right:0;top:auto;bottom:0;margin:auto;width:90px;height:60px;z-index:10}
.product-detail .product-detail-top .product-detail-swiper .swiper-button-next::after,.product-detail .product-detail-top .product-detail-swiper .swiper-button-prev::after{display:none}
.product-detail .product-detail-top .product-detail-swiper .swiper-button-next{color:#fff;background:rgba(0,0,0,.3)}
.product-detail .product-detail-top .product-detail-swiper .swiper-button-prev{color:#fff;right:91px;background:rgba(0,0,0,.3)}
.product-detail .product-detail-top .product-detail-swiper .swiper-button-next:hover{background:#0863c4}
.product-detail .product-detail-top .product-detail-swiper .swiper-button-prev:hover{background:#0863c4}
.product-detail .product-detail-top .product-detail-info{flex:1 1 40%;min-width:300px;width:100%}
.product-detail .product-detail-top .product-detail-info{padding:2% 0;overflow:hidden}
.product-detail .product-detail-top .product-detail-info h3{font-size:1.5rem;font-weight: 600;padding-bottom:1.25rem}
.product-detail .product-detail-top .product-detail-info h4{font-size:1.125rem;font-weight:normal;padding-bottom:1.25rem;border-bottom:1px solid rgb(111 111 111 / 20%)}
.product-detail .product-detail-top .product-detail-info .product-text{color:#8d8d8d;font-size:1rem;line-height:1.75rem;padding:1.875rem 0;overflow:hidden;text-align:justify}
.product-detail .product-detail-top .product-detail-info .view-more svg{margin-left:0;margin-right:8px;}
.product-detail .product-detail-bottom{padding-top:3.75rem}
.product-detail .product-detail-bottom .product-detail-tabs{display:flex;background:#f2f2f2;border-radius:0.75rem}
.product-detail .product-detail-bottom .product-detail-tabs .tab{padding:1.25rem 1.875rem;margin-left:1.25rem;font-size:1rem;cursor:pointer;position:relative;transition:all 0.3s ease;color:#555}
.product-detail .product-detail-bottom .product-detail-tabs .tab.active{color:#0863c4;font-weight:bold}
.product-detail .product-detail-bottom .product-detail-tabs .tab:after{content:"";display:block;width:0;height:2px;transition:.5s;background: #0863c4;position:absolute;right:0;bottom:0}
.product-detail .product-detail-bottom .product-detail-tabs .tab.active:after{width:100%;left:0;right:auto}
.product-detail .product-detail-bottom .content-section{padding-top:3.5rem}
.product-detail .product-detail-bottom .section-title{display:flex;align-items:center;margin-bottom:2.25rem;font-size:1.25rem;color:#333}
.product-detail .product-detail-bottom .section-title i{display:inline-block;width:4px;height:22px;background:#0863c4;margin-right:1.125rem}
.product-detail .product-detail-bottom .section-content{color:rgba(0,0,0,0.6);line-height:2;font-size:1rem}
.product-detail .product-detail-bottom .section-content .dot{display:block;position:relative;padding:0.375rem 0 0.375rem 1.25rem}
.product-detail .product-detail-bottom .section-content .dot::before{content:'?;position:absolute;left:0;color:#0863c4;font-weight:bold}
.product-detail .product-detail-bottom .section-content strong{color:rgba(0,0,0,0.9)}
.product-detail .product-detail-bottom .table-bordered{width:100%;border-collapse:collapse;border-radius:8px;overflow:hidden;font-size:1rem}
.product-detail .product-detail-bottom .table-bordered td{padding:0.9375rem;text-align:left;border:1px solid #dee2e6;vertical-align:top}
.product-detail .product-detail-bottom .table-bordered td:first-child{font-weight:600;color:#343434;background-color:#f8f9fa;width:20%}
.product-detail .product-detail-bottom .table-bordered tr:nth-child(even) td:first-child{background-color:#f1f3f5}
.product-detail .product-detail-bottom .table-bordered br{display:none}
.product-detail .product-detail-bottom .section-content .notes{margin-bottom:1.25rem}
.product-detail .product-detail-bottom .section-content .download-list{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.product-detail .product-detail-bottom .section-content .download-list .download-item{position: relative;overflow:hidden;min-width:250px;background:#fff;border-radius:0.75rem;padding:1.25rem;display:flex;align-items:center;gap:15px;transition:all 0.3s ease;box-shadow:0 5px 20px rgba(0,0,0,0.08)}
.product-detail .product-detail-bottom .section-content .download-list .download-item::before{content:'';position:absolute;top:0;left:0;width:100%;height:5px;background:linear-gradient(90deg,#0863c4,#42a5f5);transform:scaleX(0);transform-origin:left;transition:transform 0.4s ease;z-index:2}
.product-detail .product-detail-bottom .section-content .download-list .download-item:hover::before{transform: scaleX(1);}
.product-detail .product-detail-bottom .section-content .download-list .download-item .download-icon{width:50px;height:50px;background:#0863c4;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.5rem}
.product-detail .product-detail-bottom .section-content .download-list .download-item .download-info h4{margin-bottom:5px;color:#343a40}
.product-detail .product-detail-bottom .section-content .download-list .download-item .download-info p{color:#6c757d;font-size:0.9rem}

/* Responsive Overrides (GZH) */
@media (max-width: 991px) {
  .product-detail .product-detail-top { flex-direction: column; gap: 2rem; }
  .product-detail .product-detail-bottom .section-content .download-list { grid-template-columns: repeat(2, 1fr); }
  .banner-path .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .banner-path .banner-nav { width: 100%; overflow-x: auto; white-space: nowrap; }
  .banner-path .position { width: 100%; justify-content: flex-start; }
}
@media (max-width: 576px) {
  .product-detail .product-detail-bottom .section-content .download-list { grid-template-columns: 1fr; }
}



/* ҳƼƷ - Public Title Styles */
.index-mod-title{position:relative}
.index-mod-title .lines{display:flex;flex-direction:row;align-items:flex-start;flex-shrink:0;height:2.875rem}
.index-mod-title .lines .line1{width:6px;height:100%;background-color:#0863c4;margin-right:5px;border-radius:3px}
.index-mod-title .lines .line2{width:6px;height:39%;background-color:#34C759;align-self:flex-start;border-radius:3px}
.index-mod-title .lines .tit{font-size:1.75rem;font-weight:bold;line-height:1.4;margin-left: 1rem;}

/*  - Sidebar Styles */
.latest-right{flex:0 0 22.5rem;position:sticky;top:6.5rem}
.latest-right .latest-box{border-radius:0.75rem;box-shadow: 0px 8px 36.8px 3.2px rgba(0, 0, 7, 0.08);}
.latest-right .latest-box .index-mod-title{padding:30px 20px 20px;border-bottom:1px solid #e5e5e5}
.latest-right .latest-box .index-mod-title .lines{height:1.875rem}
.latest-right .latest-box .index-mod-title .lines .line1,.latest-right .latest-box .index-mod-title .lines .line2{width:5px}
.latest-right .latest-box .index-mod-title .lines .latest-title{font-size:1.25rem;font-weight:600;line-height:1.4;margin-left:0.75rem}
.latest-right .latest-box ul li{padding:1.25rem;border-bottom:1px solid #e5e5e5}
.latest-right .latest-box ul li:last-child{border-bottom:none}
.latest-right .latest-box ul li .latest-img{border-radius:.625rem;margin-bottom:.875rem;overflow:hidden}
.latest-right .latest-box ul li:hover .latest-img .pic{transform:scale(1.08);}
.latest-right .latest-box ul li:hover .latest-tit{color:#0863c4}
.latest-right .latest-box ul li .latest-tit{font-size:1rem;font-weight:500;line-height:1.5rem;height:auto;overflow:hidden;margin-bottom:.75rem}
.latest-right .latest-box ul li .latest-text{display:flex;justify-content:space-between;align-items:center}
.latest-right .latest-box ul li .latest-text span{font-size:0.875rem;color:#888888;display: flex;align-items: center;gap: 5px;}
.latest-right .latest-box ul li .latest-text span.latest-view-icon{gap: 1px;}


/* Compact professional cases list override */
.cases-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    transition: all 0.3s;
}

.cases-item:hover {
    transform: none;
    box-shadow: none;
    background: #fcfcfc;
    border-color: #eee;
}

.cases-item:last-child {
    border-bottom: none;
}

.cases-item .cases-img {
    width: 180px;
    height: 110px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.cases-item .cases-img .pic {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.cases-item:hover .cases-img .pic {
    transform: scale(1.05);
}

.cases-item .cases-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cases-item .cases-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.cases-item:hover .cases-title {
    color: #0a8c53;
}

.cases-item .cases-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 0;
    flex: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cases-item .cases-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    border-top: none;
    padding-top: 0;
}

.cases-item .cases-time {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cases-item .cases-button {
    font-size: 13px;
    color: #0a8c53;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.cases-item:hover .cases-button {
    opacity: 1;
    transform: translateX(0);
}


/* Adjust List News Sidebar Ratio */
@media (min-width: 992px) {
    .latest-right {
        flex: 0 0 260px; /* Reduced from 320px */
        width: 260px;
    }
    .cases-list-box {
        gap: 40px; /* Increase gap slightly for breathing room */
    }
}


/* Force 8:2 Ratio - Narrower Sidebar */
@media (min-width: 992px) {
    .latest-right {
        flex: 0 0 260px !important;
        width: 260px !important;
        max-width: 20%;
    }
}


/* Video Play Button Styling */
.company-box .pic {
    position: relative !important;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px; /* Slightly smaller for elegance */
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underscore if any */
}
.play-btn i {
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #fff;
    margin-left: 5px; /* Optically center the triangle */
    transition: all 0.3s ease;
}
.play-btn:hover {
    background-color: #0a8c53; /* Theme color on hover */
    border-color: #0a8c53;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 20px rgba(10, 140, 83, 0.5);
}
.play-btn:hover i {
    border-left-color: #fff;
}
/* Pulse Animation */
@keyframes playPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.play-btn.ani {
    animation: playPulse 2s infinite;
}


/* FORCE Video Play Button Style Override */
.company-box .pic .play-btn {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 80px !important;
    height: 80px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 3px solid #fff !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 100 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4) !important;
    text-decoration: none !important;
}

/* Triangle Icon */
.company-box .pic .play-btn i {
    display: block !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 12px solid transparent !important;
    border-bottom: 12px solid transparent !important;
    border-left: 22px solid #fff !important;
    margin-left: 6px !important; /* Center visually */
    background: none !important; /* Override any background image/color on i */
}

/* Animation */
@keyframes playPulseForce {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.company-box .pic .play-btn.ani {
    animation: playPulseForce 2s infinite !important;
}

/* Hover Effect */
.company-box .pic .play-btn:hover {
    background: #0a8c53 !important; /* Theme Color */
    border-color: #0a8c53 !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

