/*
Theme Name: DownloadBird（下载鸟）
Theme URI: https://your-domain.com/
Author: 你的名字
Author URI: https://your-domain.com/
Description: 参考xiazainiao.com开发的原创下载类WordPress主题，适配PC端。
Version: 1.0
License: GPL v2 or later
Text Domain: download-bird
*/

/* 全局重置 */
* {margin: 0;padding: 0;box-sizing: border-box;font-family: "Microsoft YaHei", Arial, sans-serif;}
body {background: #f5f7fa;color: #333;line-height: 1.6;}
a {text-decoration: none;color: #2196f3;transition: all 0.3s ease;}
a:hover {color: #ff9800;}

/* 容器（参考目标站1200px宽度） */
.container {width: 1200px;margin: 0 auto;padding: 0 15px;}

/* 头部样式 */
.site-header {background: #fff;box-shadow: 0 2px 5px rgba(0,0,0,0.1);position: sticky;top: 0;z-index: 999;}
.header-inner {display: flex;justify-content: space-between;align-items: center;height: 70px;}
.logo a {font-size: 24px;font-weight: bold;color: #2196f3;}

/* 导航 */
.main-nav ul {display: flex;list-style: none;}
.main-nav li {margin: 0 15px;}
.main-nav a {font-size: 16px;font-weight: 500;}
.main-nav a:hover {border-bottom: 2px solid #ff9800;}

/* 搜索框 */
.search-box {position: relative;}
.search-box input {width: 200px;height: 36px;padding: 0 15px 0 35px;border: 1px solid #e0e0e0;border-radius: 18px;outline: none;}
.search-box i {position: absolute;left: 12px;top: 50%;transform: translateY(-50%);color: #999;}

/* 横幅区 */
.banner {height: 400px;background: #2196f3;margin: 20px 0;border-radius: 8px;overflow: hidden;display: flex;align-items: center;justify-content: center;color: #fff;font-size: 32px;}

/* 主内容区 */
.content-wrap {display: flex;justify-content: space-between;}
.main-content {width: 800px;}

/* 下载卡片（核心，参考目标站卡片样式） */
.download-card {background: #fff;border-radius: 8px;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 8px rgba(0,0,0,0.08);transition: box-shadow 0.3s ease;}
.download-card:hover {box-shadow: 0 5px 15px rgba(0,0,0,0.1);}
.card-header {border-bottom: 1px solid #eee;padding-bottom: 15px;margin-bottom: 15px;}
.card-title {font-size: 20px;font-weight: bold;margin-bottom: 5px;}
.card-meta {color: #999;font-size: 14px;}
.card-desc {font-size: 16px;margin-bottom: 10px;}
.card-info {display: flex;flex-wrap: wrap;gap: 15px;font-size: 14px;color: #666;}

/* 下载按钮（原创调整配色） */
.download-btn {display: inline-block;padding: 10px 30px;background: #ff9800;color: #fff !important;border-radius: 4px;font-weight: bold;transition: background 0.3s ease;}
.download-btn:hover {background: #f57c00;}

/* 侧边栏 */
.sidebar {width: 360px;}
.sidebar-widget {background: #fff;border-radius: 8px;padding: 20px;margin-bottom: 20px;box-shadow: 0 2px 8px rgba(0,0,0,0.08);}
.widget-title {font-size: 18px;font-weight: bold;margin-bottom: 15px;padding-bottom: 10px;border-bottom: 2px solid #2196f3;}
.widget-list {list-style: none;}
.widget-list li {padding: 8px 0;border-bottom: 1px dashed #eee;}

/* 底部 */
.site-footer {background: #333;color: #ccc;padding: 30px 0;margin-top: 40px;text-align: center;}
.footer-links {margin-bottom: 20px;}
.footer-links a {color: #ccc;margin: 0 10px;}
.footer-copyright {font-size: 14px;}