@charset "UTF-8";
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        :root {
            --primary-color: #f36838;
            --primary-light: #f9a07c;
            --primary-dark: #d4532a;
            --dark-color: #333;
            --light-color: #f8f8f8;
            --gray-color: #777;
            --light-gray: #eee;
        }
        
        body {
            background-color: #fff;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* 顶部导航栏样式 */
        header {
            background-color: #f36838;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            height: 70px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 8px;
            font-size: 24px;
        }
		
        .logo {
            position: relative;
            z-index: 1002;
        }

        .logo {
            padding: 10px 0;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            font-size: 16px;
            font-weight: 500;
            color: white;
            padding: 8px 5px;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: #ffd9c8;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #ffd9c8;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }

        /* 汉堡菜单按钮 */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            padding: 0;
            z-index: 1001;
            position: relative;
        }
        
        /* 汉堡菜单三条横线 */
        .hamburger::before,
        .hamburger::after,
        .hamburger span {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #ffffff;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .hamburger span {
            top: 50%;
            transform: translateY(-50%);
        }
        
        .hamburger::before {
            top: 0;
        }
        
        .hamburger::after {
            bottom: 0;
        }
        
        /* 搜索区域样式 */
        .search-section {
            background: linear-gradient(135deg, rgba(243, 104, 56, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
            padding: 40px 20px;
            text-align: center;
        }
        
        .search-container {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .search-title {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .search-subtitle {
            font-size: 18px;
            color: var(--gray-color);
            margin-bottom: 30px;
        }
        
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .search-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 16px;
            outline: none;
        }
        
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .search-btn:hover {
            background-color: var(--primary-dark);
        }
        
        /* 瀑布流图片展示区 */
        .gallery-section {
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 10px;
        }
        
        .section-title {
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* 友情链接标题样式 */
        .links-title {
            font-size: 24px; 
            margin-bottom: 15px;
            text-align: center;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .links-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .masonry-grid {
            column-count: 4;
            column-gap: 10px;
        }
        
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 20px;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .masonry-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .masonry-img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .masonry-title {
            padding: 10px;
        }
        
        .masonry-title h3 {
            font-size: 16px;
            color: #f36838;
            font-weight: 600;
            line-height: 1.4;
			text-align: center;
        }
        
        /* 友情链接区域 */
        .links-section {
            max-width: 1400px;
            margin: 15px auto 15px;
            padding: 0 20px;
        }
        
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .link-item {
            color: var(--gray-color);
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        
        .link-item:hover {
            color: var(--primary-color);
            background-color: rgba(243, 104, 56, 0.05);
        }
        
        /* 页脚样式 */
        footer {
            background-color: #f8f8f8;
            padding: 20px 20px;
            text-align: center;
            border-top: 1px solid #eee;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            color: #f36838;
            font-size: 15px;
        }
        
        .footer-content a {
            color: var(--primary-color);
            transition: color 0.3s;
        }
        
        .footer-content a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .masonry-grid {
                column-count: 3;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #f36838;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                z-index: 999;
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-menu li {
                margin: 10px 0;
            }
            
            .search-title {
                font-size: 28px;
            }
            
            .search-subtitle {
                font-size: 16px;
            }
            
            .search-input {
                padding: 15px 20px;
            }
            
            .section-title {
                font-size: 24px;
            }
            .nav-menu:not(.active) a {
                pointer-events: none;
                opacity: 0; 
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }  
            
            .search-box {
                flex-direction: row; 
                border-radius: 50px; 
            }
            
            .search-input {
                border-radius: 50px 0 0 50px; 
                padding: 12px 15px;
                font-size: 14px;
            }
            
            .search-btn {
                border-radius: 0 50px 50px 0; 
                padding: 0 15px;
                font-size: 14px;
            }
            
            .masonry-grid {
                column-count: 2;
                column-gap: 10px;
            }
            
            .masonry-item {
                margin-bottom: 10px;
            }
            
            .links-title {
                font-size: 20px;
            }
        }

        /* 简化版面包屑导航样式 */
        .breadcrumbs-section {
            background-color: var(--light-color);
            padding: 15px 20px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .breadcrumbs-container {
            max-width: 1400px;
            margin: 0 auto;
            font-size: 15px;
            color: var(--gray-color);
        }
        
        .breadcrumbs-simple {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
        }
        
        .breadcrumbs-simple a {
            color: var(--gray-color);
            transition: color 0.2s ease;
        }
        
        .breadcrumbs-simple a:hover {
            color: var(--primary-color);
        }
        
        .breadcrumbs-simple .sep {
            color: var(--gray-color);
            font-size: 12px;
        }
        
        .breadcrumbs-simple .current {
            color: var(--dark-color);
            font-weight: 500;
        }

        /* 优化分页导航样式 */
        .pagination-section {
            max-width: 1400px;
            margin: 30px auto 40px;
            padding: 0 20px;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .page-numbers {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 4px;
            color: var(--dark-color);
            border: 1px solid var(--light-gray); 
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        /* 非当前页hover效果增强 */
        .page-numbers:not(.current):hover {
            background-color: var(--primary-light);
            color: white;
            border-color: var(--primary-light);
            transform: translateY(-2px); /* 轻微上浮 */
            box-shadow: 0 3px 8px rgba(243, 104, 56, 0.2); /* 新增阴影 */
        }
        
        .page-numbers.current {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
            border-color: var(--primary-color);
        }
        
        @media (max-width: 480px) {
            .page-numbers {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }

        /* 文章页核心样式 */
        .article-container {
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 10px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }
        
        .article-content {
            flex: 3;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background-color: #fff;
        }
        
        /* 右侧热门推荐容器 */
        .article-sidebar {
            flex: 1;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background-color: #fff;
            height: auto !important;
            min-height: unset !important;
            max-height: none !important;
        }
        
        .article-header {
            margin-bottom: 25px;
        }
        
        .article-title {
            font-size: 28px;
            color: var(--dark-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .article-meta {
            display: flex;
            color: var(--gray-color);
            font-size: 14px;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--light-gray);
            padding-bottom: 15px;
        }
        
        .article-meta .meta-item {
            margin-right: 10px;
            display: flex;
            align-items: center;
        }
        
        .article-meta .meta-item i {
            margin-right: 5px;
            color: var(--primary-color);
        }
        
        .article-body {
            margin-bottom: 30px;
            line-height: 1.8;
            color: var(--dark-color);
        }
        
        .article-body p {
            margin-bottom: 15px;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
        }
        
        .post-navigation {
            padding: 20px 0;
            border-top: 1px solid var(--light-gray);
            border-bottom: 1px solid var(--light-gray);
        }
        
        .post-nav-links {
            display: flex;
            justify-content: space-between;
        }
        
        .nav-previous, .nav-next {
            flex: 1;
        }
        
        .nav-previous {
            margin-right: 15px;
        }
        
        .nav-next {
            margin-left: 15px;
            text-align: right;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        .nav-link .label {
            font-size: 14px;
            color: var(--gray-color);
            margin-bottom: 5px;
        }
        
        .related-posts {
            margin: 20px 0 0px;
        }
        
        .sidebar-title {
            font-size: 20px;
            color: var(--dark-color);
            margin: 0 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        /* 相关推荐样式 */
        .related-grid {
            column-count: 4 !important;
            column-gap: 15px;
        }

        .related-posts .section-title {
            text-align: left !important;
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color) !important;
        }
        .related-posts .section-title::after {
            display: none !important;
        }
        
        /* 热门推荐样式 */
        .popular-grid {
            column-count: 2 !important;
            column-gap: 15px;
            display: block;
        }

        .popular-grid .masonry-item {
            width: 100%;
            float: none;
        }
        
        /* 响应式适配 */
        @media (max-width: 992px) {
            .article-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .post-nav-links {
                flex-direction: column;
            }
            .nav-previous, .nav-next {
                width: 100%;
                margin: 0 0 15px 0;
                text-align: left;
            }
            .related-grid {
                column-count: 2 !important;
            }
            .article-content, .article-sidebar {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .article-title {
                font-size: 24px;
            }
            .related-grid {
                column-count: 2 !important;
            }
            .article-content, .article-sidebar {
                padding: 10px;
            }
        }