
/* 移动端响应式适配（Ueeshop支持内部样式） */
@media (max-width: 768px) {
  .responsive-table tr {
    display: flex;
    flex-direction: column;
  }
  .responsive-table td {
    width: 100% !important;
    display: block;
  }
  /* 调整移动端字体和间距 */
  .text-content h2 {
    font-size: 22px !important;
  }
  .text-content p {
    font-size: 15px !important;
  }
  /* 图片下方增加间距，区分上下内容 */
  .responsive-table td img {
    margin-bottom: 15px;
  }
}
