/* ============================================================
   画布：宽度满屏（≤430px），高度满屏（min 600px，矮屏纵向滚动）
   双屏翻页：.deck 内多个 .screen 纵向排列，JS 控制 translateY 切换
   封面背景图 940×1672 以 cover 铺满上下，左右轻微裁切（人物不受影响）
   横向尺寸/字号：设计稿 px ÷ 3.75 = cqw
   封面纵向定位：原图 y ÷ 667.3 = %（与背景图相对位置恒定）
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --c-green: #243C34;   /* 深墨绿：标题 / 主按钮 */
    --c-ink: #303633;     /* 正文深灰 */
    --c-gray: #727873;    /* 次要文字 */
    --c-line: #D9DED8;    /* 分隔线：低饱和灰绿（封面等浅底用） */
    --c-paper: #243C34;   /* 页面底：深墨绿（与主按钮同色） */

    --font-serif: "Source Han Serif SC", "Noto Serif SC", "Source Han Serif CN", "Songti SC", "STSong", "SimSun", serif;
    --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

html, body {
    overflow-x: hidden;
}

body {
    background: var(--c-paper);
    font-family: var(--font-serif);
    color: var(--c-ink);
    -webkit-font-smoothing: antialiased;
}

/* 画布：完整显示背景图，禁止裁切 / 拉伸；桌面端居中限宽 430px */
.deck {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    height: 100vh;
    height: 100dvh;          /* 铺满整屏上下，矮屏时纵向滚动 */
    min-height: 600px;
    container-type: inline-size;
    overflow: hidden;
    background: var(--c-paper);
}

/* ============ 全屏翻页屏 ============ */
.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-paper);
    transition: transform 0.78s cubic-bezier(0.65, 0.05, 0.36, 1);
    will-change: transform;
}

