
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Quicksand', sans-serif;
            background-color: #fef9f0;
            color: #4a4a4a;
            line-height: 1.6;
        }
        
        /* 兔兔色调 */
        :root {
            --carrot: #ff9a5a;
            --carrot-light: #ffd8b5;
            --carrot-bg: #fff3e5;
            --mint: #b8e0d4;
            --mint-light: #e0f2ee;
            --bunny-pink: #ffe0e5;
            --bunny-gray: #f0f0f0;
            --text-soft: #6b5a4e;
            --text-light: #9c8e82;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部 */
        .header {
            background-color: white;
            box-shadow: 0 4px 12px rgba(255, 154, 90, 0.1);
            padding: 15px 0;
            border-bottom: 3px solid var(--carrot);
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
          
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        	 text-decoration: none;  /* 去掉下划线 */
        }
        
        .logo-icon {
            font-size: 2.5rem;
            line-height: 1;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--carrot);
            letter-spacing: 1px;
        }
        
        .logo-text p {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }
        
		.logo:hover .site-name {
		    color: #ff8642;  /* 悬停时变色，给用户反馈 */
		    transition: color 0.3s;
		}
		        
		.site-name {
		    font-size: 1.8rem;        /* 和 H1 一样大 */
		    font-weight: 600;          /* 加粗 */
		    color: #ff9a5a;            /* 胡萝卜色 */
		    line-height: 1.2;           /* 合适的行高 */
		    display: block;             /* 块级显示，独占一行 */
		    letter-spacing: 0.5px;      /* 稍微宽松一点 */
		    text-decoration: none;      /* 无下划线 */
		   
		}
		
		/* 如果你想加悬停效果 */
		.site-name:hover {
		    color: #ff8642;             /* 深一点的胡萝卜色 */
		    transition: color 0.3s;
		}
        
        
        
        .nav a {
            margin-left: 25px;
            text-decoration: none;
            color: var(--text-soft);
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav a:hover {
            color: var(--carrot);
        }
        
        .nav a::after {
            content: "🐰";
            font-size: 0.8rem;
            position: absolute;
            top: -15px;
            right: -15px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .nav a:hover::after {
            opacity: 1;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            margin: 25px 0 20px;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .breadcrumb ol {
          list-style: none;
          margin: 0;
          padding: 0;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
        }
        .breadcrumb li {
          display: inline-flex;
          align-items: center;
        }
        .breadcrumb li:not(:last-child)::after {
          content: "›";  /* 使用更优雅的右单箭头 */
          margin: 0 8px;
          color: #999;
          font-weight: 300;
          font-size: 16px;
        }

        .breadcrumb a {
            color: var(--carrot);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb [aria-current="page"] {
          color: #ff9a5a;
          font-weight: 500;
        }
        
.layout-2col {
    display: flex
;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.main-content {
    flex: 2;
    min-width: 300px;
}
        
.sidebar {
    flex: 1;
    min-width: 250px;
}


 /* 侧边栏组件 */
        .sidebar-card {
            background-color: white;
            border-radius: 30px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid #f0e4d5;
        }
        
        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-soft);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .sidebar-title span {
            font-size: 1.5rem;
        }
        
        /* 相关分类 */
        .related-cats {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .cat-tag {
            background-color: var(--carrot-bg);
            padding: 8px 16px;
            border-radius: 40px;
            text-decoration: none;
            color: var(--text-soft);
            font-size: 0.9rem;
            transition: background-color 0.2s;
        }
        
        .cat-tag:hover {
            background-color: var(--carrot-light);
        }
        
        /* 热门语录 */
        .hot-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px dashed #f0e4d5;
        }
        
        
        
        
        .hot-item:last-child {
            border-bottom: none;
        }
        
        .hot-rank {
            width: 28px;
            height: 28px;
            background-color: var(--carrot-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--text-soft);
            font-size: 0.9rem;
        }
        
        .hot-content {
            flex: 1;
        }
        .hot-content a{
            color: var(--text-soft)
        }
        
        .hot-content p {
            font-size: 0.95rem;
            margin-bottom: 4px;
        }
        
        .hot-meta {
            font-size: 0.75rem;
            color: var(--text-light);
        }
        
        
        .quote-row2{
			 display: block;           /* a标签默认是inline，要改成block */
		    text-decoration: none;    /* 去掉下划线 */
		
        }
        
        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag-item {
            background-color: var(--mint-light);
            padding: 5px 12px;
            border-radius: 30px;
            text-decoration: none;
            color: #5f8b7a;
            font-size: 0.85rem;
            transition: background-color 0.2s;
        }
        
        .tag-item:hover {
            background-color: var(--mint);
        }
        

        
        
        /* 详情页主卡片 */
        .detail-card {
            background-color: white;
            border-radius: 50px;
            padding: 50px;
    
            box-shadow: 0 20px 40px rgba(255, 154, 90, 0.08);
            border: 2px solid var(--carrot-light);
            position: relative;
        }
        
        /* 兔兔装饰 */
        .bunny-decoration {
			position: absolute;
		    top: -15px;
		    right: 30px;
		    font-size: 4rem;
		    opacity: 0.2;
		    pointer-events: none;
        }
        
         .post-content {
		    max-width: 800px;        /* 限制最大宽度，阅读舒适 */

		}
		
		.post-content p {
		    /* text-align: center; */        /* 段落文字左对齐（更好读） */
		    margin-bottom: 15px;
		}
		
		.post-content ol,
		.post-content ul {
		    text-align: left;        /* 列表左对齐 */
		    padding-left: 30px;       /* 给编号留空间 */
		}
		
		/* 如果你想让标题居中 */
		.post-content h2 {
		    font-size: 1.8rem;
		    margin: 40px 0 20px;
		    color: var(--carrot);
		    font-weight: 500;
		    border-left: 6px solid var(--carrot);
		    padding-left: 15px;
		}
        
        
        
        /* 内容列表 */
        .post-content ol {
            list-style: none;
            counter-reset: quote-counter;
        }
        
        .post-content ol li {
            counter-increment: quote-counter;
            margin-bottom: 10px;
            padding: 15px 20px 15px 50px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            border: 1px solid var(--border-light);
            position: relative;
            font-size: 1.05rem;
            line-height: 1.7;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .post-content ol li:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 20px rgba(255, 154, 90, 0.1);
            border-color: var(--carrot-light);
        }
        
        .post-content ol li::before {
            content: counter(quote-counter);
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 26px;
            background: var(--carrot-light);
            color: var(--text-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        
        
		.post-content ul {
		    list-style: none;
		    padding: 0;
		    margin: 20px 0;
		    background: #fff9f0;
		    border-radius: 30px;
		    padding: 25px;
		    border: 2px dashed #ffd8b5;
		}
		
		.post-content ul li {
		    padding: 10px 0;
		    border-bottom: 1px solid #ffd8b5;
		    font-size: 1.1rem;
		    color: #6b5a4e;
		}
		
		.post-content ul li:last-child {
		    border-bottom: none;
		}
		
		.post-content .tip-time {
		    display: inline-block;
		    background: #ff9a5a;
		    color: white;
		    padding: 3px 12px;
		    border-radius: 30px;
		    font-size: 0.9rem;
		    font-weight: 600;
		    margin-right: 15px;
		}
        
		
		
          /*导语样式 */
        .lead-bunny {
		    background-color: #fff3e5;        /* 胡萝卜色背景 */
		    padding: 25px 30px;
		    border-radius: 40px 40px 40px 10px; /* 圆角带一点俏皮 */
		    margin: 30px 0 40px;
		    font-size: 1.2rem;
		    line-height: 1.7;
		    color: #6b5a4e;
		    border-left: 6px solid #ff9a5a;    /* 左边胡萝卜色条 */
		    box-shadow: 0 6px 12px rgba(255, 154, 90, 0.1);
		    position: relative;
        }
        
        .lead-bunny::before {
            content: "🥕";
            position: absolute;
            left: -10px;
            top: -10px;
            font-size: 1.5rem;
            opacity: 0.3;
            transform: rotate(-15deg);
        }
        
        .lead-bunny p {
            margin: 0;
            font-weight: 500;
        }
        
        .lead-bunny p:first-child::first-letter {
            font-size: 1.8rem;
            color: #ff9a5a;
            font-weight: 600;
        }
        
        
        
        
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 40px 0 20px;
        }
        
        .pagination span {
            padding: 8px 16px;
            background: var(--carrot-bg);
            border-radius: 30px;
            color: var(--text-soft);
        }
        
        .pagination a {
            padding: 8px 16px;
            background: white;
            border: 1px solid var(--carrot-light);
            border-radius: 30px;
            color: var(--text-soft);
            text-decoration: none;
            transition: background 0.2s;
        }
        
        .pagination a:hover {
            background: var(--carrot-light);
        }
        
        
        
        
        
        
        @keyframes wiggle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            75% { transform: rotate(-5deg); }
        }
        
        .quote-content {
             padding: 0 20px;
        }
        
        .quote-content h1 {
		    font-size: 2.2rem;
		    font-weight: 600;
		    color: #2d2d2d;
		    line-height: 1.3;
		    margin-bottom: 20px;
        }
        
        .quote-meta {
		    display: flex;
		    gap: 10px;
		    border-top: 2px dashed #ffe3d6;
		    border-bottom: 2px dashed #ffe3d6;
		    padding: 15px 0;
		    margin: 30px 0;
		    color: #5f5f5f;
		    flex-wrap: wrap;
        }
        
        
        
        
        

        
        .meta-item {
		    display: flex;
		    align-items: center;
		    gap: 6px;
		    background: #faf1ea;
		        padding: 5px 10px;
		    border-radius: 40px;
		    font-size: 0.95rem;
        }
           
        .new-badge {
		    background: #f9a26c;
		    color: white;
		    font-size: 0.7rem;
		    padding: 3px 8px;
		    border-radius: 30px;
		    margin-left: 8px;
		    display: inline-block;
		    font-weight: 600;
		    letter-spacing: 0.5px;
		}
        
        

        .quote-tags {
            display: flex;
            gap: 12px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .quote-tags a {
            background-color: var(--mint-light);
            padding: 6px 18px;
            border-radius: 50px;
            color: #5f8b7a;
            text-decoration: none;
            font-size: 0.9rem;
            transition: background-color 0.2s;
        }
        
        .quote-tags a:hover {
            background-color: var(--mint);
        }
        
        /* 操作按钮组 */
        .action-bar {
            display: flex;
            gap: 20px;
            margin: 40px 0 20px;
            flex-wrap: wrap;
        }
        
        .action-btn {
            border: none;
            background-color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid #e0d6cc;
            color: var(--text-soft);
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(255, 154, 90, 0.15);
        }
        
        .action-btn.like {
            background-color: #fff0f0;
            border-color: #ffcaca;
            color: #ff6b6b;
        }
        
        .action-btn.like:hover {
            background-color: #ffe0e0;
        }
        
        .action-btn.share {
            background-color: var(--carrot-bg);
            border-color: var(--carrot-light);
            color: var(--carrot);
        }
        
        .action-btn.favorite {
            background-color: var(--mint-light);
            border-color: var(--mint);
            color: #5f8b7a;
        }
        
        /* 分享面板 */
        .share-panel {
            background-color: var(--bunny-gray);
            border-radius: 60px;
            padding: 20px 30px;
            margin: 20px 0;
            display: none;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .share-panel.show {
            display: flex;
        }
        
        .share-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: transform 0.2s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.03);
        }
        
        .share-icon:hover {
            transform: scale(1.1);
        }
        
        /* 作者信息/投稿人 */
        .author-info {
            background-color: var(--carrot-bg);
            border-radius: 30px;
            padding: 20px;
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .author-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            background-color: var(--carrot-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }
        
        .author-detail p {
            font-size: 1rem;
            color: var(--text-soft);
        }
        
        .author-detail small {
            color: var(--text-light);
            font-size: 0.8rem;
        }
        
        .author-right {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* 打赏模块 - 新加的 */
        .reward-section {
            margin: 50px 0 30px;
            padding: 20px;
            background: linear-gradient(145deg, #fff9f0 0%, #fff2e5 100%);
            border-radius: 40px;
            border: 2px dashed var(--carrot-light);
        }
        
        .reward-container {
            text-align: center;
            padding: 20px;
        }
        
        .reward-bunny {
            font-size: 4rem;
            margin-bottom: 10px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .reward-title {
            font-size: 1.8rem;
            color: var(--text-soft);
            margin-bottom: 10px;
        }
        
        .reward-text {
            color: var(--text-light);
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        
        .reward-amounts {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .amount-btn {
            background-color: white;
            border: 2px solid var(--carrot-light);
            padding: 10px 25px;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-soft);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .amount-btn:hover {
            background-color: var(--carrot);
            color: white;
            border-color: var(--carrot);
            transform: translateY(-3px);
        }
        
        .amount-btn.active {
            background-color: var(--carrot);
            color: white;
            border-color: var(--carrot);
        }
        
        .reward-qrcode {
            margin: 20px 0;
        }
        
        .qrcode-img {
            width: 180px;
            height: 180px;
            border-radius: 20px;
            box-shadow: 0 10px 20px rgba(255, 154, 90, 0.2);
        }
        
        .qrcode-hint {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-top: 10px;
        }
        
        .reward-footer {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .reward-footer span {
            cursor: pointer;
            color: var(--carrot);
            font-weight: 600;
            margin: 0 10px;
        }
        
        .reward-footer span:hover {
            text-decoration: underline;
        }
        
        .reward-note {
            margin-top: 15px;
            font-size: 0.8rem;
            color: #c0b2a6;
        }
        
        /* 相关语录区域 */
        .section-title {
            margin: 50px 0 25px;
        }
        
        .section-title h3 {
            font-size: 1.8rem;
            color: var(--text-soft);
            display: inline-block;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--carrot-light);
        }
        
        .related-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin: 30px 0 50px;
        }
        
        .related-item {
            background-color: white;
            border-radius: 25px;
            padding: 25px;
            box-shadow: 0 6px 14px rgba(0,0,0,0.02);
            border: 1px solid #f0e4d5;
            transition: transform 0.3s, border-color 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .related-item:hover {
            transform: translateY(-6px);
            border-color: var(--carrot);
        }
        
        .related-item p {
            font-size: 1rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .related-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 0.8rem;
        }
        
        .related-cat {
            background-color: var(--carrot-light);
            padding: 3px 10px;
            border-radius: 30px;
            color: var(--text-soft);
        }
        
        /* 评论区 */
        .comment-section {
            background-color: white;
            border-radius: 40px;
            padding: 40px;
            margin: 40px 0;
            border: 1px solid #f0e4d5;
        }
        
        .comment-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .comment-title h4 {
            font-size: 1.4rem;
            color: var(--text-soft);
        }
        
        .comment-count {
            color: var(--text-light);
        }
        
        .comment-input-area {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .comment-avatar {
            width: 48px;
            height: 48px;
            background-color: var(--carrot-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .comment-input-wrapper {
            flex: 1;
            display: flex;
            background-color: var(--bunny-gray);
            border-radius: 60px;
            overflow: hidden;
        }
        
        .comment-input-wrapper input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            background: transparent;
            font-family: 'Quicksand', sans-serif;
        }
        
        .comment-input-wrapper input:focus {
            outline: none;
        }
        
        .comment-input-wrapper button {
			background-color: var(--carrot);
		    border: none;
		    color: white;
		    padding: 15px 30px;
		    font-weight: 600;
		    cursor: pointer;
		    font-family: 'Quicksand', sans-serif;
		    transition: background-color 0.3s;
        }
        
        .comment-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .comment-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px dashed #f0e4d5;
        }
        
        .comment-item:last-child {
            border-bottom: none;
        }
        
        .comment-content {
            flex: 1;
        }
        
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }
        
        .comment-name {
            font-weight: 600;
            color: var(--text-soft);
        }
        
        .comment-time {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        .comment-text {
            color: var(--text-soft);
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        
        .comment-reply {
            color: var(--carrot);
            font-size: 0.8rem;
            text-decoration: none;
        }
        
        /* 页脚 */
        .footer {
            background-color: white;
            padding: 40px 0;
            border-top: 3px solid var(--carrot-light);
            margin-top: 40px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.2rem;
            color: var(--carrot);
        }
        
        .footer-links a , .footer-links span{
            text-decoration: none;
            color: var(--text-light);
            margin: 0 15px;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: var(--carrot);
        }
        
        .footer-copyright {
            color: var(--text-light);
            font-size: 0.8rem;
        }
        
        .footprint {
            text-align: center;
            font-size: 1.5rem;
            color: var(--carrot-light);
            letter-spacing: 8px;
            margin: 20px 0;
        }
        .footer-copyright a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .footer-copyright a:hover {
            color: var(--carrot);
        }
        
        /* 响应式 */
        @media (max-width: 700px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .nav a {
                margin: 0 12px;
            }
            
            .detail-card {
                padding: 30px 20px;
            }
            
            .quote-content h1 {
                font-size: 1.6rem;
            }
            
            .quote-content h1::before,
            .quote-content h1::after {
                font-size: 3rem;
                left: -20px;
                right: -20px;
            }
            
            .action-bar {
                flex-direction: column;
                align-items: stretch;
            }
            
            .bunny-decoration {
                left: 20px;
                font-size: 2.5rem;
            }
            
            .reward-amounts {
                flex-direction: column;
                align-items: stretch;
            }
            
            .comment-input-wrapper {
                flex-direction: column;
                border-radius: 30px;
            }
        }

