@charset "UTF-8";
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #a6c1ee, #fbc2eb);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }
        
        /* 顶部导航 */
        .header {
            background: linear-gradient(135deg, #a6c1ee, #fbc2eb);
            box-shadow: 0 2px 15px 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;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            padding: 15px 0;
            letter-spacing: 1px;
        }
        
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }
        
        .nav-menu a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            width: 35px;
            height: 55px;
            position: relative;
        }
        
        /* SVG汉堡图标样式 */
        .hamburger::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }
        
        /* 搜索区域 */
        .search-section {
            padding: 60px 20px;
            text-align: center;
            background: rgba(255, 255, 255, 0.85);
            margin: 20px auto;
            max-width: 1400px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .search-section h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #699aeb, #b9549f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: none;
        }
        
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .search-box input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            font-size: 16px;
            outline: none;
        }
        
        .search-box button {
            padding: 15px 30px;
            background: linear-gradient(135deg, #a6c1ee, #fbc2eb);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .search-box button:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }
        
        /* 瀑布流 */
        .gallery-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px;
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 20px;
            color: #fff;
            font-size: 1.8rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .masonry {
            column-count: 4;
            column-gap: 10px;
        }
        
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .masonry-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .masonry-item a {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .masonry-item img {
            width: 100%;
            display: block;
            transition: transform 0.5s;
        }
        
        .masonry-item:hover img {
            transform: scale(1.05);
        }
        
        .masonry-item h3 {
            padding: 10px;
            font-size: 16px;
            text-align: center;
            color: #555;
        }
        
        /* 友情链接 */
        .links-section {
            max-width: 1400px;
            margin: 15px auto;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .links-title {
            text-align: center;
            margin-bottom: 15px;
            color: #555;
            font-size: 1.5rem;
        }
        
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            list-style: none;
        }
        
        .friend-links li {
            margin: 10px 10px;
        }
        
        .friend-links a {
            text-decoration: none;
            color: #666;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 5px;
        }
        
        .friend-links a:hover {
            color: #e91e63;
            background: rgba(233, 30, 99, 0.1);
        }
        
        /* 页脚 */
        .footer {
            background: rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            color: rgba(255, 255, 255);
            font-size: 15px;
            margin-top: 10px;
        }
        
        .footer a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }
        
        /* 响应式设计 */
        @media (max-width: 1024px) {
            .masonry {
                column-count: 3;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, #a6c1ee, #fbc2eb);
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 10px 0;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-menu li {
                margin: 0;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .nav-menu a {
                display: block;
                padding: 15px 20px;
                border-radius: 0;
            }
            
            .masonry {
                column-count: 2;
            }
            
            .search-section h1 {
                font-size: 2.2rem;
            }
            
            .search-section, .links-section {
                margin-left: 15px;
                margin-right: 15px;
                width: calc(100% - 30px);
            }
        }
        
        @media (max-width: 480px) {
            .masonry {
                column-count: 2;
            }
            
            .search-section h1 {
                font-size: 1.8rem;
            }
            
            .search-section {
                padding: 40px 15px;
            }
            
            .search-section, .links-section {
                margin-left: 10px;
                margin-right: 10px;
                width: calc(100% - 20px);
            }
            
            .search-box {
                flex-direction: row;
                border-radius: 30px;
            }
            
            .search-box input {
                border-radius: 30px 0 0 30px;
                padding: 12px 15px;
            }
            
            .search-box button {
                border-radius: 0 30px 30px 0;
                padding: 12px 15px;
                white-space: nowrap;
            }
        }
        
        /* 面包屑导航样式 */
        .breadcrumb-section {
            max-width: 1400px;
            margin: 15px auto 0;
            padding: 0 20px;
        }
        
        .breadcrumb {
            background: rgba(255, 255, 255, 0.85);
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .breadcrumb li {
            display: flex;
            align-items: center;
            font-size: 15px;
            color: #666;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: #999;
        }
        
        .breadcrumb a {
            text-decoration: none;
            color: #699aeb;
            transition: all 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #b9549f;
        }
        
        .breadcrumb .breadcrumb_last {
            color: #b9549f;
            font-weight: 500;
        }
        
        /* 分页导航样式 */
        .pagination-section {
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 20px;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .page-numbers {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }
        
        .page-numbers li {
            margin: 0;
        }
        
        .page-numbers a,
        .page-numbers span {
            display: block;
            padding: 8px 15px;
            text-decoration: none;
            color: #666;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 5px;
            transition: all 0.3s;
            font-weight: 500;
            min-width: 40px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .page-numbers a:hover {
            background: #699aeb;
            color: white;
            transform: translateY(-2px);
        }
        
        .page-numbers .current {
            background: #b9549f;
            color: white;
        }
        
        .page-numbers .dots {
            background: transparent;
            box-shadow: none;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .breadcrumb-section, .pagination-section {
                padding: 0 10px;
            }
            
            .breadcrumb {
                padding: 12px 15px;
            }
            
            .breadcrumb li {
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .breadcrumb-section, .pagination-section {
                padding: 0 10px;
            }
            
            .breadcrumb {
                padding: 10px;
            }
            
            .breadcrumb li {
                font-size: 14px;
            }
            
            .page-numbers a,
            .page-numbers span {
                padding: 6px 12px;
                min-width: 35px;
                font-size: 14px;
            }
        }

        /* 文章页样式 */
        .content-section {
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 20px;
            display: flex;
            gap: 10px;
        }
        
        .article-content {
            flex: 3;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }
        
        .article-title {
            font-size: 1.5rem;
            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 #eee;
        }
        
        .article-body {
            margin-bottom: 30px;
            line-height: 1.8;
            color: #444;
        }
        
        .article-body p {
            margin-bottom: 20px;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        
        .post-navigation {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .post-navigation a {
            color: #699aeb;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .post-navigation a:hover {
            color: #b9549f;
        }
        
        .prev-post, .next-post {
            max-width: 48%;
        }
        
        .related-posts {
            margin-top: 20px;
        }
        
        .related-title {
            font-size: 1.5rem;
            color: #555;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #fbc2eb;
        }
        
        .related-list {
            list-style: none;
        }
        
        .related-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        
        .related-list li:last-child {
            border-bottom: none;
        }
        
        .related-list .post-link {
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            display: inline;
            padding: 2px 0;
            border-bottom: 1px solid transparent;
        }
        
        .related-list .post-link:hover {
            color: #b9549f;
            border-bottom: 1px solid #b9549f;
            text-decoration: none;
        }
        
        .related-date {
            color: #999;
            font-size: 14px;
            display: block;
            margin-top: 3px;
        }
        
        .sidebar {
            flex: 1;
        }
        
        .sidebar-title {
            margin: 15px;
            color: #fff;
            font-size: 1.6rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .sidebar-masonry {
            column-count: 2;
            column-gap: 10px;
        }
        
        @media (max-width: 768px) {
            .content-section {
                flex-direction: column;
                padding: 0 10px;
            }
            
            .article-content {
                padding: 10px;
            }
            
            .article-title {
                font-size: 1.5rem;
            }
            
            .post-navigation {
                flex-direction: column;
                gap: 15px;
            }
            
            .prev-post, .next-post {
                max-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .content-section {
                padding: 0 10px;
            }
            
            .article-title {
                font-size: 1.4rem;
            }
            
            .sidebar-masonry {
                column-count: 2;
            }
        }