.screen.cover {
    background-color: #FFFFFF;
    background-image: url("../image/welcome.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

/* ============ 顶部公共区域 ============ */
.topbar {
    position: absolute;
    top: 7.47cqw;            /* 28px */
    left: 6.13cqw;           /* 23px */
    right: 6.13cqw;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.brand {
    font-family: var(--font-serif);
    font-size: 4cqw;         /* 15px */
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--c-green);
}

.clinic {
    font-size: 2.8cqw;       /* 10.5px */
    letter-spacing: 0.06em;
    color: var(--c-green);
}

.topbar-rule {
    position: absolute;
    top: 12.53cqw;           /* 47px */
    left: 6.13cqw;
    right: 6.13cqw;
    height: 0.27cqw;         /* 1px */
    background: var(--c-line);
}

/* ============ 主标题区（左上留白） ============ */
.hero-kicker {
    position: absolute;
    top: 15.2cqw;            /* 57px */
    left: 6.13cqw;
    font-family: "Times New Roman", var(--font-serif);
    font-size: 2.67cqw;      /* 10px */
    font-weight: 400;
    letter-spacing: 0.28em;
    color: var(--c-gray);
}

.hero-title {
    position: absolute;
    top: 20cqw;              /* 75px */
    left: 6.13cqw;
    font-family: var(--font-serif);
    font-size: 10.93cqw;     /* 41px */
    font-weight: 700;
    line-height: 1.32;
    letter-spacing: 0.04em;
    color: var(--c-green);
}

/* ============ 姓名区（人物下方偏左渐隐区） ============ */
.doctor {
    position: absolute;
    top: 77.03%;             /* 514 / 667.3，跟随背景人物渐隐区 */
    left: 6.13cqw;
    display: flex;
    align-items: flex-start;
    gap: 2.67cqw;            /* 10px */
}

.doctor-bar {
    width: 0.27cqw;          /* 1px 细竖线 */
    height: 8cqw;            /* 30px，与单行姓名等高 */
    background: var(--c-green);
}

.doctor-name {
    font-family: var(--font-serif);
    font-size: 6.8cqw;       /* 25.5px */
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.1em;
    color: var(--c-ink);
}

/* ============ 主按钮 ============ */
.btn-next {
    position: absolute;
    top: 85.42%;             /* 570 / 667.3 */
    left: 6.13cqw;
    width: 87.73cqw;         /* 329px */
    height: 9.6cqw;          /* 36px */
    border: none;
    border-radius: 2px;
    background: var(--c-green);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 3.47cqw;      /* 13px */
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    cursor: pointer;
}

.btn-next:focus-visible {
    outline: 2px solid var(--c-green);
    outline-offset: 3px;
}

.btn-next:active {
    opacity: 0.92;
}

/* ============ 底部：装饰线 / 进度 / 引导 / 页码 ============ */
.foot-rule {
    position: absolute;
    top: 93.36%;             /* 623 / 667.3 */
    left: 6.13cqw;
    right: 6.13cqw;
    height: 0.27cqw;         /* 1px */
    background: var(--c-line);
}

.foot-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 16.67%;           /* 1 / 6 进度 */
    height: 100%;
    background: var(--c-green);
}

.foot-row {
    position: absolute;
    top: 95.02%;             /* 634 / 667.3 */
    left: 6.13cqw;
    right: 6.13cqw;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.foot-guide {
    font-family: var(--font-sans);
    font-size: 2.67cqw;      /* 10px */
    letter-spacing: 0.12em;
    color: var(--c-gray);
}

.foot-pager {
    font-family: "Times New Roman", var(--font-serif);
    font-size: 2.67cqw;      /* 10px */
    letter-spacing: 0.08em;
    color: var(--c-gray);
}

/* ============ 第 2 页：医生介绍（可纵向滚动，隐藏滚动条） ============ */
.page2 {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* 旧 Edge/IE */
}

.page2::-webkit-scrollbar {
    display: none;                  /* Chrome / Safari */
}

.p2-pad {
    padding: 7.47cqw 6.13cqw 6.4cqw;   /* 28 / 23 / 24px */
}

.p2-topbar {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.p2-toprule {
    height: 1px;
    background: var(--c-line);
    margin-top: 1.6cqw;                /* 6px */
}

.p2-kicker {
    margin-top: 2.67cqw;               /* 10px，对齐封面 57px 锚点节奏 */
    font-family: "Times New Roman", var(--font-serif);
    font-size: 2.67cqw;                /* 10px */
    letter-spacing: 0.28em;
    color: var(--c-gray);
}

.p2-title {
    margin-top: 1.6cqw;                /* 6px，对齐封面 75px 锚点节奏 */
    font-family: var(--font-serif);
    font-size: 10.93cqw;               /* 41px */
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--c-green);
}

/* 医生单张竖图（shutu3 原图 750×1118，压至约三分之二高度，顶部对齐裁切） */
.selfie {
    aspect-ratio: 750 / 745;
    margin-top: 5.6cqw;                /* 21px */
    overflow: hidden;
    background: #EFEFED;
}

.selfie img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* 编号段落：数字 + 竖线 + 标题 + 分类 */
.blk {
    margin-top: 5.6cqw;
    padding-top: 5.6cqw;
    border-top: 1px solid var(--c-line);
}

.blk-head {
    display: flex;
    align-items: center;
    gap: 2.67cqw;                      /* 10px */
}

.blk-no {
    font-family: "Times New Roman", var(--font-serif);
    font-size: 3.73cqw;                /* 14px */
    letter-spacing: 0.05em;
    color: var(--c-green);
}

.blk-bar {
    width: 0.27cqw;                    /* 1px 竖线，呼应封面姓名竖线 */
    height: 4.27cqw;                   /* 16px */
    background: var(--c-green);
}

.blk-title {
    font-family: var(--font-serif);
    font-size: 4.53cqw;                /* 17px */
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--c-green);
}

.blk-cat {
    margin-left: auto;
    font-size: 2.53cqw;                /* 9.5px */
    letter-spacing: 0.22em;
    color: var(--c-gray);
}

.blk-text {
    margin-top: 3.2cqw;                /* 12px */
    font-family: var(--font-sans);
    font-size: 3.2cqw;                 /* 12px */
    line-height: 1.95;
    text-align: justify;
    color: var(--c-ink);
}

.blk-fig {
    margin-top: 3.2cqw;
}

.blk-fig img {
    width: 100%;
    height: auto;                      /* 按原始比例完整显示，不裁切 */
    display: block;
}

/* 细边框按钮（第 2 页样式，背景保持浅色） */
.btn-ghost {
    display: block;
    width: 100%;
    margin-top: 6.4cqw;                /* 24px */
    padding: 2.4cqw 0;                 /* 总高约 36px */
    background: transparent;
    border: 1px solid var(--c-green);
    border-radius: 2px;
    color: var(--c-green);
    font-family: var(--font-sans);
    font-size: 3.47cqw;                /* 13px */
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    cursor: pointer;
}

.btn-ghost:focus-visible {
    outline: 2px solid var(--c-green);
    outline-offset: 3px;
}

.btn-ghost:active {
    opacity: 0.8;
}

/* 第 2 页页脚（随内容流动，非绝对定位） */
.p2-rule {
    position: relative;
    height: 1px;
    margin-top: 6.4cqw;
    background: var(--c-line);
}

.p2-prog {
    position: absolute;
    left: 0;
    top: 0;
    width: 33.33%;                     /* 2 / 6 进度 */
    height: 100%;
    background: var(--c-green);
}

.p2-foot-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 2.67cqw;               /* 10px */
}

