* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}
.page {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
}
.doctor-list {
    background-color: #fff;
}
.doctor-item {
    display: flex;
    padding: 16px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
}
.doctor-item:active {
    background-color: #fafafa;
}
.list-avatar {
    width: 64px;
    height: 85px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 12px;
    background-color: #e5edf5;
}
.list-info {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.list-name-title {
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
}
.list-name {
    font-size: 17px;
    color: #333;
    margin-right: 8px;
}
.list-title {
    font-size: 14px;
    color: #666;
}
.list-dept {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}
.list-specialty {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#detail-page {
    background-color: #f5f5f5;
}
.top-nav {
    display: flex;
    align-items: center;
    height: 44px;
    background-color: #0084ff;
    color: #fff;
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.back-icon {
    font-size: 18px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
}
.back-icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}
.nav-title {
    flex: 1;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    margin-left: -44px;
}
.header {
    background: #0084ff;
    padding: 16px 16px 32px;
    color: #fff;
}
.header-content {
    display: flex;
    align-items: center;
}
.avatar-wrap {
    width: 70px;
    height: 90px;
    margin-right: 16px;
    background-color: #fff;
    padding: 2px;
    border-radius: 4px;
}
.avatar-large {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    object-fit: cover;
    background-color: #e5edf5;
}
.header-info {
    flex: 1;
}
.name-title {
    margin-bottom: 6px;
}
.name-title .name {
    font-size: 22px;
    font-weight: bold;
}
.title-dept {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.95;
}
.tags .tag {
    display: inline-block;
    background-color: #fff;
    color: #0084ff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-right: 8px;
}
.schedule-card {
    background-color: #fff;
    margin: -16px 16px 12px;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}
.schedule-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.icon-calendar-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}
.schedule-title {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.schedule-list {
    font-size: 14px;
}
.schedule-item {
    margin-bottom: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
}
.schedule-item:last-child {
    margin-bottom: 0;
}
.sch-time {
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}
.sch-time span {
    color: #0084ff;
    font-size: 13px;
    font-weight: normal;
    margin-left: 4px;
}
.sch-loc {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
}
.sch-loc::before {
    content: "📍";
    margin-right: 4px;
    font-size: 12px;
}
.section {
    background-color: #fff;
    margin-bottom: 12px;
    padding: 16px;
}
.section-title {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 16px;
}
.icon-section-img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.section-content {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}