        .breadcrumb { padding: 15px 0; font-size: 14px; color: #666; background: #fff; }
        .breadcrumb a:hover { color: var(--primary-red); }
        .breadcrumb span:last-child { color: var(--primary-red); }

        /* 详情页主体样式 */
        .nanny-detail { padding: 40px 0; background: #fff; }
        .detail-header { display: flex; gap: 30px; margin-bottom: 40px; }
        .detail-avatar { width: 280px; height: 380px; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
        .detail-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .detail-intro { flex: 1; }
        .detail-intro h1 { color: var(--primary-red); margin-bottom: 10px; font-size: 32px; }
        .detail-basic { display: flex; flex-wrap: wrap; gap: 20px; margin: 20px 0; padding: 15px; background: var(--soft-bg); border-radius: 8px; }
        .detail-basic div { display: flex; align-items: center; gap: 8px; }
        .detail-basic i { color: var(--primary-red); }
        .cert-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 15px 0; }
        .cert-tag { background: #f0f0f0; padding: 5px 15px; border-radius: 20px; font-size: 14px; }
        .contact-btn { display: inline-block; background: var(--primary-red); color: #fff; padding: 12px 30px; border-radius: 50px; margin-top: 10px; font-weight: bold; }
        .contact-btn:hover { background: #8e1212; transform: translateY(-2px); }

        /* 详情内容区域 */
        .detail-content { margin-top: 50px; }
        .content-section { margin-bottom: 40px; }
        .content-title { font-size: 22px; color: var(--primary-red); padding-bottom: 10px; border-bottom: 2px solid var(--soft-bg); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
        .content-title::before { content: ''; width: 5px; height: 22px; background: var(--primary-red); border-radius: 3px; }
        
        .skill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .skill-item { padding: 20px; background: #f9f9f9; border-radius: 8px; text-align: center; transition: 0.3s; }
        .skill-item:hover { background: var(--soft-bg); }
        .skill-icon { font-size: 30px; margin-bottom: 10px; color: var(--primary-red); }
        
        .experience-list { padding-left: 20px; }
        .experience-item { margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px dashed #eee; }
        .experience-item:last-child { border-bottom: none; }
        .exp-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
        .exp-period { color: #666; font-size: 14px; }
        .exp-content { line-height: 1.8; }
        
        .evaluation-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
        .evaluation-item { background: #f9f9f9; padding: 20px; border-radius: 8px; position: relative; }
        .evaluation-item::before { content: '"'; font-size: 50px; color: rgba(183, 28, 28, 0.1); position: absolute; top: 10px; right: 15px; }
        .eval-name { font-weight: bold; margin-top: 15px; color: var(--primary-red); }
        .eval-date { font-size: 12px; color: #888; margin-top: 5px; }

        /* 预约Banner */
        .cta-bar { background: var(--primary-red); color: #fff; padding: 40px 0; text-align: center; margin-top: 40px; }
        .cta-btn { display: inline-block; background: var(--accent-gold); color: #333; padding: 12px 35px; border-radius: 50px; margin-top: 20px; font-weight: bold; font-size: 18px; }
        .cta-btn:hover { background: #fff; }

        /* Footer */
        footer { background: #222; color: #fff; padding: 30px 0; text-align: center; font-size: 13px; }

        /* 响应式 */
        @media (max-width: 768px) {
            .nav-list { display: none; }
            .mobile-menu-btn { display: block; }
            .header-main .container { flex-direction: column; gap: 10px; }
            .detail-header { flex-direction: column; }
            .detail-avatar { width: 100%; max-width: 300px; margin: 0 auto; }
            .skill-grid { grid-template-columns: 1fr; }
            .evaluation-list { grid-template-columns: 1fr; }
        }