/* ============ 数据统计条（第 3 页） ============ */
.stat-row {
    display: flex;
    margin-top: 5.6cqw;
    padding-top: 5.6cqw;
    border-top: 1px solid var(--c-line);
}

.stat {
    flex: 1;
    text-align: center;
}

.stat + .stat {
    border-left: 1px solid var(--c-line);
}

.stat-v {
    font-family: "Times New Roman", var(--font-serif);
    font-size: 8cqw;               /* 30px */
    font-weight: 700;
    line-height: 1.1;
    color: var(--c-green);
}

.stat-k {
    margin-top: 1.2cqw;
    font-size: 2.67cqw;            /* 10px */
    letter-spacing: 0.2em;
    color: var(--c-gray);
}

/* ============ 第 4 页：项目介绍 ============ */
.proj-name {
    display: flex;
    align-items: baseline;
    gap: 2.67cqw;                  /* 10px */
    margin-top: 4cqw;              /* 15px */
    padding-bottom: 1.6cqw;
}

.proj-cn {
    font-family: var(--font-serif);
    font-size: 5.33cqw;            /* 20px */
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--c-green);
}

.proj-en {
    font-family: "Times New Roman", var(--font-serif);
    font-size: 2.67cqw;            /* 10px */
    letter-spacing: 0.22em;
    color: var(--c-gray);
}

/* 套餐特性列表：绿色短横引导 */
.pkg-list {
    list-style: none;
    margin-top: 3.2cqw;
}

.pkg-list li {
    position: relative;
    padding-left: 4.8cqw;          /* 18px */
    font-family: var(--font-sans);
    font-size: 3.2cqw;             /* 12px */
    line-height: 1.85;
    color: var(--c-ink);
}

.pkg-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--c-green);
}

/* 价格区：右对齐价格梯 */
.price {
    margin-top: 3.6cqw;
    padding-top: 3.2cqw;
    border-top: 1px solid var(--c-line);
    text-align: right;
}

.price-was {
    font-family: var(--font-sans);
    font-size: 2.8cqw;             /* 10.5px */
    color: var(--c-gray);
}

.price-was s {
    text-decoration-color: rgba(114, 120, 115, 0.85);
}

.price-label {
    margin-top: 1.07cqw;
    font-size: 2.53cqw;            /* 9.5px */
    letter-spacing: 0.24em;
    color: var(--c-gray);
}

.price-now {
    font-family: "Times New Roman", var(--font-serif);
    font-size: 9.6cqw;             /* 36px */
    font-weight: 700;
    line-height: 1.15;
    color: var(--c-green);
}

.price-now .rmb {
    font-size: 0.52em;
    margin-right: 0.06em;
}

.price-extra {
    margin-top: 1.07cqw;
    font-size: 2.53cqw;            /* 9.5px */
    letter-spacing: 0.04em;
    color: var(--c-gray);
}

/* ============ 第 5 页：案例展示 ============ */
/* 原图统一 0.737 宽高比，按原比例设格，几乎无裁切 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.13cqw;                  /* 8px */
    margin-top: 5.6cqw;
}

.case-grid figure {
    aspect-ratio: 1280 / 1737;
    overflow: hidden;
    background: #EFEFED;
}

.case-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============ 第 5 页：到院信息 + 地图 ============ */
.visit {
    margin-top: 5.6cqw;
    padding-top: 5.6cqw;
    border-top: 1px solid var(--c-line);
}

.visit-row {
    display: flex;
    gap: 3.2cqw;                   /* 12px */
    padding: 1.87cqw 0;            /* 7px */
}

.visit-row + .visit-row {
    border-top: 1px solid var(--c-line);
}

.visit-k {
    flex: none;
    width: 14cqw;                  /* 52px */
    font-size: 2.67cqw;            /* 10px */
    letter-spacing: 0.2em;
    color: var(--c-gray);
    padding-top: 0.4cqw;
}

