
/* 适配Ueeshop样式的自定义样式 */
.product-alt-models {
  margin: 15px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 6px;
  border: 1px solid #eee;
}
.product-alt-models h3 {
  font-size: 17px;
  color: #222;
  margin: 0 0 12px 0;
  font-weight: 700;
  line-height: 1.4;
}
.product-alt-models p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
}
.product-alt-models h4 {
  font-size: 15px;
  color: #333;
  margin: 15px 0 10px 0;
  font-weight: 600;
}
.alt-models-list {
  font-size: 14px;
  color: #555;
  line-height: 2;
  margin: 0 0 20px 0;
  padding-left: 20px;
}
.alt-models-list li {
  margin-bottom: 10px;
  word-break: break-all; /* 适配长型号换行，避免溢出 */
}
/* 替代型号标签样式 - 突出显示 */
.alt-label {
  color: #d62828; /* 更醒目的红色，适配电商视觉重点 */
  font-weight: 700;
  margin-left: 5px;
}
/* 替代型号内容样式 - 加深颜色突出 */
.alt-models {
  color: #1d3557;
  font-weight: 600;
}

/* 样品联系方式样式 - 美观排版 */
.sample-contact {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}
.contact-title {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin: 0 0 8px 0 !important;
}
.contact-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}
.email-link, .whatsapp-link {
  padding: 6px 12px;
  background-color: #457b9d;
  color: #fff !important;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.email-link:hover {
  background-color: #1d3557;
}
.whatsapp-link {
  background-color: #25d366;
}
.whatsapp-link:hover {
  background-color: #128c7e;
}
.divider {
  color: #999;
  font-size: 16px;
}

/* 响应式适配 - 适配Ueeshop移动端 */
@media (max-width: 768px) {
  .contact-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .email-link, .whatsapp-link {
    display: block;
    width: 100%;
    text-align: center;
  }
  .divider {
    display: none;
  }
}
