    <style>
        /* 重置样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Microsoft YaHei", SimHei, sans-serif;
            line-height: 1.6;
            color: #333;
            background-image: url('terraria_background.png');
            background-repeat: repeat;
            background-size: 160px 160px;
        }

        /* 头部样式 - 仿qizhou博客 */
        #home {
            max-width: 960px;
            margin: 0 auto;
            /* padding: 20px; */
        }
        .sideBar{
            display: none;
        }
        #header {
            background: #fff;
            border-bottom: 1px solid #e6e6e6;
            /* padding: 10px 0; */
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #blogTitle {
            padding: 13px 0;
            text-align: left;
        }

        #blogTitle h1 {
            font-size: 14px !important;
            color: #333;
            margin: 0;
        }

        #blogTitle h1 a {
            color: #333;
            text-decoration: none;
        }

        #navigator {
            padding: 10px 0;
        }

        #navList {
            list-style: none;
            display: flex;
            gap: 15px;
            align-items: center;
            justify-content: flex-end;
        }

        #navList li {
            display: inline;
        }

        #navList a {
            text-decoration: none;
            color: #333;
            font-weight: normal;
            padding: 5px 10px;
            position: relative;
            border-radius: 4px;
        }

        #navList a:hover {
            color: #333;
            background-color: #f5f5f5;
            text-decoration: none;
        }
        
        /* 所有锚点文字样式 */
        a {
            text-decoration: none;
            color: #333;
        }
        
        a:hover {
            color: #333;
            text-decoration: none;
        }
        
        /* 隐藏分类列表标题 */
        #catListTitle {
            display: none;
        }
        
        /* 特别针对首页链接的样式 */
        #lnkBlogLogo {
            display: none;
        }

        /* 主要内容区域 */
        #main {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
        }

        #sideBar {
            width: 250px;
            background: transparent;
            padding: 0;
            order: -1;
            border-right: 1px solid #e6e6e6;
            padding-right: 20px;
        }

        #mainContent {
            flex: 1;
            min-width: 0;
        }

        /* 文章列表样式 - 仿qizhou博客 */
        .forFlow {
            background: transparent;
            padding: 0;
            box-shadow: none;
        }

        .day {
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e6e6e6;
        }

        .dayTitle {
            font-size: 14px;
            font-weight: bold;
            color: #999;
            margin-bottom: 10px;
        }

        .postTitle {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
            padding: 5px 0;
        }

        .postTitle:hover {
            color: #333;
            text-decoration: none;
        }

        .postCon {
            color: #666;
            margin: 5px 0;
            line-height: 1.6;
        }

        .postDesc {
            color: #999;
            font-size: 12px;
            margin: 5px 0;
            padding: 0;
            border: none;
        }

        /* 分页样式 */
        .topicListFooter {
            margin-top: 20px;
            text-align: center;
        }

        /* 侧边栏样式 - 仿qizhou博客 */
        .newsItem, .catList {
            margin-bottom: 20px;
            background: transparent;
            padding: 0;
            box-shadow: none;
            border: none;
        }

        .catListTitle {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
            font-size: 14px;
            padding: 5px 0;
            border-bottom: none;
            margin-bottom: 10px;
        }

        .catItem {
            margin: 5px 0;
        }

        .catItem a {
            display: block;
            padding: 5px 0;
            text-decoration: none;
            color: #333;
            border-bottom: none;
            margin-right: 10px;
            white-space: nowrap;
        }

        .catItem a:hover {
            color: #333;
            text-decoration: none;
        }
        
        /* 博客统计样式 */
        .blogStats {
            display: block;
            text-align: center;
            margin-bottom: 10px;
            color: #666;
            font-size: 12px;
        }
        
        /* 侧边栏主容器 */
        #sideBarMain {
            background: transparent;
            padding: 0;
        }

        /* 公告样式 */
        .newsItem p {
            color: #666;
            line-height: 1.6;
        }

        /* 页脚样式 */
        #footer {
            text-align: center;
            padding: 20px 0;
            color: #999;
            font-size: 12px;
            border-top: 1px solid #e6e6e6;
            margin-top: 20px;
        }
        
        /* 博客随笔列表样式 */
        .postList {
            margin-bottom: 20px;
        }
        
        .postTitle {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
            padding: 5px 0;
        }
        
        .postCon {
            color: #666;
            margin: 5px 0;
            line-height: 1.6;
        }
        
        .postDesc {
            color: #999;
            font-size: 12px;
            margin: 5px 0;
            padding: 0;
            border: none;
        }
        
        /* 导航分页样式 */
        .pager {
            text-align: center;
            margin: 20px 0;
        }
        
        .pager a {
            padding: 5px 10px;
            margin: 0 5px;
            text-decoration: none;
            color: #333;
        }
        
        .pager span.current {
            color: #409eff;
            font-weight: bold;
        }

        /* 隐藏博客日历 */
        #blogCalendar {
            display: none !important;
        }
        
        /* 博客公告/新闻样式 */
        .sidebar-news-item {
            margin-bottom: 20px;
        }
        
        .sidebar-news-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
            font-size: 14px;
            padding: 5px 0;
            border-bottom: none;
        }
        
        .sidebar-news-content {
            color: #666;
            line-height: 1.6;
        }
        
        /* 侧边栏分类列表样式 */
        .sidebar-category {
            margin-bottom: 20px;
        }
        
        .sidebar-category-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
            font-size: 14px;
            padding: 5px 0;
            border-bottom: none;
        }
        
        /* 搜索框样式 */
        #sidebar_search {
            display: none !important;
        }
    </style>