.visit-v {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 3.2cqw;             /* 12px */
    line-height: 1.7;
    color: var(--c-ink);
}

.visit-v a {
    color: var(--c-green);
    text-decoration: none;
}

.visit-v a:active {
    opacity: 0.75;
}

.visit-v em {
    font-style: normal;
    color: var(--c-gray);
    margin: 0 0.6cqw;
}

.visit-v small {
    font-size: 0.85em;
    color: var(--c-gray);
}

/* 高德地图展示区 */
.map-box {
    position: relative;
    margin-top: 3.6cqw;
    height: 80cqw;                 /* 300px */
    border: 1px solid var(--c-line);
    background: #FFFFFF;
    overflow: hidden;
}

.amap-map {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #E9EEE9;
}

.map-open {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 9.5cqw;
    text-decoration: none;
}

.map-open span {
    padding: 1.5cqw 2.4cqw;
    border-radius: 1px;
    background: rgba(36, 60, 52, .92);
    color: #FFFFFF;
    font-size: 2.67cqw;
    font-weight: 700;
    letter-spacing: .06em;
    box-shadow: 0 .8cqw 2.4cqw rgba(36, 60, 52, .22);
}

/* 地图底部名称/地址横条 */
.map-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 1.6cqw;
    padding: 1.6cqw 2.13cqw;
    background: rgba(255, 255, 255, 0.94);
    z-index: 3;
    pointer-events: none;
}

.map-cap .mc-n {
    font-family: var(--font-serif);
    font-size: 2.93cqw;            /* 11px */
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--c-green);
}

.map-cap .mc-a {
    font-size: 2.53cqw;            /* 9.5px */
    letter-spacing: 0.02em;
    color: var(--c-gray);
}

/* 实心主按钮（导航） */
.btn-solid {
    display: block;
    width: 100%;
    margin-top: 3.6cqw;
    padding: 2.4cqw 0;             /* 总高约 36px */
    background: var(--c-green);
    border: none;
    border-radius: 2px;
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 3.47cqw;            /* 13px */
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    cursor: pointer;
}

.btn-solid:focus-visible {
    outline: 2px solid var(--c-green);
    outline-offset: 3px;
}

.btn-solid:active {
    opacity: 0.92;
}

/* ============ 第 6 页：预约登记表单 ============ */
.frm {
    margin-top: 5.6cqw;
}

.f-row {
    margin-bottom: 4.8cqw;             /* 18px */
}

.f-label {
    display: block;
    font-size: 2.93cqw;                /* 11px */
    letter-spacing: 0.24em;
    color: var(--c-gray);
    margin-bottom: 1.6cqw;
}

/* 下划线式输入框（聚焦变主题绿） */
.f-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--c-line);
    background: transparent;
    border-radius: 0;
    padding: 1.6cqw 0;
    font-family: var(--font-sans);
    font-size: 4.27cqw;                /* 16px，避免 iOS 聚焦自动放大 */
    color: var(--c-ink);
    outline: none;
}

.f-input:focus {
    border-bottom-color: var(--c-green);
}

.f-input::placeholder {
    color: #B4BAB4;
}

/* 日期下拉：调起手机原生滚轮，右侧绿色箭头 */
.f-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23243C34' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5cqw center;
    background-size: 3.2cqw 2.07cqw;
}

/* 套餐二选一：细边框选项块，选中变绿 */
.f-plans {
    display: flex;
    gap: 2.13cqw;                      /* 8px */
}

.f-plan {
    flex: 1;
    position: relative;
}

.f-plan input {
    position: absolute;
    opacity: 0;
}

