
/* 全局样式 */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; line-height:1.6; color:#333; background:#fff; overflow-x:hidden; }

/* 产品标题 */
.product-title { font-size:32px; color:#2a9d8f; margin-bottom:20px; font-weight:bold; }

/* 产品图片+简介 */
.product-header { display:flex; flex-wrap:wrap; gap:20px; margin-bottom:40px; align-items:flex-start; }
.product-header img { max-width:100%; height:auto; border-radius:12px; box-shadow:0 4px 10px rgba(0,0,0,0.1); flex:0 0 auto; }
.product-intro { flex:1 1 0; min-width:300px; }
.product-intro p { font-size:16px; padding:15px; border-radius:8px; background:#f9f9f9; box-shadow:0 2px 4px rgba(0,0,0,0.1); }

/* 模块标题 */
section h2 { font-size:28px; color:#2a9d8f; border-bottom:2px solid #2a9d8f; padding-bottom:10px; margin-bottom:20px; }
section h3 { font-size:20px; color:#444; margin-top:20px; margin-bottom:10px; }

/* 网格布局 */
.advantages, .specs { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; margin-bottom:40px; }
.advantage, .spec { background:#fff; padding:20px; border-radius:10px; box-shadow:0 2px 6px rgba(0,0,0,0.1); }
.advantage h3, .spec h3 { color:#2a9d8f; font-size:18px; margin-bottom:10px; }
.advantage p, .spec p { font-size:14px; color:#555; }

/* 图片展示 */
.image-gallery { display:flex; gap:20px; overflow-x:auto; margin-bottom:40px; }
.image-gallery img { max-width:100%; border-radius:10px; box-shadow:0 4px 8px rgba(0,0,0,0.1); }

/* FAQ和评论/营销 */
.faq, .reviews, .marketing { background:#f9f9f9; padding:20px; border-radius:10px; box-shadow:0 2px 6px rgba(0,0,0,0.1); margin-bottom:40px; }
.faq h3, .review h4, .marketing h3 { color:#2a9d8f; margin-bottom:10px; }
.faq p, .review p, .marketing p { font-size:14px; color:#555; }

/* 响应式 */
@media(max-width:768px){
  .product-header { flex-direction:column; align-items:center; }
  .product-intro { text-align:center; }
}
