/* ========== 去除点击选中黑色边框 ========== */
*:focus,
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* ========== 统一页面标题区域 ========== */
.emctest-page-header {
  text-align: center;
  padding: 40px 0 10px;
}

.emctest-page-title {
  font-size: 36px;
  font-weight: normal;
  color: #111;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.emctest-page-separator {
  width: 20%;
  height: 1px;
  background-color: #dadada;
  margin: 15px auto;
}

.emctest-page-subtitle {
  font-size: 14px;
  color: #999;
  margin: 12px 0 0;
  padding: 0;
  letter-spacing: 2px;
}

/* ========== 面包屑强制显示 ========== */
/* 覆盖框架 overflow:hidden，确保面包屑内容不被裁剪 */
#w_grid-1557552269873 > .w_grid > .p_gridbox,
#w_grid-1557665556601 > .w_grid > .p_gridbox {
  overflow: visible !important;
}
#w_grid-1557665556601 {
  display: block !important;
  visibility: visible !important;
  overflow: visible !important;
  height: auto !important;
  opacity: 1 !important;
}
#w_grid-1557665556601 > .w_grid.signal {
  min-height: auto !important;
}
#w_grid-1557665556601 > .w_grid.signal > .p_gridbox {
  min-height: auto !important;
  overflow: visible !important;
}
#w_grid-1557665556601 > .w_grid.signal > .p_gridbox > .p_gridCell {
  min-height: auto !important;
}
/* 隐藏框架添加的伪元素间距 */
#w_grid-1557665556601 > .w_grid > .p_gridbox > .p_gridCell:not(:empty)::before,
#w_grid-1557665556601 > div > div > .p_gridCell:not(:empty)::before {
  display: none !important;
}
.c_breadcrumb_nav-02001001 {
  display: block !important;
  visibility: visible !important;
  padding: 10px 0;
  font-size: 14px;
  color: #666;
}

/* ========== 导航栏 ========== */
.emctest-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  height: 80px;
}
/* WordPress管理栏存在时，导航下移32px */
body.admin-bar .emctest-header {
  top: 32px;
}
.emctest-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}
.emctest-logo a {
  display: flex;
  align-items: center;
}
.emctest-logo img {
  height: 80px;
  width: auto;
}

/* 桌面导航 */
.emctest-desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.emctest-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.emctest-nav-item {
  position: relative;
}
.emctest-nav-link {
  display: block;
  padding: 0 20px;
  line-height: 80px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.emctest-nav-link:hover {
  color: #00479d;
}
.emctest-sub-toggle {
  display: none;
}

/* 一级下拉菜单 */
.emctest-sub {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  border-top: 3px solid #00479d;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 9999;
}
.emctest-nav-item.has-sub:hover > .emctest-sub {
  display: block;
}
.emctest-sub .emctest-nav-link {
  padding: 8px 20px;
  line-height: 1.5;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}
.emctest-sub .emctest-nav-link:hover {
  background: #f5f8fc;
  color: #00479d;
}

/* 二级下拉菜单 */
.emctest-sub .emctest-sub {
  left: 100%;
  top: -3px;
}
.emctest-sub .emctest-nav-item.has-sub > .emctest-sub-toggle {
  display: block;
  position: absolute;
  right: 12px;
  top: 10px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: #999;
  margin-top: -2px;
}

/* 搜索按钮 */
.emctest-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  color: #333;
  display: flex;
  align-items: center;
}

/* 汉堡菜单（默认隐藏） */
.emctest-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}
.emctest-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  transition: transform .3s, opacity .3s;
  margin: 0 auto;
}
.emctest-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.emctest-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.emctest-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 搜索弹窗 */
.emctest-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.emctest-search-overlay.active {
  display: flex;
}
.emctest-search-box {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.emctest-search-box form {
  display: flex;
  gap: 10px;
}
.emctest-search-box input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
}
.emctest-search-box input:focus {
  border-color: #00479d;
}
.emctest-search-box button {
  padding: 10px 24px;
  background: #00479d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  cursor: pointer;
}
.emctest-search-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

/* 手机端遮罩 */
.emctest-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
}
.emctest-mobile-overlay.active {
  display: block;
}

