/* 
 * 中国时尚日报 - 统一样式表
 * 风格：现代时尚、画报感、精致
 * 配色：#ff4757 (时尚红), #2f3542 (优雅黑), #ffffff (白)
 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "PingFang SC", "Helvetica Neue", sans-serif; font-size: 15px; color: #2f3542; line-height: 1.6; background: #fff; }
a { text-decoration: none; color: #2f3542; transition: 0.3s; }
a:hover { color: #ff4757; }
ul { list-style: none; }
img { max-width: 100%; border-radius: 0; transition: 0.5s; }
img:hover { opacity: 0.9; }
.container { width: 1200px; margin: 0 auto; }

/* 头部 */
.header { padding: 40px 0; text-align: center; border-bottom: 1px solid #eee; }
.logo h1 { font-size: 48px; font-weight: 900; color: #000; letter-spacing: 15px; text-transform: uppercase; margin-bottom: 5px; }
.logo p { font-size: 13px; color: #ff4757; font-weight: bold; letter-spacing: 5px; }

/* 导航 */
.nav-bar { border-bottom: 2px solid #000; margin-bottom: 40px; }
.nav { display: flex; justify-content: center; }
.nav li a { display: block; padding: 15px 30px; font-size: 16px; font-weight: 700; text-transform: uppercase; }
.nav li a:hover, .nav li.active a { color: #ff4757; }

/* 首页布局 */
.fashion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.art-card { margin-bottom: 40px; }
.art-img { height: 400px; overflow: hidden; margin-bottom: 20px; }
.art-img img { width: 100%; height: 100%; object-fit: cover; }
.art-card h2 { font-size: 20px; line-height: 1.4; font-weight: 800; }
.art-card .category { color: #ff4757; font-size: 12px; font-weight: bold; margin-bottom: 10px; display: block; }

/* 内容页 */
.article-wrap { max-width: 800px; margin: 60px auto; }
.article-header { text-align: center; margin-bottom: 50px; }
.article-header h1 { font-size: 36px; font-weight: 900; margin-bottom: 20px; }
.article-body { font-size: 17px; line-height: 2; color: #444; }
.article-body p { margin-bottom: 30px; }

/* 页脚 */
.footer { background: #000; color: #fff; padding: 80px 0 40px; margin-top: 80px; text-align: center; }
.footer-logo { font-size: 24px; font-weight: bold; margin-bottom: 20px; }
.footer-links { margin-bottom: 30px; opacity: 0.6; }
.footer-links a { color: #fff; margin: 0 15px; }
