/*
Theme Name: ITPON Docs
Theme URI: https://www.itpon.com
Author: ITPON Team
Author URI: https://www.itpon.com
Description: 一个现代化的 WordPress 知识库主题，适用于技术文档、知识管理、教程网站等场景。具备响应式设计、暗色模式、代码高亮、实时搜索、自动目录等强大功能。
 Version: 1.1.2
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: itpon-docs
Tags: blog, documentation, knowledge-base, custom-menu, featured-images, threaded-comments, translation-ready, two-columns, left-sidebar, right-sidebar, custom-colors, custom-logo, dark-mode
*/

/**
 * 基础重置样式
 * 注意：主要样式在 assets/css/main.css 中
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 
                 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}
