 @charset "utf-8";
/*-------------------
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Helvetica Neue', Arial, 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f0ff;
            background-image: linear-gradient(to bottom, #f9f0ff, #fff5f5);
        }
        
        a {
            text-decoration: none;
            color: #ff6b9c;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #ff4081;
        }
        
        /* 头部样式 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 28px;
            color: #ff6b9c;
            margin-left: 10px;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        .logo-icon {
            font-size: 32px;
            color: #ff6b9c;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 25px;
        }
        
        nav a {
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ff6b9c;
            transition: width 0.3s;
        }
        
        nav a:hover:after {
            width: 100%;
        }
        
        /* 主体内容样式 */
        .main-container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
            display: flex;
            gap: 30px;
        }
        
        /* 左侧文章列表区域 */
        .content {
            flex: 2;
        }
        
        .article-card {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid #ff6b9c;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .article-title {
            font-size: 22px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .article-meta {
            display: flex;
            color: #888;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .article-meta span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        .article-excerpt {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .read-more {
            display: inline-block;
            background-color: #ff6b9c;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .read-more:hover {
            background-color: #ff4081;
            color: white;
        }
        
        /* 右侧边栏样式 */
        .sidebar {
            flex: 1;
        }
        
        .widget {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
            padding: 25px;
        }
        
        .widget-title {
            font-size: 18px;
            color: #ff6b9c;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #f0f0f0;
            position: relative;
        }
        
        .widget-title:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: #ff6b9c;
            bottom: -2px;
            left: 0;
        }
        
        /* 个人简介样式 */
        .profile {
            text-align: center;
        }
        
        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 4px solid #ff6b9c;
            margin: 0 auto 15px;
            overflow: hidden;
            background-color: #f9f0ff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: #ff6b9c;
        }
        
        .profile-name {
            font-size: 20px;
            margin-bottom: 5px;
            color: #333;
        }
        
        .profile-bio {
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #f9f0ff;
            border-radius: 50%;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #ff6b9c;
            color: white;
        }
        
        /* 分类和标签样式 */
        .category-list, .tag-list {
            list-style: none;
        }
        
        .category-list li, .tag-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #f0f0f0;
        }
        
        .category-list a, .tag-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .category-count, .tag-count {
            background-color: #f9f0ff;
            color: #ff6b9c;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag-list li {
            margin-bottom: 8px;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .tag-list a {
            background-color: #f9f0ff;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .tag-list a:hover {
            background-color: #ff6b9c;
            color: white;
        }
        
        /* 底部样式 */
        footer {
            background-color: #fff;
            padding: 30px 0;
            margin-top: 50px;
            border-top: 1px solid #f0f0f0;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            color: #888;
            font-size: 14px;
        }
        
        .footer-links {
            display: flex;
            gap: 20px;
        }
        
        .footer-links a {
            color: #888;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: #ff6b9c;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px;
            }
            
            .footer-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }