﻿@charset "utf-8";

/* ===================== 专属差异化样式（全局） ===================== */
/* 全局初始化 - 仅保留与base.css差异的部分 */
a {
    text-decoration: none !important;
    color: inherit;
}
a:hover {
    text-decoration: none !important;
}
/* 仅保留base.css没有的box-sizing和统一微软雅黑字体 */
* {
    outline: none;
    box-sizing: border-box !important;
    font-family: 微软雅黑 !important;
}


/* 专属工具/动画 */
/* 确保动画样式生效 */
@keyframes caseFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* 标题栏容器（专属） */
.hot_title_wrap {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* 标题栏（专属） */
.left_gg-ye {
    width: 100% !important;
    height: 150px !important;
    background: #14293E !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    float: none !important;
    position: static !important;
    margin: 0 !important;
    z-index: 9999 !important;
}

/* 标题文字样式（专属） */
.zuozhe-nr-bt {
    width: 100%;
    height: auto;
    text-align: center;
    font-family: ZCOOL GDH,FontAwesome, sans-serif;
    font-size: 28px;
    color: #fff;
    margin: 0 0 10px 0;
}
.zuozhe-nr-bt2 {
    width: 100%;
    text-align: center;
    font-family: ZCOOL GDH,FontAwesome, sans-serif;
    font-size: 12px;
    color: #fff;
    margin: 0;
}
.zuozhe-nr-bt2 span {
    margin: 0 15px;
}


/* 路径导航 */
.xzfeizi { 
    width : 100%; 
    color : #666; 
    padding-left : 20px; 
    line-height : 30px; 
    padding-top : 5px; 
    background : #e4e4e4; 
    border-bottom : 1px solid #b4b4b4; 
    font-size : 14px; 
    border-top : 1px solid #b4b4b4; 
} 
.xzfeizi a { 
    color : #000; 
    font-size : 14px; 
}


/* 内容主容器 */
#neirong-ye { 
    float : left; 
    width : 1300px; 
    background : #fff ; 
    text-align : left; 
    overflow: hidden;
} 
#zxnr-ye { 
    float: left; 
    width: 1300px; 
    overflow: hidden;
    position: relative;
}
/* 左右栏Flex容器 - 核心：确保950+350宽度平衡 */
.columns-container {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
}

/* 左栏核心样式 - 保留25px内边距，无外边距，背景完整 */
.neirong { 
    width: 950px; 
    padding: 25px;
    background: #fff;
    color: #000; 
    font-size: 15px; 
    line-height: 21px; 
    margin: 0;
    flex-shrink: 0;

    margin: 0 auto; /* 核心！上下外边距0，左右自动平分 → 容器自身水平居中 */
    text-align: center; /* 容器内**行内/行内块元素**（文字、锚文本、图片等）水平居中 */
    float: none; /* 移除原有浮动 → 否则margin:0 auto会失效（关键！） */
}

.neirong a {
    color: red; 
    text-decoration: none; 
}

.neirong a:hover {
    color: #c00; 
}

/* 报价模块核心样式 - 自适应父容器，完美居中（解决偏右关键） */
.budget-container {
  width: 100%;        /* 自适应.neirong宽度（950-25*2=900px），避免超出 */
  margin: 20px auto;  /* 上下间距，左右自动居中 */
  padding: 0;
}
.budget-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: center; /* 模块水平居中核心 */
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}
.budget-item {
  flex: 0 0 140px;
  height: 75px;
  border-radius: 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #00a7b2 !important;
  transition: all 0.3s ease;
  font: 600 15px/1.2 sans-serif;
  background: transparent;
  border: 0px solid #666;
  box-shadow: 0 2px 3px rgba(0,0,0,0.2);
  cursor: pointer;
}
.budget-item i {
  font-family: "Font Awesome 6 Free" !important;

  display: block;
  font-size: 24px;
  margin-bottom: 4px;
  color: #00a7b2 !important;
}
.budget-item:hover {
  color: #FF4A00 !important;
  box-shadow: 0 4px 5px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}
.budget-item:hover i {
  color: #FF4A00 !important;
}


