/* 三服务页/产品中心页产品卡片（v3 极简：统一大小 + 仅产品名称）
 * 布局：digiti/asset 3 列，consult 2 列（body.consult-page）；全部卡片等高等宽
 */
.szh_section1 .u1,
.pb-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -12px !important;
  padding: 0;
  list-style: none;
}
.szh_section1 .u1 > li.l1,
.pb-grid > li.l1 {
  width: 33.333%;
  padding: 12px;
  margin: 0 !important;
  box-sizing: border-box;
  display: flex;
}
body.consult-page .szh_section1 .u1 > li.l1 {
  width: 50%;
}

/* 统一大小卡片：固定高度 + 名称居中 */
.pc-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 96px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}
.pc-card::before {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: #f08200;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pc-card:hover {
  box-shadow: 0 8px 22px rgba(240, 130, 0, 0.14);
  transform: translateY(-3px);
  border-color: #f5d9b8;
}
.pc-card:hover::before {
  opacity: 1;
}
.pc-bt {
  font-size: 16px;
  font-weight: 600;
  color: #2b2b2b;
  margin: 0;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  transition: color 0.3s ease;
}
.pc-card:hover .pc-bt {
  color: #f08200;
}

/* ===== 产品中心页（product.html）===== */
.pb-nav {
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}
.pb-nav .w_width {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 14px 0;
}
.pb-nav a {
  display: inline-block;
  padding: 8px 26px;
  font-size: 15px;
  color: #555;
  border-radius: 22px;
  border: 1px solid #e8e8e8;
  background: #fff;
  transition: all 0.3s ease;
}
.pb-nav a:hover {
  color: #f08200;
  border-color: #f08200;
}
.pb-nav a.on {
  background: #f08200;
  color: #fff;
  border-color: #f08200;
}

.pb-block {
  padding: 50px 0 20px;
}
.pb-block + .pb-block {
  border-top: 1px dashed #eee;
}
.pb-title {
  position: relative;
  padding-left: 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #2b2b2b;
  margin: 0 0 6px;
}
.pb-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: #f08200;
}

.pb-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 32px;
}
.pb-tabs a {
  display: inline-block;
  padding: 7px 20px;
  font-size: 13px;
  color: #666;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  background: #fff;
  transition: all 0.3s ease;
}
.pb-tabs a:hover {
  color: #f08200;
  border-color: #f08200;
}
.pb-tabs a.on {
  background: #f08200;
  color: #fff;
  border-color: #f08200;
}
.pb-empty {
  width: 100%;
  padding: 40px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

/* 产品页微调：面包屑内容垂直居中（原版 padding 底部 0 导致内容偏下）；底色与主显示区统一白色 */
.dq_section {
  padding: 23px 100px 23px !important;
  background: #ffffff !important;
}

/* 响应式 */
@media screen and (max-width: 1200px) {
  .szh_section1 .u1 > li.l1,
  body.consult-page .szh_section1 .u1 > li.l1,
  .pb-grid > li.l1 {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .szh_section1 .u1 > li.l1,
  body.consult-page .szh_section1 .u1 > li.l1,
  .pb-grid > li.l1 {
    width: 100%;
  }
  .pc-card {
    min-height: 80px;
  }
  .pb-block {
    padding: 30px 0 10px;
  }
  .pb-nav .w_width {
    flex-wrap: wrap;
  }
}

/* 产品区宽度对齐：与解决方案/客户案例页主显示区一致（w_width + ctext 100px） */
.pb-block .w_width {
  padding: 0 100px;
  box-sizing: border-box;
}
.pb-block .u1.pb-grid {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
