/* 
 * 中国奢侈品网 - 统一样式表
 * 风格：极致奢华、典雅、高冷
 * 配色：#d4af37 (金), #1a1a1a (黑), #f9f9f9 (米白)
 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Garamond", "Georgia", "Serif", "Source Han Serif CN"; font-size: 16px; color: #1a1a1a; line-height: 1.8; background: #fff; }
a { text-decoration: none; color: #1a1a1a; transition: 0.4s; }
a:hover { color: #d4af37; }
ul { list-style: none; }
img { max-width: 100%; filter: grayscale(20%); transition: 0.8s; }
img:hover { filter: grayscale(0%); transform: scale(1.02); }
.container { width: 1100px; margin: 0 auto; }

/* 头部 */
.header { padding: 60px 0; background: #1a1a1a; color: #fff; text-align: center; }
.logo h1 { font-size: 42px; font-family: serif; letter-spacing: 12px; color: #d4af37; text-transform: uppercase; }
.logo p { font-size: 12px; letter-spacing: 8px; margin-top: 10px; opacity: 0.8; }

/* 导航 */
.nav-wrap { background: #1a1a1a; border-top: 1px solid #333; }
.nav { display: flex; justify-content: center; }
.nav li a { display: block; padding: 20px 25px; color: #fff; font-size: 14px; letter-spacing: 2px; }
.nav li a:hover { color: #d4af37; }

/* 首页大图 */
.hero-section { margin-bottom: 80px; position: relative; }
.hero-item { position: relative; height: 600px; overflow: hidden; }
.hero-item img { width: 100%; height: 100%; object-fit: cover; }
.hero-text { position: absolute; bottom: 10%; left: 5%; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-text h2 { font-size: 48px; margin-bottom: 20px; }

/* 奢侈品网格 */
.luxury-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 100px; }
.lux-item { border-bottom: 1px solid #eee; padding-bottom: 40px; }
.lux-img { height: 450px; overflow: hidden; margin-bottom: 30px; }
.lux-img img { width: 100%; height: 100%; object-fit: cover; }
.lux-item h3 { font-size: 26px; font-weight: normal; margin-bottom: 15px; }
.lux-item p { color: #666; font-size: 15px; }

/* 内容页 */
.luxury-article { max-width: 900px; margin: 80px auto; padding: 0 20px; }
.article-meta { color: #d4af37; font-size: 14px; text-transform: uppercase; margin-bottom: 20px; display: block; }
.article-title { font-size: 42px; font-weight: normal; margin-bottom: 40px; text-align: center; line-height: 1.3; }
.article-content { font-size: 18px; color: #333; }
.article-content img { display: block; margin: 40px auto; border: 10px solid #f9f9f9; }

/* 页脚 */
.footer { background: #1a1a1a; color: #fff; padding: 100px 0 50px; text-align: center; }
.footer-logo { font-size: 30px; color: #d4af37; font-family: serif; margin-bottom: 40px; }
.footer-info { opacity: 0.5; font-size: 12px; margin-top: 60px; }
