@charset "utf-8";
/* CSS Document */

 * {    text-decoration: none;
            margin: 0;
            padding: 0;
            box-sizing: border-box;            
        }

        body {
            background-color: #fff;
            scroll-behavior: smooth;
        }     
		
		.mbx {width:78%;
    margin:5vw auto 0px auto;
    line-height: 40px;
    color: #666;
    white-space: nowrap;
}

.mbx span {
    font-size: 14px;
    padding-left: 5px;
    color: #4671fb;
}

.mbx a {
    color: #4671fb;
}   
.schedule-btn{margin: 2vw 0 1vw 0;
background: linear-gradient(135deg, #2eb4fc, #1366f7);
    padding: 15px 80px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 500;
    border: none;
    transition: background 0.3s ease;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 10px;}
.schedule-btn a{color: #fff;}

/* ===== 卡片容器 ===== */
        .appointment-card {
            max-width: 78%;
            width: 100%;                       
            border-radius: 2.5rem;
            padding: 0rem;           
            border: 0px solid rgba(255, 255, 255, 0.6);
            transition: all 0.2s ease;
			margin:1vw auto 5vw auto;
        }

        /* ===== 标题区 ===== */
        .header {border-bottom: 1px dashed #ddd;padding-bottom:1vw;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .header-icon {
            background: #1a5c8c;
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 8px 16px -6px rgba(26, 92, 140, 0.3);
        }

        .header h1 {
            font-size: 26px;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: #333;
            margin-left: 0.2rem;
        }

        .header .subtitle {
            font-size: 0.95rem;
            color: #fff;
            background: linear-gradient(135deg, #2eb4fc, #1366f7);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            font-weight: 500;
            margin-left: auto;
            white-space: nowrap;
            border: 1px solid rgba(26, 92, 140, 0.12);
        }

        /* ===== 表格容器 ===== */
        .table-wrapper {
            overflow-x: auto;
            border-radius: 20px;
            background: #ffffff;
            box-shadow: 0 6px 20px rgba(0, 20, 30, 0.06);
            border: 1px solid rgba(200, 215, 230, 0.4);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.98rem;
            min-width: 680px;
            background: #ffffff;
        }

        /* ===== 表头 ===== */
        thead {
            background: linear-gradient(135deg, #2eb4fc, #1366f7);
            border-bottom: 0px solid #d4e0ec;
        }

        thead th {
            padding: 1.2rem 1.2rem 1rem;
            text-align: left;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            color: #fff;
            border-right: 1px solid #e2ecf5;
        }

        thead th:last-child {
            border-right: none;
        }

        /* ===== 表格行 & 单元格 ===== */
        tbody tr {
            transition: background 0.15s ease;
            border-bottom: 1px solid #eef4f9;
        }

        tbody tr:last-child {
            border-bottom: none;
        }

        tbody tr:hover {
            background: #f8fcff;
        }

        tbody td {
            padding: 1.25rem 1.2rem;
            vertical-align: middle;
            border-right: 1px solid #eef4f9;
            color: #1d384b;
            line-height: 1.5;
        }

        tbody td:last-child {
            border-right: none;
        }

        /* ===== 方式列 (带图标) ===== */
        .method-cell {font-size: .95rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 600;
            color: #0b2b40;
        }

        .method-cell i {
            font-size: .75rem;
            width: 1.8rem;
            height: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #2eb4fc, #1366f7);
            border-radius: 50%;
            color: #fff;
            flex-shrink: 0;
        }
        /* ===== 时间 & 地点 ===== */
        .time-detail {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
        }

        .time-detail .time {font-size: 0.95rem;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .time-detail .time i {
            font-size: 0.85rem;
            color: #3f7ea3;
            width: 1.1rem;
        }

        .time-detail .location {
            font-size: .95rem;
            color: #555;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-top: 0.1rem;
        }

        .time-detail .location i {
            font-size: 0.8rem;
            color: #5d7f98;
            width: 1.1rem;
        }

        /* ===== 标签 / 小标记 ===== */
        .badge {
            display: inline-block;
            background: #e7f0f9;
            color: #1a5c8c;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.2rem 0.7rem;
            border-radius: 40px;
            letter-spacing: 0.02em;
            margin-left: 0.3rem;
            border: 0px solid rgba(26, 92, 140, 0.1);
        }

        .badge-green {
            background: #f7e7da;
            color: #e37318;
            
        }

        /* ===== 挂号须知 (统一) ===== */
        .notice-section {
            margin-top: 2.5rem;            
            border-left: 0px solid #1a5c8c;
            box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.02);
            transition: background 0.2s;
        }    

        .notice-header {border-bottom: 1px dashed #ddd;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-weight: 700;
            font-size: 26px;
            color: #333;
            margin-bottom: 1.7rem;padding-bottom: 1rem;}

        .notice-header i {
            font-size: 1.3rem;
            color: #e92323;
        }

        .notice-content {
           display: flex;
    flex-wrap: nowrap;
    gap: 0.8rem 2rem;
    color: #777;
    font-size: .85rem;
    line-height: 1.6;
    flex-direction: column;
        }

        .notice-content li {
            list-style: none;
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
        }

        .notice-content li i {
            color: #333;
            font-size: 0.8rem;
            margin-top: 0.3rem;
            opacity: 0.8;
        }

        .notice-content .highlight {
            font-weight: 600;
            color: #777;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .appointment-card {
                padding: 1.8rem 1.2rem 2rem;
                border-radius: 1.8rem;
            }

            .header h1 {
                font-size: 1.6rem;
            }
            .header .subtitle {
                font-size: 0.8rem;
                margin-left: 0;
                width: 100%;
                white-space: normal;
                text-align: center;
                margin-top: 0.2rem;
            }

            table {
                min-width: 560px;
                font-size: 0.9rem;
            }

            thead th,
            tbody td {
                padding: 0.9rem 0.8rem;
            }

            .method-cell i {
                width: 1.8rem;
                height: 1.8rem;
                font-size: 1rem;
            }

            .notice-section {
                padding: 1.2rem 1.2rem;
            }
            .notice-content {
                flex-direction: column;
                gap: 0.4rem;
            }
        }

        @media (max-width: 480px) {
            .appointment-card {
                padding: 1.2rem 0.8rem 1.5rem;
            }
            .header .header-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .header h1 {
                font-size: 1.3rem;
            }
            table {
                min-width: 460px;
                font-size: 0.82rem;
            }
            .method-cell {
                gap: 0.4rem;
                flex-wrap: wrap;
            }
            .method-cell i {
                width: 1.6rem;
                height: 1.6rem;
                font-size: 0.9rem;
            }
            .badge {
                font-size: 0.6rem;
                padding: 0.1rem 0.5rem;
            }
            .time-detail .location {
                font-size: 0.8rem;
            }
        }
        

    /* ============================================================
       移动端完美适配样式（仅针对 .mbx / .appointment-card 内容区）
       不改变任何电脑端原有样式
       所有字号使用 vw 单位，最小 3vw
       ============================================================ */

    /* ---------- 平板 / 大屏手机 (≤768px) ---------- */
    @media screen and (max-width: 768px) {

        /* ----- 面包屑 ----- */
        .mbx {
            width: 92% !important;
            margin: 4vw auto 0px auto !important;
            line-height: 6vw !important;
            white-space: normal !important;
            font-size: 3.2vw !important;
        }
        .mbx span {
            font-size: 3.2vw !important;
            padding-left: 1.2vw !important;
        }
        .mbx a {
            font-size: 3.2vw !important;
        }

        /* ----- 预约卡片容器 ----- */
        .appointment-card {
            max-width: 96% !important;
            width: 96% !important;
            margin: 2vw auto 6vw auto !important;
            padding: 0 !important;
            border-radius: 4vw !important;
        }

        /* ----- 头部 ----- */
        .header {
            padding-bottom: 2vw !important;
            margin-bottom: 2.5vw !important;
            gap: 1.2vw !important;
            flex-wrap: wrap !important;
            border-bottom: 1px dashed #ddd !important;
        }
        .header-icon {
            width: 9vw !important;
            height: 9vw !important;
            border-radius: 3vw !important;
            font-size: 4.5vw !important;
        }
        .header h1 {
            font-size: 5.5vw !important;
            margin-left: 0.5vw !important;
            letter-spacing: -0.02em !important;
        }
        .header .subtitle {
            font-size: 3vw !important;
            padding: 0.6vw 2.5vw !important;
            white-space: nowrap !important;
            margin-left: auto !important;
            border-radius: 8vw !important;
        }

        /* ----- 表格容器 ----- */
        .table-wrapper {
            border-radius: 3vw !important;
            border: 1px solid rgba(200, 215, 230, 0.4) !important;
            box-shadow: 0 1.2vw 4vw rgba(0, 20, 30, 0.06) !important;
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch !important;
        }

        /* ----- 表格 ----- */
        table {
            min-width: 92vw !important;
            font-size: 3.2vw !important;
            background: #ffffff !important;
        }

        /* 表头 */
        thead {
            background: linear-gradient(135deg, #2eb4fc, #1366f7) !important;
        }
        thead th {
            padding: 2.2vw 2vw 1.8vw !important;
            font-size: 3.2vw !important;
            font-weight: 600 !important;
            letter-spacing: 0.03em !important;
            color: #fff !important;
            border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
        }
        thead th:last-child {
            border-right: none !important;
        }

        /* 表体 */
        tbody tr {
            border-bottom: 1px solid #eef4f9 !important;
        }
        tbody tr:last-child {
            border-bottom: none !important;
        }
        tbody td {
            padding: 2vw 1.8vw !important;
            font-size: 3vw !important;
            border-right: 1px solid #eef4f9 !important;
            color: #1d384b !important;
            line-height: 1.5 !important;
            vertical-align: middle !important;
        }
        tbody td:last-child {
            border-right: none !important;
        }

        /* ----- 方式列 (图标+文字) ----- */
        .method-cell {
            font-size: 3vw !important;
            gap: 1.2vw !important;
            font-weight: 600 !important;
            color: #0b2b40 !important;
            display: flex !important;
            align-items: center !important;
        }
        .method-cell i {
            font-size: 3.2vw !important;
            width: 5.5vw !important;
            height: 5.5vw !important;
            border-radius: 50% !important;
            flex-shrink: 0 !important;
            background: linear-gradient(135deg, #2eb4fc, #1366f7) !important;
            color: #fff !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        /* ----- 时间 & 地点 ----- */
        .time-detail {
            display: flex !important;
            flex-direction: column !important;
            gap: 0.4vw !important;
        }
        .time-detail .time {
            font-size: 3vw !important;
            font-weight: 500 !important;
            color: #333 !important;
            display: flex !important;
            align-items: center !important;
            gap: 0.8vw !important;
        }
        .time-detail .time i {
            font-size: 2.8vw !important;
            color: #3f7ea3 !important;
            width: 3.5vw !important;
        }
        .time-detail .location {
            font-size: 3vw !important;
            color: #555 !important;
            display: flex !important;
            align-items: center !important;
            gap: 0.8vw !important;
            margin-top: 0.2vw !important;
        }
        .time-detail .location i {
            font-size: 2.8vw !important;
            color: #5d7f98 !important;
            width: 3.5vw !important;
        }

        /* ----- 状态标签 ----- */
        .badge {
            font-size: 2.8vw !important;
            /* 不小于 3vw 但在小屏上 2.8vw 可能略小，用 clamp 兜底 */
            font-size: clamp(3vw, 2.8vw, 3.2vw) !important;
            padding: 0.4vw 1.8vw !important;
            border-radius: 8vw !important;
            font-weight: 600 !important;
            letter-spacing: 0.02em !important;
            display: inline-block !important;
            background: #e7f0f9 !important;
            color: #1a5c8c !important;
            border: 0px solid rgba(26, 92, 140, 0.1) !important;
        }
        .badge-green {
            background: #f7e7da !important;
            color: #e37318 !important;
        }
        .badge i {
            font-size: 2.6vw !important;
            margin-right: 0.4vw !important;
        }

        /* ----- 挂号须知 (统一) ----- */
        .notice-section {
            margin-top: 4vw !important;
            padding: 0 !important;
            border-left: 0px solid #1a5c8c !important;
            box-shadow: inset 0 0.2vw 0.8vw rgba(0, 0, 0, 0.02) !important;
        }
        .notice-header {
            border-bottom: 1px dashed #ddd !important;
            padding-bottom: 1.8vw !important;
            margin-bottom: 2.5vw !important;
            display: flex !important;
            align-items: center !important;
            gap: 1.2vw !important;
            font-weight: 700 !important;
            font-size: 4.8vw !important;
            color: #333 !important;
        }
        .notice-header i {
            font-size: 4.5vw !important;
            color: #e92323 !important;
        }
        .notice-header span {
            font-size: 4.8vw !important;
        }
        .notice-header span:last-child {
            font-size: 3vw !important;
            font-weight: 400 !important;
            color: #666 !important;
            margin-left: 1vw !important;
        }

        .notice-content {
            display: flex !important;
            flex-direction: column !important;
            gap: 1.2vw !important;
            color: #777 !important;
            font-size: 3vw !important;
            line-height: 1.6 !important;
        }
        .notice-content li {
            list-style: none !important;
            display: flex !important;
            align-items: flex-start !important;
            gap: 1.2vw !important;
            font-size: 3vw !important;
        }
        .notice-content li i {
            color: #333 !important;
            font-size: 3vw !important;
            margin-top: 0.4vw !important;
            opacity: 0.8 !important;
            width: 4vw !important;
            flex-shrink: 0 !important;
        }
        .notice-content li span {
            font-size: 3vw !important;
        }
        .notice-content .highlight {
            font-weight: 600 !important;
            color: #777 !important;
            font-size: 3vw !important;
        }
        .notice-content strong {
            font-size: 3vw !important;
            font-weight: 700 !important;
            color: #333 !important;
        }

        /* ----- 表格中 "可用" 标签文字大小微调 ----- */
        tbody td .badge {
            font-size: clamp(2.8vw, 3vw, 3.2vw) !important;
        }

        /* ----- 确保所有文本不小于 3vw (用 clamp 兜底) ----- */
        .mbx,
        .mbx span,
        .mbx a,
        .header h1,
        .header .subtitle,
        .method-cell,
        .time-detail .time,
        .time-detail .location,
        .notice-header span,
        .notice-content li,
        .notice-content li span,
        .notice-content .highlight,
        .notice-content strong,
        thead th,
        tbody td {
            font-size: clamp(3vw, var(--fs-fallback, 3vw), 6vw) !important;
        }

        /* 针对特定元素微调 */
        .header h1 {
            font-size: clamp(4.5vw, 5.5vw, 6.5vw) !important;
        }
        .notice-header {
            font-size: clamp(4vw, 4.8vw, 5.5vw) !important;
        }
        .notice-header i {
            font-size: clamp(4vw, 4.5vw, 5vw) !important;
        }
    }

    /* ---------- 小屏手机 (≤480px) ---------- */
    @media screen and (max-width: 480px) {

        /* 面包屑 */
        .mbx {
            width: 90% !important;
            margin: 3vw auto 0px auto !important;
            line-height: 7vw !important;
            font-size: 3.2vw !important;
        }
        .mbx span {
            font-size: 3.2vw !important;
        }
        .mbx a {
            font-size: 3.2vw !important;
        }

        /* 卡片 */
        .appointment-card {
            max-width: 96% !important;
            width: 98% !important;
            padding: 0 !important;
            margin: 1.5vw auto 5vw auto !important;
            border-radius: 4.5vw !important;
        }

        /* 头部 */
        .header {
            padding-bottom: 2.2vw !important;
            margin-bottom: 2.8vw !important;
            gap: 1.5vw !important;
        }
        .header-icon {
            width: 10vw !important;
            height: 10vw !important;
            border-radius: 3.5vw !important;
            font-size: 5vw !important;
        }
        .header h1 {
            font-size: 5vw !important;
        }
        .header .subtitle {
            font-size: 3vw !important;
            padding: 0.8vw 3vw !important;
            white-space: nowrap !important;
        }

        /* 表格 */
        table {
            min-width: 96vw !important;
            font-size: 3.2vw !important;
        }
        thead th {
            padding: 2.5vw 2vw 2vw !important;
            font-size: 3.2vw !important;
        }
        tbody td {
            padding: 2.2vw 1.8vw !important;
            font-size: 3vw !important;
        }

        /* 方式列 */
        .method-cell {
            font-size: 3vw !important;
            gap: 1.5vw !important;
        }
        .method-cell i {
            font-size: 3.5vw !important;
            width: 6vw !important;
            height: 6vw !important;
        }

        /* 时间 & 地点 */
        .time-detail .time {
            font-size: 3vw !important;
            gap: 1vw !important;
        }
        .time-detail .time i {
            font-size: 3vw !important;
            width: 4vw !important;
        }
        .time-detail .location {
            font-size: 3vw !important;
            gap: 1vw !important;
        }
        .time-detail .location i {
            font-size: 3vw !important;
            width: 4vw !important;
        }

        /* 标签 */
        .badge {
            font-size: clamp(3vw, 3vw, 3.2vw) !important;
            padding: 0.5vw 2vw !important;
        }
        .badge i {
            font-size: 2.8vw !important;
        }

        /* 挂号须知 */
        .notice-section {
            margin-top: 4.5vw !important;
        }
        .notice-header {
            font-size: 4.5vw !important;
            padding-bottom: 2vw !important;
            margin-bottom: 2.8vw !important;
            gap: 1.5vw !important;
        }
        .notice-header i {
            font-size: 4.2vw !important;
        }
        .notice-header span {
            font-size: 4.5vw !important;
        }
        .notice-header span:last-child {
            font-size: 3vw !important;
        }

        .notice-content {
            font-size: 3vw !important;
            gap: 1.5vw !important;
        }
        .notice-content li {
            font-size: 3vw !important;
            gap: 1.5vw !important;
        }
        .notice-content li i {
            font-size: 3vw !important;
            width: 4.5vw !important;
        }
        .notice-content li span {
            font-size: 3vw !important;
        }
        .notice-content .highlight {
            font-size: 3vw !important;
        }
        .notice-content strong {
            font-size: 3vw !important;
        }

        /* 确保所有文本不小于 3vw */
        .mbx,
        .mbx span,
        .mbx a,
        .header h1,
        .header .subtitle,
        .method-cell,
        .time-detail .time,
        .time-detail .location,
        .notice-header span,
        .notice-content li,
        .notice-content li span,
        .notice-content .highlight,
        .notice-content strong,
        thead th,
        tbody td {
            font-size: clamp(3vw, var(--fs-fallback, 3vw), 6vw) !important;
        }

        .header h1 {
            font-size: clamp(4.5vw, 5vw, 6vw) !important;
        }
        .notice-header {
            font-size: clamp(4vw, 4.5vw, 5vw) !important;
        }
    }

    /* ---------- 极端小屏 (≤360px) 额外微调 ---------- */
    @media screen and (max-width: 360px) {
        .header h1 {
            font-size: 4.8vw !important;
        }
        .method-cell {
            font-size: 3vw !important;
            gap: 1.2vw !important;
            flex-wrap: wrap !important;
        }
        .method-cell i {
            width: 6.5vw !important;
            height: 6.5vw !important;
            font-size: 3.5vw !important;
        }
        tbody td {
            padding: 2vw 1.2vw !important;
        }
        thead th {
            padding: 2.2vw 1.2vw 1.8vw !important;
        }
        .badge {
            font-size: 3vw !important;
            padding: 0.3vw 1.5vw !important;
        }
        .time-detail .time,
        .time-detail .location {
            font-size: 3vw !important;
        }
        .notice-header {
            font-size: 4.2vw !important;
        }
        .notice-content {
            font-size: 3vw !important;
        }
        .notice-content li {
            font-size: 3vw !important;
        }
        .notice-content li span {
            font-size: 3vw !important;
        }
        .notice-content .highlight {
            font-size: 3vw !important;
        }
        .notice-content strong {
            font-size: 3vw !important;
        }
    }
