/* ===== 贵阳城东中医医院 整站公共CSS ===== */

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

:root {
    --primary: #C8161D;
    --primary-light: #E23A2E;
    --primary-dark: #9E1318;
    --accent: #C89211;
    --accent-light: #E0A93C;
    --bg-gray: #f7f3f0;
    --bg-light: #f3ece7;
    --text-dark: #1a1a2e;
    --text-gray: #666;
    --text-light: #999;
    --border-color: #ecdfd9;
    --white: #ffffff;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    min-width: 1200px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}
.page_active{
    background:#C8161D !important ;
    color:#fff !important;
    border-color:#C8161D !important;
}
.container {
    width: 1200px;
    margin: 0 auto;
}

.top-bar {
    background: var(--primary-dark);
    color: #f3d5d5;
    font-size: 13px;
    height: 42px;
    line-height: 42px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-bar-left span,
.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-section {
    background: var(--white);
    padding: 28px 0;
    border-bottom: 3px solid var(--primary);
}

.logo-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 44px;
    height: 44px;
    fill: var(--white);
}

.logo-text h1 {
    font-size: 30px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.logo-text p {
    font-size: 12px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.logo-search {
    display: flex;
    align-items: center;
    width: 360px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    overflow: visible;
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.logo-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 22, 29, 0.1);
}

.logo-search .search-select {
    position: relative;
    height: 100%;
    flex-shrink: 0;
}

.logo-search .search-select-btn {
    height: 100%;
    border: none;
    background: transparent;
    padding: 0 10px 0 18px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
}

.logo-search .search-select-btn svg {
    width: 14px;
    height: 14px;
    fill: var(--text-gray);
    transition: transform 0.3s;
}

.logo-search .search-select.open .search-select-btn svg {
    transform: rotate(180deg);
}

.logo-search .search-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 10px;
    min-width: 96px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    list-style: none;
    padding: 6px 0;
    margin: 0;
    display: none;
    z-index: 1000;
}

.logo-search .search-select.open .search-select-options {
    display: block;
}

.logo-search .search-select-options li {
    padding: 9px 16px;
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all .2s;
}

.logo-search .search-select-options li:hover,
.logo-search .search-select-options li.active {
    background: var(--bg-light);
    color: var(--primary);
}

.logo-search input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 14px 0 0;
    font-size: 14px;
    color: var(--text-dark);
    background: transparent;
}

.logo-search input::placeholder {
    color: var(--text-light);
}

.logo-search button#topSearchBtn {
    width: 56px;
    height: 100%;
    border: none;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    border-radius: 0 22px 22px 0;
}

.logo-search button#topSearchBtn:hover {
    background: var(--primary-dark);
}

.logo-search button#topSearchBtn svg {
    width: 20px;
    height: 20px;
}

.nav-bar {
    background: var(--primary);
    height: 52px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-bar ul {
    display: flex;
    height: 52px;
    justify-content: space-between;
}

.nav-bar li {
    position: relative;
    flex: 1;
    text-align: center;
}

.nav-bar li a {
    display: block;
    padding: 0 12px;
    line-height: 52px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: all 0.3s;
}

.nav-bar li a:hover,
.nav-bar li.active a {
    background: var(--primary-dark);
    color: var(--white);
}

.nav-bar li.active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.banner {
    position: relative;
    height: 460px;
    overflow: hidden;
    background: linear-gradient(135deg, #fbe7e3 0%, #f5f9fd 50%, #dce8f5 100%);
}
.banner_img{
    width: 1920px;
    height: 460px;
    margin-left: 50%;
    transform: translateX(-50%);
}
.banner-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='460' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239E1318' fill-opacity='0.06'%3E%3Ccircle cx='100' cy='80' r='60'/%3E%3Ccircle cx='1100' cy='100' r='80'/%3E%3Ccircle cx='200' cy='400' r='50'/%3E%3Ccircle cx='1000' cy='380' r='70'/%3E%3C/g%3E%3C/svg%3E");
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.banner-text {
    flex: 1;
    color: var(--text-dark);
}

.banner-text h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--primary);
}

.banner-text h2 span {
    color: var(--accent);
}

.banner-text p {
    font-size: 18px;
    color: #9a7e74;
    margin-bottom: 32px;
    line-height: 1.8;
}

.banner-btns {
    display: flex;
    gap: 16px;
}

.banner-btn {
    padding: 14px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.banner-btn-primary {
    background: var(--accent);
    color: var(--white);
}

.banner-btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.3);
}

