   /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent; /* 移除移动端点击高亮 */
        }

        body {
            
            font-family: 'Noto Serif SC', serif;
            background-color: #eaeef3; /* 图片背景色 */
            color: #333;
            padding-top: 60px; /* 增加顶部空间给固定导航栏 */
            padding-left: 0;
            transition: all 0.3s ease;
            overflow-x: hidden;
            font-weight: 600;
            font-size: 14px;
            -webkit-font-smoothing: System Default;
    /* font-family: 'Noto Serif SC', serif; */
    color: #6A4A3C;
    background: #d8d1cb url(img/skin3_bg.jpg) repeat center top;
    background-attachment: fixed!important;
            
            
            
        }

        /* 响应式调整 */
        @media (min-width: 768px) {
            body {
                padding-top: 70px; /* PC端导航栏更高 */
            }
        }

        /* 顶部导航栏 - 移动端 */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background-color: #d8d1cb;
            background: #d8d1cb url(img/skin3_header_bg.png) repeat center top;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            z-index: 1000;
        }

        /* PC端导航栏样式 */
        @media (min-width: 768px) {
            .header {
                height: 50px;
                padding: 0 30px;
            }
        }

        /* 菜单按钮 - 只在移动端显示 */
        .menu-btn {
            font-size: 28px;
            cursor: pointer;
            padding: 5px;
            display: block;
        }

        @media (min-width: 768px) {
            .menu-btn {
                display: none; /* PC端隐藏菜单按钮 */
            }
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .sjlogo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        @media (min-width: 768px) {
            .logo {
                font-size: 28px;
            }
            .sjlogo {
                font-size: 28px;
            }
        }

        .logo img {
            width: 110px;
            height: 35px;
            margin-right: 10px;
            border-radius: 8px;
        }
        
        .sjlogo img {
            width: 36px;
            height: 36px;
            margin-right: 10px;
            border-radius: 8px;
        }

        @media (min-width: 768px) {
            .logo img {
                width: 120px;
                height: 45px;
            }
        }

        /* 用户区域 */
        .user-area {
            font-size: 22px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        @media (min-width: 768px) {
            .user-area {
                font-size: 24px;
            }
        }

        /* PC端顶部导航菜单 */
        .pc-nav {
            display: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .pc-nav a{
            color: #fff;
        }
        

        @media (min-width: 768px) {
            .pc-nav {
                display: flex;
                align-items: center;
                gap: 30px;
            }
        }

        .pc-nav-item {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pc-nav-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .pc-nav-item.active {
            background-color: rgba(255, 255, 255, 0.15);
        }

        /* PC端用户信息 */
        .pc-user-info {
            display: none;
        }

        @media (min-width: 768px) {
            .pc-user-info {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 14px;
            }
            
            .user-icon {
                font-size: 20px;
            }
        }

        /* 侧边栏 - 移动端 */
        .sidebar {
            position: fixed;
            top: 50px;
            left: -280px; /* 初始隐藏 */
            width: 280px;
            height: 98%;
            background-color: #f7f6f1;
            box-shadow: 2px 0 15px rgba(0,0,0,0.2);
            z-index: 999;
            transition: left 0.3s ease;
            overflow-y: auto;
            color: #333;
        }

        .sidebar.open {
            left: 0; /* 展开时显示 */
        }

        /* PC端侧边栏始终显示 */
        @media (min-width: 768px) {
            .sidebar {
                left: 0;
                width: 220px;
                box-shadow: none;
                border-right: 1px solid #e0e0e0;
                background-color: #f7f6f1;
                height: 95%;
            }
            
            body {
                padding-left: 220px; /* 为侧边栏留出空间 */
            }
        }

        @media (min-width: 992px) {
            .sidebar {
                width: 250px;
            }
            
            body {
                padding-left: 250px;
            }
        }

        /* 侧边栏遮罩 - 移动端 */
        .sidebar-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #0000007a;
            z-index: 998;
        }

        .sidebar-overlay.active {
            display: block;
        }

        @media (min-width: 768px) {
            .sidebar-overlay {
                display: none !important; /* PC端不需要遮罩 */
            }
            
            
             .middle-column {
    width: 100%;
    padding: 15px;
       }
        }

        .sidebar-header {
            padding: 20px;
            background: #d8d1cb url(https://i03piccdn.sogoucdn.com/251ff16866e6ccdf) ;
            overflow: hidden;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        
        
        @media (min-width: 768px) {
            .sidebar-header {
                padding: 25px 20px;
            }
        }

        .sidebar-header .logo {
            font-size: 20px;
        }

        .sidebar-close-btn {
            font-size: 24px;
            cursor: pointer;
            display: block;
        }

        @media (min-width: 768px) {
            .sidebar-close-btn {
                display: none; /* PC端不需要关闭按钮 */
            }
        }

        .sidebar-menu {
            list-style: none;
            padding: 20px 0;
        }

        .sidebar-menu li {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: background-color 0.2s;
        }

        .sidebar-menu li:hover {
            background-color: #f0f0f0;
        }

        @media (min-width: 768px) {
            .sidebar-menu li {
                padding: 16px 20px;
                font-size: 15px;
            }
        }

        /* PC端侧边栏激活状态 */
        @media (min-width: 768px) {
            .sidebar-menu li.active {
                background-color: #e8f0fe;
                color: #2c3e50;
                border-left: 4px solid #2c3e50;
                font-weight: 500;
            }
        }

        /* 侧边栏底部信息 - PC端 */
        .sidebar-footer {
            display: none;
            padding: 20px;
            border-top: 1px solid #eee;
            font-size: 14px;
            color: #666;
        }

        @media (min-width: 768px) {
            .sidebar-footer {
                display: block;
                position: absolute;
                bottom: 0;
                width: 100%;
            }
        }
            
            @media (min-width: 1200px) {
             .container {
    max-width: 1140px;
     }
        }
        
        
       @media (max-width: 768px) {
            .gk-container {
                flex-direction: column;
            }
            
        .left-column{
                display: none;
            }
         

            .right-bottom,.right-column {
                display: none;
            }
            
       }
           
            @media (max-width: 768px) {
    .right-column {
        display: none !important;
    }
   
}





        /* 主体容器 */
        .container {
             max-width: 100%;
            margin: 0 auto;
            background-color: #F7F6F1;
            min-height: 100vh;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            border-radius: 4px;
        }
        
        .gk-container{
            top:1px;
            display: flex;
            width: 100%;
            padding: 5px;
            gap: 20px;
        }
        
        .middle-column {
    line-height: 1.7;
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    letter-spacing: 0.8px;
    background-size: 16px 16px;
    background-position: center center;
    word-break: break-word;
    font-weight: 400;
    font-size: 13px;
    overflow-x: hidden;
}
        .middle-column {
    width: 100%;
    padding: 0px;
}
        
         .right-column {
    width: 30%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    background-color: #F7F6F1;
    border: 2px solid rgb(126 109 88);
     }
     

     .right-top {
    height: auto;
    width: 300px;
    margin: 20px auto;
    background-color: #dfd7c8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}






        /* 标签页导航 */
        .tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            background-color: #fff;
        }

        .tab-item {
            padding: 10px 20px;
            cursor: pointer;
            font-size: 16px;
            color: #2c3e50;
            margin-right: 20px;
            border-bottom: 2px solid transparent;
            transition: color 0.2s;
        }

        .tab-item.active {
            color: #2c3e50;
            border-bottom: 2px solid #7a6b56; /* 选中时的下划线 */
            font-weight: bold;
        }

        /* 内容区域 */
        .content-section {
            display: none; /* 默认隐藏所有内容区 */
            padding: 0;
        }

        .content-section.active {
            display: block; /* 选中时显示 */
            max-width: 100%;
        }

        /* 帖子列表 */
        .post-list {
            list-style: none;
           
        }

        .post-item {
            border-bottom: 1px solid #eee;
            padding: 15px 20px;
            display: flex;
            align-items: flex-start;
        }

        .post-avatar {
            width: 45px;
            height: 45px;
            border-radius: 4px;
            margin-right: 15px;
            position: relative;
        }

        .post-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 4px;
            object-fit: cover;
        }

        .post-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-image: url('h.jpg'); /* 替换为你的徽章图标URL，这里用的是一个简单的勾选图标 */
            background-size: contain;
            background-repeat: no-repeat;
        }

        .post-content {
            flex: 1;
            min-width: 0; /* 防止内容溢出 */
        }

        .post-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 16px;
            font-weight: normal;
            margin-bottom: 4px;
            line-height: 1.5;
            color: #2c3e50;
        }

        .post-title a {
            font-family: 'Noto Serif SC', serif;
            font-weight: 600;
            color: inherit;
            text-decoration: none;
        }

        .post-title a:hover {
            text-decoration: underline;
        }

        /* 标签和元信息 */
        .post-meta {
            display: flex;
            align-items: center;
            font-size: 12px;
            color: #999;
        }

        .post-tag {
            display: inline-block;
            padding: 2px 6px;
            border-radius: 2px;
            color: #fff;
            margin-right: 8px;
        }

        .tag-normal {  background-color: #edeada;
            padding: 2px 5px;
    border-radius: 3px;color: #fff;
            
        } /* 日常 */
        .tag-normal a{color: #666;
        }
        .tag-station { background-color: #f1c40f; color: #333; } /* 站务 */

        .meta-separator {
            margin: 0 6px;
            color: #ccc;
        }

        .post-author {
            color: #7f8c8d;
            margin-right: 6px;
        }

        .post-date {
            color: #7f8c8d;
            margin-left: 6px;
        }

        /* 回复数气泡 */
        .reply-count {
            background-color: #bdc3c7;
            color: #fff;
            border-radius: 4px;
            padding: 2px 8px;
            font-size: 12px;
            margin-left: auto; /* 推到最右边 */
            min-width: 24px;
            text-align: center;
        }

        /* 特殊样式：图片中的特定颜色 */
        .text-primary { color: #000; }
        .text-danger { color: #e74c3c; }
        .text-warning { color: #f39c12; }

        /* 点赞图标模拟 */
        .icon-like {
            color: #e74c3c;
            margin-right: 4px;
            font-weight: bold;
        }
        
        
        
        
        .gkwx-card{
             margin-bottom: 1rem;
        }
       
        
        
        
        
        
        

    .gkwx-container {
      width: 360px;
      margin: 20px auto;
      border: 1px solid #e5e5e5;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

  

    .gkwx-header h3 {
      margin: 0;
      color: #007aff;
      font-size: 16px;
      font-weight: 500;
      position: relative;
      padding-left: 10px;
    }

    .gkwx-header h3::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 16px;
      background-color: #007aff;
    }

    .gkwx-header a {
      color: #007aff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
    }

    .gkwx-content {
      display: flex;
      padding: 16px;
      background-color: #fff;
    }

    .gkwx-qr-code {
      width: 100px;
      height: 100px;
      margin-right: 16px;
    }
    .gkwx-qr-code img {
      width: 100px;
      height: 100px;
      margin-right: 16px;
    }

    .gkwx-search-section {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .gkwx-wechat-icon {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }

    .gkwx-wechat-icon img {
      width: 32px;
      height: 32px;
      margin-right: 8px;
    }

    .gkwx-wechat-text {
      font-size: 16px;
      color: #333;
      font-weight: 500;
    }

    .gkwx-search-button {
      width: 100%;
      height: 40px;
      background-color: #00c850;
      color: white;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 8px;
    }

    .gkwx-search-button i {
      margin-right: 8px;
    }
 
     
     
                   /* 顶部标题栏 */
        .gkwx-header {
            width: 100%;
            max-width: 500px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 5px;
            border-bottom: 4px solid #333;
            margin-bottom: 15px;
        }

        .gkwx-title-group h1 {
            font-size: 22px;
            font-weight: 800;
            color: #333;
            margin-bottom: 5px;
        }

        .gkwx-title-group p {
            font-size: 12px;
            color: #666;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .gkwx-refresh-btn {
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        /* 卡片网格 */
        .gkwx-grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            width: 100%;
            max-width: 500px;
        }
                
                
                
                
/* 全局侧边栏组件样式 - gkwx 风格 */

.gkwx-widget h2 {
    font-size: 18px;
    color: #333;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.gkwx-widget h2::before {
    content: "📌";
    margin-right: 8px;
    font-size: 18px;
}
.gkwx-widget ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}
.gkwx-widget li {
    margin-bottom: 10px;
    line-height: 1.5;
}
.gkwx-widget a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}
.gkwx-widget a:hover {
    color: #007AFF;
}

/* 最近回复特殊样式 */
.gkwx-recent-comments .comment-author {
    font-weight: bold;
    color: #007AFF;
}
.gkwx-recent-comments .comment-excerpt {
    color: #777;
    font-size: 14px;
    margin-left: 4px;
}

/* 归档日期右对齐（可选） */
.gkwx-archive li {
    display: flex;
    justify-content: space-between;
}
.gkwx-archive li a {
    flex: 1;
    text-align: left;
}

/* 其它区块特殊样式 */
.gkwx-other .login-info {
    background-color: #eef7ff;
    border-left: 3px solid #007AFF;
    padding: 6px 12px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 8px;
    font-size: 13px;
    color: #007AFF;
}  
   
   
   
   
   
   
           .collection {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0px;
        }
        .collection-item {
            background-color: white;

            text-align: center;
            
            border-width: 2px;
    padding-top: 0.25em;
    padding-right: 0.25em;
    padding-bottom: 0.25em;
    padding-left: 0.25em;
    /* box-shadow: 5px 5px 0px -2px #434343, 5px 5px #434343; */
    border-color: #434343;
    word-break: break-all;
    border-radius: 0.25rem;
    border-top-left-radius: 250px 10px;
    border-top-right-radius: 15px 204px;
    border-bottom-left-radius: 15px 257px;
    border-bottom-right-radius: 230px 15px;
    border: 2px solid #4d4343;
    position: relative;
        }
        
        .section {
            color: #8c4f4b;
            border-bottom: 2px solid #8c4f4b;
            padding-bottom: 10px;
            margin-bottom: 15px;
            display: flex;
        }
        
        
        .skills {
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }
        .skills h2 {
            margin: 0;
            font-size: 20px;
            color: #2c3e50;
            border-bottom: 2px solid #000;
            padding-bottom: 10px;
        }
        .skills-list {
            list-style: none;
            padding: 0;
            margin-top: 10px;
        }
        
        
        
        
        
        
        
        
        
       .gkwx-widget {
    background: #fff;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.gkwx-widget h2 {
    font-size: 18px;
    color: #333;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.gkwx-widget h2::before {
    content: "";
    display: none; /* 因标题已含图标，取消通用前缀图标 */
}

/* 搜索框样式 */
.gkwx-search-wrap {
    display: flex;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
    transition: border-color 0.3s;
}
.gkwx-search-wrap:focus-within {
    border-color: #007AFF;
    box-shadow: 0 0 0 2px rgba(0,122,255,0.1);
}

.gkwx-search-input {
    flex: 1;
    padding: 10px 14px;
    border: none;
    outline: none;
    font-size: 14px;
    background: #fff;
    color: #333;
}
.gkwx-search-input::placeholder {
    color: #aaa;
}


.gkwx-search-button:hover {
    background: #0062cc;
}
.gkwx-search-button span,
.gkwx-search-button i {
    font-size: 16px;
}