/*
Theme Name: 极简企业主题
Theme URI: https://www.baidu.com/
Author: 极简企业主题
Author URI: https://www.baidu.com/
Description: A very simple WordPress theme for beginners.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, simple
Text Domain: mysimpletheme
*/

/* --- Basic CSS Reset --- */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

/* --- Main container --- */
.container {
    max-width: 800px;
    margin: auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* --- Header --- */
.site-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.site-title a {
    text-decoration: none;
    color: #333;
    font-size: 2em;
}

.site-description {
    color: #777;
    font-size: 1.1em;
}

/* --- Content --- */
.post {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-title a {
    text-decoration: none;
    color: #222;
    font-size: 1.5em;
}

.post-content {
    margin-top: 10px;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #777;
}