.banner-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.banner-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.banner-image {
    flex: 0 0 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image svg {
    width: 380px;
    height: 380px;
    opacity: 1;
}

.banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-dots span {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(13, 59, 110, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dots span.active {
    background: var(--primary);
    width: 50px;
}

.quick-service {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 10;
}

.quick-service .container {
    display: grid;
    grid-template-columns: 170px repeat(6, 1fr);
    gap: 0;
    background: var(--white);
    box-shadow: 0 4px 30px rgba(200, 22, 29, 0.12);
    overflow: hidden;
}

.quick-nav-block {
    background: linear-gradient(135deg, #C8161D 0%, #9E1318 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.quick-nav-block h4 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.quick-nav-block p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.6;
    opacity: 0.9;
}

.quick-item {
    padding: 32px 16px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.quick-item:last-child {
    border-right: none;
}

.quick-item:hover {
    background: var(--bg-light);
}

.quick-item:hover .quick-icon {
    transform: translateY(-4px);
}

.quick-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.quick-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.quick-item:nth-child(2) .quick-icon {
    background: #E23A2E;
}

.quick-item:nth-child(3) .quick-icon {
    background: #c41e3a;
}

.quick-item:nth-child(4) .quick-icon {
    background: #C89211;
}

.quick-item:nth-child(5) .quick-icon {
    background: #d4791a;
}

.quick-item:nth-child(6) .quick-icon {
    background: #E23A2E;
}

.quick-item:nth-child(7) .quick-icon {
    background: #9E1318;
}

.quick-item h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.quick-item p {
    font-size: 13px;
    color: var(--text-light);
}

.section {
    padding: 0px 0 60px 0;
}
.index_section {
  padding: 40px 0 !important;
}
.section-bg-gray {
    background: var(--bg-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .en-title {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-header h3 {
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header .deco-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

.section-header p {
    font-size: 15px;
    color: var(--text-gray);
    margin-top: 16px;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dept-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    cursor: pointer;
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 59, 110, 0.15);
}

.dept-banner {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dept-card:nth-child(1) .dept-banner {
    background: linear-gradient(135deg, #C8161D, #E23A2E);
}

.dept-card:nth-child(2) .dept-banner {
    background: linear-gradient(135deg, #8b1a3a, #c41e3a);
}

.dept-card:nth-child(3) .dept-banner {
    background: linear-gradient(135deg, #9E1318, #C89211);
}

.dept-card:nth-child(4) .dept-banner {
    background: linear-gradient(135deg, #8a5a0d, #d4791a);
}

.dept-banner svg {
    width: 64px;
    height: 64px;
    fill: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s;
}

.dept-card:hover .dept-banner svg {
    transform: scale(1.15);
}

.dept-body {
    padding: 24px;
}

.dept-body h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.dept-body .dept-en {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.dept-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dept-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.dept-card:hover .dept-link {
    color: var(--accent);
}

.expert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.expert-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(13, 59, 110, 0.12);
}

.expert-avatar {
    width: 100%;
    height: 384px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.expert-card:nth-child(1) .expert-avatar {
    background: linear-gradient(180deg, #e8eef5, #d0dae8);
}

.expert-card:nth-child(2) .expert-avatar {
    background: linear-gradient(180deg, #f5e8ec, #e8d0d8);
}

.expert-card:nth-child(3) .expert-avatar {
    background: linear-gradient(180deg, #e8f0ec, #d0e0d8);
}

.expert-card:nth-child(4) .expert-avatar {
    background: linear-gradient(180deg, #f5f0e8, #e8e0d0);
}

.expert-avatar svg {
    width: 180px;
    height: 240px;
}

.expert-info {
    padding: 20px;
}

.expert-info h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.expert-title {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.expert-dept {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.expert-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.news-block {
    background: var(--white);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.news-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bg-light);
}

.news-block-header h4 {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-block-header h4::before {
    content: "";
    width: 4px;
    height: 20px;
    background: var(--accent);
    border-radius: 2px;
}

.news-block-header .more {
    font-size: 14px;
    color: var(--text-gray);
}

.news-block-header .more:hover {
    color: var(--primary);
}

.notice-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border-color);
    transition: all 0.3s;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-list li:hover {
    padding-left: 8px;
}

.notice-list li:hover .notice-title {
    color: var(--primary);
}

.notice-tag {
    flex-shrink: 0;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 12px;
}

.notice-tag.important {
    background: #fbf2dd;
    color: var(--accent);
}

.notice-tag.normal {
    background: #e8f0fc;
    color: var(--primary);
}

.notice-title {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.notice-date {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--text-light);
    margin-left: 16px;
}

.news-list li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--border-color);
}

.news-list li:last-child {
    border-bottom: none;
}

.news-date {
    flex-shrink: 0;
    width: 106px;
    text-align: center;
    background: var(--bg-light);
    border-radius: 6px;
    padding: 8px 0;
}

.news-date .day {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.news-date .month {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 2px;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-content h5 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.news-list li:hover .news-content h5 {
    color: var(--primary);
}

.news-content p {
    font-size: 13px;
    color: var(--text-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-section {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    height: 320px;
    background: linear-gradient(135deg, #C8161D, #E23A2E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image svg {
    width: 320px;
    height: 240px;
    opacity: 0.95;
}

.about-image::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.about-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
}

.about-content .en-name {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 24px;
    text-indent: 2em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    font-family: "DIN", "Arial", sans-serif;
}

.stat-num span {
    font-size: 16px;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}

.about-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 59, 110, 0.3);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.guide-card {
    background: var(--white);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.guide-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(13, 59, 110, 0.1);
    transform: translateY(-4px);
}

.guide-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.guide-card:hover .guide-icon {
    background: var(--primary);
}

.guide-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary);
    transition: fill 0.3s;
}

.guide-card:hover .guide-icon svg {
    fill: var(--white);
}

.guide-card h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.guide-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 24px;
    position: relative;
}

.tab-nav::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
}

.tab-nav .tab-item {
    padding: 12px 32px;
    font-size: 16px;
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-nav .tab-item:hover {
    color: var(--primary);
}

.tab-nav .tab-item.active {
    color: var(--primary);
    border-bottom-color: var(--accent);
    font-weight: 600;
}

.tab-nav .more-link {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    padding-bottom: 12px;
}

.tab-nav .more-link:hover {
    color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
}

.news-featured {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.news-featured-image {
    height: 280px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-featured-image svg {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.news-featured-body {
    padding: 20px;
}

.news-featured-body h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.news-featured-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured-body .featured-date {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
}

.news-featured-list {
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.news-featured-list li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color 0.3s;
}

.news-featured-list li:hover {
    color: var(--primary);
}

.news-featured-list li::before {
    content: "·";
    margin-right: 6px;
    color: var(--primary);
    font-weight: bold;
}

.news-tab-list {
    background: var(--white);
    border-radius: 8px;
    padding: 8px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.news-tab-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px dashed var(--border-color);
    transition: all 0.3s;
}
.news-tab-list li::before {
    content: "•";
    color: var(--primary);
    margin-right: 8px;
    font-size: 16px;
    line-height: 1;
}
.news-tab-list li:last-child {
    border-bottom: none;
}

.news-tab-list li:hover {
    padding-left: 8px;
}

.news-tab-list li:hover .news-tab-title {
    color: var(--primary);
}

.news-tab-tag {
    flex-shrink: 0;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 12px;
}

.news-tab-tag.important {
    background: #fbf2dd;
    color: var(--accent);
}

.news-tab-tag.normal {
    background: #e8f0fc;
    color: var(--primary);
}

.news-tab-tag.bid {
    background: #fef3e8;
    color: #d4791a;
}

.news-tab-tag.public {
    background: #fbf2dd;
    color: #C89211;
}

.news-tab-title {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.news-tab-date {
    flex-shrink: 0;
    font-size: 13px;
    color: var(--text-light);
    margin-left: 16px;
}

.news-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.news-section-title h2 {
    font-size: 32px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.news-section-title span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 3px;
    margin-top: 2px;
    text-transform: uppercase;
}

.news-tabs {
    display: flex;
    gap: 8px;
}

.news-tab-item {
    padding: 8px 22px;
    font-size: 15px;
    color: var(--text-gray);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.news-tab-item:hover {
    color: var(--primary);
}

.news-tab-item.active {
    background: #C8161D;
    color: #fff;
}

.news-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 18px;
    border: 1px solid #C8161D;
    color: #C8161D;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.news-more:hover {
    background: #C8161D;
    color: #fff;
}

.news-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.news-carousel-dots span {
    width: 24px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.news-carousel-dots span.active {
    background: #f5a623;
}

.news-tab-list li {
    padding: 15px 0;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-col {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 22px 18px;
    width:384px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.info-col:hover {
    border-color: #d0dae8;
    box-shadow: 0 6px 24px rgba(0, 85, 141, 0.08);
}

.info-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.info-col-header h3 {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-left: 12px;
}

.info-col-header h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 2px;
}

.info-col-header .more-link {
    font-size: 14px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: color 0.3s;
}

.info-col-header .more-link:hover {
    color: var(--primary-dark);
}

.info-col-header .more-link::before {
    content: "+";
    font-size: 16px;
    margin-right: 2px;
}

.info-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    border: 1px solid #f0f2f5;
}

.info-card-image {
    height: 165px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.info-card-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.info-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.info-card-play svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    margin-left: 3px;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}
.info-list li::before {
    content: "•";
    color: var(--primary);
    margin-right: 8px;
    font-size: 16px;
    line-height: 1;
}
.info-list li:last-child {
    border-bottom: none;
}
.info-list li:first-child::before  {
    content: "";
    margin-right: 0px;
}
.info-list a {
    color: var(--text-gray);
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.info-list a:hover {
    color: var(--primary);
}

.info-list .date {
    color: var(--text-light);
    font-size: 13px;
    margin-left: 10px;
    flex-shrink: 0;
}

.dept-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.dept-section-title {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.dept-section-title span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dept-main-tabs {
    display: flex;
    border: 1px solid var(--border-color);
    border-bottom: none;
    background: var(--white);
    overflow: hidden;
}

.dept-main-tab {
    padding: 16px 50px;
    font-size: 16px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
    border-right: 1px solid var(--border-color);
    background: var(--white);
}

.dept-main-tab:hover {
    color: var(--primary);
    background: #f5f8fc;
}

.dept-main-tab.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.dept-more-link {
    margin-left: auto;
    padding: 16px 30px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.dept-more-link:hover {
    color: var(--primary);
}

.dept-main-content {
    border: 1px solid var(--border-color);
    background: var(--white);
    display: grid;
    grid-template-columns: 480px 1fr;
    min-height: 460px;
}

.dept-featured-display {
    position: relative;
    overflow: hidden;
    display: none;
}

.dept-featured-display.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.dept-featured-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dept-featured-display[data-dept="thyroid"] .dept-featured-image {
    background: linear-gradient(135deg, #C8161D, #E23A2E);
}

.dept-featured-display[data-dept="vulvar"] .dept-featured-image {
    background: linear-gradient(135deg, #8b1a3a, #c41e3a);
}

.dept-featured-display[data-dept="breast"] .dept-featured-image {
    background: linear-gradient(135deg, #9E1318, #C89211);
}

.dept-featured-display[data-dept="tcm"] .dept-featured-image {
    background: linear-gradient(135deg, #8a5a0d, #d4791a);
}

.dept-featured-image svg {
    width: 120px;
    height: 120px;
    fill: rgba(255, 255, 255, 0.9);
}

.dept-featured-image .dept-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
}

.dept-featured-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 30px 24px 20px;
}

.dept-featured-name-overlay h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dept-featured-name-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.dept-featured-desc {
    padding: 16px 20px;
    background: var(--white);
}

.dept-featured-desc p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.dept-featured-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.dept-featured-tags span {
    font-size: 12px;
    color: var(--primary);
    background: #e8f0fc;
    padding: 3px 10px;
    border-radius: 3px;
}

.dept-disease-panel {
    padding: 20px;
    background: #f8fafc;
    border-left: 1px solid var(--border-color);
}

.dept-disease-panel-content {
    display: none;
}

.dept-disease-panel-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.dept-disease-title {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.dept-disease-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.dept-disease-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    min-height: 42px;
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.dept-disease-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 59, 110, 0.15);
}

.dept-disease-tag::before {
    content: "•";
    margin-right: 6px;
    color: var(--accent);
    font-weight: bold;
}

.dept-disease-tag:hover::before {
    color: var(--white);
}

.dept-tag-btn.active .tag-en {
    opacity: 0.8;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.topic-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    cursor: pointer;
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(13, 59, 110, 0.15);
}

.topic-banner {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.topic-card:nth-child(1) .topic-banner {
    background: linear-gradient(135deg, #C8161D, #E23A2E);
}

.topic-card:nth-child(2) .topic-banner {
    background: linear-gradient(135deg, #8b1a3a, #c41e3a);
}

.topic-card:nth-child(3) .topic-banner {
    background: linear-gradient(135deg, #9E1318, #C89211);
}

.topic-card:nth-child(4) .topic-banner {
    background: linear-gradient(135deg, #8a5a0d, #d4791a);
}

.topic-banner svg {
    width: 48px;
    height: 48px;
    fill: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.topic-card:hover .topic-banner svg {
    transform: scale(1.15);
}

.topic-banner h4 {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
}

.topic-banner .topic-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.topic-body {
    padding: 22px;
}

.topic-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.topic-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.topic-card:hover .topic-link {
    color: var(--accent);
}

.info-section {
    padding-bottom: 20px;
}

.special-section {
    background: var(--white);
    padding-top: 30px;
}

.special-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.special-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.special-title h3 {
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-left: 14px;
}

.special-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.special-title .en {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.special-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s;
}

.special-more:hover {
    color: var(--primary);
}

.special-more svg {
    width: 16px;
    height: 16px;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.special-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.special-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.special-card-image {
    height: 150px;
    background: linear-gradient(135deg, #b91c22 0%, #d32f2f 50%, #e53935 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.special-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.special-card-image h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.special-card-body {
    padding: 14px 16px;
    background: var(--white);
}

.special-card-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.uni-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.uni-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.uni-title-bar {
    width: 4px;
    height: 30px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.uni-title-text h3 {
    font-size: 26px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.uni-title-text .en {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.uni-title-text .en-inline {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.uni-title-text .slash {
    font-weight: 400;
    color: var(--text-light);
    margin: 0 6px;
}

.uni-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.uni-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s;
}

.uni-more:hover {
    color: var(--primary);
}

.uni-more svg {
    width: 16px;
    height: 16px;
}

.friend-links {
    background: var(--primary-dark);
    padding: 24px 0;
}

.friend-links .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.friend-links .label {
    color: #7eb8e8;
    font-size: 14px;
    flex-shrink: 0;
}

.friend-links .links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.friend-links .links a {
    color: #e8c9b0;
    font-size: 13px;
}

.friend-links .links a:hover {
    color: var(--white);
}

.footer {
    background: #4a0e11;
    color: #e8c9b0;
    padding: 50px 0 0;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-info {
    flex: 0 0 360px;
}

.footer-col {
    flex: 1 1 auto;
    min-width: 0;
}

.footer-qr {
    flex: 0 0 140px;
    text-align: center;
}

.footer-info h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    color: #e8c9b0;
    font-size: 14px;
    line-height: 1.7;
}

.footer-info .contact-item svg {
    width: 16px;
    height: 16px;
    fill: #C89211;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-col ul li a {
    font-size: 14px;
    color: #e8c9b0;
    text-decoration: none;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-qr .qr-box {
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 6px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-sizing: border-box;
}

.footer-qr .qr-box svg {
    width: 90px;
    height: 90px;
}

.footer-qr p {
    font-size: 13px;
    color: #e8c9b0;
    margin: 0;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #5a7a98;
}

.footer-bottom p {
    margin-bottom: 4px;
}

.footer-bottom a {
    color: #5a7a98;
}

.footer-bottom a:hover {
    color: #e8c9b0;
}

.float-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.float-item {
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.float-item:hover {
    background: var(--primary);
    transform: translateX(-4px);
}

.float-item svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
    transition: fill 0.3s;
}

.float-item:hover svg {
    fill: var(--white);
}

.float-item span {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 2px;
    transition: color 0.3s;
}

.float-item:hover span {
    color: var(--white);
}

.float-item.top {
    background: var(--bg-light);
}

.sub-banner {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

.sub-banner::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}

.sub-banner::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(200,146,17,0.18);
}

.sub-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 170px;
    position: relative;
    z-index: 2;
}

.sub-banner .sub-title h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sub-banner .sub-title .en {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: .8;
    margin-top: 6px;
    text-transform: uppercase;
}

.sub-banner .sub-crumb {
    font-size: 14px;
    opacity: .92;
}

.sub-banner .sub-crumb a {
    color: #fff;
}

.sub-banner .sub-crumb span {
    margin: 0 8px;
    opacity: .6;
}

.crumb {
    font-size: 14px;
    color: var(--text-gray);
    padding: 18px 0;
}

.crumb a {
    color: var(--text-gray);
}

.crumb a:hover {
    color: var(--primary);
}

.crumb span {
    margin: 0 8px;
    color: var(--text-light);
}

.list-wrap {
    display: flex;
    gap: 30px;
    padding-bottom: 56px;
}

.list-side {
    width: 248px;
    flex-shrink: 0;
}

.list-main {
    flex: 1;
    min-width: 0;
}

.side-box {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.side-box h4 {
    background: var(--bg-gray);
    padding: 14px 18px;
    font-size: 16px;
    color: var(--text-dark);
    border-left: 4px solid var(--primary);
}

.side-nav li a {
    display: block;
    padding: 13px 18px;
    font-size: 15px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
    transition: all .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.side-nav li a .a_text ,.rel-list-art li a .a_text{
    width:210px;
    display:inline-block;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.side-nav li a .dt,.rel-list-art li a .dt{
    width:40px;
}
.side-nav li:last-child a {
    border-bottom: none;
}

.side-nav li a:hover, .side-nav li.active a {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 24px;
    font-weight: 600;
}

.side-contact {
    padding: 16px 18px;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 2;
}

.side-contact b {
    color: var(--primary);
}

.list-item {
    display: flex;
    gap: 22px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 18px;
    transition: all .3s;
}

.list-item:hover {
    box-shadow: 0 6px 24px rgba(200,22,29,.12);
    border-color: var(--primary-light);
}

.list-date {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    background: var(--bg-gray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.list-date .d {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.list-date .y {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.list-body {
    flex: 1;
    min-width: 0;
}

.list-body h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color .3s;
}

.list-body h3 a {
    color: inherit;
}

.list-item:hover .list-body h3 {
    color: var(--primary);
}

.list-body p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.list-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    background: var(--bg-light);
    padding: 2px 10px;
    border-radius: 4px;
    margin-top: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-gray);
    background: #fff;
    transition: all .3s;
}

.pagination a:hover, .pagination a.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.col-intro {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 34px;
    margin-bottom: 30px;
    line-height: 1.9;
    color: var(--text-gray);
    font-size: 15px;
}

.col-intro strong {
    color: var(--primary);
}

.dept-card-about {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.dept-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    background: linear-gradient(120deg, var(--bg-gray), #fff);
    border-bottom: 1px solid var(--border-color);
}

.dept-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dept-card-icon svg {
    width: 34px;
    height: 34px;
    fill: #fff;
}

.dept-card-head h3 {
    font-size: 24px;
    color: var(--text-dark);
}

.dept-card-head .en {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-top: 2px;
}

.dept-card-body {
    padding: 28px;
    display: flex;
    gap: 30px;
}

.dept-card-left {
    flex: 1;
    min-width: 0;
}

.dept-card-left h4 {
    font-size: 17px;
    color: var(--primary);
    margin: 0 0 12px;
}

.dept-card-left h4:not(:first-child) {
    margin-top: 22px;
}

.dept-card-left p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.9;
}

.disease-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.disease-tags span {
    font-size: 13px;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5px 14px;
    transition: all .3s;
    cursor: default;
}

.disease-tags span:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.dept-card-right {
    width: 300px;
    flex-shrink: 0;
    background: var(--bg-gray);
    border-radius: 8px;
    padding: 22px;
}

.dept-card-right h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.expert-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.expert-mini .av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    overflow:hidden;
}

.expert-mini .nm {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.expert-mini .ti {
    font-size: 12px;
    color: var(--text-light);
}

.dept-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    transition: all .3s;
}

.dept-card-btn:hover {
    background: var(--primary-dark);
}

.dept-card-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.article-layout {
    display: flex;
    gap: 30px;
    padding-bottom: 56px;
}

.article-main {
    flex: 1;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
}

.article-title {
    font-size: 30px;
    color: var(--text-dark);
    line-height: 1.45;
    text-align: center;
    font-weight: 700;
}

.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light);
    margin: 18px 0 30px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--border-color);
}

.article-content p {
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin-bottom: 20px;
}
.article-content img{
    display:block;
    margin:0 auto;
}
.article-content video{
    display:block;
    width:100%;
    margin:0 auto;
}
.article-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin: 30px 0 16px;
    padding-left: 14px;
    border-left: 4px solid var(--primary);
}

.article-figure {
    background: var(--bg-gray);
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin: 10px 0 24px;
    font-size: 15px;
}

.article-pager {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.article-pager a {
    font-size: 14px;
    color: var(--text-gray);
    max-width: 48%;
    transition: color .3s;
}

.article-pager a:hover {
    color: var(--primary);
}

.article-pager .label {
    color: var(--text-light);
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

.article-side {
    width: 300px;
    flex-shrink: 0;
}

.rel-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.rel-list li a {
    color: var(--text-gray);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.rel-list li a:hover {
    color: var(--primary);
}

.rel-list li .dt {
    color: var(--text-light);
    flex-shrink: 0;
}

.ab-feature-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:30px
}

.ab-feature-card {
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:8px;
    padding:34px 26px;
    text-align:center;
    transition:.3s
}

.ab-feature-card:hover {
    box-shadow:0 8px 24px rgba(200,22,29,.12);
    transform:translateY(-4px)
}

.ab-feature-icon {
    width:64px;
    height:64px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    color:#fff
}

.ab-feature-card h4 {
    font-size:19px;
    color:var(--primary-dark);
    margin-bottom:12px
}

.ab-feature-card p {
    color:var(--text-gray);
    font-size:14px;
    line-height:1.9
}

.ab-sec-title {
    font-size:22px;
    color:var(--text-dark);
    margin:46px 0 6px;
    padding-left:14px;
    border-left:4px solid var(--primary);
    font-weight:700
}

.ab-sec-sub {
    color:var(--text-light);
    font-size:14px;
    margin-bottom:6px
}

.ab-honor-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:24px
}

.ab-honor-card {
    background:linear-gradient(160deg,#fff,#fbf4f0);
    border:1px solid var(--border-color);
    border-radius:8px;
    padding:30px 18px;
    text-align:center
}

.ab-honor-card .medal {
    font-size:36px;
    margin-bottom:12px
}

.ab-honor-card h4 {
    font-size:16px;
    color:var(--primary-dark);
    margin-bottom:8px
}

.ab-honor-card p {
    font-size:13px;
    color:var(--text-gray)
}

.ab-timeline {
    position:relative;
    margin-top:30px;
    padding-left:30px
}

.ab-timeline::before {
    content:'';
    position:absolute;
    left:7px;
    top:6px;
    bottom:6px;
    width:2px;
    background:var(--border-color)
}

.ab-tl-item {
    position:relative;
    padding:0 0 28px 24px
}

.ab-tl-item::before {
    content:'';
    position:absolute;
    left:-30px;
    top:4px;
    width:16px;
    height:16px;
    border-radius:50%;
    background:var(--primary);
    border:3px solid #fff;
    box-shadow:0 0 0 2px var(--primary)
}

.ab-tl-year {
    font-weight:700;
    color:var(--primary-dark);
    font-size:16px;
    margin-bottom:4px
}

.ab-tl-item p {
    color:var(--text-gray);
    font-size:14px
}

.ab-guide-steps {
    counter-reset:step;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:24px
}

.ab-guide-step {
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:8px;
    padding:26px 18px 20px;
    position:relative;
    margin-top:14px
}

.ab-guide-step::before {
    counter-increment:step;
    content:counter(step);
    position:absolute;
    top:-14px;
    left:18px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--accent);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700
}

.ab-guide-step h4 {
    font-size:15px;
    color:var(--text-dark);
    margin:6px 0 8px
}

.ab-guide-step p {
    font-size:13px;
    color:var(--text-gray);
    line-height:1.7
}

.ap-layout {
    display:grid;
    grid-template-columns:1fr 340px;
    gap:30px;
    margin-top:30px
}

.ap-form {
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:10px;
    padding:30px
}

.ap-form h3 {
    font-size:18px;
    color:var(--primary-dark);
    margin-bottom:20px
}

.ap-row {
    margin-bottom:18px
}

.ap-row label {
    display:block;
    font-size:14px;
    color:var(--text-dark);
    margin-bottom:8px
}

.ap-row label .req {
    color:var(--primary);
    margin-left:2px
}

.ap-row input,.ap-row select,.ap-row textarea {
    width:100%;
    padding:11px 14px;
    border:1px solid var(--border-color);
    border-radius:6px;
    font-size:14px;
    font-family:inherit;
    color:var(--text-dark);
    background:#fff
}

.ap-row input:focus,.ap-row select:focus,.ap-row textarea:focus {
    outline:none;
    border-color:var(--primary)
}

.ap-row textarea {
    resize:vertical;
    min-height:90px
}

.ap-submit {
    width:100%;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    border:none;
    padding:13px;
    border-radius:6px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    margin-top:6px
}

.ap-submit:hover {
    opacity:.92
}

.ap-msg {
    display:none;
    background:#eaf7ee;
    border:1px solid #bfe6cb;
    color:#1a7a3c;
    padding:14px 18px;
    border-radius:8px;
    margin-bottom:18px;
    font-size:14px
}

.ap-msg.show {
    display:block
}

.ap-side .ap-box {
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:10px;
    padding:24px;
    margin-bottom:20px
}

.ap-box h4 {
    font-size:16px;
    color:var(--primary-dark);
    margin-bottom:14px;
    border-bottom:1px solid var(--border-color);
    padding-bottom:10px
}

.ap-box ul {
    margin:0;
    padding-left:18px
}

.ap-box ul li {
    font-size:13px;
    color:var(--text-gray);
    line-height:2;
    list-style:disc
}

.ap-phone {
    text-align:center;
    background:var(--bg-gray);
    border-radius:10px;
    padding:24px
}

.ap-phone .num {
    font-size:24px;
    color:var(--primary);
    font-weight:700
}

.ap-phone p {
    font-size:13px;
    color:var(--text-gray);
    margin-top:6px
}

.side-expert {
    padding: 16px 18px;
}

.expert-mini-art {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    color: #fff;
}

.expert-mini:last-child {
    margin-bottom: 0;
}

.expert-mini-art .av-art {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,.28);
}

.expert-mini:nth-of-type(1) .av {
    background: #f8b4b9;
}

.expert-mini:nth-of-type(2) .av {
    background: #d8b4e8;
}

.expert-mini:nth-of-type(3) .av {
    background: #b4e8c4;
}

.expert-mini:nth-of-type(4) .av {
    background: #b4d4e8;
}

.expert-mini-art .nm-art {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.expert-mini-art .ti-art {
    font-size: 12px;
    color: rgba(255,255,255,.78);
}

.rel-list-art li {
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.rel-list-art li a {
    color: var(--text-gray);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 12px 18px;
}

.rec-doc {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 10px;
    margin-bottom: 12px;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.rec-doc:last-child {
    margin-bottom: 0;
}

.rec-doc:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(200,22,29,.12);
}

.rec-doc .av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a84a, #c89211);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}

.rec-doc .nm {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.rec-doc .ti {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.rec-doc:nth-of-type(1) .av {
    background: #f8b4b9;
}

.rec-doc:nth-of-type(2) .av {
    background: #d8b4e8;
}

.rec-doc:nth-of-type(3) .av {
    background: #b4e8c4;
}

.rec-doc:nth-of-type(4) .av {
    background: #b4d4e8;
}

.expert-card-column {
    background: linear-gradient(155deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    text-align: center;
    padding: 42px 22px 30px;
    color: #fff;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(200,22,29,.18);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.expert-card-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(200,22,29,.32);
}

.expert-avatar-column {
    width: 112px;
    height: 112px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    border: 4px solid rgba(255,255,255,.28);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.12);
    overflow: hidden;
}

.expert-card-column:nth-child(1) .expert-avatar-column {
    background: #f8b4b9;
}

.expert-card-column:nth-child(2) .expert-avatar-column {
    background: #d8b4e8;
}

.expert-card-column:nth-child(3) .expert-avatar-column {
    background: #b4e8c4;
}

.expert-card-column:nth-child(4) .expert-avatar-column {
    background: #b4d4e8;
}

.expert-avatar-column svg {
    display: none;
}

.expert-info-column {
    padding: 0;
}

.expert-info-column h4 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 700;
}

.expert-title-column {
    font-size: 13px;
    color: rgba(255,255,255,.78);
    font-weight: 500;
    margin-bottom: 12px;
}

.expert-dept-column {
    display: inline-block;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 13px;
    padding: 5px 16px;
    border-radius: 14px;
    margin-bottom: 0;
}

.expert-desc-column {
    display: none;
}

.disease-tags span,
.disease-tags a {
    font-size: 13px;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5px 14px;
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}

.disease-tags a:hover,
.disease-tags span:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

a.expert-mini-cd {
    text-decoration: none;
    color: inherit;
    transition: all .3s;
}

a.expert-mini-cd:hover {
    opacity: .85;
}

.expert-mini-cd {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.expert-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(200,22,29,.12);
}

.expert-mini-cd .av-cd {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a84a, #c89211);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.expert-mini-cd .nm-cd {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.expert-mini-cd .ti-cd {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

.doctor-profile {
    padding: 40px 0;
    background: #fff;
}

.profile-layout {
    display: flex;
    gap: 40px;
}

.profile-main {
    flex: 1;
    min-width: 0;
}

.profile-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.profile-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 32px;
    margin-bottom: 24px;
}

.profile-header {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
    width: 180px;
    height: 240px;
    background: #eef2f7;
    flex-shrink: 0;
}

.profile-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.profile-meta {
    flex: 1;
}

.profile-meta h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.profile-title {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.profile-dept {
    display: inline-block;
    background: #fff5f5;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}

.profile-brief {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 15px;
}

.profile-section {
    margin-top: 24px;
}

.profile-section h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 4px solid var(--primary);
    font-weight: 600;
}

.profile-section p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 15px;
    text-align: justify;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-tags span {
    background: #f7f3f0;
    color: var(--text-dark);
    padding: 6px 14px;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.profile-schedule {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.profile-schedule th, .profile-schedule td {
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    text-align: center;
    font-size: 14px;
}

.profile-schedule th {
    background: #f7f3f0;
    color: var(--text-dark);
    font-weight: 600;
}

.profile-schedule td {
    color: var(--text-gray);
}

.profile-cta {
    display: inline-block;
    margin-top: 20px;
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s;
}

.profile-cta:hover {
    background: var(--primary-dark);
}

.profile-widget {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 24px;
}

.profile-widget h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    font-weight: 600;
}

.widget-doctor {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    text-decoration: none;
    color: var(--text-dark);
}

.widget-doctor:last-child {
    border-bottom: none;
}

.widget-doctor:hover {
    color: var(--primary);
}

.widget-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f7f3f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
}

.widget-info {
    flex: 1;
    min-width: 0;
}

.widget-name {
    font-size: 14px;
    font-weight: 600;
}

.widget-title {
    font-size: 12px;
    color: var(--text-gray);
}

.contact-hotline {
    background: var(--primary);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.contact-hotline h4 {
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-hotline p {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-hotline a {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 8px 20px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.col-intro-dls {
    background: #fff;
    padding: 24px 28px;
    border-left: 4px solid var(--primary);
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-gray);
}

.dr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.expert-card-dls {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.expert-avatar-dls {
    width: 100%;
    height: 384px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}



.expert-head {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.expert-info-dls h4 {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    flex-shrink: 0;
}

.expert-title-dls {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
}

.expert-tags {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.expert-tags span {
    display: inline-block;
    flex-shrink: 0;
    background: var(--bg-gray);
    color: var(--text-gray);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 14px;
    white-space: nowrap;
}

.expert-desc-dls {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.dr-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px 20px;
}

.dr-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
}

.dr-btn:hover {
    background: var(--primary-dark);
}

.dr-link {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
    transition: all .3s;
}

.dr-link:hover {
    background: #fff0f0;
    color: var(--primary);
    border-color: var(--primary);
}

.info-card-idx {
    display: block;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    border: 1px solid #f0f2f5;
    text-decoration: none;
    color: inherit;
}

.special-card-idx {
    display: block;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.side-expert-jwy {
    padding: 0;
}

.qa-cat {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:24px
}

.qa-chip {
    background:var(--bg-gray);
    border:1px solid var(--border-color);
    color:var(--text-gray);
    font-size:13px;
    padding:6px 16px;
    border-radius:20px;
    cursor:pointer
}

.qa-chip.on,.qa-chip:hover {
    background:var(--primary);
    color:#fff;
    border-color:var(--primary)
}

.qa-list {
    margin-top:24px
}

.qa-item {
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:8px;
    margin-bottom:12px;
    overflow:hidden;
    cursor:pointer;
}

.qa-item summary {
    list-style:none;
    padding:18px 22px;
    font-size:15px;
    font-weight:600;
    color:var(--text-dark);
    display:flex;
    align-items:center;
    justify-content:space-between
}

.qa-item summary::-webkit-details-marker {
    display:none
}

.qa-item summary .ar {
    transition:.3s;
    color:var(--primary);
    font-size:22px;
    line-height:1
}

.qa-item[open] summary .ar {
    transform:rotate(45deg)
}

.qa-item summary .q {
    display:flex;
    align-items:center;
    gap:10px
}

.qa-item summary .q .tag {
    background:var(--primary);
    color:#fff;
    font-size:12px;
    padding:2px 9px;
    border-radius:4px;
    flex-shrink:0
}

.qa-answer {
    padding:0 22px 18px;
    color:var(--text-gray);
    font-size:14px;
    line-height:1.9;
    border-top:1px dashed var(--border-color);
    margin-top:0;
    padding-top:14px
}

.qa-cta {
    margin-top:30px;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    border-radius:10px;
    padding:28px;
    text-align:center;
    color:#fff
}

.qa-cta h4 {
    font-size:18px;
    margin-bottom:14px
}

.qa-cta a {
    display:inline-block;
    background:#fff;
    color:var(--primary-dark);
    padding:10px 28px;
    border-radius:24px;
    font-weight:700;
    margin:0 8px
}

.qa-cta a:hover {
    opacity:.9
}

.rt-addr {
    background:var(--bg-gray);
    border-radius:8px;
    padding:18px 22px;
    margin-top:22px;
    font-size:15px;
    color:var(--text-dark);
    display:flex;
    align-items:center;
    gap:10px
}

.rt-map {
    position:relative;
    height:558px;
    border-radius:10px;
    overflow:hidden;
    margin-top:24px;
    border:1px solid var(--border-color)
}

.rt-map svg {
    width:100%;
    height:100%;
    display:block
}

.rt-pin {
    position:absolute;
    top:44%;
    left:50%;
    transform:translate(-50%,-100%);
    text-align:center
}

.rt-pin .ball {
    width:22px;
    height:22px;
    border-radius:50% 50% 50% 0;
    background:var(--primary);
    transform:rotate(-45deg);
    margin:0 auto;
    box-shadow:0 4px 10px rgba(200,22,29,.4)
}

.rt-pin .lbl {
    background:#fff;
    color:var(--primary-dark);
    font-size:13px;
    font-weight:700;
    padding:5px 14px;
    border-radius:6px;
    margin-top:12px;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
    display:inline-block
}

.rt-info-grid {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:24px
}

.rt-card {
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:8px;
    padding:24px;
    display:flex;
    gap:16px
}

.rt-card-ic {
    width:50px;
    height:50px;
    border-radius:10px;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0
}

.rt-card h4 {
    font-size:16px;
    color:var(--primary-dark);
    margin-bottom:8px
}

.rt-card p {
    font-size:14px;
    color:var(--text-gray);
    line-height:1.85
}

.sp-layout {
    display:grid;
    grid-template-columns:1fr 360px;
    gap:30px;
    margin-top:30px
}

.sp-list {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px
}

.sp-item {
    background:#fff;
    border:1px solid var(--border-color);
    border-radius:8px;
    padding:24px;
    display:flex;
    gap:16px
}

.sp-item-ic {
    width:52px;
    height:52px;
    border-radius:10px;
    background:linear-gradient(135deg,var(--accent),var(--accent-light));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    flex-shrink:0
}

.sp-item h4 {
    font-size:16px;
    color:var(--primary-dark);
    margin-bottom:8px
}

.sp-item p {
    font-size:13px;
    color:var(--text-gray);
    line-height:1.7
}

.sp-side {
    background:linear-gradient(160deg,var(--primary),var(--primary-dark));
    border-radius:10px;
    padding:28px 24px;
    color:#fff;
    align-self:start
}

.sp-side h4 {
    font-size:18px;
    margin-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.25);
    padding-bottom:12px
}

.sp-adv {
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px
}

.sp-adv .dot {
    width:24px;
    height:24px;
    border-radius:50%;
    background:rgba(255,255,255,.22);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    flex-shrink:0
}

.sp-adv div strong {
    display:block;
    font-size:15px;
    margin-bottom:2px
}

.sp-adv div span {
    font-size:13px;
    opacity:.85;
    line-height:1.6
}

.sp-cta {
    margin-top:22px;
    text-align:center
}

.sp-cta a {
    display:inline-block;
    background:#fff;
    color:var(--primary-dark);
    padding:10px 28px;
    border-radius:24px;
    font-weight:700
}

.sp-cta a:hover {
    opacity:.9
}

a.expert-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
}

a.expert-mini:hover {
    background: rgba(200,146,17,.08);
    border-radius: 8px;
}


/* ===== Aliases for renamed parent classes ===== */
.dept-card-about {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    cursor: pointer;
}

.expert-mini-art {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.expert-mini-cd {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.expert-card-column {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.expert-card-dls {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.expert-avatar-column {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.expert-avatar-dls {
    width: 100%;
    height: 384px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.expert-info-column {
    padding: 20px;
}

.expert-info-dls {
    padding: 20px;
}

.expert-title-column {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.expert-title-dls {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.expert-dept-column {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.expert-desc-column {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expert-desc-dls {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.col-intro-dls {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 34px;
    margin-bottom: 30px;
    line-height: 1.9;
    color: var(--text-gray);
    font-size: 15px;
}

.info-card-idx {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    border: 1px solid #f0f2f5;
}

.special-card-idx {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.side-expert-jwy {
    padding: 16px 18px;
}


@media (max-width: 768px) {
    .info-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .special-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-main {
        flex-wrap: wrap;
    }
    .footer-info {
        flex: 0 0 100%;
        margin-bottom: 16px;
    }
    .footer-col {
        flex: 1 1 30%;
    }
    .footer-qr {
        flex: 0 0 100%;
        margin-top: 8px;
    }
}

@media (max-width: 575px) {
    .special-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Banner Carousel ===== */
.banner-carousel {
    position: relative;
    height: 460px;
    overflow: hidden;
}

.banner-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner-slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.banner-slide img {
    width: 1920px;
    height: 460px;
    margin-left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.banner-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.banner-arrow svg {
    width: 24px;
    height: 24px;
}

.banner-prev {
    left: 24px;
}

.banner-next {
    right: 24px;
}

.banner-carousel .banner-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.banner-carousel .banner-dots span {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-carousel .banner-dots span.active {
    background: var(--primary);
    width: 50px;
}

@media (max-width: 768px) {
    .banner-carousel {
        height: 260px;
    }
    .banner-slide img {
        height: 260px;
    }
    .banner-arrow {
        width: 36px;
        height: 36px;
    }
    .banner-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== Expert Carousel ===== */
.expert-carousel {
    position: relative;
}

.expert-viewport {
    overflow: hidden;
    padding: 0 4px;
}

.expert-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.expert-track .expert-card-dls {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.expert-arrow {
    position: absolute;
    top: 180px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.expert-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.expert-arrow:hover svg {
    fill: var(--white);
}

.expert-arrow svg {
    width: 22px;
    height: 22px;
    transition: fill 0.3s;
}

.expert-prev {
    left: -22px;
}

.expert-next {
    right: -22px;
}

@media (max-width: 992px) {
    .expert-track .expert-card-dls {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .expert-prev { left: -16px; }
    .expert-next { right: -16px; }
}

@media (max-width: 575px) {
    .expert-track .expert-card-dls {
        flex: 0 0 100%;
    }
    .expert-arrow { display: none; }
}
.news-info p{
    color: var(--text-gray);
    font-size: 14px;
    line-height:1.9;
}
