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

body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    background-color: #f5f5f5;
}
a{ color:inherit;}
a:focus{ outline: none !important;}
a{text-decoration: none;  }
a:link,a:hover,a:active,a:visited {text-decoration: none;}
h4, .h4, h5, .h5, h6, .h6,h1, .h1, h2, .h2, h3, .h3,p{ margin:0;}
h5{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
h5 a{ overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.m{
    max-width: 1400px;
    margin: 0 auto;
}
.white{
    background-color: #ffffff;
}
.top_w {
    width: 100%;
    padding: 12px 0;
    background-color: #ffffff;
    position: relative;
}

#header .top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

#logo .logo {
    height: 56px;
}

#logo .logo-info {
    display: flex;
    flex-direction: column;
}

#logo .logo-info .hospital-name {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    line-height: 1.3;
}

#logo .logo-info .hospital-name-en {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
}

#header .top .top_c {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 18px;
}



#header .top .top_c span {
    font-size: 18px;
    color: #333333;
}

#header .top .top_c:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 40px;
    border-left: 1px solid #ddd;
    margin-right: 18px;
    vertical-align: middle;
}

#header .top .top_tel {
    display: flex;
    align-items: stretch;
    height: 56px;
    border: 1px solid #21a6a6;
    color: #333;
    font-size: 18px;
    text-decoration: none;
}
.top_tel_box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    white-space: nowrap;
}
#header .top .top_tel .top_tel_img {
    width: 24px;
    height: 24px;
}

#header .top .top_tel .tel{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    font-weight: bold;
    font-family: "Arial", sans-serif;
    background-color: #21a6a6;
    width: 60%;
    height: 100%;
    padding: 0 10px;
    white-space: nowrap;
}
.menuBtn{
    display: none;
    width: 1.875rem;
    height: 1.875rem;
    position: absolute;
    top: 0.937rem;
    right: 0.75rem;
    cursor: pointer;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s;
}

.menuBtn b {
    display: block;
    height: .15rem;
    background-color: #333;
    margin: .4rem 0;
    transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    -o-transition: .3s
}

.menuBtn.open b {
    display: none;
    margin: 0;
    position: absolute;
    left: 1px;
    top: 50%;
    width: 1.875rem
}

.menuBtn.open b:first-child {
    display: block;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg)
}

.menuBtn.open b:last-child {
    display: block;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg)
}







