/* ========================================
   生活系列博客样式 - Life Blog Series
   温暖的粉色/黄色渐变主题
   ======================================== */

/* 博客分类标签 - 生活 */
.blog-category {
    background: linear-gradient(45deg, #fa709a, #fee140);
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.3);
}

/* 文章标题 - 生活系列 */
.article-title {
    background: linear-gradient(45deg, #fa709a, #fee140);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 生活系列特色装饰 */
.article-container::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 生活系列高亮样式优化 */
.highlight {
    background: linear-gradient(45deg, rgba(250, 112, 154, 0.15), rgba(254, 225, 64, 0.15));
    border-left: 4px solid #fa709a;
} 