/* ============================================================
   深圳一日游 — 单人云端极简出行版  样式表
   ============================================================ */

:root {
    --primary: #007AFF; --primary-dark: #0062CC;
    --primary-light: #E5F1FF;
    --bg: #F5F7FA;
    --text-main: #1D1D1F; --text-sub: #86868B;
    --white: #FFFFFF; --green: #34C759; --red: #FF3B30;
    --blue: #007AFF; --orange: #FF9500; --warn-bg: #FFF8E1;
    --border: rgba(0,0,0,0.06); --shadow: 0 8px 24px rgba(0,0,0,0.04);
    --radius: 20px; --radius-sm: 12px;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background: var(--bg); color: var(--text-main); line-height: 1.6;
    padding-bottom: 100px; -webkit-font-smoothing: antialiased;
}

/* ===== SVG 图标统一尺寸 ===== */
.icon-svg { width: 1.25em; height: 1.25em; fill: currentColor; vertical-align: -0.25em; margin-right: 6px; flex-shrink: 0; }

/* ===== Header ===== */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: white; padding: 24px 20px 20px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15); position: relative; z-index: 10;
}
header h1 { font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 6px; }
header h1 .icon-svg { width: 1.4em; height: 1.4em; margin: 0; }
header .subtitle { font-size: 0.78rem; opacity: 0.7; margin-top: 4px; }
header .trip-meta { display: flex; justify-content: center; gap: 14px; margin-top: 8px; font-size: 0.7rem; opacity: 0.55; }
header .trip-meta span { display: flex; align-items: center; gap: 3px; }

