/* ==========================================================================
   about.css —— 关于我们页面专属样式
   公共样式见 common.css
   ========================================================================== */

/* ---------- 1. 介绍文字 ---------- */
.intro-text p {
    font-size: 15px;
    color: var(--bd-text);
    line-height: 1.9;
    margin-bottom: 18px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* ---------- 2. Mission / Vision 卡片 ---------- */
.mv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--bd-radius);
    min-height: 220px;
}

.mv-card {
    background: var(--bd-cream);
    border-radius: var(--bd-radius);
    padding: 36px 50px;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.mv-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.mv-card .mv-line {
    width: 40px;
    height: 3px;
    background: var(--bd-gold);
    border-radius: 2px;
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 14px;
    color: var(--bd-text-sub);
    line-height: 1.8;
}

/* ---------- 3. Service Process 8步流程 ---------- */
.about-bg{
    background-image: url('/uploads/20260908/d73403dcc7c59e4e08149c9164356ae3.jpg') ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.process-wrap {
    position: relative;
}

.process-wrap .col-eight{
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-item .circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    /*border: 2px solid var(--bd-primary);*/
    /*box-shadow: 0 0 4px 2px var(--bd-primary);*/
    background: linear-gradient(0deg, rgba(63, 147, 171, 0.1) 33%, rgba(63, 147, 171, 1) 100%);
    color: var(--bd-primary);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
    font-family: var(--bd-font-serif);
    padding: 3px;
    transition: transform 0.5s ease;
    transform: rotate(0deg);
}
.process-item .circle:hover{
    transform: rotate(359deg);
}
.process-item .circle div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
}

/* 步骤之间的虚线连接（PC端） */
@media (min-width: 992px) {
    .col-eight:not(:last-child) .process-item::after {
        content: "";
        position: absolute;
        top: 28px;
        left: calc(50% + 34px);
        right: calc(-50% + 34px);
        height: 0;
        border-top: 2px dashed var(--bd-primary);
        z-index: 0;
    }
}

.process-item .name {
    font-size: 13px;
    color: var(--bd-primary);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .process-item {
        margin-bottom: 10px;
    }
    .process-wrap .col-eight{
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* ---------- 4. Hospital Environment 轮播 ---------- */
.env-swiper-wrap {
    position: relative;
    padding: 20px 0 50px;
}

.env-swiper .swiper-slide {
    border-radius: var(--bd-radius);
    overflow: hidden;
    opacity: .6;
    transition: opacity .3s ease;
}

.env-swiper .swiper-slide-active {
    opacity: 1;
}

.env-swiper .swiper-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.env-swiper .swiper-button-prev,
.env-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bd-primary);
    color: #fff;
    transition: background .25s ease;
}

.env-swiper .swiper-button-prev::after,
.env-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}

.env-swiper .swiper-button-prev:hover,
.env-swiper .swiper-button-next:hover {
    background: var(--bd-primary-d);
}

@media (max-width: 767.98px) {
    .env-swiper .swiper-slide img {
        height: 260px;
    }
}

/* ---------- 5. Medical Equipment ---------- */
.equip-box{
    overflow: hidden;
}
.equip-img {
    border-radius: var(--bd-radius);
    /*overflow: hidden;*/
    /*height: 100%;*/
}

.equip-img img {
    /*width: 100%;*/
    /*height: 100%;*/
    /*object-fit: cover;*/
}

.equip-card{
    border-radius: var(--bd-radius);
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(63,147,171,.8);
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: all .5s ease;
    width: 100%;
}

.equip-box:hover .equip-card {
    transform: translateY(0%);
}

.equip-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #fff;
}


.equip-card p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
}


/* 设备下方进度条 */
.equip-swiper{
    padding-bottom: 30px;
}
.equip-progress {
    width: 260px !important;
    height: 6px !important;
    left: 50% !important;
    transform: translateX(-50%);
    background: var(--bd-border);
    border-radius: 3px;
    overflow: hidden;
    bottom:0;
    top: auto !important;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: var(--bd-primary) !important;
}

@media (max-width: 767.98px) {
    .equip-card h3 {
        font-size: 18px;
    }
}