.f-plan span {
    display: block;
    text-align: center;
    padding: 2.4cqw 0.5cqw;
    border: 1px solid var(--c-line);
    border-radius: 2px;
    font-size: 2.93cqw;                /* 11px */
    letter-spacing: 0.04em;
    color: var(--c-ink);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.f-plan input:checked + span {
    border-color: var(--c-green);
    background: rgba(36, 60, 52, 0.12);
    color: var(--c-green);
}

.f-plan input:focus-visible + span {
    outline: 2px solid var(--c-green);
    outline-offset: 2px;
}

/* 行内错误提示 */
.f-err {
    display: none;
    margin-top: 1.2cqw;
    font-size: 2.53cqw;                /* 9.5px */
    letter-spacing: 0.05em;
    color: #B0492F;
}

.f-err.show {
    display: block;
}

.f-tip {
    margin-top: 1.2cqw;
    font-size: 2.4cqw;                 /* 9px */
    letter-spacing: 0.08em;
    color: var(--c-gray);
}

.f-submit {
    margin-top: 1.6cqw;
}

/* 提交成功提示（前端校验通过后展示） */
.f-ok {
    display: none;
    margin-top: 3.2cqw;
    text-align: center;
    font-size: 2.93cqw;                /* 11px */
    letter-spacing: 0.1em;
    color: var(--c-green);
}

.f-ok.show {
    display: block;
}

/* ============ 预约数据管理面板（index.html?admin=1 打开） ============ */
.admin-mask {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(36, 48, 44, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.33cqw;
}

.admin-mask[hidden] {
    display: none;
}

.admin-card {
    width: 100%;
    max-width: 430px;
    max-height: 86vh;
    overflow-y: auto;
    background: #FFFFFF;
    border-radius: 4px;
    padding: 5.33cqw;
}

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2.67cqw;
    border-bottom: 1px solid var(--c-line);
}

.admin-title {
    font-family: var(--font-serif);
    font-size: 4.27cqw;            /* 16px */
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--c-green);
}

.admin-close {
    border: none;
    background: none;
    font-size: 5.33cqw;            /* 20px */
    line-height: 1;
    color: var(--c-gray);
    cursor: pointer;
}

.admin-tools {
    display: flex;
    gap: 2.13cqw;
    align-items: center;
    margin: 3.2cqw 0;
}

.admin-sel {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--c-line);
    border-radius: 2px;
    background: #fff;
    padding: 1.6cqw;
    font-family: var(--font-sans);
    font-size: 3.2cqw;             /* 12px */
    color: var(--c-ink);
}

.admin-count {
    font-size: 2.67cqw;            /* 10px */
    color: var(--c-gray);
    white-space: nowrap;
}

.admin-table {
    border: 1px solid var(--c-line);
    background: #fff;
    overflow: auto;
    max-height: 38vh;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 2.67cqw;            /* 10px */
}

.admin-table th {
    background: rgba(36, 60, 52, 0.08);
    color: var(--c-green);
    font-weight: 600;
    padding: 1.6cqw;
    text-align: left;
    white-space: nowrap;
}

.admin-table td {
    padding: 1.6cqw;
    border-top: 1px solid var(--c-line);
    color: var(--c-ink);
    white-space: nowrap;
}

.admin-btns {
    display: flex;
    gap: 2.13cqw;
    margin-top: 3.2cqw;
}

.admin-btns button {
    flex: 1;
    border: none;
    border-radius: 2px;
    padding: 2.13cqw 0;
    font-family: var(--font-sans);
    font-size: 2.93cqw;            /* 11px */
    letter-spacing: 0.04em;
    cursor: pointer;
}

.ab-main {
    background: var(--c-green);
    color: #FFFFFF;
}

.ab-line {
    background: transparent;
    border: 1px solid var(--c-green) !important;
    color: var(--c-green);
}

.ab-danger {
    background: transparent;
    border: 1px solid #B0492F !important;
    color: #B0492F;
}

.admin-btns button:active {
    opacity: 0.85;
}

.admin-tip {
    margin-top: 2.67cqw;
    font-size: 2.4cqw;             /* 9px */
    line-height: 1.75;
    color: var(--c-gray);
}

/* ============ 内容页（第 2-6 页）深墨绿主题 ============
   底色与主按钮同色（#243C34），文字体系整体反转：
   强调色→近白微绿，正文→浅绿白，次要→灰绿，分隔线→半透明白 */
.page2 {
    --c-green: #EAF1EC;
    --c-ink: #DCE4DF;
    --c-gray: #9CABA1;
    --c-line: rgba(255, 255, 255, 0.16);
}

/* 实心按钮反转为白底绿字（导航 / 提交预约） */
.page2 .btn-solid {
    background: #FFFFFF;
    color: #243C34;
}

/* 套餐选项选中底色（深底版本） */
.page2 .f-plan input:checked + span {
    background: rgba(255, 255, 255, 0.14);
}

/* 日期下拉箭头换白色 */
.page2 .f-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23FFFFFF' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* 深底上的输入占位符与错误提示 */
.page2 .f-input::placeholder {
    color: #8C9A91;
}

.page2 .f-err {
    color: #E8A18C;
}

/* 地图块边框在深底上更清晰 */
.page2 .map-box {
    border-color: rgba(255, 255, 255, 0.28);
}
