

.t_controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.t_filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}



.t_filter-btn:hover {
    background: #f5f5f5;
}



 .t_search-container {
        padding: 15px;
        background-color: #f5f5f5;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .t_search-header {
        font-size: 18px;
        font-weight: bold;
        color: #333;
    }

    .t_search-content {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .t_search-box {
        flex: 1;
        min-width: 0;
    }

    .t_search-box input {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 14px;
        box-sizing: border-box;
    }

    .t_filter-btn {
        padding: 10px 25px;
        background-color: #1890ff;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .t_filter-btn:hover {
        background-color: #40a9ff;
    }

    /* 手机端样式 (小于768px) */
    @media screen and (max-width: 768px) {
        .t_search-content {
            flex-direction: column;
            align-items: stretch;
        }

        .t_search-box {
            width: 100%;
            margin-bottom: 10px;
        }

        .t_search-box:last-of-type {
            margin-bottom: 0;
        }

        .t_filter-btn {
            width: 100%;
            margin-top: 10px;
        }
    }



        .t_date-info {
            background-color: rgba(255, 255, 255, 0.15);
            padding: 12px 20px;
            border-radius: 8px;
            text-align: center;
        }

        .t_date-info .t_today {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .t_date-info .t_tomorrow {
            font-size: 14px;
            opacity: 0.9;
        }

        .t_controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }

      
        .t_search-box input {
            width: 100%;
            padding: 12px 10px 12px 20px;
            border: 0px solid var(--t-border-color);
            border-radius: 4px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .t_search-box input:focus {
            outline: none;
            border-color: var(--t-primary-color);
            box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
        }

        .t_search-box i {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--t-text-secondary);
            font-size: 18px;
        }

        .t_filter-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .t_filter-btn {
            padding: 10px 22px;
            background-color: white;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
			font-size: 18px
        }

        .t_filter-btn:hover {
            background-color: var(--t-light-bg);
            border-color: var(--t-primary-color);
        }

        .t_filter-btn.t_active {
            background:linear-gradient(90deg, rgba(5, 150, 76, 1), rgba(57, 190, 39, 1));
            color: white;
            border: none;
        }
		
		.t_ks-btn01 {
            background:#528eb5;
            color: white;
            border: none;

        }
		.t_ks-btn02 {
            background:#55a5aa;
            color: white;
            border: none;
        }
		.t_ks-btn03 {
            background:#e5ca8f;
            color: white;
            border: none;
        }

 .t_ks-btn01:hover,.t_ks-btn02:hover,.t_ks-btn03:hover {
            background-color:#009D4D;
            border-color:#009D4D;
        }

		


        .t_week-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            padding: 15px 25px;
            border-radius: 10px;
            margin-bottom: 25px;
            box-shadow: var(--t-card-shadow);
        }

        .t_nav-btn {
            background-color: var(--t-light-bg);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--t-text-primary);
            font-size: 18px;
            transition: all 0.2s;
        }

        .t_nav-btn:hover {
            background-color: var(--t-primary-color);
            color: white;
        }

        .t_current-week {
            font-size: 18px;
            font-weight: 600;
            color: var(--t-text-primary);
        }

        .t_schedule-container {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--t-card-shadow);
            margin-bottom: 30px;
            transition: transform 0.3s, box-shadow 0.3s;
			font-size:16px;
        }

        .t_schedule-container:hover {
            box-shadow: var(--t-card-shadow-hover);
            transform: translateY(-2px);
        }

        .t_schedule-header {
            background-color: var(--t-light-bg);
            padding: 20px 25px;
            border-bottom: 1px solid var(--t-border-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .t_schedule-header h3 {
            font-size: 20px;
            font-weight: 600;
            color:#009D4D;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .t_schedule-header i {
            font-size: 20px;
            transition: transform 0.3s;
        }

        .t_schedule-header.t_collapsed i {
            transform: rotate(-90deg);
        }

        .t_schedule-content {
            overflow-x: auto;
        }

        .t_schedule-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1200px;
        }

        .t_schedule-table th {
            background-color: var(--t-light-bg);
            padding: 18px 15px;
            text-align: center;
            font-weight: 600;
            color: var(--t-text-primary);
            border-bottom: 1px solid var(--t-border-color);
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .t_schedule-table th:first-child {
            text-align: left;
            padding-left: 25px;
        }

        .t_schedule-table td {
            padding: 16px 15px;
            text-align: center;
            border-bottom: 1px solid var(--t-border-color);
            transition: background-color 0.2s;
        }

        .t_schedule-table td:first-child {
            text-align: left;
            padding-left: 25px;
            font-weight: 500;
            color: var(--t-text-secondary);
            width: 120px;
        }

        .t_schedule-table tr:last-child td {
            border-bottom: none;
        }

        .t_schedule-table tr:hover td {
            background-color: rgba(26, 115, 232, 0.05);
        }

        .t_today-cell {
            background-color: rgba(26, 115, 232, 0.08) !important;
            position: relative;
        }

        /*.t_today-cell::after {
            content: "今天";
            position: absolute;
            top: 4px;
            right: 4px;
            font-size: 10px;
            background-color: var(--t-primary-color);
            color: white;
            padding: 2px 6px;
            border-radius: 4px;
        }
*/
        .t_doctor-link {
            color:#009D4D;
            text-decoration: none;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.2s;
            display: inline-block;
            margin: 2px;
        }

        .t_doctor-link:hover {
            background-color: rgba(26, 115, 232, 0.1);
            text-decoration: underline;
			 border-radius:10px;
        }

        .t_no-doctor {
            color: var(--t-text-secondary);
            font-style: italic;
        }

        .t_multiple-doctors {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: center;
        }

        .t_footer {
            text-align: center;
            padding: 25px;
            color: var(--t-text-secondary);
            font-size: 14px;
            border-top: 1px solid var(--t-border-color);
            margin-top: 40px;
        }

        .t_footer a {
            color: var(--t-primary-color);
            text-decoration: none;
        }

        .t_footer a:hover {
            text-decoration: underline;
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .t_header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .t_date-info {
                align-self: flex-start;
            }
            
            .t_controls {
                flex-direction: column;
                align-items: stretch;
            }
            
            .t_search-box {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            
            .t_header h1 {
                font-size: 24px;
            }
            
            .t_schedule-header h3 {
                font-size: 18px;
            }
            
            .t_filter-buttons {
                justify-content: center;
            }
            
            .t_week-navigation {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }
        }
		 @media (max-width: 480px) {
           
            .inputs-row {
                flex-direction: column;
                gap: 15px;
            }
            
            .t_search-box {
                width: 100%;
            }
            
            .t_filter-btn {
                max-width: 100%;
            }
        }

        /* 打印样式 */
        @media print {
            .t_controls, .t_week-navigation, .t_footer {
                display: none;
            }
            
            .t_schedule-container {
                box-shadow: none;
                border: 1px solid #ddd;
                break-inside: avoid;
            }
        }
		
 /* 标题 */
        .s_sj_main-title {
          
            color: #454545;
            padding: 22px 20px;
            font-size: 26px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 0;
    
        }
        
        /* 医院信息 */
        .s_sj_hospital-info {
            display: flex;
            justify-content: space-between;
            padding: 18px 20px;
            background-color: #f8fbfe;
            border-bottom: 1px solid #e8eff7;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .s_sj_hospital-info p {
            font-size: 16px;
            color: #4a6fa9;
            font-weight: 500;
            margin: 0;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .s_sj_hospital-info i {
            margin-right: 8px;
            min-width: 16px;
        }
        
        /* 表格区域 */
        .s_sj_table-wrapper {
            padding: 0 20px;
            margin-top: 15px;
        }
        
        /* 科室标题 */
        .s_sj_department-title {
            background: linear-gradient(90deg, rgba(5, 150, 76, 1), rgba(57, 190, 39, 1));
            border: 1px solid #e1ebf7;
            margin-bottom: 0;
            border-bottom: none;
            border-radius: 8px 8px 0 0;
            width:180px;
			text-align:center;
            margin-top: 30px;
        }
        
        .s_sj_department-title:first-of-type {
            margin-top: 0;
        }
        
        .s_sj_department-name {
            padding: 10px 20px;
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        /* 专家表格 */
        .s_sj_expert-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 0;
            border-radius: 0 0 8px 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
            border: 1px solid #e1ebf7;
            background-color: white;
        }
        
        .s_sj_expert-table thead {
            background-color: #f0f9f5;
            color: #454545;
            border-bottom: 2px solid #e1ebf7;
        }
        
        .s_sj_expert-table th {
            padding: 14px 12px;
            text-align: left;
            font-weight: 600;
            font-size: 17px;
        }
        
        .s_sj_expert-table td {
            padding: 18px 12px;
            border-bottom: 1px solid #f0f6ff;
            vertical-align: top;
        }
        
        .s_sj_expert-table tbody tr:last-child td {
            border-bottom: none;
        }
        
        /* 专家信息 */
        .s_sj_expert-header {
            padding-bottom: 8px;
        }
        
        .s_sj_expert-name {
            color: #454545;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            display: inline-block;
            margin-bottom: 8px;
            transition: color 0.2s;
        }
        
        .s_sj_expert-name:hover {
            color: #3a7bd5;
            text-decoration: underline;
        }
        
        /* 预约按钮 */
        .s_sj_appointment-btn {
            background-color: #009D4D;
            color: #fff !important;
            padding: 9px 16px;
            border-radius: 6px;
            font-size: 14px;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            width: 100%;
            max-width: 150px;
            text-align: center;
        }
        
        .s_sj_appointment-btn:hover {
            background-color: #07af62;
            color: white !important;
            text-decoration: none !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 157, 77, 0.2);
        }
        
        /* 专家详情 */
        .s_sj_expert-details {
            padding-top: 10px;
        }
        
        .s_sj_expert-content {
            font-size: 16px;
            color: #555;
        }
        
        .s_sj_fee {
            color: #454545;
            font-weight: 600;
            font-size: 17px;
        }
        
        /* 专业特长区域 */
        .s_sj_specialty-section {
            background-color: #f0f9f5;
            padding: 16px;
            border-radius: 6px;
            margin-bottom: 15px;
            border-left: 4px solid #009D4D;
        }
        
        .s_sj_specialty-title {
            font-size: 18px;
            font-weight: 600;
            color: #454545;
            margin-bottom: 10px;
        }
        
        .s_sj_specialty-desc {
            line-height: 1.7;
            color: #666;
            font-size: 15px;
            text-align: justify;
            font-weight: normal;
        }
        
        /* 注意事项 */
        .s_sj_note {
            background-color: #fef9e7;
            border-left: 4px solid #f1c40f;
            padding: 18px 20px;
            margin: 30px 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .s_sj_note p {
            color: #7d6608;
            font-size: 15px;
            margin: 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .s_sj_note i {
            margin-top: 2px;
            flex-shrink: 0;
        }
        
        /* 表格行交替背景色 */
        .s_sj_expert-table tbody tr:nth-child(even) {
            background-color: #fbfdff;
        }
        
        /* ==================== 响应式设计 ==================== */
        
        /* 平板设备 (768px - 1024px) */
        @media (max-width: 1024px) {
            .s_sj_body {
                padding: 12px;
            }
            
            .s_sj_main-title {
                font-size: 24px;
                padding: 20px 15px;
            }
            
            .s_sj_hospital-info {
                flex-direction: column;
                gap: 12px;
                padding: 15px;
            }
            
            .s_sj_hospital-info p {
                white-space: normal;
                word-break: break-word;
            }
            
            .s_sj_table-wrapper {
                padding: 0 15px;
            }
            
            .s_sj_expert-table th,
            .s_sj_expert-table td {
                padding: 15px 10px;
            }
        }
        
        /* 手机设备 (小于768px) */
        @media (max-width: 767px) {
            .s_sj_body {
                padding: 10px;
                font-size: 15px;
            }
            
            .s_sj_container {
                border-radius: 10px;
                padding-bottom: 20px;
            }
            
            .s_sj_main-title {
                font-size: 22px;
                padding: 18px 12px;
                line-height: 1.4;
            }
            
            .s_sj_hospital-info {
                padding: 12px 15px;
                gap: 10px;
            }
            
            .s_sj_hospital-info p {
                font-size: 15px;
            }
            
            .s_sj_department-name {
                font-size: 18px;
                padding: 12px 15px;
            }
            
            .s_sj_table-wrapper {
                padding: 0 12px;
                margin-top: 10px;
            }
            
            /* 将表格转换为卡片式布局 */
            .s_sj_expert-table {
                display: block;
                border-radius: 8px;
                margin-bottom: 25px;
            }
            
            .s_sj_expert-table thead {
                display: none;
            }
            
            .s_sj_expert-table tbody,
            .s_sj_expert-table tr,
            .s_sj_expert-table td {
                display: block;
                width: 100%;
            }
            
            .s_sj_expert-table tr {
                margin-bottom: 0;
                border-bottom: 1px solid #e1ebf7;
                padding: 15px;
            }
            
            .s_sj_expert-table td {
                padding: 10px 0;
                border-bottom:1px #f0f0f0 solid;
            }
            
            .s_sj_expert-table tr:last-child {
                border-bottom: none;
            }
            
            /* 为每个单元格添加标签 */
            .s_sj_expert-table td:before {
                content: attr(data-label);
                display: block;
                font-weight: 600;
                color: #555;
                margin-bottom: 5px;
                font-size: 15px;
				font-size:18px;
            }
            
            /* 设置数据标签 */
            .s_sj_expert-header:before {
                content: "专家";
            }
            
            .s_sj_expert-content:before {
                content: "职称";
            }
            
            .s_sj_expert-content:nth-of-type(3):before {
                content: "出诊时间";
            }
            
            .s_sj_fee:before {
                content: "挂号费";
            }
            
            /* 调整专家信息显示 */
            .s_sj_expert-header {
                display: flex;
                flex-direction: column;
                gap: 10px;
            }
            
            .s_sj_expert-name {
                font-size: 17px;
                margin-bottom: 0;
            }
            
            .s_sj_appointment-btn {
                max-width: 100%;
                padding: 10px;
                font-size: 15px;
				width:120px;
            }
            
            .s_sj_expert-content {
                font-size: 15px;
            }
            
            .s_sj_fee {
                font-size: 16px;
            }
            
            /* 专业特长区域 */
            .s_sj_specialty-section {
                padding: 14px;
                margin-top: 10px;
            }
            
            .s_sj_specialty-title {
                font-size: 17px;
            }
            
            .s_sj_specialty-desc {
                font-size: 14px;
                line-height: 1.6;
            }
            
            .s_sj_note {
                margin: 25px 12px 0;
                padding: 15px;
            }
            
            .s_sj_note p {
                font-size: 14px;
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .s_sj_note i {
                align-self: flex-start;
            }
        }
        
        /* 小屏幕手机 (小于480px) */
        @media (max-width: 479px) {
            .s_sj_main-title {
                font-size: 20px;
                padding: 15px 10px;
            }
            
            .s_sj_hospital-info {
                padding: 10px 12px;
            }
            
            .s_sj_hospital-info p {
                font-size: 14px;
            }
            
            .s_sj_department-name {
                font-size: 17px;
                padding: 10px 12px;
                gap: 5px;
            }
            
            .s_sj_expert-table tr {
                padding: 12px;
            }
            
            .s_sj_expert-name {
                font-size: 16px;
            }
            
            .s_sj_appointment-btn {
                padding: 9px;
                font-size: 14px;
            }
            
            .s_sj_expert-content,
            .s_sj_specialty-desc,
            .s_sj_note p {
                font-size: 14px;
            }
            
            .s_sj_fee {
                font-size: 15px;
            }
            
            .s_sj_specialty-title {
                font-size: 16px;
            }
        }
        
        /* 超小屏幕手机 (小于360px) */
        @media (max-width: 359px) {
            .s_sj_body {
                padding: 8px;
            }
            
            .s_sj_main-title {
                font-size: 18px;
            }
            
            .s_sj_expert-name {
                font-size: 15px;
            }
            
            .s_sj_appointment-btn {
                padding: 8px;
                font-size: 13px;
            }
            
            .s_sj_expert-content,
            .s_sj_specialty-desc,
            .s_sj_note p {
                font-size: 13px;
            }
            
            .s_sj_fee {
                font-size: 14px;
            }
            
            .s_sj_specialty-title {
                font-size: 15px;
            }
        }
        
        /* 横屏模式优化 */
        @media (max-height: 500px) and (orientation: landscape) {
            .s_sj_container {
                max-height: 90vh;
                overflow-y: auto;
            }
            
            .s_sj_main-title {
                padding: 15px 20px;
                font-size: 22px;
            }
        }
        
        /* 打印样式 */
        @media print {
            .s_sj_body {
                background-color: white;
                padding: 0;
                font-size: 14px;
            }
            
            .s_sj_container {
                box-shadow: none;
                max-width: 100%;
                border: none;
                padding-bottom: 20px;
            }
            
            .s_sj_appointment-btn {
                background-color: transparent;
                color: #454545 !important;
                padding: 0;
                border: none;
                max-width: none;
            }
            
            .s_sj_appointment-btn:hover {
                transform: none;
                box-shadow: none;
            }
            
            .s_sj_note {
                background-color: transparent;
                border: 1px solid #f1c40f;
            }
            
            .s_sj_expert-table thead {
                background-color: #f0f9f5 !important;
                -webkit-print-color-adjust: exact;
            }
            
            /* 打印时隐藏图标 */
            .fa-solid, .fas, .fab {
                display: none !important;
            }
        }