/* FAQ 问答样式 */
.faq-item {
  margin-bottom: 15px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
}
.faq-question {
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
.faq-answer {
  color: #666;
  line-height: 1.6;
}

/* 参数表格样式 */
.param-table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 12px 0 !important;
  table-layout: fixed !important;
  word-wrap: break-word !important;
}
.param-table th,
.param-table td {
  border: 1px solid #ccc !important;
  padding: 8px 4px !important;
  text-align: center !important;
  vertical-align: middle !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}
.param-table th {
  background: #f7f7f7 !important;
  font-weight: bold !important;
}
.param-table td {
  background: #fff !important;
}
@media (max-width: 768px) {
  .param-table th,
  .param-table td {
    padding: 6px 2px !important;
    font-size: 12px !important;
  }
}
.table-note {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
  color: #333;
}

/* 分割器产品图纸轮播通用样式 */
.draw-swiper{
    position: relative;
    margin: 25px 0;
    padding: 0 30px;
    overflow: hidden;
    width: auto;
}
.draw-swiper .swiper-wrapper{
    display: flex;
    transition: transform 0.3s ease;
}
.draw-swiper .swiper-slide{
    flex-shrink: 0;
    width: 100%;
    text-align: center;
}
.draw-swiper .swiper-slide img{
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    background: #fff;
}
.draw-swiper .swiper-button-prev,
.draw-swiper .swiper-button-next{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 10;
    cursor: pointer;
}
.draw-swiper .swiper-button-prev{
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E");
    background-size: 18px 26px;
    background-position: center;
    background-repeat: no-repeat;
}
.draw-swiper .swiper-button-next{
    right: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23333333'%2F%3E%3C%2Fsvg%3E");
    background-size: 18px 26px;
    background-position: center;
    background-repeat: no-repeat;
}
.draw-tips{
    font-size: 14px;
    color: #666;
    margin: 8px 0 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .draw-swiper {
        padding: 0 5px;
    }
    .draw-swiper .swiper-slide img {
        max-height: 360px;
    }
    .draw-swiper .swiper-button-prev,
    .draw-swiper .swiper-button-next {
        width: 32px;
        height: 32px;
        margin-top: -16px;
    }
    .draw-tips {
        font-size: 12px;
        margin: 5px 0 10px;
    }
}