@charset "UTF-8";
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background-color: #fff5f5;
            color: #333;
            line-height: 1.6;
        }

        /* 导航栏 */
        .navbar {
            background: linear-gradient(135deg, #FF6666, #FF9966);
            padding: 1rem 1rem;
            box-shadow: 0 2px 10px rgba(255, 102, 102, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
			letter-spacing: 3px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* 搜索区域样式 */
        .search-section {
            background: linear-gradient(45deg, #FF9966, #FFCCCC);
            padding: 3rem 2rem;
            text-align: center;
        }

        .search-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .search-title {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .search-box {
            display: flex;
            gap: 0; 
        }

        .search-input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 25px 0 0 25px; 
            font-size: 1rem;
            outline: none;
        }

        .search-btn {
            padding: 1rem 2rem;
            background: #FF6666;
            color: white;
            border: none;
            border-radius: 0 25px 25px 0; 
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap; 
        }

        .search-btn:hover {
            background: #ff5555;
            transform: translateY(-2px);
        }

        /* 瀑布流样式 */
        .gallery-section {
            padding: 1rem 0.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .featured-title {
            color: #FF6666;
            font-size: 2rem;
            margin: 1rem 0 1rem;
            text-align: center;
            font-weight: bold;
        }

        .masonry-grid {
            columns: 4;
            column-gap: 0.5rem;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 1rem;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(255, 102, 102, 0.1);
            transition: transform 0.3s ease;
        }

        .masonry-item:hover {
            transform: translateY(-5px);
        }

        .masonry-item a {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .masonry-img {
            width: 100%;
            object-fit: cover;
            display: block;
        }

        .masonry-title {
            padding: 0.5rem;
            text-align: center;
        }

        .masonry-title h3 {
            color: #FF6666;
            font-size: 1.1rem;
            margin: 0;
        }

        /* 友情链接样式 */
        .links-section {
            padding: 1rem;
            background: #FFCCCC;
            text-align: center;
        }

        .links-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .links-title {
            color: #FF6666;
            margin-bottom: 0.5rem;
        }

        .links-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .links-grid a {
            color: #666;
            text-decoration: none;
            padding: 0.5rem 0.5rem;
            transition: color 0.3s ease;
        }

        .links-grid a:hover {
            color: #FF6666;
        }

        /* 页脚样式 */
        .footer {
            background: #FF6666;
            color: white;
            text-align: center;
            padding: 1rem;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: #FF6666;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 1.5rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .masonry-grid {
                columns: 2;
            }

            .search-title {
                font-size: 2rem;
            }

            .featured-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .masonry-grid {
                columns: 2;
            }
            
            .search-box {
                flex-direction: row; 
                width: 100%;
            }
            
            .search-btn {
                padding: 1rem; 
                border-radius: 0 25px 25px 0;
                margin-top: 0; 
            }

            .featured-title {
                font-size: 1.8rem;
            }
        }

        /* 面包屑导航 */
        .breadcrumb-section {
            background-color: #fff;
            padding: 1rem 1rem;
            border-bottom: 1px solid #ffeeee;
        }
        
        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        #yoast-breadcrumb {
            font-size: 0.9rem;
            color: #666;
        }
        
        #yoast-breadcrumb a {
            color: #FF6666;
            text-decoration: none;
        }
        
        #yoast-breadcrumb a:hover {
            text-decoration: underline;
        }
        
        #yoast-breadcrumb span.sep {
            margin: 0 0.1rem;
            color: #333;
        }
        
        /* 分页导航 */
        .pagination-section {
            padding: 2rem 1rem;
            background: #FFCCCC;
            text-align: center;
        }
        
        .pagination-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .pagination a,
        .pagination span {
            display: block;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-decoration: none;
            color: #666;
            background-color: white;
            transition: all 0.3s ease;
        }
        
        .pagination a:hover {
            background-color: #FF6666;
            color: white;
        }
        
        .pagination .current {
            background-color: #FF6666;
            color: white;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .pagination a,
            .pagination span {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .pagination {
                gap: 0.3rem;
            }
            
            .pagination a,
            .pagination span {
                padding: 0.3rem 0.6rem;
                font-size: 0.8rem;
            }
        }

        /* 文章页样式 */
        .content-section {
            padding: 1rem 0.5rem;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
        }
        
        .article-content {
            flex: 3;
            background-color: white;
            border-radius: 10px;
            padding: 1.2rem;
            box-shadow: 0 5px 15px rgba(255, 102, 102, 0.1);
        }
        
        .article-title {
            color: #FF6666;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .article-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #ffeeee;
        }
        
        .article-body {
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .article-body p {
            margin-bottom: 1rem;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 0.1rem 0;
        }
        
        .post-navigation {
            margin: 1.5rem 0;
            padding: 1rem 0;
            border-top: 1px solid #ffeeee;
            border-bottom: 1px solid #ffeeee;
            display: flex;
            justify-content: space-between;
        }
        
        .post-navigation a {
            color: #FF6666;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .post-navigation a:hover {
            color: #ff5555;
            text-decoration: underline;
        }
        
        .related-posts {
            margin-top: 1rem;
        }
        
        .related-title {
            color: #FF6666;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffeeee;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-item {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed #ffeeee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.3rem;
        }
        
        .related-item:last-child {
            border-bottom: none;
        }
        
        .related-link {
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            max-width: calc(100% - 100px);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .related-link:hover {
            color: #FF6666;
        }
        
        .related-meta {
            color: #666;
            font-size: 0.8rem;
            white-space: nowrap;
            width: 90px;
            text-align: right;
        }
        
        .sidebar {
            flex: 1;
        }
        
        .sidebar-title {
            color: #FF6666;
            font-size: 1.5rem;
            margin: 1rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ffeeee;
        }
        
        .sidebar .masonry-grid {
            columns: 2;
        }
        
        @media (max-width: 768px) {
            .content-section {
                flex-direction: column;
            }
            
            .article-title {
                font-size: 1.6rem;
            }
            
            .article-content {
                padding: 1rem;
            }
            
            .related-link {
                max-width: calc(100% - 90px);
            }
        }
        
        @media (max-width: 480px) {
            .article-title {
                font-size: 1.4rem;
            }
            
            .article-content {
                padding: 0.8rem;
            }
            
            .post-navigation {
                flex-direction: column;
                gap: 1rem;
            }
            
            .related-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem;
            }
            
            .related-link {
                max-width: 100%;
                white-space: normal;
            }
            
            .related-meta {
                white-space: normal;
                width: 100%;
                text-align: left;
            }
        }
		
        @media (min-width: 481px) and (max-width: 768px) {
            .related-link {
                max-width: calc(100% - 80px);
            }
        }