/* ============================================================
   育婴师列表页 - 专业可信赖风格
   设计理念：蓝色调、圆角卡片、柔和渐变、微动画
   ============================================================ */

/* ==================== CSS 变量 ==================== */
:root {
    /* 主色调 - 专业蓝色系 */
    --color-primary: #1890FF;
    --color-primary-light: #40A9FF;
    --color-primary-lighter: #E6F7FF;
    --color-primary-dark: #096DD9;

    /* 辅助色 - 温暖金色 */
    --color-gold: #F0A830;
    --color-gold-light: #FFF3DC;
    --color-gold-dark: #D4922A;

    /* 中性色 */
    --color-bg: #FDF8F5;
    --color-bg-warm: #FFF9F5;
    --color-bg-card: #FFFFFF;
    --color-bg-section: #FFF5EE;
    --color-text-primary: #2D1F14;
    --color-text-secondary: #6B5B50;
    --color-text-muted: #9E8E82;
    --color-border: #F0E4DA;
    --color-border-light: #F8F0EA;

    /* 功能色 */
    --color-success: #5CB85C;
    --color-star: #FFB800;
    --color-tag-bg: #FFF0E6;
    --color-tag-text: #E8734A;

    /* 等级色 */
    --level-7-bg: linear-gradient(135deg, #FF4D6A, #FF8A65);
    --level-7-text: #FFFFFF;
    --level-6-bg: linear-gradient(135deg, #FFD700, #FFA500);
    --level-6-text: #7A5C00;
    --level-5-bg: linear-gradient(135deg, #E8734A, #F0A830);
    --level-5-text: #FFFFFF;
    --level-4-bg: linear-gradient(135deg, #7EC8E3, #5BA4CF);
    --level-4-text: #FFFFFF;

    /* 间距 */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* 圆角 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* 阴影 */
    --shadow-sm: 0 1px 3px rgba(45, 31, 20, 0.06);
    --shadow-md: 0 4px 12px rgba(45, 31, 20, 0.08);
    --shadow-lg: 0 8px 24px rgba(45, 31, 20, 0.1);
    --shadow-card: 0 2px 8px rgba(45, 31, 20, 0.05);
    --shadow-card-hover: 0 8px 32px rgba(232, 115, 74, 0.15);

    /* 字体 */
    --font-serif: 'Noto Serif SC', 'Songti SC', serif;
    --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

    /* 过渡 */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== 基础重置 ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-primary);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    font-size: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==================== 顶部导航 ==================== */
.site-header {
    background: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    font-size: 13px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border-light);
}

.brand-tagline {
    letter-spacing: 0.5px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    transition: transform var(--transition-fast);
}

.phone-link:hover {
    transform: scale(1.02);
}

.phone-link .icon {
    width: 16px;
    height: 16px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--color-text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(232, 115, 74, 0.3);
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 115, 74, 0.4);
    color: #fff;
}

/* ==================== 面包屑 ==================== */
.breadcrumb {
    padding: var(--space-md) 0;
    background: var(--color-bg-warm);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--color-text-muted);
}

.breadcrumb li + li::before {
    content: '›';
    margin-right: var(--space-sm);
    color: var(--color-border);
}

.breadcrumb a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb [aria-current="page"] {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* ==================== 页面标题区 ==================== */
.page-hero {
    padding: var(--space-3xl) 0 var(--space-2xl);
    background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(232, 115, 74, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(240, 168, 48, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.page-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 3px;
    margin-bottom: var(--space-xs);
}

.page-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
    position: relative;
}

.page-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    position: relative;
}

.page-subtitle strong {
    color: var(--color-primary);
    font-size: 18px;
}

.page-stats {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xl);
    background: var(--color-bg-card);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--color-border);
}

/* ==================== 筛选栏 ==================== */
.filter-section {
    padding: var(--space-lg) 0;
    background: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border-light);
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    z-index: 10;
}

.filter-section.filter-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.sort-section {
    padding: var(--space-sm) 0;
    background: var(--color-bg-card);
    position: sticky;
    top: 73px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(45, 31, 20, 0.04);
}