.banner-section {
    position: relative;
    width: 100%;
    padding-bottom: 60px;
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72%;
    background-image: url('../images/ban_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.banner-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.banner-left {
    flex: 1;
}
.banner .slick-arrow {
    display: none!important;
}
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
    position: relative;
    opacity: 1;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.banner-prev:hover,
.banner-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.banner-prev {
    left: 10px;
}

.banner-next {
    right: 10px;
}

.banner-prev img,
.banner-next img {
    width: 40px;
    height: 40px;
}

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

.banner-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-dot.active {
    background-color: #ffffff;
}

.banner-right {
    width: 287px;
    flex-shrink: 0;
}

.nav-list {
    background-color: #21a6a6;
    padding: 10px 0 8px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #80cbcd;
    margin: 0 35px;
    transition: background-color 0.3s;
}
.nav-list .nav-item:last-child {
    border-bottom: none;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-icon {
    flex-shrink: 0;
}

.feature-list {
    background-color: #f9793b;
    padding: 15px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 10px 30px;
    color: #ffffff;
    font-size: 16px;
    gap: 8px;
}

.feature-item span {
    align-items: center;
}

.feature-item .fea-icon {
    width: 20px;
}





.news-section {

    
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.news-left {
    flex: 1;
}

.news-right {
    width: 435px;
    flex-shrink: 0;
}

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

.section-header h2 {
    font-size: 24px;
    color: #21a6a6;
    font-weight: bold;
}

.more-link {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
}

.news-content {
    display: flex;
    gap: 20px;
    background-color: #ffffff;
    padding: 20px;
}

.news-img-box {
    width: 340px;
    flex-shrink: 0;
}

.news-img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.img{ overflow: hidden;}
.img img{ 
    width:100%; 
    height:100%; 
    display: block; 
    transition: 1s; 
    -webkit-transition: 1s; 
    -moz-transition: 1s; 
    -ms-transition: 1s; 
    -o-transition: 1s;
}

.img:hover img{ 
    transform: scale(1.15) rotate(.1deg); 
    -webkit-transform: scale(1.15) rotate(.1deg); 
    -moz-transform: scale(1.15) rotate(.1deg); 
    -ms-transform: scale(1.15) rotate(.1deg); 
    -o-transform: scale(1.15) rotate(.1deg); 
}

.more-link {
    width: 5rem;
    height: 2rem;
    line-height: 2rem;
    display: block;
    text-align: center;
    font-size: .9375rem;
    color: #fff;
    border-radius: 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: all ease 600ms;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.more-link:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #21a6a6;
    transition: all ease 600ms;
    z-index: -1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.more-link:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 0;
    background: #f9793b;
    transition: all ease 600ms;
    z-index: -1;
}

.more-link:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.more-link:hover {
    color: #fff;
}


.news-img-title {
    font-size: 16px;
    color: #333333;
    padding: 15px 0 5px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-img-date {
    font-size: 14px;
    color: #999999;
}

.news-list {
    list-style: none;
    flex: 1;
}

.news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

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

.news-item a {
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 15px;
    position: relative;
    padding-left: 12px;
}

.news-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #f9793b;
    border-radius: 50%;
}

.news-item a:hover {
    color: #21a6a6;
}

.news-date {
    font-size: 14px;
    color: #999999;
    flex-shrink: 0;
}

.hot-list {
    list-style: none;
    background-color: #ffffff;
    padding: 17px 17px;
}

.hot-item {
    display: flex;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px dashed #b6b6b6;
    gap: 10px;
}

.hot-item:last-child {
    border-bottom: none;
}

.hot-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-color: #21a6a6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    line-height: 20px;
}

.hot-item a {
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hot-item a:hover {
    color: #21a6a6;
}

.hot-arrow {
    flex-shrink: 0;
    background: url(../images/right_arr.png) no-repeat center center;
    background-size: 100%;
    width: 25px;
    height: 25px;
}

.ad-banner {
    margin-top: 20px;
}
.ad-banner a {
    display: block;
}

.ad-img {
    width: 100%;
    object-fit: cover;
    display: block;
}






.expert-section {
    padding: 30px 0;
    background: url(../images/zj_bg.png) no-repeat center center;
    background-size: cover;
    margin-top: 50px;
}

.expert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.expert .tit {
    font-size: 26px;
    color: #ffffff;
    font-weight: bold;
}

.expert-controls {
    display: flex;
    gap: 10px;
}

.expert-prev,
.expert-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.expert-prev:hover,
.expert-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.expert-prev img,
.expert-next img {
    width: 16px;
    height: 16px;
}


.m-banidx1 .slick-arrow{
    width:2.25rem;
    height:2.25rem;
    border:none;
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
    border-radius: 50%;
    font-size:0;
    transition:.3s;
    z-index:1;
    cursor:pointer;
    position:absolute;
    top:-3.5rem
}


.m-banidx1 {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    scrollbar-width: none;
    margin-top: 20px;
}

.m-banidx1::-webkit-scrollbar {
    display: none;
}

.m-banidx1 .item {
    flex-shrink: 0;
    background-color: #ffffff;
    overflow: hidden;
    margin: 0 10px;
}

.m-banidx1 .item .con {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.m-banidx1 .exp_top {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    margin: 15px;
    gap: 12px;
    border-bottom: 1px solid #dedede;
}

.m-banidx1 .pic {
    flex-shrink: 0;
}

.m-banidx1 .pic1 {
    width: 105px;
    height: 125px;
    background-color: #21a6a6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-banidx1 .pic1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-banidx1 .txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m-banidx1 .name {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m-banidx1 .name .n1 {
    font-size: 20px;
    color: #333;
    font-weight: normal;
}

.m-banidx1 .more {
    display: inline-block;
    background-color: #f9793b;
    color: #ffffff;
    padding: 4px 15px;
    border-radius: 15px;
    font-size: 16px;
    align-self: flex-start;
    margin-top: 10px;
}

.m-banidx1 .exp_bottom {
    padding: 0 15px 15px;
}

.m-banidx1 .exp_bottom p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}
.m-banidx1 .slick-prev{background-image:url(../images/arr_left.png);right:4rem}
.m-banidx1 .slick-prev:hover{background-image:url(../images/arr_left_on.png)}
.m-banidx1 .slick-next{background-image:url(../images/arr_right.png);right:0}
.m-banidx1 .slick-next:hover{background-image:url(../images/arr_right_on.png)}






.disease-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.disease .disease-title {
    font-size: 26px;
    color: #21a6a6;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.disease-tabs {
    display: flex;
    align-items: center;
    background-color: #21a6a6;
    padding: 0 20px;
    margin-bottom: 25px;
}

.tab-main {
    font-size: 24px;
    color: #21a6a6;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #fff;
    margin: 10px 15px 0 0;
}

.tab-item {
    font-size: 18px;
    color: #ffffff;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.disease-tabs .tab-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
}


.tab-item:hover {
    color: #fff799;
}

.tab-item.active {
    color: #fff799;
}
.tab-item:hover::after,
.tab-item.active::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 12px solid #21a6a6;
}

.tab-more {
    margin-left: auto;
    font-size: 14px;
    color: #333;
    background-color: #fff799;
    padding: 6px 15px;
    border-radius: 12px;
    text-decoration: none;
}

.disease-content {
    position: relative;
    min-height: 465px;
}

.disease-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.disease-panel.active {
    display: flex;
    gap: 30px;
}

.disease-left {
    width: 420px;
    flex-shrink: 0;
}

.disease-img-box {
}

.disease-img-box a .img{
    max-height: 260px;
}

.disease-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.disease-img-date {
    font-size: 14px;
    color: #999999;
    margin-top: 10px;
    display: flex;
    align-items: center;
}
.disease-img-box .disease-img-date {
    margin-top: 15px;
}

.disease-img-date::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("../images/time.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

.disease-img-title {
    font-size: 16px;
    color: #333333;
    font-weight: bold;
    line-height: 1.5;
    margin: 10px 0;
}

.disease-img-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}
.disease-img-desc span {
    font-size: 16px;
    color: #ea5504;
}

.disease-right {
    flex: 1;
}

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

.disease-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eeeeee;
}
.disease-item:nth-last-child(2),
.disease-item:last-child {
    border-bottom: none;
}

.disease-item:nth-child(1),
.disease-item:nth-child(2) {
    display: block;
    align-items: flex-start;
}

.disease-item a {
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 15px;
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 15px;
}

.disease-item:nth-child(1) a,
.disease-item:nth-child(2) a {
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    padding-left: 12px;
}

.disease-item a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #f9793b;
    border-radius: 50%;
}

