/*
Theme Name: ibibicloud
Theme URI: https://example.com/my-basic-theme/
Description: 一个极简的WordPress自定义主题，支持基础页面展示
Author: Custom Developer
Author URI: https://example.com/
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-basic-theme
Tags: blog, simple, responsive
*/

/* 全局基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f8f9fa;
    padding: 0 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 头部样式 */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    margin-bottom: 30px;
}

.site-title {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.site-title a {
    color: #2c3e50;
    text-decoration: none;
}

.site-description {
    color: #7f8c8d;
    font-size: 1rem;
}

/* 内容区域样式 */
.site-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.post-title, .page-title, .cat-title {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.post-title a {
    color: #2c3e50;
    text-decoration: none;
}

.post-title a:hover {
    color: #3498db;
}

.post-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-content {
    margin-bottom: 25px;
}

.read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
}

.read-more:hover {
    background-color: #2980b9;
}

/* 分页样式 */
.nav-links {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.nav-previous a, .nav-next a {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #3498db;
    text-decoration: none;
}

/* 页脚样式 */
.site-footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-radius: 8px;
}