.filter-bar {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.filter-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.filter-label {
    flex-shrink: 0;
    width: 72px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    padding-top: 6px;
    text-align: right;
}

.filter-hint {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    padding-top: 6px;
}

.filter-hint strong {
    color: var(--color-primary);
}

.filter-search-group {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    max-width: 1440px;
    width: 100%;
}

.filter-search:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.filter-search-icon {
    flex-shrink: 0;
    margin-left: 14px;
    color: var(--color-text-placeholder);
}

.filter-search-input {
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: 15px;
    flex: 1;
    min-width: 0;
    background: transparent;
    color: var(--color-text);
    font-family: inherit;
}

.filter-search-input::placeholder {
    color: var(--color-text-placeholder);
}

.filter-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
}

.filter-search-btn:hover {
    background: var(--color-primary-dark);
}

@media (max-width: 768px) {
    .filter-search {
        max-width: 100%;
    }
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.filter-tag {
    padding: 6px 16px;
    font-size: 13px;
    color: var(--color-text-secondary);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.filter-tag:hover {
    color: var(--color-primary);
    border-color: var(--color-primary-light);
    background: var(--color-primary-lighter);
}

.filter-tag.active {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(232, 115, 74, 0.25);
}

/* ==================== 排序 + 结果统计 ==================== */
.result-bar {
    padding: var(--space-md) 0;
    background: var(--color-bg);
}

.result-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.result-count {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.result-count strong {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.sort-label {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-right: var(--space-xs);
}

.sort-btn {
    padding: 5px 14px;
    font-size: 13px;
    color: var(--color-text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.sort-btn:hover {
    color: var(--color-primary);
    background: var(--color-primary-lighter);
}

.sort-btn.active {
    color: var(--color-primary);
    background: var(--color-primary-lighter);
    font-weight: 600;
}

/* ==================== 月嫂卡片网格 ==================== */
.yuesao-list-section,
.yuyingshi-list-section {
    padding: var(--space-lg) 0 var(--space-3xl);
}

.yuesao-grid,
.yuyingshi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* ==================== 月嫂卡片 ==================== */
.yuesao-card,
.yuyingshi-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.yuesao-card:hover,
.yuyingshi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

/* 卡片顶部装饰 */
.yuesao-card::before,
.yuyingshi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.yuesao-card:hover::before,
.yuyingshi-card:hover::before {
    opacity: 1;
}

/* 卡片头部 */
.card-header {
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.card-avatar {
    flex-shrink: 0;
    width: 176px;
    height: 176px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary-lighter), var(--color-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-avatar-placeholder {
    font-size: 36px;
    line-height: 1;
    color: var(--color-primary-light);
    background: linear-gradient(135deg, var(--color-primary-lighter) 0%, var(--color-gold-light) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-level-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
    flex-wrap: wrap;
}

.level-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.level-badge.level-7 {
    background: var(--level-7-bg);
    color: var(--level-7-text);
}

.level-badge.level-6 {
    background: var(--level-6-bg);
    color: var(--level-6-text);
}

.level-badge.level-5 {
    background: var(--level-5-bg);
    color: var(--level-5-text);
}

.level-badge.level-3 {
    background: #E8F4FD;
    color: #1890FF;
}

.level-badge.level-4 {
    background: var(--level-4-bg);
    color: var(--level-4-text);
}

.card-badge-extra.texun {
    font-size: 11px;
    color: #6B5B50;
    background: #F0E4DA;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.card-badge-extra {
    font-size: 11px;
    color: var(--color-gold-dark);
    background: var(--color-gold-light);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

.card-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.card-origin {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.card-zodiac {
    font-size: 12px;
    color: var(--color-primary-light);
    margin-bottom: var(--space-sm);
}

.card-header-stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.header-stat-item {
    text-align: center;
    background: var(--color-primary-lighter);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.header-stat-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.header-stat-label {
    display: block;
    font-size: 10px;
    color: var(--color-text-muted);
    margin-top: 1px;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 1px;
}

.star {
    color: var(--color-star);
    font-size: 14px;
}

.star.empty {
    color: var(--color-border);
}

.rating-score {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}

/* 卡片内容 */
.card-body {
    padding: 0 var(--space-lg);
    flex: 1;
}

.card-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.card-tag {
    font-size: 12px;
    color: var(--color-tag-text);
    background: var(--color-tag-bg);
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

/* 卡片底部 */
.card-footer {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--color-border-light);
    margin-top: auto;
}

.card-meta {
    display: flex;
    gap: var(--space-md);
}

.meta-item {
    text-align: center;
}

.meta-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-primary);
}

.meta-label {
    font-size: 11px;
    color: var(--color-text-muted);
}

.card-price {
    text-align: right;
}

.price-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.price-value {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.price-unit {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.card-action {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.cta-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(232, 115, 74, 0.25);
    transition: all var(--transition-normal);
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232, 115, 74, 0.35);
    color: #fff;
}

/* ==================== 加载 & 空状态 ==================== */
.loading-state {
    text-align: center;
    padding: var(--space-3xl) 0;
    color: var(--color-text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: var(--space-md);
}

.empty-state h3 {
    font-size: 20px;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.empty-state p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

/* ==================== 分页 ==================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-2xl) 0;
}

.pagination-inner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.page-btn {
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.page-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-color: transparent;
    box-shadow: 0 2px 12px rgba(232, 115, 74, 0.3);
}

.page-btn.disabled {
    color: var(--color-text-muted);
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.page-info {
    font-size: 14px;
    color: var(--color-text-muted);
    min-width: 80px;
    text-align: center;
}

/* ==================== SEO 内容区 ==================== */
.seo-content {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-section);
}

.seo-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.seo-block h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary-lighter);
}

.seo-block p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.seo-block ul {
    margin-bottom: var(--space-md);
}

.seo-block li {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    padding-left: var(--space-lg);
    position: relative;
    margin-bottom: var(--space-sm);
}

.seo-block li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
}

.level-list dt {
    margin-bottom: var(--space-xs);
}

.level-list dd {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    border-left: 3px solid var(--color-border);
}

/* ==================== FAQ ==================== */
.faq-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-card);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    border-radius: 2px;
    margin: var(--space-md) auto 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-primary-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: left;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
    color: var(--color-text-muted);
}

.faq-item.open .faq-question {
    color: var(--color-primary);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer > div {
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ==================== 信任区 ==================== */
.trust-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-section) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.trust-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: var(--space-md);
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.trust-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==================== 客服弹窗（参照主站） ==================== */
.cs-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7A16BD 0%, #9B59B6 50%, #cc3399 100%);
    box-shadow: 0 4px 20px rgba(122, 22, 189, 0.4), 0 0 30px rgba(122, 22, 189, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cs-float-anim 3s ease-in-out infinite;
}

.cs-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(122, 22, 189, 0.5);
}

@keyframes cs-float-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.cs-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: #FF4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cs-badge-bounce 2s ease infinite;
}

@keyframes cs-badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.cs-bubble {
    position: fixed;
    right: 90px;
    bottom: 32px;
    z-index: 9997;
    background: #fff;
    color: var(--color-text-primary);
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    animation: cs-bubble-in 0.5s ease;
    transition: opacity 0.3s ease;
}

@keyframes cs-bubble-in {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* 弹窗遮罩 */
.cs-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    animation: cs-fade-in 0.3s ease;
}

.cs-modal[style*="flex"] {
    display: flex;
}

@keyframes cs-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 弹窗主体 */
.cs-modal-body {
    position: relative;
    width: 420px;
    max-width: 90vw;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: cs-modal-in 0.3s ease;
}

@keyframes cs-modal-in {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.cs-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease;
}

.cs-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 弹窗头部 */
.cs-modal-header {
    background: linear-gradient(135deg, #7A16BD, #9B59B6);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cs-qrcode {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    flex-shrink: 0;
    background: #fff;
}

.cs-modal-title h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cs-modal-title p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-bottom: 4px;
}

.cs-modal-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 12px !important;
    line-height: 1.6;
}

/* 弹窗操作区 */
.cs-modal-actions {
    padding: 20px 28px 28px;
}

.cs-action-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.cs-action-item:last-of-type {
    border-bottom: none;
}

.cs-action-item:hover {
    background: #fafafa;
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
}

.cs-action-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cs-icon-phone { background: #f0e6ff; }
.cs-icon-wechat { background: #e6f7e6; }
.cs-icon-book { background: #fff3e6; }

.cs-action-info {
    flex: 1;
    min-width: 0;
}

.cs-action-info strong {
    display: block;
    font-size: 15px;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.cs-action-info span {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
}

.cs-action-arrow {
    font-size: 18px;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.cs-action-item:hover .cs-action-arrow {
    transform: translateX(4px);
    color: var(--color-primary);
}

.cs-modal-tip {
    text-align: center;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #f5f5f5;
}

/* 响应式 */
@media (max-width: 480px) {
    .cs-modal-body {
        width: 100%;
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        position: fixed;
        bottom: 0;
    }

    .cs-modal {
        align-items: flex-end;
    }

    .cs-bubble {
        display: none !important;
    }
}

/* ==================== 页脚 ==================== */
.site-footer {
    background: #2D1F14;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    font-size: 24px;
}

.footer-logo .logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-phone,
.footer-address,
.footer-time,
.footer-qr {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
}

.footer-phone .icon,
.footer-address .icon,
.footer-time .icon,
.footer-qr .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--color-primary-light);
}

.footer-qr-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    flex-shrink: 0;
}

.footer-phone a {
    color: var(--color-primary-light);
    font-weight: 600;
}

.footer-bottom {
    padding: var(--space-lg) 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--color-primary-light);
}

.footer-copyright {
    margin-top: var(--space-sm);
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer-copyright a:hover {
    color: var(--color-primary-light);
}

.icp {
    margin-top: var(--space-xs);
}

/* ==================== 动画 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.yuesao-card,
.yuyingshi-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.yuesao-card:nth-child(1), .yuyingshi-card:nth-child(1) { animation-delay: 0.05s; }
.yuesao-card:nth-child(2), .yuyingshi-card:nth-child(2) { animation-delay: 0.1s; }
.yuesao-card:nth-child(3), .yuyingshi-card:nth-child(3) { animation-delay: 0.15s; }
.yuesao-card:nth-child(4), .yuyingshi-card:nth-child(4) { animation-delay: 0.2s; }
.yuesao-card:nth-child(5), .yuyingshi-card:nth-child(5) { animation-delay: 0.25s; }
.yuesao-card:nth-child(6), .yuyingshi-card:nth-child(6) { animation-delay: 0.3s; }
.yuesao-card:nth-child(7), .yuyingshi-card:nth-child(7) { animation-delay: 0.35s; }
.yuesao-card:nth-child(8), .yuyingshi-card:nth-child(8) { animation-delay: 0.4s; }
.yuesao-card:nth-child(9), .yuyingshi-card:nth-child(9) { animation-delay: 0.45s; }
.yuyingshi-card:nth-child(n+10) { animation-delay: 0.5s; }

/* ==================== 响应式 ==================== */
@media (max-width: 1024px) {
    .yuesao-grid,
.yuyingshi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 40px;
        --space-2xl: 32px;
    }

    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .page-title {
        font-size: 22px;
    }

    .page-brand {
        font-size: 16px;
    }

    .page-stats {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-md) var(--space-xl);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .filter-group {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .filter-label {
        text-align: left;
        padding-top: 0;
    }

    .yuesao-grid,
.yuyingshi-grid {
        grid-template-columns: 1fr;
    }

    .result-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .sort-options {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
        width: 100%;
    }

    .sort-btn {
        flex-shrink: 0;
    }

    .seo-content-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: var(--space-md);
        font-size: 15px;
    }

    .faq-answer > div {
        padding: 0 var(--space-md) var(--space-md);
    }

    .floating-cta {
        bottom: 16px;
        right: 16px;
    }

    .cta-phone {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .card-header {
        padding: var(--space-md);
    }

    .card-body {
        padding: 0 var(--space-md);
    }

    .card-footer {
        padding: var(--space-sm) var(--space-md) var(--space-md);
    }

    .card-action {
        padding: var(--space-sm) var(--space-md) var(--space-md);
    }
}

/* ==================== 详情页 ==================== */
.detail-hero {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
}

.detail-hero-inner {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
}

.detail-avatar {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary-lighter), var(--color-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid #fff;
}

.detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-avatar-placeholder {
    font-size: 90px;
    line-height: 1;
    color: var(--color-primary-light);
    background: linear-gradient(135deg, var(--color-primary-lighter) 0%, var(--color-gold-light) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.detail-hero-info {
    flex: 1;
    min-width: 0;
}

.detail-name {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.detail-level-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.detail-workno {
    font-size: 13px;
    color: var(--color-text-muted);
}

.detail-origin {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-md);
}

.detail-rating .stars {
    font-size: 18px;
}

.detail-rating .rating-score {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.detail-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.detail-price .price-value {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.detail-price .price-unit {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.detail-price .price-42 {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.detail-cta-group {
    display: flex;
    gap: var(--space-sm);
}

.cta-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light)) !important;
}

.cta-secondary {
    background: var(--color-bg-card) !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
    box-shadow: none !important;
}

.cta-secondary:hover {
    background: var(--color-primary-lighter) !important;
}

/* 详情页内容区 */
.detail-section {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-items: start;
}

.detail-main {
    min-width: 0;
}

.detail-block {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-card);
}

.detail-block-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary-lighter);
    position: relative;
}

.detail-block-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
}

/* 信息网格 */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.info-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-bg);
    border-radius: var(--radius-md);
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.info-value {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* 个人介绍 */
.detail-intro {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    padding: var(--space-md);
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
}

/* 特长标签 */
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.detail-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--color-tag-text);
    background: var(--color-tag-bg);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.detail-tag:hover {
    background: var(--color-primary);
    color: #fff;
}

/* 认证证书 */
.detail-certs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cert-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--color-success);
    background: #f0faf0;
    border-radius: var(--radius-md);
    font-weight: 500;
}

/* 工作风采 */
.detail-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.photo-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-bg);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* 评价 */
.comment-score-summary {
    display: flex;
    gap: var(--space-2xl);
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.comment-total-score {
    text-align: center;
    flex-shrink: 0;
}

.total-score-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.total-stars {
    font-size: 18px;
    margin: var(--space-xs) 0;
}

.total-count {
    font-size: 13px;
    color: var(--color-text-muted);
}

.comment-score-dims {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.score-row {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.score-label {
    width: 70px;
    font-size: 13px;
    color: var(--color-text-secondary);
    flex-shrink: 0;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: var(--color-border-light);
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
    border-radius: 4px;
    transition: width 0.6s ease;
}

.score-val {
    width: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary);
    text-align: right;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.comment-item {
    padding: var(--space-lg);
    background: var(--color-bg);
    border-radius: var(--radius-md);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.comment-user {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.comment-date {
    font-size: 12px;
    color: var(--color-text-muted);
}

.comment-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.comment-score {
    font-weight: 600;
    color: var(--color-primary);
}

.comment-days {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-left: var(--space-sm);
}

.comment-content {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* 评价CTA脉冲按钮 */
.comment-cta-pulse {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FFF5EE 0%, #FFF0E6 100%);
    border: 2px solid var(--color-primary-lighter);
    border-radius: var(--radius-lg);
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comment-cta-pulse:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #D4623A 100%);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 115, 74, 0.4);
}

.comment-cta-pulse:hover .cta-pulse-text {
    color: #fff;
}

.comment-cta-pulse:hover .cta-pulse-icon {
    animation: cta-bounce 0.6s ease infinite;
}

.comment-cta-pulse:hover .cta-pulse-badge {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* 脉冲圆点 */
.cta-pulse-dot {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    background: #FF4444;
    border-radius: 50%;
    z-index: 2;
}

.cta-pulse-ring {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    border: 2px solid #FF4444;
    border-radius: 50%;
    animation: cta-ring 1.5s ease-out infinite;
    z-index: 1;
}

@keyframes cta-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.cta-pulse-icon {
    font-size: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

@keyframes cta-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.cta-pulse-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.cta-pulse-badge {
    flex-shrink: 0;
    padding: 4px 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

/* 侧边栏 */
.detail-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-card);
}

.sidebar-card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
}

.sidebar-contact-card {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF5EE 100%);
    border: 2px solid var(--color-primary-lighter);
}

.sidebar-price {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.sidebar-price-unit {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.sidebar-price-42 {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.sidebar-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    margin-bottom: var(--space-sm);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
}

.sidebar-tips {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
}

.sidebar-tips p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.sidebar-level-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sidebar-level-list dt {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sidebar-level-list dd {
    font-size: 13px;
    color: var(--color-text-muted);
    padding-left: 80px;
    margin-top: -4px;
    margin-bottom: var(--space-xs);
}

.back-to-list {
    display: block;
    padding: var(--space-md);
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.back-to-list:hover {
    background: var(--color-primary-lighter);
    color: var(--color-primary-dark);
}

/* 详情页响应式 */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .detail-hero-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .detail-level-row {
        justify-content: center;
    }

    .detail-rating {
        justify-content: center;
    }

    .detail-price-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .detail-cta-group {
        width: 100%;
    }

    .detail-cta-group .cta-button {
        flex: 1;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .comment-score-summary {
        flex-direction: column;
        align-items: center;
    }

    .comment-score-dims {
        width: 100%;
    }
}

/* ==================== 打印样式 ==================== */
@media print {
    .site-header,
    .filter-section,
    .result-bar,
    .pagination,
    .floating-cta,
    .site-footer,
    .detail-sidebar {
        display: none;
    }

    .yuesao-card,
    .detail-block {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