.disease-item a:hover {
    color: #21a6a6;
}

.disease-item .show {
    display: inline-block;
    padding: 5px 15px;
    margin-top: 1.5rem;
    font-size: .875rem;
    color: #666;
    border-radius: 15px;
    border: 1px solid #9ea0a0;
}

.disease-date {
    font-size: 12px;
    color: #999999;
    flex-shrink: 0;
}







.about-section {
    padding: 55px 0;
    background: url("../images/ab_bg.jpg") no-repeat center center;
    background-size: cover;
}

.about-content {
    display: flex;
    align-items: stretch;
}

.about-img {
    flex: 0 0 35%;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 0 0 45%;
    padding: 25px;
    background-color: #ffffff;
    box-sizing: border-box;
    min-height: 100%;
}

.about-title {
    font-size: 22px;
    color: #333333;
    font-weight: bold;
    margin: 25px 0 15px 0;
}
.about-title::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #f8994b;
    margin-top: 8px;
}

.about-desc {
    font-size: 16px;
    color: #666666;
    line-height: 2;
    margin: 0 0 18px 0;
    text-align: justify;
}

.about-more {
    float:right;
    padding: 10px 25px;
    background-color: #49b5b7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
}

.about-cards {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 20px;
}

.about-card {
    
}
.about-card a {
    padding: 26px 0;
    display: block;
    color: #ffffff;
    font-size: 22px;
}
.about-card a .about_car_box{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.about-card a .about_car_p{
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    line-height: 2rem;
}

.card-blue {
    background-color: #21a6a6;
}

.card-orange {
    background-color: #ff9f43;
}

.card-yellow {
    background-color: #ffc107;
}

.card-icon {
    font-size: 20px;
}




.gallery-section {
    padding: 55px 0;
    background-color: #ffffff;
}

.gallery-slider {
    
}

.gallery-item {
    padding: 0 15px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
.gallery-slider .slick-arrow {
    display: none!important;
}

.footer {
    background-color: #088a8a;
    padding: 30px 0;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo img {
    
}

.footer-info h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.footer-info p {
    font-size: 12px;
    margin: 5px 0 0;
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.8;
}

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    padding-left: 30px;
}

.footer-center::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-center h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.footer-center p {
    font-size: 16px;
    margin: 0;
}

.footer-right {
    flex: 0 0 300px;
    display: flex;
    gap: 20px;
    justify-content: end;
    position: relative;
    padding-left: 30px;
}
.footer-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}
.hlin{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #f8994b;
    height: 35px;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.qr-code img {
    width: 135px;
}

.qr-code span {
    font-size: 16px;
}





.c_pos {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e3e7;
}
.c_pos img {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.c_pos .label {
    font-size: 1.075rem;
    color: #666;
    margin-right: 0.5rem;
}

.c_pos .link {
    font-size: 1.075rem;
    color: #666;
    text-decoration: none;
    margin-right: 0.5rem;
    transition: color 0.3s ease;
}
.c_pos span a{
    color: #21a6a6;
}
.c_pos span a:hover,
.c_pos .link:hover {
    color: #21a6a6;
}

.c_pos .c_arrow {
    font-size: 1.075rem;
    color: #999;
    margin-right: 0.5rem;
}

.c_pos .current {
    font-size: 1.075rem;
    color: #333;
}

.expert-team {
    padding: 30px 0;
}

.expert-content {
    display: flex;
    gap: 30px;
}

.expert-list {
    flex: 1;
}

.expert-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e3e7;
}

.expert-avatar {
    flex-shrink: 0;
    width: 180px;
    background-color: #21a6a6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expert-title {
    margin-bottom: 10px;
}

.expert-name {
    font-size: 22px;
    font-weight: bold;
    color: #21a6a6;
    margin-right: 15px;
}

.expert-title {
    font-size: 20px;
    color: #21a6a6;
    font-weight: bold;
}

.expert-desc {
    font-size: .925rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 15px;
    flex: 1;
}

.expert-buttons {
    display: flex;
    gap: 55px;
    align-self: end;
}

.btn-consult {
    padding: 8px 20px;
    background-color: #21a6a6;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-consult:hover {
    background-color: #1a8f8f;
}

.btn-detail {
    padding: 8px 20px;
    background-color: #f9793b;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-detail:hover {
    background-color: #e86a2e;
}

.expert-sidebar {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.r-title {
    font-size: 26px;
    font-weight: bold;
    color: #21a6a6;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e3e7;
    position: relative;
}
.r-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 3px;
    width: 75px;
    background-color: #f47a46;
}


.about-imgs {
    margin-bottom: 15px;
    overflow: hidden;
}

.about-imgs img {
    width: 100%;
    object-fit: cover;
}

.about-card-r .about-des {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}
.about-card-r .about-des .about-detail {
    color: #f9793b;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content:space-between;
    padding: 0 15px;
}

.contact-info .btn {
    overflow: hidden;
    flex-shrink: .5;
    font-size: 1rem;
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #21a6a6;
    border-radius: .625rem;
    color: #fff;
    -webkit-border-radius: .625rem;
    -moz-border-radius: .625rem;
    -ms-border-radius: .625rem;
    -o-border-radius: .625rem;
    border-bottom-right-radius: 0;
    padding: 8px 0;
}





.contact-btn:hover {
    background-color: #1a8f8f;
}

.advantage-card {
    padding: 20px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 35px 0 25px;
    background-color: #e7f9f9;
    text-align: center;
    border: 1px solid #21a6a6;
    position: relative;
    margin-top: 20px;
}

.advantage-item img {
    width: 66px;
    height: 66px;
    background-color: #21a6a6;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    z-index: 1;
    margin-top: -55px;
}

.advantage-item span {
    font-size: 18px;
    color: #21a6a6;
    line-height: 1.8;
    margin-top: 10px;
}




.promo-section {
    padding: 30px 0;
}

.promo-btn-wrap {
    text-align: center;
    margin-top: 30px;
}

.promo-btn {
    display: inline-block;
    padding: 10px 40px;
    background-color: #f9793b;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.promo-btn:hover {
    background-color: #e86a2e;
}

.recommend-expert {
    margin-bottom: 30px;
}



.expert-card {
    
    background: url('../images/tjzj_bg.png') no-repeat center center;
    background-size: cover;
    padding: 30px;
    
    overflow: hidden;
}
.expert-box{
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    box-sizing: border-box;
    margin-top: 0;
}



.expert-card-right {
    flex: 1;
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

.card-title {
    margin-bottom: 15px;
}

.card-title .name {
    font-size: 24px;
    font-weight: bold;
    margin-right: 15px;
}

.card-title .title {
    font-size: 16px;
}

.card-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-orange {
    padding: 8px 20px;
    background-color: #f9793b;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-orange:hover {
    background-color: #e86a2e;
}

.card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.hot-topics {
    background-color: #f5f7f8;
    padding: 25px;
}

.topic-header {
    margin-bottom: 20px;
}
.hot-topics .hot-list{
    background-color: unset;
}


.topic-more {
    padding: 6px 15px;
    background-color: #21a6a6;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 15px;
    transition: background-color 0.3s;
    float: right;
}

.topic-more:hover {
    background-color: #1a8f8f;
}

.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 25px 40px;
    border-radius: 8px;
    color: #ffffff;
}

.cta-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.cta-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.cta-btn {
    padding: 10px 25px;
    background-color: #ffffff;
    color: #21a6a6;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #f0f0f0;
}




.news-content {
    display: flex;
    gap: 30px;
}

.news-li {
    flex: 1;
}

.news-li .news-items {
    padding: 25px 0;
    border-bottom: 1px dashed #e0e0e0;
}

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

.news-li .news-items h3 {
    margin: 0 0 10px 0;
}

.news-li .news-items h3 a {
    font-size: 1.125rem;
    font-weight: bold;
    color: #21a6a6;
    text-decoration: none;
    transition: color 0.3s;
}

.news-li .news-items h3 a:hover {
    color: #1a8f8f;
}

.news-li .news-items p {
    font-size: .925rem;
    color: #666666;
    line-height: 1.8;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-li .news-items .news-dates {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    gap: 5px;
}

.news-li .news-items .news-dates img {
    width: 16px;
    height: 16px;
}

.abs{
    margin: 30px 0;
    width: 100%;
}
.abs img{
    width: 100%;
}

.disease-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 45px;
}

.disease-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eeeeee;
}
.disease-items a {
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 15px;
    position: relative;
    display: block;
    overflow: hidden;
    padding-left: 15px;
}
.disease-items a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #f9793b;
    border-radius: 50%;
}

