﻿/* celutriator.css - 独立样式，不影响任何其他页面 */
.product-detail {
  padding: 20px 0 60px;
  background: #fff;
}
.product-detail .container {
  max-width: 1000px;
  line-height: 1.8;
}
.product-detail h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: #4b0082;
}
.product-detail p {
  color: #555;
  margin-bottom: 15px;
}

/* 图文左右分列 */
.product-detail .content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin: 25px 0;
}
.product-detail .text-col {
  flex: 1;
  min-width: 280px;
}
.product-detail .img-col {
  flex: 1;
  min-width: 280px;
  text-align: center;
}
.product-detail .row-reverse {
  flex-direction: row-reverse;
}

/* 产品图片 */
.product-detail .product-img {
  width: auto;
  /* height: auto; */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 发表文章 */
.product-detail .publication-item {
  margin: 12px 0;
  line-height: 1.6;
  color: #333;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .product-detail .row-reverse {
    flex-direction: row;
  }
}