.linkprevarticle, .linknextarticle {
    color: #00a7b2 !important;
    transition: color 0.3s ease;
}
.linkprevarticle:hover, .linknextarticle:hover {
    color: rgb(255, 74, 0) !important;
}

/* 右栏样式 - 350px固定宽度，内边距在宽度内 */
.longnow { 
    width: 350px; 
    padding: 15px 20px 0;
    background: #E4E4E4; 
    color: #000; 
    font-size: 14px; 
    line-height: 35px;
    flex-shrink: 0;
}

/* 右栏企业视频/案例样式 */
.longnow div a {
    position: relative;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    color: inherit;
}
.longnow div a:hover {

    color: #ff0000; /* 文字变红（保留） */
    font-weight: bold; /* 新增：文字加粗 */

}
.longnow div[align="left"] a {
    margin: 0 2px; 
}
.longnow table a {
    position: relative; 
    transition: all 0.2s ease; 
    display: inline-block; 
}
.longnow table a:hover {
    font-weight: bold; /* 新增：文字加粗 */
    color: #ff0000; 
}
.longnow table .pic1 {
    display: block; 
    margin-bottom: 2px; 
    line-height: 0; 
    width: 310px;
    height: 150px;
    object-fit: cover;
    object-position: center center;
    border-radius: 3px; 
    transition: opacity 0.2s ease,all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.longnow table td > div {
    width: 310px;
    margin: 0 auto;
}
.pic1:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25),0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    position: relative;
    opacity: 1;
}

.stats-text {
    font-size: 16px;
    color: #666;
    font-weight: bold;
}



/* 其他样式 */
.video-case-module .case-item img{width:100%;height:210px;object-fit:cover;display:block;border-radius:3px;transition:opacity .2s ease;}
.prev-next-links {
    padding: 5px 0;
}
.prev-next-links a {
    color: #333;
}
.prev-next-links a:hover {
    color: #f97316;
    text-decoration: underline;
}

/* 页脚样式 */
#foot { 
    background : #000000; 
    width : 100%; 
    margin-top : 20px; 
} 
#foot_980 { 
    margin : 0 auto; 
    width : 1300px; 
    height : 350px; 
    clear : inherit; 
    padding-top:7px;
} 
.link_logo { 
    line-height : 40px; 
    width : 202px; 
    float : left; 
    text-align : left; 
} 
.link_onhoo { 
    line-height : 30px; 
    width : 755px; 
    float: left; 
    text-align :left; 
    font-size : 14px; 
    color : #82664c; 
} 
.link_onhoo a { 
    color : #82664c; 
} 
.foot_ba { 
    float : left; 
    height : 25px; 
    width : 1300px; 
    line-height : 25px; 
    font-size : 14px; 
    color : #ccc; 
    margin-top:15px;
} 
.foot_ba a { 
    color : #a79687; 
} 
.foot_ba a:hover { 
    color : #ff0; 
}

/* 底部图片展示 */
.box1 {
    width: 1300px; 
    margin: 0 auto; 
}
.thumbnailwrapper2 ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}
.thumbnailwrapper2 li {
    flex: 1;
    transition: transform 0.3s ease;
}
.thumbnailwrapper2 img {
    width: 100%;
    height: auto;
}
.thumbnailwrapper2 li:hover {
    transform: translateY(-5px);
}

/* 响应式适配 - 移动端友好 */
@media (max-width: 992px) {
  .budget-container {
    width: 100%;
    padding: 0 10px;
    margin: 20px 0;
  }
  .budget-grid {
    flex-wrap: wrap;
    gap: 20px;
  }
  .budget-item {
    margin-bottom: 15px;
  }
  /* 移动端左右栏堆叠 */
  .columns-container {
      flex-wrap: wrap;
  }
  .neirong, .longnow {
      width: 100%;
  }
}
@media (max-width: 480px) {
  .budget-item {
    flex: 0 0 160px;
    height: 80px;
    font-size: 15px;
  }
  .budget-item i {
    font-size: 24px;
  }
  .neirong {
      padding: 15px;
  }
}