/* ========== 响应式：手机端 ========== */
@media only screen and (max-width: 768px) {
  .emctest-header-inner {
    padding: 0 12px;
  }
  .emctest-logo img {
    height: 40px;
  }
  .emctest-desktop-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    background: #fff;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
    padding-top: 80px;
  }
  body.emctest-nav-open .emctest-desktop-nav {
    display: block;
  }
  .emctest-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .emctest-nav-link {
    line-height: 48px;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 20px;
  }
  .emctest-sub {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 0;
    display: none;
  }
  .emctest-nav-item.has-sub > .emctest-sub-toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
  }
  .emctest-nav-item.has-sub > .emctest-sub-toggle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: rotate(-45deg);
    transition: transform .3s;
  }
  .emctest-nav-item.has-sub.open > .emctest-sub-toggle::after {
    transform: rotate(45deg);
  }
  .emctest-nav-item.has-sub.open > .emctest-sub {
    display: block;
  }
  .emctest-sub .emctest-nav-link {
    padding-left: 40px;
    font-size: 14px;
  }
  .emctest-sub .emctest-sub .emctest-nav-link {
    padding-left: 60px;
  }
  .emctest-hamburger {
    display: flex;
  }
  .emctest-search-btn {
    margin-left: auto;
  }
  .emctest-search-btn + .emctest-hamburger {
    margin-left: 0;
  }
  .emctest-desktop-nav ~ .emctest-search-btn {
    margin-left: auto;
  }

  /* 手机端子页面不加 padding-top */
  body:not(.is-front-page) .main.pagebox {
    padding-top: 0;
  }
}

