/* PAGE BANNER */
.page-banner{position:relative;height:340px;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;margin-top:70px}
.page-banner-overlay{position:absolute;inset:0;background:rgba(0,0,0,.5)}
.page-banner-text{position:relative;z-index:2;text-align:center;color:#fff}
.page-banner-text h1{font-size:34px;font-weight:700;letter-spacing:3px;margin-bottom:8px}
.page-banner-text p{font-size:14px;color:rgba(255,255,255,.6)}
.page-banner-text .page-sub{font-size:18px;color:rgba(255,255,255,.8);margin-bottom:4px}
.page-banner-text .page-tpl{font-size:14px;letter-spacing:4px;color:rgba(255,255,255,.5)}

/* PAGE SECTION */
.page-section{padding:70px 0}
.page-title{font-size:26px;font-weight:700;color:#222;margin-bottom:28px;text-align:center}

/* ABOUT */
.about-text{max-width:900px;margin:0 auto 50px}
.about-text p{font-size:14px;line-height:2;color:#666;margin-bottom:16px}
.about-text h3{color:#222}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px;margin-top:40px}
.about-card{background:#fff;border-radius:4px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.06)}
.about-card img{width:100%;height:260px;object-fit:cover}
.about-card h3{font-size:18px;font-weight:600;color:#222;padding:20px 22px 8px}
.about-card p{font-size:13px;line-height:1.8;color:#777;padding:0 22px 22px}

/* PRODUCTS */
.prod-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.prod-card{background:#fff;border-radius:4px;overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,.06);transition:transform .3s,box-shadow .3s;text-align:center}
.prod-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(0,0,0,.1)}
.prod-img{width:100%;height:220px;overflow:hidden;background:#f5f5f5}
.prod-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.prod-card:hover .prod-img img{transform:scale(1.04)}
.prod-card h4{font-size:14px;font-weight:500;color:#333;padding:14px 10px}

/* NEWS LIST */
.news-list{display:flex;flex-direction:column;gap:24px}
.news-list-item{display:grid;grid-template-columns:280px 1fr;gap:24px;background:#fff;border-radius:4px;overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,.05);transition:transform .3s,box-shadow .3s;color:inherit}
.news-list-item:hover{transform:translateY(-3px);box-shadow:0 10px 30px rgba(0,0,0,.1)}
.news-list-img{height:200px;overflow:hidden}
.news-list-img img{width:100%;height:100%;object-fit:cover}
.news-list-body{padding:22px 22px 22px 0;display:flex;flex-direction:column;justify-content:center}
.news-list-body h3{font-size:17px;font-weight:600;color:#222;margin-bottom:6px;line-height:1.5}
.news-list-body .news-date{font-size:12px;color:#aaa;margin-bottom:10px}
.news-list-body p{font-size:13px;color:#888;line-height:1.8}

/* CONTACT */
.contact-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.contact-info-card{background:#f7f8fa;padding:32px;border-radius:4px;border-left:3px solid #ffbc00}
.contact-info-card h4{font-size:16px;font-weight:600;color:#222;margin-bottom:10px}
.contact-info-card p{font-size:14px;color:#666;line-height:1.8}

/* RESPONSIVE */
@media(max-width:768px){
  .about-grid,.contact-info-grid{grid-template-columns:1fr}
  .prod-grid{grid-template-columns:1fr 1fr}
  .news-list-item{grid-template-columns:1fr}
  .news-list-img{height:180px}
  .news-list-body{padding:18px}
  .page-banner{height:260px}
}
@media(max-width:480px){
  .prod-grid{grid-template-columns:1fr}
}

/* 立即预约 BUTTON */
.btn-book{display:block;width:70%;max-width:160px;margin:0 auto 18px;padding:8px 0;background:#ffbc00;color:#222;font-size:13px;font-weight:500;text-align:center;border-radius:20px;transition:background .3s;text-decoration:none}
.btn-book:hover{background:#e6a800}
