@charset "UTF-8";
        /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .container {
        max-width: 1400px;
        margin: 0 auto;
       }

       header .container {
       padding: 0 15px;
       }

       .search-section .container,
       .gallery-section .container,
       .links-section .container,
       footer .container {
       padding: 0 10px;
       }
        
        /* 导航栏样式 */
        header {
            background: linear-gradient(135deg, #ff2442 0%, #ff5777 100%);
            box-shadow: 0 2px 15px rgba(255, 36, 66, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #fff;
			letter-spacing: 2px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            font-size: 16px;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
            color: #fff;
        }
        
        .nav-links a:hover {
            color: #fff;
            text-decoration: underline;
            text-decoration-color: #fff;
            text-underline-offset: 5px;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            width: 30px;
            height: 20px;
            position: relative;
        }
        
        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: #fff;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .hamburger span:nth-child(1) {
            top: 0px;
        }
        
        .hamburger span:nth-child(2) {
            top: 8px;
        }
        
        .hamburger span:nth-child(3) {
            top: 16px;
        }
        
        /* 搜索区域样式 */
        .search-section {
            background: linear-gradient(135deg, #ff8fa3 0%, #ffb3c1 100%);
            padding: 60px 0;
            text-align: center;
            color: white;
        }
        
        .search-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #ff2442, #ff8fa3);
        }
        
        .search-section h1 {
            font-size: 36px;
            margin-bottom: 20px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: #ff2442;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            box-shadow: 0 3px 8px rgba(255, 36, 66, 0.3);
        }
        
        .search-box button:hover {
            background: #e01e3c;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(255, 36, 66, 0.4);
        }
        
        /* 瀑布流样式 */
        .gallery-section {
            padding: 20px 0 20px;
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: #ff2442;
        }
        
        .masonry {
            column-count: 4;
            column-gap: 10px;
        }
        
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 15px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255, 36, 66, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .masonry-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 36, 66, 0.15);
        }
        
        .masonry-item img {
            width: 100%;
            display: block;
        }
        
        .masonry-item h3 {
            padding: 10px;
            font-size: 16px;
            text-align: center;
            color: #333;
        }
        
        .masonry-item h3:hover {
            color: #ff2442;
        }
        
        /* 友情链接 */
        .links-section {
            background: white;
            padding: 20px 0;
            border-top: 1px solid #ffe6e6;
            box-shadow: 0 -2px 10px rgba(255, 36, 66, 0.05);
        }
        
        .links-title {
            text-align: center;
            margin-bottom: 15px;
            font-size: 22px;
            color: #ff2442;
        }
        
        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .links-container a {
            padding: 6px 10px;
            border-radius: 4px;
            background: #fff5f5;
            transition: all 0.3s;
            color: #ff2442;
        }
        
        .links-container a:hover {
            background: #ff2442;
            color: white;
            text-decoration: underline;
            text-decoration-color: white;
        }
        
        /* 页脚样式 */
        footer {
            background: linear-gradient(135deg, #ff2442 0%, #ff5777 100%);
            color: rgba(255, 255, 255, 255);
            text-align: center;
            padding: 15px 0;
        }
        
        .footer-content {
            font-size: 15px;
        }
        
        .footer-content a {
            color: #fff;
        }
        
        .footer-content a:hover {
            text-decoration: underline;
            text-decoration-color: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .masonry {
                column-count: 3;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #ff2442 0%, #ff5777 100%);
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px 0;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }
            
            .hamburger {
                display: block;
            }
            
            .masonry {
                column-count: 2;
            }
            
            .search-section h1 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 480px) {
            .masonry {
                column-count: 2;
            }
            
            .search-section h1 {
                font-size: 24px;
            }
        }

        /* 面包屑导航样式 */
        .breadcrumbs {
            padding: 15px 0;
            background-color: white;
            border-bottom: 1px solid #ffe6e6;
        }
        
        .breadcrumbs .container {
            padding: 0 15px;
        }
        
        .breadcrumbs-list {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            list-style: none;
            font-size: 14px;
            gap: 8px;
        }
        
        .breadcrumbs-list li {
            position: relative;
            color: #666;
            padding-right: 18px;
            white-space: nowrap;
        }
        
        .breadcrumbs-list li:not(:last-child):after {
            content: "/";
            position: absolute;
            right: 0;
            color: #ff5777;
        }
        
        .breadcrumbs-list li:last-child {
            padding-right: 0;
            color: #ff2442;
            font-weight: 500;
        }
        
        .breadcrumbs-list a {
            color: #666;
        }
        
        .breadcrumbs-list a:hover {
            color: #ff2442;
            text-decoration: underline;
        }
        
        /* 移动端优化 */
        @media (max-width: 480px) {
            .breadcrumbs {
                padding: 12px 0;
            }
            
            .breadcrumbs-list {
                font-size: 13px;
                gap: 6px;
            }
            
            .breadcrumbs-list li {
                padding-right: 14px;
            }
        }

        /* 分页导航样式 */
        .pagination-section {
            background: white;
            padding: 25px 0;
            border-top: 1px solid #ffe6e6;
            box-shadow: 0 -2px 10px rgba(255, 36, 66, 0.05);
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
            list-style: none;
        }
        
        .pagination li a {
            display: inline-block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            border-radius: 4px;
            background: #fff5f5;
            color: #ff2442;
            transition: all 0.3s;
        }
        
        .pagination li a:hover,
        .pagination li.active a {
            background: #ff2442;
            color: white;
        }
        
        @media (max-width: 768px) {
            .pagination li a {
                width: 32px;
                height: 32px;
                line-height: 32px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .pagination {
                gap: 5px;
            }
            
            .pagination li a {
                width: 28px;
                height: 28px;
                line-height: 28px;
                font-size: 13px;
            }
        }

        /* 文章页样式 */
        .article-section {
            padding: 15px 0;
        }
        
        .article-container {
            display: flex;
            gap: 10px;
        }
        
        .article-content {
            flex: 3;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(255, 36, 66, 0.1);
        }
        
        .article-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .article-meta {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #ffe6e6;
        }
        
        .article-meta span {
            margin-right: 5px;
        }
        
        .article-body {
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .article-body p {
            margin-bottom: 15px;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        /* 上一篇与下一篇 */
        .post-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid #ffe6e6;
            border-bottom: 1px solid #ffe6e6;
        }
        
        .post-navigation a {
            color: #ff2442;
            align-items: center;
            padding: 8px 0;
        }
        
        .post-navigation a:hover {
            text-decoration: underline;
        }
        
        .prev-post {
            flex: 1;
            text-align: left;
        }
        
        .next-post {
            text-align: right;
        }
        
        @media (max-width: 768px) {
            .post-navigation {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .next-post {
                text-align: left;
                width: 100%;
                padding-top: 10px;
                border-top: 1px dashed #ffe6e6;
            }
            
            .prev-post, .next-post {
                width: 100%;
            }
        }
        
        .related-posts {
            margin-top: 40px;
        }
        
        .related-title {
            font-size: 22px;
            color: #ff2442;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffe6e6;
        }
        
        .sidebar {
            flex: 1;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(255, 36, 66, 0.1);
        }
        
        .widget-title {
            font-size: 22px;
            color: #ff2442;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffe6e6;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .article-container {
                flex-direction: column;
            }
            
            .article-content {
                padding: 15px;
            }
            
            .article-title {
                font-size: 24px;
            }
            
            .related-posts .masonry {
                column-count: 2;
            }
        }
        
        @media (max-width: 480px) {
            .article-title {
                font-size: 20px;
            }
            
            .sidebar-widget {
                padding: 15px;
            }
        }