.disease-items a:hover {
    color: #21a6a6;
}

.disease-items .show {
    display: inline-block;
    padding: 5px 15px;
    margin-top: 1.5rem;
    font-size: .875rem;
    color: #666;
    border-radius: 15px;
    border: 1px solid #9ea0a0;
}

.disease-items .disease-dates {
    font-size: 12px;
    color: #999999;
    flex-shrink: 0;
}


.article h3 {
    font-size: 1.25rem;
    color: #21a6a6;
    margin: 20px 0;
    line-height: 1.8;
    text-align: center;
}
.article h4 {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 36px;
    font-weight: normal;
    border-bottom: 1px solid #e0e3e7;
}
.article h4 span{
    display: inline-block;
}
.article h4 span.sp {
    margin: 0 25px;
    
}
.content{
    margin: 30px 0;
    border-bottom: 1px solid #e0e3e7;
}
.content .zj_img{
    width: 180px;
    background: #21a6a6;
    margin: 0 auto;
    display: block;
}
.content p{
    line-height: 36px;
    padding: 5px 0 !important;
}
.content p, .content span {
    text-align: justify;
}

.pre_next p{
    line-height: 30px;
}
.pre_next p a{
    color: #21a6a6;
    font-size: 15px;
}
.pre_next p span{
    display: inline;
    color: #21a6a6;
    font-weight:bold;
    font-size: 15px;
}



