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

        body {
            font-family: 'Arial', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, #F7A186 0%, #F9DB95 100%);
            min-height: 100vh;
        }

        /* 导航栏样式 */
        .navbar {
            background: #F2495C;
            padding: 1rem 1.2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            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 {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 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: #F7ABB3;
            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, #F7ABB3, #F9DB95);
            padding: 5rem 2rem;
            text-align: center;
        }

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

        .search-title {
            color: #F2495C;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .search-box {
            display: flex;
            /* 移除间隙 */
            gap: 0;
            /* 添加整体边框和圆角 */
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .search-input {
            flex: 1;
            padding: 1rem;
            border: none;
            /* 移除单边圆角 */
            border-radius: 25px 0 0 25px;
            font-size: 1rem;
            outline: none;
            /* 移除单独阴影 */
            box-shadow: none;
        }

        .search-btn {
            background: #F2495C;
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            /* 移除单边圆角 */
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

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

        /* 瀑布流样式 */
        .gallery-section {
            padding: 1.5rem 0.5rem;
            background: white;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            color: #F2495C;
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        /* 瀑布流标题文字居中 */
        .photo-info h3 {
            text-align: center;
            color: #F2495C;
            margin-bottom: 0.5rem;
        }

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

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

        .photo-card:hover {
            transform: translateY(-5px);
        }

        .photo-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .photo-info {
            padding: 0.5rem;
        }

        .photo-info a {
            text-decoration: none;
            color: inherit;
        }

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

        .links-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* 友情链接标题单独样式 */
        .links-title {
            text-align: center;
            margin-bottom: 1rem;
            color: #F2495C;
            font-size: 1.8rem;
            font-weight: bold;
        }

        .links-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .links-grid a {
            color: #F2495C;
            text-decoration: none;
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .links-grid a:hover {
            background: #F9DB95;
            transform: scale(1.05);
        }

        /* 页脚样式 */
        .footer {
            background: #F7A186;
            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: #F2495C;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
            }

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

            .masonry-grid {
                column-count: 2;
            }

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

        @media (max-width: 480px) {
            .masonry-grid {
                column-count: 2;
            }
            
            .search-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .links-title {
                font-size: 1.5rem;
            }
        }

        /* 面包屑导航样式 */
        .breadcrumb-section {
            background: white;
            padding: 1rem 1rem;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .breadcrumb-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        #yoast-breadcrumb {
            color: #666;
            font-size: 0.95rem;
        }
        
        #yoast-breadcrumb a {
            color: #F2495C;
            text-decoration: none;
        }
        
        #yoast-breadcrumb a:hover {
            text-decoration: underline;
        }
        
        #yoast-breadcrumb span.sep {
            margin: 0 0.5rem;
            color: #646970;
        }
        
        /* 分页导航样式 */
        .pagination-section {
            background: #ffc589;
            padding: 1.5rem;
            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: inline-block;
            padding: 0.5rem 1rem;
            text-decoration: none;
            color: #F2495C;
            background: white;
            transition: all 0.3s ease;
        }
        
        .pagination a:hover {
            background: #F9DB95;
            transform: scale(1.05);
        }
        
        .pagination .current {
            background: #F2495C;
            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;
            }
        }
		
        /* 文章内容区域 */
        .article-section {
            padding: 1rem 0.5rem;
            background: white;
        }
        
        .article-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 0.5rem;
        }
        
        /* 左侧文章内容 */
        .article-content {
            flex: 3;
            border: 1px solid #f0f0f0;
            border-radius: 15px;
            padding: 1rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            background: white;
        }
        
        .article-title {
            color: #F2495C;
            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 #f0f0f0;
        }
        
        .article-body {
            line-height: 1.8;
            color: #333;
            margin-bottom: 2rem;
        }
        
        .article-body p {
            margin-bottom: 1.5rem;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        /* 上下篇导航 */
        .post-navigation {
            margin: 2rem 0;
            padding: 1rem 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .nav-links {
            display: flex;
            justify-content: space-between;
        }
        
        .nav-previous, .nav-next {
            flex: 1;
        }
        
        .nav-next {
            text-align: right;
        }
        
        .nav-links a {
            color: #F2495C;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #F7A186;
            text-decoration: underline;
        }
        
        /* 相关推荐 */
        .related-posts {
            margin: 1rem 0;
        }
        
        .related-title {
            color: #F2495C;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #F9DB95;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-item {
            padding: 0.8rem 0;
            border-bottom: 1px dashed #f0f0f0;
            display: block; 
        }
        
        .related-item a {
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block; 
            margin-right: 0;
        }
        
        .related-item a:hover {
            color: #F2495C;
        }
        
        .related-date {
            color: #666;
            font-size: 0.9rem;
            display: block; 
            margin-top: 0.5rem; 
        }
        
        /* 右侧侧边栏 */
        .sidebar {
            flex: 1;
            border: 1px solid #f0f0f0;
            border-radius: 15px;
            padding: 0.8rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            background: white;
        }
        
        .sidebar-title {
            color: #F2495C;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #F9DB95;
        }
        
        .sidebar-hot {
            column-count: 2;
            column-gap: 0.5rem;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .article-container {
                flex-direction: column;
            }
            
            .article-content, .sidebar {
                padding: 0.8rem;
            }
            
            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-next {
                text-align: left;
                margin-top: 1rem;
            }
            
            .article-title {
                font-size: 1.4rem;
            }
        }
        
        @media (max-width: 480px) {
            .article-content, .sidebar {
                padding: 0.6rem;
            }
            
            .sidebar-hot {
                column-count: 2;
            }
        }