* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Microsoft YaHei", sans-serif;
background: #f5f5f5;
color: #333;
line-height: 1.7;
}
a {
text-decoration: none;
color: #333;
}
img {
max-width: 100%;
display: block;
}
.container {
width: 100%;
max-width: 1000px;
margin: 0 auto;
padding: 0 15px;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.header {
background: #fff;
border-bottom: 1px solid #eee;
padding: 20px 0;
}
.header .logo {
text-align: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 15px;
}
.header .nav {
text-align: center;
}
.header .nav a {
display: inline-block;
margin: 0 15px;
font-size: 15px;
color: #666;
}
.header .nav a:hover,
.header .nav a.active {
color: #ff4c4c;
}
.main {
flex: 1;
padding: 30px 0;
}
.post-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}
.post-item {
background: #fff;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.post-thumb img {
width: 100%;
height: 180px;
object-fit: cover;
}
.post-title {
padding: 12px 15px;
font-size: 15px;
font-weight: 500;
}
.post-header {
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 1px dashed #eee;
}
.post-title {
font-size: 26px;
color: #222;
margin-bottom: 10px;
}
.post-meta {
font-size: 13px;
color: #999;
}
.post-content {
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.post-image {
margin: 25px 0;
text-align: center;
}
.post-image img {
max-width: 500px;
margin: 0 auto;
border-radius: 8px;
}
.post-info h3 {
font-size: 18px;
color: #ff4c4c;
margin: 20px 0 10px;
}
.post-info p {
font-size: 15px;
color: #444;
margin-bottom: 8px;
}

.play-btn-box {
text-align: center;
margin: 30px 0;
}
.play-btn {
background: #ff2a2a;
color: #fff !important;
font-size: 16px;
font-weight: bold;
padding: 14px 40px;
border-radius: 6px;
text-decoration: none !important;
display: inline-block;
box-shadow: 0 3px 8px rgba(255,42,42,0.2);
}
.play-btn:hover {
background: #e61e1e;
color: #fff !important;
}

.post-nav {
margin-top: 40px;
padding-top: 20px;
border-top: 1px dashed #eee;
font-size: 15px;
}
.post-nav .prev {
margin-bottom: 10px;
}
.post-nav a {
color: #ff4c4c;
}
.post-nav a:hover {
text-decoration: underline;
}

/* ========== 网站地图样式（和原站一模一样） ========== */
.sitemap {
background: #fff;
padding: 30px 0;
border-top: 1px solid #eee;
margin-top: 20px;
text-align: center;
}
.site-title {
font-size: 16px;
font-weight: bold;
margin-bottom: 15px;
color: #333;
}
.site-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px 20px;
}
.site-links a {
color: #666;
font-size: 14px;
}
.site-links a:hover {
color: #ff4c4c;
}

.footer {
background: #fff;
border-top: 1px solid #eee;
text-align: center;
padding: 20px 0;
font-size: 13px;
color: #999;
}