@media (min-width: 1200px) {
    .custom-padding{
        padding-top: 80px;
        padding-bottom: 30px;
    }
}
.menu_fixed{
    position: sticky;
    top: 0;
    z-index: 999;
    animation: sticky 1s;
}

@keyframes sticky {
    0% {
        transform: translateY(-100%)
    }
    100% {
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate.fadeInDown {
    animation-name: fadeInDown
}
.dropdown-toggle::after {
    display: inline-block !important;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.quick-navigation svg, .quick-navigation img{
    height: 1.5rem;
}
.support{
    cursor: pointer;
}
.phone-text {
    background-color: var(--main-color);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    position: absolute;
    right: 50px;  /* 初始隐藏在按钮左侧 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.phone-text::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px; /* 让箭头靠近按钮 */
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--main-color);
}
.support:hover .phone-text {
    opacity: 1;
    visibility: visible;
    right: 60px; /* 向左滑出 */
}
.main-color{
    color: var(--main-color);
}
.headline .sub {
    font-size: .9rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.section-block.section-about .headline {
    align-items: start;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 9px;
    margin-left: 9px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    background: black !important;
    border-radius: 50%;
    padding: 10px;
    opacity: .2;
}

.carousel-control-prev:hover,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-next:focus {
    opacity: .6;
}

.carousel-control-prev {
    left: 4%;
    padding: 0px 4px 0px 0px;
}

.carousel-control-next {
    right: 4%;
    padding: 0px 0px 0px 4px;
}

.section-block.section-about.index .about-content .corner-logo {
    display: none;
}

.team-item {
    border-color: #02937D33;
}

.team-item .team-content .title-sub {
    white-space: nowrap;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #f3f3f3 !important;
}
@media (min-width: 1200px) {
    .headline .tips {
        margin-top: 18px !important;
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        text-align: center;
    }

    .navbar-nav .dropdown-menu>li:not(:last-child) {
        border-style: solid;
        border-color: rgb(241 241 241);
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 0.7rem;
    }

    .section-block.section-about.index .headline .main {
        margin-left: -60px;
    }
}

@media (max-width: 768px) {
    .navbar-brand>img {
        height: auto;
        width: 65%;
    }
    .navbar,
    .navbar-toggler {
        height: 60px;
    }
    .section-block.section-tabs .nav-tabs .nav-link .main{
        white-space: nowrap;
    }
    .section-block.section-tabs .nav-tabs .nav-link> :not([hidden])~ :not([hidden]) {
        font-size: .7rem;
        white-space: nowrap;
    }

    .section-block.section-about .headline {
        margin-bottom: 15px;
    }

    .section-block.section-about .about-content {
        position: relative;
        overflow: hidden;
    }

    .section-block.section-about .about-content .corner-logo {
        display: block;
        position: absolute;
        left: -12px;
        top: -55px;
        width: 35%;
        height: auto;
    }

    .section-block.section-about .headline .main span {
        margin: 3px 0px 10px 0px;
    }

    .section-block.section-about .headline .main::before,
    .section-block.section-about .headline .main::after {
        content: none;
    }

    .team-item {
        transition: .3s;
    }

    .slick-prev,
    .slick-next {
        background-color: rgb(127 127 127 / 70%) !important;
    }

    .slick-prev {
        left: 8% !important;
    }

    .slick-next {
        right: 8% !important;
    }

    .team-slider .team-item.main .team-content {
        border-top: 4px solid var(--main-color);
    }
}




/* .section-block.section-procedure {
    background-image: url(../../_assets/img/Group-1678.png);
} */

.section-block.section-about.reserve {
    position: relative;
    overflow: hidden;
}

.section-block.section-about.reserve .heading {
    font-size: 1.5rem;
}

.section-block.section-about.reserve .content {
    font-size: 1.2rem;
}

.section-block.section-about.reserve::before {
    position: absolute;
    content: '';
    background-image: url(../../_assets/img/yygh-left.png);
    background-repeat: no-repeat;
    background-position: top left;
    top: 25%;
    width: 100%;
    height: 100%;
}

.section-block.section-about.reserve::after {
    position: absolute;
    content: '';
    background-image: url(../../_assets/img/yygh-right.png);
    background-repeat: no-repeat;
    background-position: top left;
    bottom: 25%;
    right: 0px;
    width: 25%;
    height: 100%;
}

@media (max-width: 768px) {
    .section-block.section-procedure {
        background-size: 20%;
        background-position-y: -5px;
        background-position-x: 105%;
    }

    .section-block.section-about.reserve::before {
        top: 66%;
        left: -10%;
        background-size: 50%;
    }

    .section-block.section-about.reserve::after {
        top: 0%;
        left: 65%;
        background-size: 50%;
        width: 100%;
    }

    .section-block.section-about.reserve .content {
        font-size: 1rem;
    }
}

/* 联系我们来院路线 */
/* .section-block.section-traffic{
    position: relative;
}
.section-block.section-traffic::before{
    position: absolute;
    content: '';
    background-image: url(../../_assets/img/yygh-left.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 50%;
    width: 100%;
    bottom: 0%;
    height: 100%;
} */

/* 新闻资讯 */
.section-block.section-news .news-tab {
    background-image: url(../../_assets/img/xwzxbg.png);
    background-repeat: no-repeat;
    background-size: 100%;
}

@media (max-width: 768px) {
    .section-block.section-news .news-tab {
        position: sticky;
        top: 0;
        z-index: 1000;
        padding-top: 1rem;
    }

    .section-block.section-news .news-tab .title {
        font-size: 1rem;
    }

    .section-block.section-news .news-tab .list {
        font-size: 14px;
        padding-left: 20px;
    }

    .section-block.section-news.read .news-tab {
        display: none;
    }
}


/* 医生团队查看医生 */
.team-item .team-content {
    border-top: 3px solid #02937D;
}
@media (min-width: 1200px) {
    @keyframes slideUpFadeIn {
        from {
            opacity: 0;
            transform: translateY(100%);
            /* 从底部开始 */
        }
    
        to {
            opacity: 1;
            transform: translateY(0);
            /* 滑动到原位 */
        }
    }
    
    .team-item:hover .team-content {
        height: auto;
        animation: slideUpFadeIn .5s ease-out forwards;
        border-top: 0px;
    }
}

.section-block.section-about.team .summary{
    margin-bottom: 50px !important;
}

.section-block.section-about.team .headline .main>*{
    font-size: 1.7rem !important;
}
.section-block.section-tabs.team .headline .main>*{
    font-size: 2.8rem !important;
}
@media (max-width: 1200px) {
    .team-item:hover .team-content,
    .team-item.hover .team-content {
        height: auto;
        background-color: rgb(242 246 247 / var(--tw-bg-opacity, 1));
        --tw-text-opacity: 1;
        color: black;
    }
    .team-item .team-content .title-tips,
    .team-item .team-content .info{
        display: none !important;
    }
    .section-block.section-experts-footer {
        background-image: url(../../_assets/img/ystdbgmobile.png);
    }
    .section-block.section-about.team .summary{
        margin-bottom: 0px !important;
    }
    .section-block.section-about.team .core{
        display: none;
    }
}


.section-block.section-experts-footer {
    height: 48px;
    background-image: url(../../_assets/img/ystdbg.png);
    background-repeat: no-repeat;
}

/* 服务项目 */
.section-block.section-about.reserve.service{
    background-color: #F9F9F9;
}
@media (max-width: 768px) {
    .section-block.section-about.reserve .content{
        font-size: .85rem;
    }
}


.now-yy{
    display: flex;
    justify-content: center;
    margin-top: 3rem !important;
    align-items: center;
    animation: myBreath 1s linear infinite;
}
.content .now-yy.start{
    justify-content: start;
    margin-top: 2rem !important;
}
.now-yy img{
    width: auto;
    cursor: pointer;
}

@keyframes myBreath {
	0%{
		transform: scale(0.88);
	}
	50%{
		transform: scale(100%);
	}
	100%{
		transform: scale(0.88);
	}
}


.section-recommend{
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: #F3F6F7;
}
.section-recommend .section-inner{
    background: white;
    border-radius: 34px;
    overflow: hidden;
}
.section-recommend .media-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.section-price-list table{
    width: 100%;
    table-layout: fixed;
    border-collapse: separate; /* 改为 separate */
    border-spacing: 0; /* 消除单元格间隙 */
    border-radius: 30px;
    overflow: hidden; /* 隐藏超出圆角的部分 */
    border: 1px solid #FFFFFF; /* 添加表格边框 */
}
.section-price-list table thead th{
    background-color: #02937D;
    padding: 10px;
    text-align: center;
    color: #FFFFFF;
    border: 0.5px solid #E9EEEF;
    font-weight: 700;
    font-size: 1.4rem;
}
.section-price-list table thead th:first-child {
    border-top-left-radius: 30px;
}
.section-price-list table thead th:last-child {
    border-top-right-radius: 30px;
}
.section-price-list table tbody td{
    padding: 10px;
    text-align: center;
    color: #333333;
    border: 1px solid #F3F6F7;
    font-weight: 400;
    font-size: 1.3rem;
}
.section-price-list tbody tr:nth-child(odd) {
    background-color: white;
}

.section-price-list tbody tr:nth-child(even) {
    background-color: #F3F6F7;
}
.section-price-list tbody tr:last-child td:first-child {
    border-bottom-left-radius: 30px;
}
.section-price-list tbody tr:last-child td:last-child {
    border-bottom-right-radius: 30px;
}

.section-price-list table{
    margin-bottom: 25px;
}
.section-price-list .price-tips{
    text-align: center;
}
.section-price-list .price-tips span{
    display: inline-block;
    padding: 11px 25px;
    font-size: 1.2rem;
    background: #FFEFED;
    border-radius: 100px;
    color: #8D5747;
    font-weight: 700;
}
.section-price-list .info-tips{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}