
        * {
            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;
        }
        
        /* 欢迎大图 */
        .hero {
            background: linear-gradient(135deg, var(--carrot-bg) 0%, var(--mint-light) 100%);
            padding: 50px 0;
            border-radius: 0 0 50px 50px;
            margin-bottom: 40px;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .hero-text {
            flex: 1;
            min-width: 280px;
        }
        
        .hero-text h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-soft);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .hero-text h2 span {
            background-color: white;
            padding: 5px 15px;
            border-radius: 50px;
            display: inline-block;
            color: var(--carrot);
            font-size: 2rem;
            margin-top: 10px;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin: 20px 0 30px;
        }
        
        .hero-bunny {
            flex: 0 0 200px;
            text-align: center;
            font-size: 8rem;
            line-height: 1;
            filter: drop-shadow(0 10px 20px rgba(255, 154, 90, 0.3));
            animation: bounce 3s infinite ease-in-out;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .btn {
            display: inline-block;
            background-color: var(--carrot);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 4px 10px rgba(255, 154, 90, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 154, 90, 0.4);
        }
        
        .btn-small {
            padding: 8px 20px;
            font-size: 0.9rem;
        }
        
        /* 分类卡片 */
        .section-title {
            text-align: center;
            margin: 50px 0 30px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--text-soft);
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::before, .section-title h2::after {
            content: "🐇";
            font-size: 1.5rem;
            margin: 0 15px;
            opacity: 0.6;
        }
        
        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin: 30px 0 50px;
        }
        
        .category-card {
            background-color: white;
            border-radius: 30px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 6px 15px rgba(0,0,0,0.03);
            border: 1px solid rgba(255, 154, 90, 0.1);
            transition: transform 0.3s, border-color 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .category-card:hover {
            transform: translateY(-8px);
            border-color: var(--carrot);
        }
        
        .category-emoji {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }
        
        .category-card h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .category-card p {
            font-size: 0.8rem;
            color: var(--text-light);
        }
        
        /* 今日精选 */
        .today-feature {
            background-color: white;
            border-radius: 40px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 15px 30px rgba(255, 154, 90, 0.08);
            border: 2px dashed var(--carrot-light);
            position: relative;
        }
        
        .today-tag {
            position: absolute;
            top: -15px;
            left: 30px;
            background-color: var(--carrot);
            color: white;
            padding: 5px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .today-quote {
            font-size: 1.6rem;
            line-height: 1.5;
            color: var(--text-soft);
            margin: 20px 0;
            font-weight: 500;
            text-align: center;
        }
        
        .today-quote::before, .today-quote::after {
            content: "“";
            font-size: 3rem;
            color: var(--carrot-light);
            font-family: serif;
            line-height: 0;
            vertical-align: middle;
        }
        
        .today-quote::after {
            content: "”";
        }
        
        .quote-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            color: var(--text-light);
            font-size: 0.9rem;
            margin: 20px 0;
        }
        
        .quote-tags span {
            background-color: var(--mint-light);
            padding: 3px 12px;
            border-radius: 50px;
            margin: 0 5px;
            color: #5f8b7a;
            font-size: 0.8rem;
        }
        
        /* 最新语录列表 */
        .latest-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0 50px;
        }
        
        .quote-item {
            background-color: white;
            border-radius: 25px;
            padding: 25px;
            box-shadow: 0 8px 18px rgba(0,0,0,0.02);
            border: 1px solid #f0e4d5;
            transition: box-shadow 0.3s;
            position: relative;
        }
        
        .quote-item:hover {
            box-shadow: 0 12px 28px rgba(255, 154, 90, 0.12);
        }
        
        .quote-item p {
            font-size: 1rem;
            margin-bottom: 20px;
            padding-right: 20px;
        }
        
        .quote-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            font-size: 0.8rem;
        }
        
        .quote-like {
            background: none;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            color: #ffb6b6;
            transition: color 0.2s;
        }
        
        .quote-like:hover {
            color: #ff6b6b;
        }
        
        .quote-category-badge {
            background-color: var(--carrot-light);
            padding: 3px 12px;
            border-radius: 30px;
            color: var(--text-soft);
            font-size: 0.7rem;
            font-weight: 600;
        }
        
        /* 投稿区 */
        .submit-section {
            background: linear-gradient(145deg, var(--bunny-pink) 0%, #fff2d8 100%);
            border-radius: 50px;
            padding: 50px;
            text-align: center;
            margin: 60px 0;
        }
        
        .submit-section h4 {
            font-size: 2rem;
            color: var(--text-soft);
            margin-bottom: 20px;
        }
        
        .submit-section p {
            max-width: 500px;
            margin: 0 auto 30px;
            color: var(--text-light);
        }
        
        .submit-input {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            background-color: white;
            border-radius: 60px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .submit-input input {
            flex: 1;
            border: none;
            padding: 15px 25px;
            font-size: 1rem;
            font-family: 'Quicksand', sans-serif;
        }
        
        .submit-input input:focus {
            outline: none;
        }
        
        .submit-input 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;
        }
        
        .submit-input button:hover {
            background-color: #ff8642;
        }
        
        /* 页脚 */
        .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;
        }
        
        .footer-copyright a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .footer-copyright a:hover {
            color: var(--carrot);
        }
        
        /* 兔兔脚印装饰 */
        .footprint {
            text-align: center;
            font-size: 1.5rem;
            color: var(--carrot-light);
            letter-spacing: 8px;
            margin: 20px 0;
        }
        
        /* 响应式 */
        @media (max-width: 700px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .nav a {
                margin: 0 12px;
            }
            
            .hero-text h2 {
                font-size: 2rem;
            }
            
            .hero-bunny {
                font-size: 5rem;
            }
            
            .today-quote {
                font-size: 1.2rem;
            }
            
            .submit-section {
                padding: 30px 20px;
            }
            
            .submit-input {
                flex-direction: column;
                border-radius: 30px;
            }
        }
 