.case-list{
    flex: 1;
}
.case-list .case-item {
    padding: 2.25rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.case-list .case-item a {
    display: flex;
}

.case-list .case-item .img {
    width: 16rem;
    flex-shrink: 0;
    margin-right: 2rem;
}



.case-list .case-item .txt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.case-list .case-item .txt h3 {
    font-size: 1.125rem;
    width: 100%;
    line-height: 1.5;
    color: #21a6a6;
    font-weight: bold;
    margin-bottom: 1rem;
}

.case-list .case-item .txt p {
    font-size: .925rem;
    line-height: 1.75rem;
    height: 3.5rem;
    color: #636364;
    overflow: hidden;
    margin-bottom: 1rem;
}

.case-list .case-item .txt span {
    display: flex;
    align-items: center;
    font-size: .875rem;
    color: #1d1d1f;
}

.case-list .case-item .txt span svg {
    margin-right: 8px;
    width: 1rem;
}

.case-list .case-item .txt .disease-dates::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../images/time.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}

/*翻页*/
.page {
    text-align: center;
    margin: 3rem 0;
    font-size: 0;
    color: #919191;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
}

.page li {
    display: inline-block;
    list-style: none;
}
.page .pagination p,
.page .pagination a {
    padding: 0 11px;
    min-width: 2.125rem;
    line-height: 2rem;
    height: 2.125rem;
    display: inline-block;
    border: 1px solid #e5e5e5;
    border-radius: 1.25rem;
    margin: .5rem 0.375rem;
    color: #868686;
    font-size: .875rem;
    -moz-transition: all 0.36s ease-in-out;
    -webkit-transition: all 0.36s ease-in-out;
    -o-transition: all 0.36s ease-in-out;
    -ms-transition: all 0.36s ease-in-out;
    transition: all 0.36s ease-in-out;
    -webkit-border-radius: 1.25rem;
    -moz-border-radius: 1.25rem;
    -ms-border-radius: 1.25rem;
    -o-border-radius: 1.25rem;
}

.page .pagination .cur {
    background: #21a6a6!important;
    color: #fff;
    border: 1px solid #21a6a6;
}

.page a:hover {
    background: #21a6a6;
    color: #fff;
    text-decoration: none;
    border: 1px solid #21a6a6;
}
.pagination p.pageRemark{

}

