.merchant-show-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.merchant-logo-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
}
.article-body.merchant-show-intro {
  margin-bottom: 30px;
}
/* 段落样式 */
.article-body p {
  margin-bottom: 0;
  line-height: 2rem;
}
/* 表格列宽控制 */
.table-serial-header,
.table-serial-cell {
  width: 40px;
  min-width: 40px;
  text-align: center;
}
.table-action-header,
.table-action-cell {
  width: 120px;
  min-width: 120px;
  text-align: center;
}
/* 表格样式 */
table {
  border-collapse: collapse;
  width: 100%;
  line-height: 1.4;
}
/* 表头样式 */
table thead th {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
  color: #495057;
  text-align: center;
  line-height: 1.4;
}
/* 表格单元格样式 */
table td {
  border: 1px solid #dee2e6;
  line-height: 1.4;
}
/* 箭头动画 */
@keyframes arrowMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}
/* 申请测机按钮样式 */
.trial-btn.trial-btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 12px;
  background-color: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.trial-btn.trial-btn-apply:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
.trial-btn.trial-btn-apply i {
  font-size: 10px;
  animation: arrowMove 1.5s ease-in-out infinite;
}
.article-body h2 {
  font-size: 1rem;
  line-height: 1rem;
  margin:1rem 0 0 0;
  padding: 0;
}
.article-body table {
  margin-top: 1rem;
  margin-bottom: 1rem;
}