@charset "UTF-8";
        /* 原有CSS样式保持不变 */
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: #fff5f5;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* 头部导航 */
        header {
            background: linear-gradient(135deg, #ff6b8b, #ff3e6c);
            padding: 15px 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: white;
        }
        
        .logo a {
            color: white;
        }
        
        .logo span {
            color: #ffecef;
        }
        
        /* 桌面导航 */
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav ul li {
            margin-left: 25px;
        }
        
        .desktop-nav ul li a {
            color: white;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 15px;
            transition: background 0.3s;
        }
        
        .desktop-nav ul li a:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .search-box {
            display: flex;
            align-items: center;
        }
        
        .search-box input {
            padding: 8px 15px;
            border: none;
            border-radius: 20px 0 0 20px;
            outline: none;
        }
        
        .search-box button {
            padding: 8px 15px;
            border: none;
            background: #ffecef;
            color: #ff3e6c;
            border-radius: 0 20px 20px 0;
            cursor: pointer;
        }
        
        /* 移动导航切换按钮 */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
        }
        
        .mobile-toggle span {
            width: 100%;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s;
        }
        
        /* 移动导航菜单 */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            background: #ff3e6c;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            z-index: 999;
        }
        
        .mobile-nav ul {
            list-style: none;
            padding: 15px 0;
        }
        
        .mobile-nav ul li {
            margin: 0;
        }
        
        .mobile-nav ul li a {
            display: block;
            color: white;
            padding: 12px 20px;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .mobile-nav ul li a:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* 主要内容区 */
        .main-content {
            padding: 30px 5%;
        }
        
        .category-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .category-link {
            background: white;
            border: 1px solid #ffcdd2;
            padding: 8px 20px;
            margin: 0 10px 10px;
            border-radius: 25px;
            color: #ff3e6c;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .category-link:hover, .category-link.active {
            background: #ff3e6c;
            color: white;
        }
        
        /* 瀑布流布局 */
        .masonry-container {
            column-count: 4;
            column-gap: 15px;
            margin: 0 auto;
        }
        
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .masonry-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }
        
        .masonry-img {
            width: 100%;
            display: block;
            transition: transform 0.5s;
        }
        
        .masonry-item:hover .masonry-img {
            transform: scale(1.05);
        }
        
        .image-info {
            padding: 12px;
        }
        
        .image-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }
        
        /* 瀑布流项中的链接样式 */
        .masonry-link {
            display: block;
            color: inherit;
        }
        
        .masonry-link:hover {
            color: #ff3e6c;
        }
        
        /* 友情链接 */
        .friend-links {
            padding: 30px 5%;
            background: white;
            text-align: center;
        }
        
        .friend-links h3 {
            color: #ff3e6c;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .friend-links-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .friend-links-container a {
            color: #888;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .friend-links-container a:hover {
            color: #ff3e6c;
        }
        
        /* 页脚 */
        footer {
            background: #ffcdd2;
            padding: 40px 5%;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            margin: 0 15px;
            color: #d81b60;
        }
        
        .copyright {
            color: #d81b60;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .masonry-container {
                column-count: 3;
            }
        }
        
        @media (max-width: 768px) {
            .masonry-container {
                column-count: 2;
            }
            
            .desktop-nav, .search-box {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .mobile-nav.active {
                display: block;
            }
        }
        
        @media (max-width: 480px) {
            .masonry-container {
                column-count: 2;
            }
            
            .category-link {
                padding: 6px 12px;
                font-size: 14px;
            }
            
            .friend-links-container {
                gap: 10px;
            }
        }
        
        /* ========== 原有新增样式开始 ========== */
        
        /* 面包屑导航样式 */
        .breadcrumb {
            margin-bottom: 30px;
            font-size: 14px;
            color: #666;
            padding: 10px 0;
        }
        
        .breadcrumb a {
            color: #ff3e6c;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #ff6b8b;
        }
        
        .breadcrumb span {
            margin: 0 8px;
            color: #999;
        }
        
        .breadcrumb .current {
            color: #999;
        }
        
        /* WordPress分页导航样式 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            padding: 20px 0;
        }
        
        .page-numbers {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin: 0 5px;
            background: white;
            border: 1px solid #ffcdd2;
            border-radius: 50%;
            color: #ff3e6c;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .page-numbers.current {
            background: #ff3e6c;
            color: white;
            border-color: #ff3e6c;
        }
        
        .page-numbers:hover {
            background: #ff3e6c;
            color: white;
            border-color: #ff3e6c;
        }
        
        .page-numbers.prev,
        .page-numbers.next {
            width: auto;
            padding: 0 15px;
            border-radius: 20px;
        }
        
        .page-numbers.dots {
            background: transparent;
            border: none;
            color: #999;
        }
        
        .page-numbers.dots:hover {
            background: transparent;
            color: #999;
        }
        
        /* 响应式调整 */
        @media (max-width: 480px) {
            .pagination {
                flex-wrap: wrap;
            }
            
            .page-numbers {
                margin-bottom: 10px;
            }
        }
        
        /* ========== 原有新增样式结束 ========== */
        
        /* ========== 文章页新增样式开始 ========== */
        
        /* 文章页主要内容布局 */
        .article-layout {
            display: flex;
            gap: 30px;
            margin-top: 20px;
        }
        
        .article-content {
            flex: 1;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .article-header {
            border-bottom: 1px solid #ffcdd2;
            padding-bottom: 20px;
            margin-bottom: 25px;
        }
        
        .article-title {
            font-size: 28px;
            color: #ff3e6c;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .article-meta {
            display: flex;
            color: #888;
            font-size: 14px;
            gap: 20px;
        }
        
        .article-body {
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .article-body p {
            margin-bottom: 15px;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .article-navigation {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid #ffcdd2;
            padding-top: 20px;
            margin-top: 30px;
        }
        
        .nav-link {
            color: #ff3e6c;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: #ff6b8b;
        }
        
        .related-articles {
            margin-top: 40px;
        }
        
        .related-title {
            font-size: 20px;
            color: #ff3e6c;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ffcdd2;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-list li {
            margin-bottom: 10px;
            padding-left: 15px;
            position: relative;
        }
        
        .related-list li:before {
            content: "•";
            color: #ff3e6c;
            position: absolute;
            left: 0;
        }
        
        .related-list a {
            color: #666;
            transition: color 0.3s;
        }
        
        .related-list a:hover {
            color: #ff3e6c;
        }
        
        /* 侧边栏样式 */
        .sidebar {
            width: 400px;
        }
        
        .sidebar-section {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .sidebar-title {
            font-size: 18px;
            color: #ff3e6c;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #ffcdd2;
        }
        
        .sidebar-item {
            margin-bottom: 15px;
            break-inside: avoid;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .sidebar-item:hover {
            transform: translateY(-3px);
        }
        
        .sidebar-link {
            display: block;
            color: inherit;
        }
        
        .sidebar-img {
            width: 100%;
            display: block;
            border-radius: 8px;
        }
        
        .sidebar-item-title {
            padding: 10px 0 5px;
            font-weight: 600;
            color: #333;
            font-size: 16px;
            line-height: 1.4;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .sidebar {
                width: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .article-layout {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
            }
            
            .sidebar-items {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .sidebar-items {
                grid-template-columns: 1fr;
            }
            
            .article-title {
                font-size: 22px;
            }
            
            .article-content {
                padding: 20px;
            }
        }
        
        /* ========== 文章页新增样式结束 ========== */
		