.page span {
    line-height: 32px;
    display: inline-block;
    margin: 0 8px;
    font-size: 1rem;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.page input {
    height: 2.125rem;
    line-height: 2rem;
    font-size: 1rem;
    display: inline-block;
    border: 1px solid #e5e5e5;
    border-radius: 1.25rem;
    background: none;
    width: 2.5rem;
    text-align: center;
    color: #868686;
    -webkit-border-radius: 1.25rem;
    -moz-border-radius: 1.25rem;
    -ms-border-radius: 1.25rem;
    -o-border-radius: 1.25rem;
}

.page button {
    width: 65px;
    cursor: pointer;
    height: 2.125rem;
    line-height: 2rem;
    display: inline-block;
    border-radius: 1.25rem;
    border: 1px solid #e5e5e5;
    font-size: 1rem;
    color: #868686;
    background: none;
    -webkit-border-radius: 1.25rem;
    -moz-border-radius: 1.25rem;
    -ms-border-radius: 1.25rem;
    -o-border-radius: 1.25rem;
}

.page button:hover {
    background: #21a6a6;
    color: #fff;
    text-decoration: none;
    border: 1px solid #21a6a6;
}



@media (max-width: 992px) {
    #header .top {
        flex-direction: column;
        gap: 15px;
        padding: 0;
        /* align-items: start; */
    }
    #logo{
        margin-left: 0.75rem;
    }

    #logo .logo {
        height: 48px;
    }

    #logo .logo-info .hospital-name {
        font-size: 16px;
    }

    #logo .logo-info .hospital-name-en {
        font-size: 12px;
    }

    #header .top .top_c span {
        font-size: 12px;
    }

    #header .top .top_tel {
        font-size: 13px;
        /* display: none; */
    }

    #header .top .top_tel span:last-child {
        font-size: 16px;
    }
    #header .top .top_c{
        /* display: none; */
        margin-left: 0;
    }
    #header .top .top_c:before{
        margin-right: 0;
    }

    .menuBtn {
        display: block;
    }
    .h-r {
        display: none;
        position: fixed;
        top: 4rem;
        bottom: 0;
        overflow-y: auto;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 99;
    }
    .menuBtn.open {
        transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg)
    }
    .wp {
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
    }
    .nav {
        display: block
    }

    .nav li {
        display: block;
        margin: 0 0 .7rem;
        position: relative;
        padding-right: 1.25rem;
    }

    .nav .arr {
        height: 2rem;
        right: 1rem;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        width: 0.6rem;
        background-image: url(../images/h-arr.png);
        position: absolute;
        top: 0;
        transition: .3s;
    }
    .nav .v1 {
        font-size: 1rem;
        text-align: left;
        line-height: 2rem;
        border: none;
    }

    .nav .ok .arr {
        transform: rotate(-90deg)
    }

    .sub {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        background-color: transparent;
        min-width: auto;
        transform: translateX(0);
        padding: 0 10px;
        display: none;
    }

    .sub a {
        display: block;
        text-align: left;
        font-size: 1rem;
        margin: 0;
        color: #333;
        margin-bottom: 0;
        border: none;
        padding: 0;
        line-height: 1.7
    }



    .news-container {
        flex-direction: column;
    }

    .news-right {
        width: 100%;
    }

    .news-content {
        flex-direction: column;
    }

    .news-list {
        width: 100%;
    }

    .banner-container {
        flex-direction: column;
    }

    .banner-left {
        padding-right: 0;
    }

    .banner-right {
        width: 100%;
    }

    .nav-list {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

    .nav-item {
        width: 25%;
        justify-content: center;
        padding: 15px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin: 0;
    }

    .m-banidx1 .item {
        width: 220px;
    }

    .m-banidx1 .pic1 {
        width: 70px;
        height: 70px;
    }

    .m-banidx1 .pic1 img {
        width: 60px;
        height: 60px;
    }
    .disease-content {
        flex-direction: column;
        height: auto;
    }

    .disease-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .disease-panel.active {
        position: relative;
        display: flex;
    }

    .disease-left {
        width: 100%;
    }

    .disease-img {
        height: auto;
    }

    .disease-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }

    .tab-main {
        margin-right: 0;
        width: 100%;
        text-align: center;
        font-size: 1.375rem;
    }
    .about-content {
        flex-wrap: wrap;
    }
    .about-text{
        padding: 1rem .75rem;
    }

    .about-img,
    .about-text,
    .about-cards {
        flex: 1 1 100%;
    }
    .about-cards {
        margin-left: 0;
    }

    .about-cards {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-card {
        flex: 1;
        justify-content: center;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }

    .footer-left {
        flex: 1;
        min-width: 200px;
    }

    .footer-center {
        flex: 1;
        min-width: 200px;
        padding-left: 20px;
    }

    .footer-center::before {
        display: none;
    }

    .footer-center h4,
    .footer-center p {
        padding-left: 0;
    }
    .footer-logo{
        display: block;
    }

    .footer-right {
        width: 100%;
        justify-content: center;
        padding-left: 0;
        flex:0;
    }
    .hlin{
        display: none;
    }

    .footer-right::before {
        display: none;
    }
    .expert-content {
        flex-direction: column;
    }

    .expert-sidebar {
        width: 100%;
        flex: none;
    }

    .expert-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .expert-avatar {
        width: 150px;
    }

    .expert-buttons {
        align-self: center;
    }

    .about-img img {
    }
    .disease-panel{
        flex-wrap: wrap;
        padding: 0 15px;
    }

    .expert-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .expert-card-left {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .card-buttons {
        justify-content: center;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }


    .feature-list {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

    .feature-item {
        width: 50%;
        padding: 12px 10px;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .feature-item:nth-child(odd) {
        border-right: none;
    }

    .feature-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .gallery-item{
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .section-header{
        padding: 0 15px;
    }
    .news-content{
        padding: 0 15px;
    }
    .expert-section {
        padding: 25px 0;
        margin-top:0;
    }

    .expert .tit {
        font-size: 22px;
        margin: 0 0.75rem;
    }
    .m-banidx1 .slick-prev{
        right: 3.75rem;
    }
    .m-banidx1 .slick-next{
        right: .75rem;
    }
    .about-card a{
        padding: 20px 0;
    }

    .m-banidx1 .item {
        width: 200px;
    }

    .contact-info{
        padding: 0;
    }




    




    .m-banidx1 .pic1 {
        width: 65px;
    }

    .m-banidx1 .pic1 img {
        width: 100%;
        height: auto;
    }

    .m-banidx1 .name {
        font-size: 16px;
    }
    .m-banidx1 .name .n1{
        font-size: 14px;
    }
    .m-banidx1 .more{
        font-size: .75rem;
        padding: 5px 10px;
    }

    .expert-box.m-banidx1 .pic1 {
        width: 7rem;
        height: auto;
    }

    .expert-box.m-banidx1 .pic1 img {
        width: 100%;
        height: auto;
    }

    .expert-box.m-banidx1 .name {
        font-size: 1.125rem;
    }
    .expert-box.m-banidx1 .name .n1{
        font-size: 1.105rem;
    }
    .expert-box.m-banidx1 .more{
        font-size: 1rem;
        padding: 5px 10px;
        align-self: center;
    }
    .expert-box.m-banidx1 .exp_bottom p {
        font-size: 1rem;
        text-align: left;
    }

    .article h3{
        font-size: 1.25rem;
    }

    .disease-section {
        padding: 25px 0;
    }

    .disease .disease-title {
        font-size: 22px;
    }

    .disease-right {
        flex-direction: column;
        gap: 20px;
    }

    .disease-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .disease-item:nth-child(1),
    .disease-item:nth-child(2) {
        padding: 10px 0;
        background-color: #f8f9fa;
        border-radius: 8px;
    }

    .disease-item:nth-child(1) a,
    .disease-item:nth-child(2) a {
        font-size: 15px;
    }

    .disease-img-date {
        font-size: .95rem;
    }

    .disease-img-title {
        font-size: 15px;
        margin: 8px 0;
    }

    .disease-img-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .tab-item {
        padding: 10px 15px;
        font-size: 14px;
    }

    .news-content {
        flex-direction: column;
    }

    .news-img-box {
        width: 100%;
    }

    .news-img {
        height: auto;
    }
    .hot-topics .hot-list{
        padding: 0;
    }
}

@media (max-width: 576px) {
    .top_w {
        padding: 10px 0;
    }

    #header .top {
        gap: 12px;
    }

    #logo .logo {
        height: 40px;
    }

    #logo .logo-info .hospital-name {
        font-size: 14px;
    }

    #logo .logo-info .hospital-name-en {
        font-size: 9px;
    }

    #header .top .top_c .top_c_img {
        width: 16px;
        height: 16px;
    }

    #header .top .top_c span {
        font-size: 12px;
    }

    #header .top .top_tel {
        padding: 8px 16px;
        font-size: 12px;
    }

    #header .top .top_tel .top_tel_img {
        width: 20px;
        height: 20px;
    }

    #header .top .top_tel span:last-child {
        font-size: 15px;
    }

    .banner-section {
        padding-bottom:0;
    }

    .nav-item {
        font-size: 1.075rem;
        padding: 12px 8px;
        gap: 6px;
    }

    .nav-item .nav-icon {
        display: none;
        width: 16px;
        height: 16px;
    }

    .feature-item {
        font-size: 12px;
        padding: 10px 8px;
    }

    .news-section {
        padding: 20px 0;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .news-item {
        padding: 10px 0;
    }

    .news-item a {
        font-size: 1.025rem;
    }

    .hot-item {
        padding: 12px 0;
    }

    .hot-item a {
        font-size: 1.025rem;
    }

    .ad-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .ad-title {
        font-size: 16px;
    }

    .expert-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .m-banidx1 .item {
        width: 180px;
    }

    .m-banidx1 .name {
        font-size: 1.125rem;
    }

    .m-banidx1 .exp_bottom p {
        font-size: 1.025rem;
    }
    .disease-box{
        margin-bottom: 2rem;
    }

    .tab-item {
        font-size: 1.025rem;
        padding: 8px 10px;
    }
    .disease-item{
        padding: 5px 0;
    }

    .disease-item a {
        font-size: 1rem;
    }

    .disease-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .disease-item:nth-child(1),
    .disease-item:nth-child(2) {
        padding: 10px 0;
        background-color: unset;
    }
    .disease-item:nth-child(1) a::before,
    .disease-item:nth-child(2) a::before
    {
        display: none;
    }

    .disease-item:nth-child(1) a,
    .disease-item:nth-child(2) a {
        font-size: 1.025rem;
        padding: 0;
        margin: 0;
    }

    .disease-img-date {
        font-size: .95rem;
    }

    .disease-img-title {
        font-size: 1rem;
        margin: 6px 0;
    }

    .disease-img-desc {
        font-size: .95rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        overflow: hidden;
    }

    .disease-item .show {
        display: none;
    }

    .disease-date {
        font-size: .75rem;
    }

    .about-section{
        padding: 0;
    }


    .about-cards {
        flex-direction: column;
    }

    .about-card {
        flex: none;
    }

    .about-title {
        font-size: 1.55rem;
    }

    .about-desc {
        font-size: 1.025rem;
    }
    .footer-logo img {
        height: 45px;
    }

    .footer-info h4 {
        font-size: 16px;
    }

    .footer-info p {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-left {
        width: 100%;
        flex: none;
        min-width: auto;
    }

    .footer-center {
        width: 100%;
        flex: none;
        min-width: auto;
        padding-left: 0;
        align-items: center;
    }

    .footer-center h4 {
        font-size: 14px;
    }

    .footer-center p {
        font-size: 12px;
    }

    .footer-right {
        width: 100%;
        justify-content: center;
        padding-left: 0;
    }

    .qr-code img {
        width: 60px;
        height: 60px;
    }

    .qr-code span {
        font-size: 12px;
    }

    .expert-item {
        padding: 15px;
    }

    .expert-avatar {
        width: 155px;
    }

    .expert-name {
        font-size: 1.25rem;
    }
    .expert-title{
        font-size: 1.025rem;
    }

    .expert-desc {
        font-size: 1.025rem;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        overflow: hidden;
    }

    .btn-consult,
    .btn-detail {
        padding: 6px 15px;
        font-size: 12px;
    }

    .advantage-grid {
        gap: 10px;
    }

    .advantage-item {
        padding: 35px 0 15px;
    }

    .advantage-item img {
        width: 50px;
        height: 50px;
    }

    .advantage-item span {
        font-size: 15px;
        margin-top: 0px;
    }

    .promo-btn {
        padding: 8px 30px;
        font-size: 14px;
    }

    .recommend-expert h3,
    .topic-header h3 {
        font-size: 1.225rem;
    }
    .faq-card .r-title,
    .expert-sidebar .r-title{
        font-size: 1.225rem;
    }

    .expert-card {
        padding: 20px;
    }

    .expert-card-left {
        width: 100px;
        height: 100px;
    }

    .card-title .name {
        font-size: 20px;
    }

    .card-title .title {
        font-size: 14px;
    }

    .btn-orange {
        padding: 6px 15px;
        font-size: 12px;
    }

    .card-desc {
        font-size: 12px;
    }

    .hot-topics {
        padding: 15px;
    }

    .topic-list li {
        padding: 12px 0;
    }

    .topic-list li img {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }

    .topic-list li span:first-of-type {
        font-size: 12px;
    }

    .cta-banner {
        padding: 20px;
    }

    .cta-content h3 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 12px;
    }

    .cta-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .disease-lists{
        grid-template-columns: 1fr;
        gap:0;
    }
    .recommend-expert,
    .about-card-r{
        
    }
    .advantage-card{
        padding: 1.5rem 0;
    }
    .case-list{
        padding: 0.75rem
    }
    .case-list .case-item{
        padding: .75rem 0;
    }
    .case-list .case-item a{
        flex-direction: column;
    }
    .case-list .case-item .img{
        width: 100%;
    }
    .case-list .case-item .txt h3{
        font-size: 1.05rem;
    }
    .case-list .case-item .txt p{
        font-size: 1.025rem;
    }



    .news-item h3 a {
        font-size: 16px;
    }

    .news-item p {
        font-size: 12px;
    }

    .news-date {
        font-size: 12px;
    }

    .news-date img {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 375px) {
    #logo .logo-info .hospital-name-en {
        display: none;
    }

    #logo .logo-info .hospital-name {
        font-size: 13px;
    }

    #header .top .top_tel span:first-child {
        display: none;
    }

    #header .top .top_tel {
        gap: 6px;
    }
}
