@charset "UTF-8";
     @media screen and (max-width: 1023px){ } @media screen and (max-width: 834px){ } @media screen and (max-width: 480px){ } .hospital-card {
border: 1px solid #e0e6ed;
border-radius: 8px;
padding: 6px 16px 16px 16px;
margin: 12px 0;
background: #ffffff;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
transition: all 0.3s ease;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 20px;
align-items: center;
width: 100%;
max-width: 800px;
}
.hospital-card:hover {
transform: translateY(-1px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
border-color: #3498db;
}
.hospital-info-left {
display: flex;
flex-direction: column;
gap: 8px;
}
.hospital-name {
font-size: 18px;
font-weight: bold;
color: #2c3e50;
margin: 0;
display: flex;
align-items: center;
line-height: 1.3;
}
.hospital-name::before {
content: "🏥";
margin-right: 6px;
font-size: 16px;
}
.hospital-basic-info {
display: flex;
flex-direction: column;
gap: 4px;
font-size: 13px;
margin-bottom: 8px;
}
.info-row {
display: flex;
align-items: flex-start;
gap: 6px;
line-height: 1.4;
}
.info-icon {
font-size: 12px;
color: #666;
min-width: 14px;
flex-shrink: 0;
margin-top: 2px;
}
.info-text {
color: #333;
word-wrap: break-word;
overflow-wrap: break-word;
}
.phone-link {
color: #27ae60;
text-decoration: none;
font-weight: 600;
background: #e8f8f0;
padding: 4px 8px;
border-radius: 6px;
border: 1px solid #27ae60;
transition: all 0.3s ease;
display: inline-block;
font-size: 12px;
}
.phone-link:hover {
background: #27ae60;
color: white;
transform: scale(1.03);
}
.website-link {
color: #3498db;
text-decoration: none;
font-weight: 600;
background: #e8f4fd;
padding: 4px 8px;
border-radius: 6px;
border: 1px solid #3498db;
transition: all 0.3s ease;
display: inline-block;
font-size: 12px;
}
.website-link:hover {
background: #3498db;
color: white;
transform: scale(1.03);
}
.schedule-compact {
background: #f8f9fa;
border-radius: 4px;
padding: 10px;
border-left: 3px solid #3498db;
font-size: 11px;
width: 100%;
box-sizing: border-box;
margin-top: auto;
}
.schedule-title {
font-size: 10px;
color: #666;
font-weight: 600;
margin-bottom: 8px;
text-transform: uppercase;
}
.schedule-table {
display: table;
width: 100%;
border-collapse: collapse;
}
.day-headers {
display: table-row;
font-size: 8px;
color: #666;
font-weight: 600;
}
.day-header {
display: table-cell;
text-align: center;
padding: 2px 1px;
border-right: 1px solid #ddd;
width: 14.28%;
}
.day-header:first-child {
width: auto;
min-width: 70px;
text-align: left;
border-right: 2px solid #ccc;
padding-right: 8px;
}
.day-header:last-child {
border-right: none;
}
.time-row {
display: table-row;
font-size: 10px;
}
.time-cell {
display: table-cell;
text-align: center;
padding: 3px 1px;
border-right: 1px solid #ddd;
vertical-align: middle;
}
.time-cell:first-child {
text-align: left;
font-weight: 600;
color: #333;
font-size: 9px;
border-right: 2px solid #ccc;
padding-right: 8px;
}
.time-cell:last-child {
border-right: none;
}
.day-status {
width: 12px;
height: 12px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 6px;
font-weight: bold;
margin: 0 auto;
}
.clinic-open {
background: #27ae60;
color: white;
}
.closed {
background: #e74c3c;
color: white;
}
.hospital-map {
width: 100%;
height: 220px;
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 14px;
font-weight: 500;
text-align: center;
border: 1px solid #ddd;
overflow: hidden;
margin: auto 0;
}
.hospital-map iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 6px;
}
@media (max-width: 768px) {
.hospital-card {
grid-template-columns: 1fr;
max-width: 100%;
}
.hospital-map {
height: 150px;
}
}
.clinic-note {
margin: 12px 0;
padding: 8px 12px;
background: #fff8e1;
border-left: 4px solid #ffc107;
font-size: 0.9em;
color: #333;
}