/* ===== 天气预警横幅 ===== */
.warn-banner {
    display: none; color: white; text-align: center; padding: 10px 16px;
    font-size: 0.82rem; font-weight: 600; animation: warnSlideIn 0.35s ease;
    align-items: center; justify-content: center; gap: 8px;
}
.warn-banner.show { display: flex; }
.warn-banner.red   { background: var(--red); }
.warn-banner.blue  { background: #1565C0; }
@keyframes warnSlideIn { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ===== Card 卡片 ===== */
.card {
    background: var(--white); margin: 14px 16px; padding: 18px 20px;
    border-radius: var(--radius); box-shadow: var(--shadow);
}
.card h2 { font-size: 1.05rem; display: flex; align-items: center; border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 14px; }

/* ===== 预算表 ===== */
.budget-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; }
.budget-item span:last-child { font-weight: 600; color: var(--primary); }
.budget-total { text-align: right; margin-top: 10px; font-weight: 700; color: var(--primary); border-top: 1px dashed #DDD; padding-top: 10px; }

/* ===== 天气卡片 ===== */
#weather-card { transition: background 0.5s; }
.weather-temp { font-size: 2.5rem; font-weight: 700; }
.weather-warn {
    margin-top: 10px; font-size: 0.8rem; color: var(--red);
    background: var(--warn-bg); border-radius: 8px; padding: 8px 12px;
    border-left: 4px solid var(--red);
}
.weather-warn.hidden { display: none; }
.weather-aqi { font-size: 0.75rem; color: #999; margin-top: 8px; }

/* ===== 时间轴 ===== */
.timeline { position: relative; padding-left: 24px; }
.timeline::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom,
        var(--primary) var(--passed-percent, 0%),
        #E0E0E0 var(--passed-percent, 0%));
}
.time-node { position: relative; margin-bottom: 22px; transition: all 0.3s; }
.time-node.has-nav { cursor: pointer; }
.time-node.has-nav:hover { opacity: 0.88; }
.time-node::before {
    content: ''; position: absolute; left: -29px; top: 5px;
    width: 12px; height: 12px; border-radius: 50%;
    background: #CCC; border: 2px solid var(--white);
}
.time-node.active::before {
    background: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    animation: pulse-dot 2s infinite;
}
.time-node.active .node-title { color: var(--primary); font-weight: 700; }
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 3px var(--primary-light); }
    50%     { box-shadow: 0 0 0 8px rgba(74,144,226,0.12); }
}
.node-time { font-size: 0.82rem; color: var(--text-sub); font-family: "SF Mono", "Fira Code", monospace; }
.node-title { font-size: 1rem; margin: 3px 0; display: flex; align-items: center; }
.node-title .link-text { border-bottom: 1.5px dashed var(--primary); cursor: pointer; }
.subloc-link {
    border-bottom: 1.5px dashed var(--primary); color: var(--primary);
    cursor: pointer; font-weight: 500; transition: all 0.15s;
}
.subloc-link:active { opacity: 0.6; }
.node-desc { font-size: 0.85rem; color: var(--text-sub); background: var(--bg); padding: 8px 10px; border-radius: 6px; margin-top: 4px; transition: background 0.2s; }
.node-desc:hover { background: #E8ECF1; }
.time-node:hover .node-desc { background: #E8ECF1; }

/* ===== 折叠导航面板 (Accordion) ===== */
.nav-accordion {
    max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), margin 0.35s;
    background: #F0F5FF; border-radius: 8px; margin-top: 0;
}
.nav-accordion.open { max-height: 200px; margin-top: 8px; }
.nav-accordion-inner { padding: 10px 14px; display: flex; flex-wrap: wrap; gap: 8px; }

/* 坐标切换闪烁动画 */
@keyframes coordSwitch {
    0% { background: #F0F5FF; }
    50% { background: #FFE082; box-shadow: 0 0 12px rgba(255, 193, 7, 0.4); }
    100% { background: #F0F5FF; }
}

.nav-btn {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 7px 14px; background: linear-gradient(135deg, #1677FF, #4096FF);
    color: #FFF; border: none; border-radius: 20px; font-size: 0.8rem;
    font-weight: 600; cursor: pointer; box-shadow: 0 2px 8px rgba(22,119,255,0.25);
    transition: all 0.2s; white-space: nowrap;
}
.nav-btn:active { transform: scale(0.95); }
.nav-btn.baidu { background: linear-gradient(135deg, #E53935, #EF5350); box-shadow: 0 2px 8px rgba(229,57,53,0.25); }

/* ===== 时间奖励标签 ===== */
.time-bonus {
    font-size: 0.7rem; padding: 2px 8px; border-radius: 12px;
    background: #E8F5E9; color: #2E7D32; margin-left: 6px;
    font-weight: 600; white-space: nowrap;
}
.tag { font-size: 0.65rem; padding: 2px 6px; border-radius: 4px; margin-left: 6px; font-weight: normal; white-space: nowrap; }
.tag-compress { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.tag-shift { background: #fff3e0; color: #ef6c00; border: 1px solid #ffcc80; }
.tag-early { background: #E3F2FD; color: #1565C0; border: 1px solid #90CAF9; }
.tag-expand { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }

/* ===== 手帐面板 (替代聊天) ===== */
.notebook-panel {
    position: fixed; bottom: -70%; left: 0; right: 0; height: 62%;
    background: var(--white); z-index: 1003; border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.12); display: flex; flex-direction: column;
    transition: bottom 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.notebook-panel.show { bottom: 0; }
.notebook-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px 14px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.notebook-header h3 { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
.notebook-header .nb-count-chip {
    font-size: 0.7rem; background: var(--bg); color: var(--text-sub);
    padding: 2px 8px; border-radius: 10px; font-weight: 600;
}
.notebook-close {
    width: 32px; height: 32px; border-radius: 50%; background: var(--bg);
    border: none; font-size: 1rem; color: var(--text-sub); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.notebook-close:active { background: #E5E5EA; }
.notebook-tabs { display: flex; padding: 6px 14px; gap: 4px; flex-shrink: 0; }
.notebook-tab {
    flex: 1; text-align: center; padding: 9px 6px; font-size: 0.82rem;
    cursor: pointer; border-radius: 20px; color: var(--text-sub);
    transition: all 0.2s; background: none; border: none; font-weight: 500;
}
.notebook-tab.active { background: var(--primary-light); color: var(--primary); font-weight: 700; }
.notebook-list {
    flex: 1; overflow-y: auto; padding: 12px 16px;
    display: flex; flex-direction: column; gap: 8px; -webkit-overflow-scrolling: touch;
}
.notebook-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: var(--radius-sm);
    background: var(--white); border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02); font-size: 0.85rem;
    transition: transform 0.15s;
}
.notebook-item:active { transform: scale(0.985); }
.notebook-item.expense {
    background: #FFFDF9; border-left: 4px solid var(--orange);
}
.notebook-item .nb-icon {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--bg); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.notebook-item .nb-text { flex: 1; color: var(--text-main); line-height: 1.3; }
.notebook-item .nb-time { font-size: 0.65rem; color: #B0B0B0; text-align: right; white-space: nowrap; }
.notebook-item .nb-amount { font-weight: 800; color: var(--red); font-size: 0.95rem; }
.notebook-item .nb-delete {
    background: none; border: none; color: #D0D0D0; cursor: pointer;
    font-size: 0.8rem; padding: 4px 6px; line-height: 1; transition: color 0.15s; flex-shrink: 0;
}
.notebook-item .nb-delete:active { color: var(--red); }
.notebook-input-row {
    display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border);
    flex-shrink: 0; background: var(--white);
}
.notebook-input-row input {
    flex: 1; padding: 10px 14px; border: 1px solid #E8E8ED;
    border-radius: 22px; font-size: 0.88rem; outline: none; background: var(--bg);
}
.notebook-input-row input:focus { border-color: var(--primary); background: var(--white); }
.notebook-input-row .btn-send {
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: var(--primary); color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform 0.15s; box-shadow: 0 4px 12px rgba(0,122,255,0.35);
}
.notebook-input-row .btn-send:active { transform: scale(0.9); }
.notebook-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    text-align: center;
}
.empty-svg {
    width: 110px;
    height: 110px;
    margin-bottom: 16px;
    animation: float-up-down 3s ease-in-out infinite;
}
.empty-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}
.empty-desc {
    font-size: 0.82rem;
    color: var(--text-sub);
}

@keyframes float-up-down {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ===== 记账 Bottom Sheet ===== */
.expense-sheet-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.expense-sheet-overlay.show { opacity: 1; pointer-events: auto; }
.expense-sheet {
    position: fixed; bottom: 0; left: 0; right: 0; background: var(--white);
    z-index: 1101; border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.15); padding: 20px 20px 28px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
}
.expense-sheet.show { transform: translateY(0); }
.expense-sheet-handle {
    width: 40px; height: 4px; background: #E0E0E0; border-radius: 2px;
    margin: 0 auto 18px;
}
.expense-sheet h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; text-align: center; color: var(--text-main); }
.expense-sheet-cats {
    display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px;
}
.expense-sheet-cat {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 10px 14px; border-radius: var(--radius-sm); border: 2px solid transparent;
    background: var(--bg); cursor: pointer; font-size: 0.72rem; color: var(--text-sub);
    transition: all 0.15s; min-width: 56px;
}
.expense-sheet-cat.active { border-color: var(--primary); background: var(--primary-light); color: var(--primary); font-weight: 700; }
.expense-sheet-cat .cat-emoji { font-size: 1.4rem; }
.expense-sheet-amount-row {
    display: flex; gap: 10px; align-items: center; margin-bottom: 14px;
}
.expense-sheet-amount-row .currency {
    font-size: 1.4rem; font-weight: 700; color: var(--text-main);
}
.expense-sheet-amount-row input {
    flex: 1; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-size: 1.3rem; font-weight: 700; outline: none; text-align: center;
    transition: border-color 0.2s;
}
.expense-sheet-amount-row input:focus { border-color: var(--primary); }
#sheet-expense-note {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-size: 0.88rem; outline: none; margin-bottom: 18px; transition: border-color 0.2s;
}
#sheet-expense-note:focus { border-color: var(--primary); }
.expense-sheet-actions {
    display: flex; gap: 10px;
}
.expense-sheet-actions button {
    flex: 1; padding: 14px; border-radius: 25px; font-size: 0.9rem; font-weight: 700;
    cursor: pointer; border: none; transition: all 0.15s;
}
.expense-sheet-actions .btn-sheet-cancel { background: var(--bg); color: var(--text-sub); }
.expense-sheet-actions .btn-sheet-confirm {
    background: var(--orange); color: white; box-shadow: 0 4px 14px rgba(255,149,0,0.3);
}
.expense-sheet-actions .btn-sheet-confirm:active { transform: scale(0.97); }

/* 手帐底部快捷入口栏 */
.notebook-quick-bar {
    display: flex; gap: 8px; padding: 0 14px 10px; flex-shrink: 0;
}
.notebook-quick-bar .btn-add-expense {
    flex: 1; padding: 11px; border-radius: 22px; border: none;
    background: linear-gradient(135deg, var(--orange), #FFB340);
    color: white; font-size: 0.85rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    box-shadow: 0 4px 14px rgba(255,149,0,0.25); transition: all 0.15s;
}
.notebook-quick-bar .btn-add-expense:active { transform: scale(0.96); }

/* ===== 预算进度条 ===== */
.budget-progress-bar {
    height: 8px;
    background: #E5E5EA; /* 柔和的底层灰 */
    border-radius: 4px;
    margin: 16px 0 12px; /* 上下留白，增加呼吸感 */
    overflow: hidden;
}
.budget-progress-fill {
    height: 100%;
    background: var(--primary); /* 默认主题蓝 */
    width: 0%;
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}
.budget-progress-fill.warning { background: var(--orange); } /* 超80%变橙 */
.budget-progress-fill.danger { background: var(--red); } /* 超100%变红 */

/* ===== FAB 悬浮按钮 ===== */
.fab {
    position: fixed; right: 20px; bottom: 30px; width: 56px; height: 56px;
    background: var(--primary); color: white; border-radius: 50%; z-index: 900;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(74,144,226,0.4); cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}
.fab:active { transform: scale(0.9); }
.fab.open { background: #999; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.fab.open svg { transform: rotate(45deg); transition: transform 0.3s; }
.fab svg { width: 1.7em; height: 1.7em; transition: transform 0.3s; }

/* ===== 底部控制台 ===== */
.dashboard {
    position: fixed; bottom: -100%; left: 0; right: 0; background: var(--white);
    padding: 18px 20px; border-radius: 20px 20px 0 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1002; transition: bottom 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.dashboard.show { bottom: 0; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.clock { font-size: 1.15rem; font-weight: 700; color: var(--primary); font-family: monospace; }
.status-box { background: var(--bg); border-radius: 8px; padding: 12px; margin-bottom: 8px; }
.status-title { font-size: 0.8rem; color: var(--text-sub); display: flex; align-items: center; gap: 4px; }
.status-content { font-size: 1rem; font-weight: 600; margin-top: 2px; }
.next-box { background: var(--primary-light); border-radius: 8px; padding: 8px 12px; border-left: 4px solid var(--primary); }
.next-title { font-size: 0.78rem; color: #1565C0; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.btn-optimize {
    background: var(--red); color: white; border: none; width: 100%;
    padding: 12px; border-radius: 25px; margin-top: 14px; font-size: 0.9rem;
    font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 6px;
    box-shadow: 0 3px 8px rgba(231,76,60,0.3); cursor: pointer;
}

/* ===== 弹窗系统 ===== */
.modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    z-index: 999; opacity: 0; pointer-events: none; transition: opacity 0.3s;
    display: flex; justify-content: center; align-items: center;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-box {
    background: white; width: 90%; max-width: 400px; padding: 20px;
    border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transform: scale(0.95); transition: transform 0.3s;
    max-height: 85vh; overflow-y: auto;
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-box h3 { margin-bottom: 14px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #EEE; padding-bottom: 10px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; margin-bottom: 5px; color: var(--text-sub); font-weight: 600; }
.form-group select, .form-group input { width: 100%; padding: 10px; border: 1px solid #DDD; border-radius: 6px; font-size: 0.9rem; background: var(--white); }
.hint-text { font-size: 0.78rem; color: #888; margin-bottom: 8px; line-height: 1.3; }
.modal-actions { display: flex; gap: 10px; margin-top: 18px; }
.btn-cancel, .btn-confirm, .btn-danger {
    padding: 11px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 700;
    cursor: pointer; display: flex; justify-content: center; align-items: center;
    border: none; flex: 1;
}
.btn-cancel { background: #EEEEEE; color: var(--text-main); }
.btn-confirm { background: var(--primary); color: white; }
.btn-danger { background: #ffebee; color: var(--red); }
.time-chips { display: flex; gap: 8px; margin-top: 6px; }
.time-chip {
    flex: 1; padding: 8px; border: 1px solid #DDD; border-radius: 20px;
    background: var(--bg); font-size: 0.78rem; cursor: pointer; transition: all 0.2s; text-align: center;
}
.time-chip:active { background: var(--primary-light); border-color: var(--primary); }
.now-chip { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== Toast ===== */
.toast-bubble {
    position: fixed; top: 70px; left: 50%; transform: translateX(-50%) translateY(-120px);
    background: rgba(30,30,30,0.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: white; padding: 10px 20px; border-radius: 25px; font-size: 0.85rem;
    z-index: 1100; white-space: nowrap; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275); pointer-events: none;
}
.toast-bubble.show { transform: translateX(-50%) translateY(0); }

/* ===== 骨架屏 ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 4px;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===== 设置 btn 小圆圈 ===== */
.btn-settings { color: var(--text-sub); background: var(--bg); padding: 8px; border-radius: 50%; display: flex; cursor: pointer; border: none; }
.btn-notebook { color: var(--text-sub); background: var(--bg); padding: 8px; border-radius: 50%; display: flex; cursor: pointer; border: none; position: relative; margin-right: 4px; }
.btn-plan { color: var(--text-sub); background: var(--bg); padding: 8px; border-radius: 50%; display: flex; cursor: pointer; border: none; transition: all 0.2s; }
.btn-plan:active { background: #E0E0E0; transform: scale(0.95); }
.badge-dot { position: absolute; top: -2px; right: -2px; width: 16px; height: 16px; background: var(--red); color: white; border-radius: 50%; font-size: 0.6rem; display: none; align-items: center; justify-content: center; font-weight: 700; }
.badge-dot.show { display: flex; }

/* ===== 优化模式选择标签页 ===== */
.optimize-mode-tabs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    background: var(--bg);
    padding: 4px;
    border-radius: 10px;
}
.opt-mode-tab {
    flex: 1;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-sub);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.opt-mode-tab.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.opt-mode-tab:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.opt-mode-tab:not(:disabled):active {
    transform: scale(0.96);
}
