@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;
}   
/* ===== 卡片容器 ===== */
        .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;
            }
        }