/* ============================================================
   护工导游详情页
   设计风格：深空蓝 + 科技蓝 + 鎏金
   ============================================================ */

:root {
    --deep-blue: #071D49;
    --tech-blue: #0D6EFD;
    --tech-blue-light: #3B8BFF;
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --white: #FFFFFF;
    --bg-dark: #020C24;
    --bg-section: #060E2B;
    --bg-card: rgba(255,255,255,0.025);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.45);
    --border-subtle: rgba(255,255,255,0.06);
    --border-medium: rgba(255,255,255,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans", -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ============================================================
   顶部导航
   ============================================================ */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2,12,36,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0 16px;
}

.top-inner {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}

.btn-back {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.btn-back:hover { color: var(--white); }

.top-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.btn-follow {
    font-size: 14px;
    color: var(--tech-blue-light);
    padding: 4px 14px;
    border: 1px solid rgba(13,110,253,0.3);
    border-radius: 14px;
    transition: all var(--transition);
}

.btn-follow:hover {
    background: rgba(13,110,253,0.1);
    border-color: var(--tech-blue);
}

/* ============================================================
   照片展示区
   ============================================================ */
.photo-section {
    max-width: 768px;
    margin: 0 auto;
    padding: 32px 24px 24px;
}

.photo-main {
    text-align: center;
    padding: 16px 0;
}

.photo-frame {
    display: inline-block;
    margin-bottom: 12px;
}

.btn-more-dynamic {
    display: inline-block;
    padding: 8px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
    border-radius: 20px;
    margin-bottom: 8px;
    transition: all var(--transition);
}

.btn-more-dynamic:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.photo-disclaimer {
    font-size: 12px;
    color: var(--text-muted);
}

.similarity-tag {
    text-align: center;
    margin: 16px 0;
}

.similarity-tag span {
    display: inline-block;
    font-size: 14px;
    color: var(--tech-blue-light);
    padding: 6px 18px;
    border: 1px solid rgba(13,110,253,0.2);
    border-radius: 20px;
    background: rgba(13,110,253,0.06);
}

.similarity-tag strong { color: var(--white); font-size: 16px; }

/* ============================================================
   联系提示
   ============================================================ */
.contact-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 14px;
    margin: 8px 0;
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.12);
    border-radius: var(--radius-md);
}

.contact-hint strong { color: #10B981; }

.contact-hint svg { color: #10B981; flex-shrink: 0; }

/* ============================================================
   护工信息
   ============================================================ */
.nurse-brief {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.nurse-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.nurse-gender { font-size: 16px; color: #F472B6; margin-left: 4px; }

.nurse-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.nurse-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.stars { color: var(--gold); font-weight: 600; }

.years { color: var(--text-muted); }

/* ============================================================
   数据统计
   ============================================================ */
.nurse-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.stat {
    flex: 1;
    text-align: center;
}

.num {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.lbl {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stat-line {
    width: 1px;
    height: 30px;
    background: var(--border-medium);
}

.link-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 0;
    font-size: 14px;
    color: var(--tech-blue-light);
    transition: all var(--transition);
}

.link-reviews:hover { color: var(--white); }

/* ============================================================
   Tab 导航
   ============================================================ */
.tab-bar {
    position: sticky;
    top: 52px;
    z-index: 99;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
}

.tab-inner {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
}

.tab {
    flex: 1;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.tab.active {
    color: var(--tech-blue-light);
    border-bottom-color: var(--tech-blue);
}

/* ============================================================
   Tab 面板
   ============================================================ */
.tab-panel { display: none; }

.tab-panel.active { display: block; }

/* ============================================================
   线路列表
   ============================================================ */
.route-list {
    max-width: 768px;
    margin: 0 auto;
    padding: 20px 16px;
}

.route-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    position: relative;
    transition: all var(--transition);
}

.route-item:hover {
    border-color: rgba(13,110,253,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.route-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
}

.route-tag.hot {
    background: rgba(239,68,68,0.12);
    color: #EF4444;
}

.route-tag.vip {
    background: rgba(212,175,55,0.12);
    color: var(--gold);
}

.route-main {
    display: flex;
    gap: 16px;
}

.route-thumb {
    flex-shrink: 0;
}

.route-body {
    flex: 1;
    min-width: 0;
}

.route-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.route-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.route-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.route-price .now {
    font-size: 22px;
    font-weight: 700;
    color: #EF4444;
}

.route-price .old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.route-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
}

.btn-go {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--tech-blue), #2563EB);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 22px;
    box-shadow: 0 4px 14px rgba(13,110,253,0.3);
    transition: all var(--transition);
}

.btn-go:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,110,253,0.5);
}

.count {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   跟团须知
   ============================================================ */
.notice-content {
    max-width: 768px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}

.notice-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    margin-bottom: 14px;
}

.notice-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.notice-block ul {
    list-style: none;
}

.notice-block li {
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0 6px 18px;
    line-height: 1.6;
}

.notice-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tech-blue-light);
    opacity: 0.5;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 768px) {
    .photo-section { padding: 20px 16px; }
    .nurse-name { font-size: 20px; }
    .route-main { gap: 12px; }
    .route-item { padding: 16px; }
    .route-title { font-size: 15px; }
    .route-price .now { font-size: 18px; }
}
