/* 
Theme Name: 极简SEO快开主题 
Theme URI: https://yourdomain.com/  
Author: 原创开发 
Author URI: https://yourdomain.com/  
Description: 移动端自适应、SEO友好、代码极简、打开速度极快的WordPress主题 
Version: 1.0 
License: GPLv2 or later 
Text Domain: fast-seo-theme 
*/ 
 
/* 全局重置+基础样式 */ 
* {margin:0; padding:0; box-sizing:border-box;} 
body {font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; line-height:1.6; color:#333; background:#f8f9fa;} 
a {color:#2563eb; text-decoration:none;} 
a:hover {text-decoration:underline;} 
img {max-width:100%; height:auto; display:block; border-radius:4px;} 
 
/* 容器布局 */ 
.container {max-width:1200px; margin:0 auto; padding:0 15px;} 
.site-header {background:#fff; box-shadow:0 2px 4px rgba(0,0,0,0.05); padding:1rem 0; margin-bottom:2rem;} 
.site-title {font-size:1.5rem; font-weight:700;} 
.site-nav {margin-top:0.5rem;} 
.site-nav a {margin-right:1.5rem; color:#4b5563;} 
.content-wrap {display:grid; grid-template-columns:1fr 320px; gap:2rem;} 
.main-content {background:#fff; padding:2rem; border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,0.05);} 
.sidebar {background:#fff; padding:1.5rem; border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,0.05);} 
.site-footer {text-align:center; padding:2rem 0; margin-top:2rem; color:#6b7280; border-top:1px solid #e5e7eb;} 
 
/* 文章列表样式 */ 
.post-item {margin-bottom:2rem; padding-bottom:2rem; border-bottom:1px solid #e5e7eb;} 
.post-item:last-child {border-bottom:none; margin-bottom:0; padding-bottom:0;} 
.post-title {font-size:1.4rem; margin-bottom:0.5rem; font-weight:600;} 
.post-meta {font-size:0.9rem; color:#6b7280; margin-bottom:1rem;} 
.post-excerpt {color:#4b5563; line-height:1.7;} 
 
/* 移动端响应式适配 */ 
@media (max-width:768px) { 
  .content-wrap {grid-template-columns:1fr;} 
  .site-nav a {margin-right:1rem; font-size:0.9rem;} 
  .main-content, .sidebar {padding:1.2rem;} 
  .post-title {font-size:1.2rem;} 
} 