/* ========== Banner 轮播样式 ========== */
.bannerBox {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.bannerBox .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bannerBox .swiper-wrapper {
  display: flex;
  height: 100%;
}

.bannerBox .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bannerBox .swiper-slide .content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bannerBox .picB {
  width: 100%;
  height: 100%;
  line-height: 0;
  overflow: hidden;
}

/* 覆盖 page_impt_blank014.css 中 .c_portalResEbizads_banner-01001 .swiper-wrapper .swiper-slide img 的 absolute 定位 */
.c_portalResEbizads_banner-01001 .swiper-wrapper .swiper-slide img.bannerPic {
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
}

/* Banner 文字叠加层 */
.c_portalResEbizads_banner-01001 .text {
  position: absolute;
  top: 23%;
  width: 50%;
  max-width: 1000px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px;
  z-index: 5;
}

.c_portalResEbizads_banner-01001 .bannerTitle {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.c_portalResEbizads_banner-01001 .bannerTitle::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #e34646;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
}

.c_portalResEbizads_banner-01001 .p_ImgSummary.summry {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 3px;
  line-height: 1.8;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* 隐藏 Swiper 自带的 ::after 箭头，使用我们的 iconfont 箭头 */
.bannerBtn .swiper-button-prev::after,
.bannerBtn .swiper-button-next::after {
  display: none !important;
  content: none !important;
}

.bannerBtn .swiper-button-prev,
.bannerBtn .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(91, 112, 136, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.bannerBtn .swiper-button-prev:hover,
.bannerBtn .swiper-button-next:hover {
  background-color: rgba(91, 112, 136, 0.8);
}

.bannerBtn .swiper-button-prev {
  left: 20px;
}

.bannerBtn .swiper-button-next {
  right: 20px;
}

.bannerBtn .swiper-button-prev .iconfont,
.bannerBtn .swiper-button-next .iconfont {
  font-size: 20px;
  line-height: 1;
}

/* ========== 中企动力网格布局系统还原 ========== */

/* 子页面给 .main.pagebox 加 padding-top 推开内容（导航 fixed 高度 80px） */
body:not(.is-front-page) .main.pagebox {
  padding-top: 90px;
}
/* WordPress管理栏存在时额外增加32px */
body.admin-bar:not(.is-front-page) .main.pagebox {
  padding-top: 122px;
}

/* ========== 页面内容区域居中 ========== */
/* 所有子页面内容区域限宽居中，但排除导航和头部 */
.main.pagebox > .w_grid-000:not(#w_grid-1557795221899):not(#w_grid-1557672341303):not(#w_grid-1557671507880) {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  box-sizing: border-box !important;
}

/* 最外层容器 */
.main > .w_grid-000 {
  float: none !important;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
}

/* 内部嵌套的容器也需要限宽 */
.main .w_grid-000 .w_grid-000 {
  max-width: 100%;
}

.main > .w_grid-000 > .w_grid > .p_gridbox > .p_gridCell > .w_grid-000 {
  max-width: 100%;
}

/* 内部嵌套的 .w_grid-000 保持100%宽度 */
.w_grid-000 .w_grid-000 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  float: none;
  padding: 0;
}

/* 网格行 - 全宽 */
.w_grid,
.w_grid.signal {
  width: 100%;
}

/* 网格容器 */
.e_box.e_box-000.p_gridbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* 网格单元格 */
.p_gridCell {
  box-sizing: border-box;
}

/* 单列布局 - 全宽单元格 */
.d_gridCell_0 {
  width: 100%;
}

/* 双列布局 w_grid-001: 左侧内容区 ~66%, 右侧边栏 ~33% */
.w_grid-001 > .w_grid > .p_gridbox > .d_gridCell_0 {
  width: 66.666%;
}

.w_grid-001 > .w_grid > .p_gridbox > .d_gridCell_1 {
  width: 33.333%;
}

/* 嵌套的 w_grid-001 也是双列 */
.w_grid-001 > .e_box-000.p_gridbox > .d_gridCell_0 {
  width: 66.666%;
}

.w_grid-001 > .e_box-000.p_gridbox > .d_gridCell_1 {
  width: 33.333%;
}

/* 详情页内层容器全宽 */
.w_innerBox {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

/* 详情页内容区域样式 */
.p_articles,
.p_articlesBox {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.p_articles img,
.p_articlesBox img,
.p_contentBox img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

.p_articles table,
.p_articlesBox table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* 产品详情页内容区域 */
.c_portalResProduct_detail-03003001 .p_contentBox {
  width: 100%;
  max-width: 100%;
}

.c_portalResProduct_detail-03003001 .p_contentBox img {
  max-width: 100% !important;
  height: auto !important;
}

/* 新闻详情页容器 */
.c_portalResNews_detail-01001 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* ========== 面包屑导航 ========== */
.emctest-breadcrumb {
  width: 100%;
 border-bottom: 1px solid #e5e5e5;
}

.emctest-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #999;
}

.emctest-breadcrumb-home {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.emctest-breadcrumb-home:hover {
  color: #c00;
}

.emctest-breadcrumb-home .iconfont {
  font-size: 16px;
}

.emctest-breadcrumb-sep {
  margin: 0 8px;
  color: #ccc;
}

.emctest-breadcrumb-current {
  color: #999;
}

/* ========== 在线留言表单 ========== */
.emctest-message-form {
  max-width: 800px;
  margin: 30px auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}

.emctest-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.emctest-form-group {
  flex: 1;
}

.emctest-form-group.emctest-form-full {
  margin-bottom: 20px;
}

.emctest-form-group label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 500;
}

.emctest-form-group label .required {
  color: #e74c3c;
  margin-left: 2px;
}

.emctest-form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.emctest-form-control:focus {
  outline: none;
  border-color: #00479d;
  box-shadow: 0 0 0 2px rgba(0, 71, 157, 0.1);
}

.emctest-form-control::placeholder {
  color: #bbb;
}

.emctest-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.emctest-form-submit {
  display: inline-block;
  padding: 12px 40px;
  background: #00479d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.emctest-form-submit:hover {
  background: #003a80;
}

/* 提示信息 */
.emctest-notice {
  max-width: 800px;
  margin: 20px auto;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
}

.emctest-notice-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.emctest-notice-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* 新闻/博客详情页标题 */
.c_portalResNews_detail-01001 .p_headA .font {
  font-size: 28px;
  line-height: 1.5;
}

/* 客户案例详情页标题 */
.c_portalResCase_detail-03001001 .p_headA .font {
  font-size: 28px;
  line-height: 1.5;
}

/* 面包屑导航样式 */
.c_breadcrumb_nav-02001001 {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 15px 0;
  font-size: 14px;
  color: #666;
  box-sizing: border-box;
}

.c_breadcrumb_nav-02001001 .breadcrumbBox {
  padding: 0;
}

.c_breadcrumb_nav-02001001 .breadItem {
  display: inline;
  font-size: 14px;
  color: #666;
}

.c_breadcrumb_nav-02001001 a.breadItem {
  color: #00479d;
  text-decoration: none;
}

.c_breadcrumb_nav-02001001 a.breadItem:hover {
  text-decoration: underline;
}

.c_breadcrumb_nav-02001001 .breadSeparate {
  margin: 0 5px;
  color: #999;
}

.c_breadcrumb_nav-02001001 .breadItem.last {
  color: #333;
}

.c_breadcrumb_nav-02001001 a {
  color: #00479d;
  text-decoration: none;
}

.c_breadcrumb_nav-02001001 a:hover {
  text-decoration: underline;
}

.c_breadcrumb_nav-02001001 .c_arrow {
  margin: 0 8px;
  color: #999;
}

/* 关键词标签样式 */
.p_KeywordBox {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
}

.p_KeywordBox .p_title {
  color: #999;
  font-size: 14px;
}

.p_KeywordBox .p_keyWord {
  display: inline-block;
  margin: 5px;
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 3px;
  color: #666;
  font-size: 13px;
  text-decoration: none;
}

.p_KeywordBox .p_keyWord:hover {
  background: #00479d;
  color: #fff;
}

/* 上一篇/下一篇导航 */
.c_prenext-02001002 {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.c_prenext-02001002 .p_prev,
.c_prenext-02001002 .p_next {
  display: block;
  padding: 8px 0;
  color: #333;
  text-decoration: none;
}

.c_prenext-02001002 .p_prev:hover,
.c_prenext-02001002 .p_next:hover {
  color: #00479d;
}

/* ========== 客户案例详情页样式 ========== */
.detailTit {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding: 20px 0 10px;
  line-height: 1.5;
}

.w_fline-001 .p_FLine {
  border: none;
  border-top: 1px solid #00479d;
  width: 360px;
  margin: 0 auto;
  display: block;
}

.common_text {
  padding: 20px 0;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.common_text img {
  max-width: 100% !important;
  height: auto !important;
}

.common_text table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* ========== 产品详情页样式 ========== */

/* 产品标题 */
.c_portalResProduct_detail-01001 .d_ProName {
  padding: 15px 0;
}

.c_portalResProduct_detail-01001 .d_ProName .font {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

/* 产品图片区域 */
.c_portalResProduct_detail-01001 .p_imagesA {
  padding: 10px 0;
  text-align: center;
}

.c_portalResProduct_detail-01001 .p_imagesA img {
  max-width: 100%;
  height: auto;
}

/* 产品信息区域 */
.c_portalResProduct_detail-01001 .d_BaseInfoBox {
  padding: 10px 0;
  margin-bottom: 15px;
}

.c_portalResProduct_detail-01001 .d_BaseInfo {
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.c_portalResProduct_detail-01001 .d_ProTitle {
  width: 80px;
  flex-shrink: 0;
  font-size: 14px;
  color: #999;
  font-weight: normal;
}

.c_portalResProduct_detail-01001 .d_ProInfoA {
  flex: 1;
  font-size: 14px;
  color: #333;
}

/* 产品标签页 */
.c_portalResProduct_detail-01001 .d_TabTitleBox {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-top: 15px;
}

/* 覆盖源站CSS：确保所有Tab标签可见 */
.c_portalResProduct_detail-01001 .decTab:nth-child(2),
.c_portalResProduct_detail-01001 .decTab:nth-child(3) {
  display: block !important;
  visibility: visible !important;
}

.c_portalResProduct_detail-01001 .decTab {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.c_portalResProduct_detail-01001 .decTab.active {
  color: #00479d;
  border-bottom-color: #00479d;
}

/* 产品描述内容 */
.c_portalResProduct_detail-01001 .d_DescriptionBigbox {
  padding: 20px 0;
}

.c_portalResProduct_detail-01001 .d_DescribeContent {
  padding: 0;
}

.c_portalResProduct_detail-01001 .d_description {
  font-size: 14px;
  line-height: 24px;
  color: #333;
}

.c_portalResProduct_detail-01001 .d_description img {
  max-width: 100% !important;
  height: auto !important;
}

/* ============================================
   关于我们/联系我们页面样式（与源站一致）
   ============================================ */

/* 文章详情页 - 公司介绍/联系方式 */
.p_NewsDetail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.p_NewsDetail .p_topBox {
  padding: 15px 0;
}
.p_NewsDetail .p_dataSource {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  border-top: 1px solid #eee;
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #999;
}
.p_NewsDetail .p_dataSource li {
  list-style: none;
}
.p_NewsDetail .p_summary {
  padding: 10px 0;
  font-size: 13px;
  color: #999;
  display: none;
}
.p_NewsDetail .p_articlesTitle {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  border-top: 1px solid #eee;
  display: none;
}
.p_NewsDetail .p_articles {
  padding: 15px 0;
  font-size: 14px;
  line-height: 28px;
  color: #333;
}
.p_NewsDetail .p_articles p {
  margin-bottom: 10px;
}
.p_NewsDetail .p_articles img {
  max-width: 100% !important;
  height: auto !important;
}
.p_NewsDetail .p_headA {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* 联系方式 */
.p_contentBox .contact-section {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.p_contentBox .contact-section:last-child {
  border-bottom: none;
}
.p_contentBox .contact-section h2 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.p_contentBox .contact-section p {
  font-size: 14px;
  line-height: 28px;
  color: #666;
  margin: 0;
}
.p_contentBox .contact-section a {
  color: #00479d;
  text-decoration: none;
}

/* 企业文化 - 卡片网格 */
/* 企业文化 - 左右布局 */
.culture-layout {
  padding: 20px 0;
}
.culture-row {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  min-height: 450px;
}
.culture-row-reverse {
  flex-direction: row-reverse;
}
.culture-img-side {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.culture-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.culture-text-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 50px;
  box-sizing: border-box;
}
.culture-item {
  margin-bottom: 25px;
}
.culture-item:last-child {
  margin-bottom: 0;
}
.culture-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0 0 8px 0;
}
.culture-item p {
  font-size: 14px;
  color: #999;
  line-height: 2;
  margin: 0;
}

/* 资质证明 - 图片画廊 */
.cert-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}
.cert-item {
  width: calc(25% - 15px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.cert-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cert-img-box {
  width: 100%;
  height: 450px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cert-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.cert-img-box img:hover {
  transform: scale(1.08);
}
/* 点击放大 - lightbox */
.cert-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cert-overlay.active {
  display: flex;
}
.cert-overlay img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.cert-text-box {
  padding: 10px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}
.cert-text-box h4 {
  font-size: 13px;
  font-weight: normal;
  color: #333;
  margin: 0 0 4px;
}
.cert-text-box p {
  font-size: 12px;
  color: #999;
  margin: 0;
}

/* 在线留言表单 */
.message-form {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px 0;
}
.message-form .form-group {
  margin-bottom: 18px;
}
.message-form label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  font-weight: bold;
}
.message-form .required {
  color: #e74c3c;
}
.message-form .form-control {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.message-form .form-control:focus {
  outline: none;
  border-color: #00479d;
}
.message-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.message-form .submit-btn {
  padding: 10px 40px;
  background: #00479d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.message-form .submit-btn:hover {
  background: #00367a;
}

/* 公司介绍 - 左右布局 */
.about-intro-layout {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  align-items: flex-start;
}
.about-intro-left {
  flex: 1;
  font-size: 14px;
  line-height: 28px;
  color: #333;
}
.about-intro-left p {
  margin-bottom: 10px;
}
.about-intro-left img {
  max-width: 100% !important;
  height: auto !important;
}
.about-intro-right {
  width: 380px;
  flex-shrink: 0;
}
.about-intro-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 产品详情页右侧栏 */
.c_portalResPublic_codeContainer-01001 {
  padding: 15px 0;
}

.c_portalResPublic_codeContainer-01001 .wz11 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding: 10px 0;
  border-bottom: 2px solid #00479d;
  margin-bottom: 10px;
}

.c_portalResPublic_codeContainer-01001 .contact-info {
  padding: 10px 0;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}

/* 获取报价按钮 */
.w_fbtn-001 .e_CommonBtn-001 {
  display: inline-block;
  padding: 10px 30px;
  background-color: #00479d;
  color: #fff;
  text-align: center;
  cursor: pointer;
  margin: 10px 0;
}

.w_fbtn-001 .e_CommonBtn-001:hover {
  background-color: #003366;
}

/* 文件下载列表 */
.c_portalResCompanyFile_relatedlist-01001 .p_listedFiles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c_portalResCompanyFile_relatedlist-01001 .p_fileItem {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.c_portalResCompanyFile_relatedlist-01001 .p_fileDetails {
  flex: 1;
  padding: 0 10px;
}

.c_portalResCompanyFile_relatedlist-01001 .p_fileDetails h4 {
  font-size: 14px;
  margin: 0;
}

.c_portalResCompanyFile_relatedlist-01001 .p_downBtn {
  display: inline-block;
  padding: 4px 12px;
  background: #00479d;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

/* ========== 产品Tab标签页样式 (使用源站结构 d_TabTitleBox/decTab) ========== */

/* ========== 附件下载列表 ========== */

.emctest-attachment-list {
  padding: 5px 0 15px;
}

.emctest-attachment-item {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.emctest-attachment-item a {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.emctest-attachment-item a:hover {
  color: #00479d;
}

.emctest-attachment-item .att-icon {
  margin-right: 8px;
  font-size: 16px;
}

.emctest-attachment-item .att-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ========== 产品列表页核心样式 ========== */

/* 产品列表容器 */
.pro-demo {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.pro-demo .container {
  width: 100%;
}

/* 产品列表 - 表格外框 */
.p_products {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  border: 1px solid #ddd;
}

/* 表头 */
.p_products .tab-header {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p_products .tab-header ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #003d7a;
}

.p_products .tab-header .attr-name {
  padding: 12px 15px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  box-sizing: border-box;
  text-align: left;
}

/* 产品行 */
.p_products .tab-body {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
}

.p_products .tab-body:last-child {
  border-bottom: none;
}

.p_products .tab-body ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 15px 0;
  align-items: center;
}

.p_products .tab-body ul li {
  list-style: none;
  padding: 0 15px;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* 图片列 */
.p_products .imgLi {
  flex-shrink: 0;
}

.p_products .pic-box {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.p_products .pro-pic {
  width: auto;
  height: auto;
  display: inline-block;
  max-width: 180px;
  max-height: 130px;
  object-fit: contain;
}

.p_products .proLink {
  display: block;
  text-decoration: none;
}

/* 名称列 */
.p_products .name {
  flex-shrink: 0;
}

.p_products .proTitle {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
}

.p_products .proTitle:hover {
  color: #00479d;
  text-decoration: underline;
}

/* 描述列 */
.p_products .desc .atvalue {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 品牌列 */
.p_products .brand .atvalue {
  font-size: 14px;
  color: #333;
}

/* 属性值通用 */
.p_products .atvalue {
  display: inline;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* 覆盖 site_impt_r.css 中的冲突样式 */
#c_portalResProduct_list-15832023762204369 .p_products .tab-body {
  width: auto;
  overflow: visible;
  flex-basis: auto;
  border-bottom: 1px solid #eee;
  padding-bottom: 0;
}

#c_portalResProduct_list-15832023762204369 .p_products .tab-body ul li {
  flex-basis: auto;
  flex-shrink: 0;
}

#c_portalResProduct_list-15832023762204369 .p_products .pro-pic {
  width: auto;
  max-width: 180px;
  max-height: 130px;
}

/* 产品分类筛选 */
.emctest-product-filter {
  padding: 10px 0;
}

.emctest-filter-label {
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

.emctest-filter-tag {
  display: inline-block;
  padding: 4px 12px;
  margin: 2px 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  color: #333;
  transition: all 0.2s;
}

.emctest-filter-tag:hover {
  border-color: #00479d;
  color: #00479d;
}

.emctest-filter-tag.active {
  background: #00479d;
  color: #fff;
  border-color: #00479d;
}

/* ========== 产品详情页样式（三栏布局） ========== */

/* 产品标题区 */
.emctest-product-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px 0;
}

.emctest-product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.emctest-product-name {
  font-size: 22px;
  font-weight: bold;
  color: #00479d;
  margin: 0;
}

.emctest-product-brand {
  font-size: 14px;
  color: #666;
}

/* 产品详情主体 */
.emctest-product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

/* 三栏布局 */
.emctest-product-3col {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.emctest-product-col-left {
  width: 280px;
  flex-shrink: 0;
}

.emctest-product-col-center {
  flex: 1;
  min-width: 0;
}

.emctest-product-col-right {
  width: 220px;
  flex-shrink: 0;
}

/* 产品图片 */
.emctest-product-image {
  text-align: center;
  padding: 10px;
  background: #f9f9f9;
}

.emctest-product-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.emctest-product-image a {
  display: block;
  text-decoration: none;
}

/* 右侧栏 */
.emctest-sidebar-box {
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border: 1px solid #eee;
}

.emctest-sidebar-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 2px solid #00479d;
  margin-bottom: 10px;
}

.emctest-sidebar-btn {
  margin-top: 10px;
}

.emctest-btn-quote {
  display: block;
  width: 100%;
  padding: 10px 0;
  background: #00479d;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  border: none;
}

.emctest-btn-quote:hover {
  background: #003366;
}

.emctest-download-box {
  background: #f5fafd;
}

.emctest-download-title {
  font-size: 15px;
  color: #00479d;
  font-weight: bold;
  margin-bottom: 10px;
}

.emctest-download-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emctest-download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e0eef5;
  border-radius: 3px;
  padding: 10px 12px;
}

.emctest-download-info {
  flex: 1;
  min-width: 0;
}

.emctest-download-name {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.emctest-download-size {
  font-size: 12px;
  color: #999;
  margin-top: 3px;
}

.emctest-download-btn {
  display: inline-block;
  padding: 5px 18px;
  background: #00479d;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-radius: 3px;
  white-space: nowrap;
  margin-left: 10px;
}

.emctest-download-btn:hover {
  background: #003366;
  color: #fff;
}

/* ========== 询价弹窗 ========== */
.emctest-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emctest-modal {
  background: #fff;
  border-radius: 4px;
  width: 650px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.emctest-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.emctest-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  color: #333;
}

.emctest-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.emctest-modal-close:hover {
  color: #333;
}

.emctest-modal-body {
  padding: 20px;
}

.emctest-modal-section {
  margin-bottom: 20px;
}

.emctest-modal-section-title {
  font-size: 15px;
  color: #00479d;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.emctest-inquiry-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
}

.emctest-inquiry-table th {
  background: #f5f5f5;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: normal;
  color: #666;
  text-align: left;
  border: 1px solid #eee;
}

.emctest-inquiry-table td {
  padding: 10px 8px;
  border: 1px solid #eee;
  font-size: 13px;
  color: #333;
  vertical-align: middle;
}

.emctest-inquiry-thumb {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.emctest-inquiry-input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 13px;
  box-sizing: border-box;
}

.emctest-inquiry-input:focus {
  border-color: #00479d;
  outline: none;
}

.emctest-inquiry-textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 13px;
  resize: vertical;
  box-sizing: border-box;
}

.emctest-inquiry-textarea:focus {
  border-color: #00479d;
  outline: none;
}

.emctest-quantity-box {
  display: flex;
  align-items: center;
}

.emctest-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emctest-qty-btn:hover {
  background: #e0e0e0;
}

.emctest-qty-input {
  width: 50px !important;
  text-align: center;
  border-left: none !important;
  border-right: none !important;
}

.emctest-inquiry-field {
  margin-bottom: 12px;
}

.emctest-inquiry-field label {
  display: block;
  font-size: 13px;
  color: #333;
  margin-bottom: 5px;
}

.emctest-inquiry-submit {
  text-align: center;
  padding: 15px 0 5px;
}

.emctest-btn-submit {
  display: inline-block;
  padding: 10px 40px;
  background: #00479d;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 15px;
  cursor: pointer;
}

.emctest-btn-submit:hover {
  background: #003366;
}

.emctest-btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.emctest-inquiry-msg {
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
}

/* 询价成功状态 */
.emctest-inquiry-success {
  text-align: center;
  padding: 40px 20px;
}

.emctest-success-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #27ae60;
  color: #fff;
  font-size: 30px;
  margin: 0 auto 15px;
}

.emctest-inquiry-success h4 {
  font-size: 20px;
  color: #333;
  margin: 0 0 8px;
  font-weight: bold;
}

.emctest-inquiry-success p {
  font-size: 14px;
  color: #666;
  margin: 0 0 25px;
}

/* 产品详情主框架 */
.d_ProductDetail {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* 左侧图片区域 */
.p_imagesA {
  width: 55%;
  padding: 10px 15px 10px 0;
  box-sizing: border-box;
}

.p_images {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #f9f9f9;
}

.p_images img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.p_linkB {
  display: block;
  text-decoration: none;
}

.p_image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.p_image.visible {
  display: flex;
}

/* 右侧产品信息 */
.p_ProInfo {
  width: 45%;
  padding: 10px 0 10px 15px;
  box-sizing: border-box;
}

.p_content {
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.borderB_dividers {
  border-bottom: 1px solid #eee;
}

.d_ProName {
  padding: 0 0 10px;
}

.d_Title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.d_Title .font {
  display: inline;
}

.p_ProSummary {
  padding: 5px 0;
}

.d_summary {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* 基本属性栏 */
.d_BaseInfoBox {
  width: 100%;
  padding: 10px 15px;
  margin-top: 10px;
  box-sizing: border-box;
}

.d_BaseInfo {
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}

.d_ProTitle {
  width: 80px;
  flex-shrink: 0;
  font-size: 14px;
  color: #999;
  font-weight: normal;
}

.d_ProInfoA {
  flex: 1;
  font-size: 14px;
  color: #333;
}

/* 页签区 */
.d_TabTitleBox {
  display: flex;
  border-bottom: 2px solid #eee;
  margin-top: 15px;
}

.decTab {
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}

.decTab.active {
  color: #00479d;
  border-bottom-color: #00479d;
}

.d_DescriptionBigbox {
  padding: 15px 0;
}

.d_DescribeContent {
  padding: 0;
}

.d_description {
  font-size: 14px;
  line-height: 24px;
  color: #333;
}

.d_description img {
  max-width: 100% !important;
  height: auto !important;
}

.d_description table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* 自定义Tab内容 */
.d_customBoxA {
  padding: 15px 0;
}

.d_customC {
  font-size: 14px;
  line-height: 24px;
  color: #333;
}

.d_customC img {
  max-width: 100% !important;
  height: auto !important;
}

.d_customC table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
  border-collapse: collapse;
}

.d_customC table td {
  padding: 6px 10px;
  border: 1px solid #ddd;
  font-size: 13px;
}

/* 上一个/下一个导航 */
.d_nextBox {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin-top: 15px;
  border-top: 1px solid #eee;
}

.d_nextpage,
.d_nextpageA {
  font-size: 14px;
}

.d_nextName,
.d_nextNameA {
  color: #999;
  font-size: 13px;
  margin-bottom: 4px;
}

.d_MinorLink a {
  color: #00479d;
  text-decoration: none;
}

.d_MinorLink a:hover {
  text-decoration: underline;
}

/* 浏览量 */
.p_assist {
  padding: 5px 0;
}

.p_AssistNameB {
  display: inline-block;
  font-size: 13px;
  color: #999;
}

.p_view {
  display: inline-block;
  font-size: 13px;
  color: #666;
  margin-left: 5px;
}

/* ========== 移动端适配 ========== */
@media only screen and (max-width: 768px) {
  .main > .w_grid-000 {
    padding: 0 10px;
    max-width: 100%;
  }

  .w_grid-001 > .w_grid > .p_gridbox > .d_gridCell_0,
  .w_grid-001 > .w_grid > .p_gridbox > .d_gridCell_1,
  .w_grid-001 > .e_box-000.p_gridbox > .d_gridCell_0,
  .w_grid-001 > .e_box-000.p_gridbox > .d_gridCell_1 {
    width: 100%;
  }

  .detailTit {
    font-size: 22px;
  }

  .emctest-tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* 产品详情移动端 */
  .emctest-product-3col {
    flex-direction: column;
  }

  .emctest-product-col-left,
  .emctest-product-col-center,
  .emctest-product-col-right {
    width: 100%;
  }

  .emctest-product-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .d_Title {
    font-size: 20px;
  }

  .decTab {
    padding: 8px 12px;
    font-size: 13px;
  }

  .d_nextBox {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========== 页脚 ========== */
.emctest-footer {
  background: #fff;
  padding: 30px 0;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

.emctest-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}

.emctest-footer-company {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  font-family: "微软雅黑", sans-serif;
}

.emctest-footer-info {
  font-size: 12px;
  color: #999;
  line-height: 1.8;
}

.emctest-footer-info a {
  color: #666;
  text-decoration: none;
}

.emctest-footer-info a:hover {
  color: #00479d;
}

/* ========== 企业文化页面 ========== */
.emctest-culture-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.culture-layout {
  width: 100%;
}
.culture-row {
  display: flex;
  align-items: stretch;
}
.culture-row-reverse {
  flex-direction: row-reverse;
}
.culture-img-side {
  flex: 1;
}
.culture-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.culture-text-side {
  flex: 1;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.culture-item {
  margin-bottom: 20px;
}
.culture-item:last-child {
  margin-bottom: 0;
}
.culture-item h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0 0 8px;
}
.culture-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 4px;
}

/* ========== 联系我们页面 ========== */
.emctest-contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}
.emctest-contact-hotline {
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.emctest-contact-info {
  padding: 20px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.emctest-contact-map {
  margin-top: 20px;
  border: 1px solid #eee;
}
.emctest-contact-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== 搜索结果页 ========== */
.emctest-search-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}
.emctest-search-title {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}
.emctest-search-title h2 {
  font-size: 20px;
  color: #333;
  margin: 0 0 8px;
}
.emctest-search-title p {
  font-size: 14px;
  color: #999;
  margin: 0;
}
.emctest-search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.emctest-search-item {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.emctest-search-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.emctest-search-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.emctest-search-item-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f9f9f9;
}
.emctest-search-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.emctest-search-item-title {
  padding: 12px;
  text-align: center;
}
.emctest-search-item-title h3 {
  font-size: 14px;
  color: #333;
  margin: 0;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.emctest-search-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.emctest-search-empty p {
  margin: 8px 0;
}

/* ========== 首页Banner ========== */
.emctest-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.emctest-banner-swiper {
  width: 100%;
}
.emctest-banner-slide {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  overflow: hidden;
}
.emctest-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.emctest-banner-text {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.emctest-banner-title {
  font-size: 42px;
  font-weight: bold;
  margin: 0 0 12px;
  line-height: 1.2;
}
.emctest-banner-desc {
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}
.emctest-banner .swiper-button-prev,
.emctest-banner .swiper-button-next {
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
}
.emctest-banner .swiper-button-prev::after,
.emctest-banner .swiper-button-next::after {
  font-size: 20px;
}

/* ========== 分页样式 ========== */
.emctest-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
}
.emctest-page-num,
.emctest-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s;
}
.emctest-page-num:hover,
.emctest-page-btn:hover {
  border-color: #00479d;
  color: #00479d;
}
.emctest-page-active {
  background: #00479d;
  border-color: #00479d;
  color: #fff;
}
.emctest-page-active:hover {
  color: #fff;
}
.emctest-page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  color: #999;
  font-size: 14px;
}
