body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scrollbar-width: none; /* 对于Firefox */
    overflow: hidden;
}


.header {
    height: 70px;
    background: #FFF;
}

.header-title {
    font-size: 14px;
    display: flex;
    align-items: center;
    flex: 1;
}

.doctor-text {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00B2EA;
}

.doctor-tips {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}

.card-title {
    font-weight: bold;
    color: #333;
    font-size: 20px;
}

.card-value {
    color: #333;
    margin-top: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

/* 样式用于展示点击标签后下方的线 */
.tab-content {
    display: none;
    align-items: center;
    justify-content: center;
}

.tab-content.active {
    display: flex;
}

.tab-header-link {
    cursor: pointer;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    padding: 8px 0px;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

.tab-header-link.active {
    border-bottom: 4px solid #5BA6EB;
    color: #5BA6EB;
}

.tab-link {
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-size: 18px;
    padding: 8px 0px;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid transparent;
    display: inline-block;
}

.tab-link.active {
    border-bottom: 4px solid #00BFB6;
    color: #00BFB6;
}

.line {
    width: 100%;
    height: 1px;
    background: #DDD;
    margin: 20px 0px;
}

.common-problem {
    width: 18rem;
    border: 1px solid #EEEEEE;
    height: 250px;
    border-radius: 20px;
}

.common-problem-title {
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    text-align: center;
}

.common-problem-value {
    font-size: 14px;
    color: #666666;
    text-align: justify;
}


.charge-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: #00BFB6;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.line-white {
    height: 1px;
    width: 100%;
    background: white;
    margin: 10px 0px;
}

.mySwiper {
    width: 100%;
    user-select: none;
}

.swiper-slide-banner {
    text-align: center;
    font-size: 18px;
    background: #fff;
    cursor: pointer;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide-banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-item {
    text-align: center;
    font-size: 18px;
    background: #fff;
    cursor: pointer;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 40%;
}

.swiper-slide-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-box {
    background: #FFF;
    height: 100px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}






