/* /skin/css/pay-icon.css */
.pay-icon-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap;
}
/* 支付图标按钮组容器 */
.pay-icon-group {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  flex-wrap: wrap; /* 适配移动端，自动换行 */
}

/* 单个支付按钮样式 */
.pay-icon-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap; /* 防止文字换行 */
}

/* 微信支付按钮配色与交互 */
.wx-pay {
  background-color: #07c160;
  color: #fff;
}
.wx-pay:hover {
  background-color: #06a853;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 支付宝支付按钮配色与交互 */
.alipay-pay {
  background-color: #1677ff;
  color: #fff;
}
.alipay-pay:hover {
  background-color: #0f62d2;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 图标尺寸适配（保持140*50px比例，页面内等比缩放） */
.pay-icon {
  width: 40px;
  height: 20px; /* 140*50px 等比缩小，避免页面布局变形 */
  margin-right: 8px;
  vertical-align: middle;
}

/* 文字样式 */
.pay-text {
  font-size: 14px;
  font-weight: 500;
}

/* 移动端适配（屏幕宽度<768px时调整布局） */
@media (max-width: 767px) {
  .pay-icon-group {
    flex-direction: column;
  }
  .pay-icon-btn {
    width: 100%;
    justify-content: center;
  }
}