:root {
    --part-margin: 6% auto;
    --pc-font: 18px;
    --s-p1-width: 55%;
    --s-p1-margin: 3% auto 0;
    --s-h1: 40px;
    --s-p1: 22px;
}

@font-face {
    font-family: 'PingFang';
    src: url('/skin/font/PingFangRegular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: unset;
}

img {
    display: block;
    width: 100%;
}

video {
    display: block;
    width: 48%;
    margin: 0 auto;
}

.btn {
    background: #00ACFF;
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: #fff;
    border-radius: 44px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 20px;
}

.s-h1 {
    font-size: var(--s-h1);
    text-align: center;
    box-sizing: border-box;
    line-height: 1.3;
}

.s-p1 {
    font-size: var(--s-p1);
    text-align: center;
    margin: var(--s-p1-margin);
    width: var(--s-p1-width);
}

.c-blue {
    color: #00ACFF;
}

.f-b {
    font-weight: bold;
}

.part-m {
    margin: var(--part-margin);
}

html {
    font-size: var(--pc-font);
}


body {
    color: #0E2837;
    font-family: 'PingFang'!important;
}

.top-wrap {
    display: none;
}

main {
    padding-top: unset;
}

/* 容器设置为相对定位，并用 Flex 居中里面的主图 */
.au-banner {
    position: relative;
    overflow: hidden;
    /* 关键：防止底层毛玻璃的模糊边缘溢出到屏幕外 */
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 30px 0; */
}

/* --- 底层毛玻璃背景样式 --- */
.banner-blur-bg {
    position: absolute;
    /* 往外扩一点再模糊，防止边缘出现白边 */
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    z-index: 1;
    /* 图层处于最下面 */
}

.banner-blur-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保证图片拉伸铺满整个背景 */
    filter: blur(25px);
    /* 核心代码：控制毛玻璃的模糊程度，数值越大越模糊 */
    opacity: 0.9;
    /* 稍微降低一点透明度，层次感更好 */
}

/* --- 顶层主图样式（还原你截图中的白框圆角效果） --- */
.banner-main-img {
    position: relative;
    z-index: 2;
    /* 图层在背景之上 */
    width: 85%;
    /* 控制主图的宽度，留出空间看背后的毛玻璃 */
    max-width: 1200px;
    /* border: 4px solid #fff; */
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
}

.banner-main-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 480/217;
}

/* --- 按钮样式 --- */
.banner-btn {
    position: absolute;
    z-index: 3;
    /* 图层在最最上面，确保可以点击 */
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 20%;
    /* 相对位置稍微调整，避免挡住主图重要内容 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #fff;
    padding: 13px 50px;
    border-radius: 30px;
    background: #f6cf39;
    white-space: nowrap;
    cursor: pointer;
}

.score {
    display: flex;
    width: 42%;
    justify-content: space-between;
    margin: var(--part-margin);
}

.score img {
    width: 44%;
    aspect-ratio: 43/48;
}

.route {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('/skin/images/AU/route-bg.webp');
    background-size: cover;
    background-position: center;
    margin: var(--part-margin);
    padding: 4% 0;
}

.route h1 {
    width: 45%;
}

.route .s-p1 {
    font-weight: bold;
}

.route .route-content {
    display: block;
    width: 75%;
    margin: 3% auto 0;
}

.route-content img {
    aspect-ratio: 733/107;
}

/* 外层滑动容器，负责大圆角和移动端横滑 */
.au-price {
    overflow: hidden;
}

.au-price .s-p1 {
    margin: 3% auto;
}

.table-scroll-wrapper {
    position: relative;
    width: 80%;
    max-width: 1400px;
    margin: 3% auto 0;
    border: 6px solid #00adef;
    border-radius: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 0 8px 24px rgba(0, 173, 239, 0.1);
    transition: max-height 0.5s ease-in-out;
}

/* 初始收起状态：限制高度 + 模糊遮罩 */
.table-scroll-wrapper.collapsed {
    max-height: 600px;
    /* 调整为你想要露出的高度 */
    border-bottom: none;
}

/* 模糊效果：使用伪元素实现底部白向透明的渐变 */
.table-scroll-wrapper.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.95) 90%);
    pointer-events: none;
    z-index: 2;
}

/* 针对移动端定制滚动条样式，让用户意识到可以滑动 */
.table-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #00adef;
    border-radius: 4px;
}

.table-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* 表格主体基础样式 */
/* 1. 基础表头样式：清空四周杂色边框，只留底部蓝线 */
.vickong-pricing-table th {
    background-color: #00adef;
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    padding: 16px 12px;
    line-height: 1.4;
    border: none !important;
    /* 核心：强制去掉所有方向的默认灰边/蓝边 */
    border-bottom: 1px solid #00adef !important;
    /* 补回底部的蓝线，与下方 td 衔接 */
    box-shadow: none !important;
    /* 防止自带内阴影作祟 */
}

/* 2. 表头之间的纯白色分割线 */
.vickong-pricing-table th:not(:last-child) {
    border-right: 2px solid #ffffff !important;
    /* 只保留右侧的白色竖线 */
}

/* 3. 顺手加个双保险，确保 table 本身没有自带的间隙 */
.vickong-pricing-table {
    width: 100%;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    /* 防止单元格之间出现空隙漏出灰底 */
    text-align: center;
    font-family: Arial, sans-serif;
    min-width: 760px;
}

/* 单元格基础样式 */
.vickong-pricing-table td {
    padding: 25px 12px;
    font-size: 20px;
    border: 2px solid #12a9e2;
    /* 内部蓝色网格线 */
}

/* 修复表头最左侧的白缝隙 */
.vickong-pricing-table th:first-child {
    border-left: 2px solid #00adef !important;
}

/* 修复表头最右侧的白缝隙 */
.vickong-pricing-table th:last-child {
    border-right: 2px solid #00adef !important;
}

/* 原图最后一行的半透明效果 (如果你不需要可以把 HTML 里的 class 删掉) */
.faded td {
    opacity: 0.4;
}

.price-arrow img {
    width: 50px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.price-arrow {
    position: relative;
    text-align: center;
    padding: 20px 0;
    cursor: pointer;
    margin-top: -3%;
    z-index: 3;
}

.praise h2 {
    font-size: 30px;
    text-align: center;
    margin: 3% auto 1%;
}

.praise .s-p1 {
    margin: 0 auto 3%;
}

.services {
    background-image: url(/skin/images/AU/services-bg.webp);
    background-size: cover;
    background-position: center;
    padding: 2% 0 4%;
}

.services .s-h1 {
    font-weight: bold;
}

.services .video {
    margin-top: 4%;
}

#evaluate-swiper {
    width: 900px;
}

#evaluate-swiper .swiper-slide img {
    display: block;
    width: 260px;
    aspect-ratio: 382 / 695;
    margin: 0 auto;
}

.information img {
    width: 50%;
    margin: 4% auto;
    aspect-ratio: 39/22;
}

.doctor {
    position: relative;
}

#doctor-swiper {
    position: relative;
    width: 1000px;
    margin: 4% auto 0;
    padding: 0px 10px;
    box-sizing: border-box;
}


#doctor-swiper .swiper-slide {
    height: 100%;
    border-radius: 0px 0px 50px 0px;
    padding-bottom: 10px;
    background: #fff;
    border: 1px solid #D1DEE3;
}

.doc-img {
    text-align: center;
}

.doc-img img {
    width: 100%;
    aspect-ratio: 13/8;
}

.doc-name {
    margin-top: 8px;
}

.doc-name p {
    color: #00ACFF;
    font-size: 20px;
    text-align: center;
}

.doc-name p:nth-of-type(2) {
    font-size: 16px;
}

.doc-intro {
    text-align: center;
    margin-top: 10px;
}

.doc-intro-content {
    display: inline-block;
    color: #0E2837;
    font-size: 16px;
    text-align: left;
    box-sizing: border-box;
    padding: 0 3%;
}

.doc-intro-content p {
    margin-top: 6px;
}

.doc-navigation {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.doc-navigation p {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 3px;
    background: #B2D7E9;
    border-radius: 3px;
    transition: all 0.3s;
}

#doc-button-prev {
    left: 0;
}

#doc-button-prev p {
    left: 33%;
}

#doc-button-prev p:nth-of-type(1) {
    transform: rotate(-45deg);
    transform-origin: left;
}

#doc-button-prev p:nth-of-type(2) {
    transform: rotate(45deg);
    transform-origin: left;
}

.doc-navigation:hover p {
    background: #00ACFF;
}

#doc-button-prev:hover p:nth-of-type(1) {
    transform: rotate(-30deg);
}

#doc-button-prev:hover p:nth-of-type(2) {
    transform: rotate(30deg);
}

#doc-button-next {
    right: 0;
}

#doc-button-next p {
    right: 33%;
}

#doc-button-next p:nth-of-type(1) {
    transform: rotate(-45deg);
    transform-origin: right;
}

#doc-button-next p:nth-of-type(2) {
    transform: rotate(45deg);
    transform-origin: right;
}

#doc-button-next:hover p:nth-of-type(1) {
    transform: rotate(-30deg);
}

#doc-button-next:hover p:nth-of-type(2) {
    transform: rotate(30deg);
}

.quality {
    width: 1300px;
    margin: 6% auto;
    background-image: url(/skin/images/sfbz/quality-bg.webp);
    background-size: cover;
    /* 背景图片覆盖整个容器 */
    background-position: right;
    /* 背景图片居中 */
    background-repeat: no-repeat;
    /* 背景图片不重复 */
    padding: 0 0 4%;
    overflow: hidden;
}

.quality h1 {
    color: #00ACFF;
    text-align: center;
    font-size: 35px;
    margin-top: 5%;
}

.quality-intro {
    width: 80%;
    text-align: justify;
    margin: 3% auto;
}

.quality-intro p {
    font-size: 20px;
    color: #0E2837;
    text-indent: 2em;
    line-height: 1.8em;
}

.video {
    position: relative;
    width: 50%;
    margin: 4% auto 0;
    border: 10px solid #00ACFF;
    border-radius: 15px;
    z-index: 0;
    aspect-ratio: 16/9;
}

.video video {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.poster,
.video-button {
    transition: opacity 0.5s ease;
    /* æ·»åŠ è¿‡æ¸¡æ•ˆæžœ */
}

.poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.poster img {
    position: relative;
    display: block;
    width: 100%;
}

.poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: opacity 0.5s ease;
}

.video-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 3;
    cursor: pointer;
    opacity: 1;
    border: 4px solid #fff;
}

.video-button img {
    left: 4px;
    width: 35px;
    aspect-ratio: 1;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

.disinfect-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 60%;
    min-width: 1200px;
    margin: 4% auto 0;
}

.disinfect-item {
    width: 30%;
    box-shadow: 0 0 8px 2px #ddd;
    border-radius: 0 0px 40px 0px;
}

.disinfect-item:nth-of-type(n+4) {
    margin-top: 6%;
}

.disinfect-item img {
    display: block;
    width: 100%;
    aspect-ratio: 346/247;
}

.disinfect-intro {
    padding: 20px 15px;
}

.disinfect-intro h3 {
    font-size: 22px;
    color: #00ACFF;
    text-align: center;
}

.intro-wrap {
    text-align: center;
}

.disinfect-intro p {
    display: inline-block;
    margin-top: 10px;
    font-size: 20px;
    color: #0E2837;
    text-align: left;
    line-height: 26px;
}

.reason1-img {
    position: relative;
    width: 60%;
    min-width: 900px;
    margin: 3% auto;
}

.reason1-img img {
    aspect-ratio: 555/253;
}

.reason1-img .reson1-content {
    position: absolute;
    top: 28%;
    left: 4%;
    width: 35%;
    font-weight: bold;
}

.reason1-img .reson1-content h4 {
    font-size: 24px;
}

.reason1-img .reson1-content p {
    font-size: 20px;
    margin-top: 4%;
    text-align: left;
    line-height: 1.5;
}

.reason2-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.reson2-left {
    width: 45%;
}

.reson2-left .s-h1,
.reson2-left .s-p1 {
    text-align: left;
}

.reson2-left .s-h1 {
    font-size: 30px;
    padding: 0;
}

.reson2-left .s-p1 {
    margin: 3% 0;
    width: 100%;
}

.reson2-left .advantage {
    margin-top: 5%;
}

.reson2-left .advantage li {
    position: relative;
    margin-bottom: 3%;
    padding-left: 30px;
    box-sizing: border-box;
}

/* 使用伪元素生成蓝色勾 */
.advantage li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 25px;
    height: 25px;

    /* 关键点：
       stroke-width='3' (线条粗细)
       stroke-linecap='round' (末端圆润)
       stroke-linejoin='round' (转角圆润) 
    */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ACFF' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-size: contain;
}

.advantage li span:nth-of-type(1) {
    margin-right: 5px;
}

.reason2-right {
    width: 52%;
}

.reason2-right img {
    border-radius: 51px;
    aspect-ratio: 405/337;
}

/* 容器设置 */
.city-gallery {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* 每一项的基础样式 */
.city-gallery__item {
    flex: 1;
    min-width: 0;
}

.city-gallery__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 64/37;
}

.holiday-content {
    display: flex;
    justify-content: space-between;
    margin: 4% auto;
    width: 60%;
}

.holiday-img img {
    aspect-ratio: 1;
}

.holiday-list {
    width: 28%;
}

.holiday-describe {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3%;
    text-align: center;
    font-weight: bold;
}

.holiday-describe p:nth-of-type(1) {
    font-size: 22px;
    width: 100%;
}

.holiday-describe p:nth-of-type(2) {
    font-size: 18px;
}


.consult {
    background-image: url(/skin/images/AU/bg-smile.webp);
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 8% 0;
}

.consult h1 {
    font-family: Gabriola;
    font-size: 40px;
    line-height: 1;
}

.consult p {
    font-size: 22px;
    width: 980px;
    margin: 0 auto;
}

.consult-btn {
    display: block;
    margin-top: 3%;
}

.google-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    /* 核心：设定 PC 端下的地图高度 */
    height: 500px;
}

/* 确保内部 iframe 表现正常 */
.google-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}


@media screen and (max-width:1440px) {
    #evaluate-swiper {
        width: 768px;
    }

    #evaluate-swiper .swiper-slide img {
        width: 220px;
    }

    .quality {
        width: 768px;
    }

    .quality-intro {
        margin-left: 5%;
    }

    .disinfect-content {
        min-width: 768px;
    }
}

@media screen and (max-width:1024px) {
    :root {
        --s-h1: 35px;
    }

    .banner-btn {
        font-size: 20px;
        padding: 1%;
    }

    .score {
        width: 60%;
    }

    #doctor-swiper {
        width: 768px;
    }

    .reason1-img {
        min-width: 768px;
    }

    .information img {
        width: 80%;
    }

    .holiday-content {
        width: 80%;
    }

    .consult p {
        width: 80%;
    }
}


@media screen and (max-width:768px) {
    :root {
        --s-h1: 28px;
        --s-p1: 20px;
        --s-p1-width: 92%;
    }

    .s-h1 {
        padding: 0 40px;
    }

    .quality-video {
        width: 80%;
        box-sizing: border-box;
    }

    .banner-main-img img {
        aspect-ratio: 375/434;
    }

    .banner-btn {
        bottom: 40%;
        font-size: 17px;
    }

    .score {
        width: 86%;
    }

    .route h1 {
        width: 100%;
    }

    .route .s-p1 {
        width: 92%;
    }

    .route .route-content {
        width: 96%;
    }

    .route-content img {
        aspect-ratio: 742/453;
    }

    .route video {
        width: 92%;
    }

    .praise h2 {
        font-size: 26px;
    }

    .table-scroll-wrapper {
        width: 96%;
    }

    #evaluate-swiper {
        width: 100%;
        margin-top: 6%;
    }

    #evaluate-swiper .swiper-wrapper .swiper-slide img {
        width: 100%;
        transition: all 0.3s;
    }

    #evaluate-swiper .swiper-slide-prev img,
    #evaluate-swiper .swiper-slide-next img {
        transform: scale(0.8);
    }

    .services {
        padding: 8% 0 10%;
    }

    #doctor-swiper {
        width: 82%;
    }

    .doc-name p {
        font-size: 0.65rem;
    }

    .doc-name p:nth-of-type(2) {
        font-size: 0.5rem;
    }

    .doc-intro-content {
        font-size: 0.48rem;
    }

    #doc-button-prev {
        left: 2%;
    }

    .doc-navigation {
        width: 50px;
        height: 50px;
    }

    #doc-button-next {
        right: 2%;
    }

    .city-gallery__item {
        flex: 0 0 calc(50% - 5px);
    }

    .city-gallery__item--featured {
        flex: 0 0 100%;
    }

    .city-gallery__item--featured img {
        aspect-ratio: 125/36;
    }

    .video {
        width: 92%;
    }

    .information img {
        width: 100%;
        aspect-ratio: 15/11;
    }

    .quality {
        width: 100%;
        background-image: url(/skin/images/sfbz/quality-bg-m.webp);
        background-position: top;
        padding-bottom: 6%;
        margin-top: 12%;
    }

    .quality h1 {
        margin-top: 9%;
        font-size: 1rem;
    }

    .quality-intro {
        width: 92%;
        margin-left: 3%;
        text-align: left;
    }

    .quality-intro p {
        font-size: 0.6rem;
    }

    .reason1-img {
        min-width: unset;
        width: 100%;
    }

    .reason1-img img {
        aspect-ratio: 375/377;
    }

    .reason1-img .reson1-content {
        width: 46%;
    }

    .reason1-img .reson1-content h4 {
        font-size: 0.8rem;
    }

    .reason1-img .reson1-content p {
        font-size: 0.65rem;
    }

    .reason2-inner {
        flex-wrap: wrap;
        width: 100%;
    }

    .reson2-left {
        order: 2;
        width: 94%;
        margin: 3% auto 0;
    }

    .reason2-right {
        order: 1;
        width: 100%;
    }

    .reason2-right img {
        aspect-ratio: 125/87;
    }

    .reson2-left .s-h1 {
        width: 96%;
        margin: 0 auto;
    }

    .reson2-left .s-p1 {
        font-size: 24px;
    }

    .reson2-left .advantage {
        width: 96%;
        margin: 5% auto 0;
        font-size: 20px;
    }

    .reson2-left .advantage li {
        margin-bottom: 2%;
    }


    .city-gallery__item {
        width: 50%;
        flex: unset;
    }

    .city-gallery__item--featured {
        width: 100%;
    }

    .disinfect-content {
        min-width: unset;
        width: 100%;
        margin: 6% auto 0;
    }

    .disinfect-item {
        display: flex;
        align-items: center;
        width: 92%;
        margin: 0 auto;
        border-radius: 0 40px 0px 0px;
    }

    .disinfect-item img {
        width: 50%;
    }

    .disinfect-intro h3 {
        font-size: 0.8rem;
        text-align: left;
    }

    .disinfect-intro p {
        font-size: 0.65rem;
    }

    .disinfect-intro {
        width: 50%;
        padding: 0% 3%;
        box-sizing: border-box;
    }

    .disinfect-item:nth-of-type(n+2) {
        margin-top: 7%;
    }

    .disinfect .title-2 h1::before {
        display: none;
    }

    .disinfect .title-2 h1::after {
        display: none;
    }

    .holiday-content {
        flex-wrap: wrap;
        margin: 6% auto;
    }

    .holiday-img img {
        aspect-ratio: 596/357;
    }

    .holiday-list {
        width: 100%;
        margin-bottom: 7%;
    }

    .consult {
        background-image: url(/skin/images/AU/bg-smile-m.webp);
        padding: 13% 0;
    }

    .consult p {
        margin-top: 4%;
    }

    .consult-btn {
        margin-top: 6%;
    }

    .google-map {
        height: 500px;
    }
}

@media screen and (max-width:425px) {
    :root {
        --s-p1-margin: 5% auto 0;
        --part-margin: 15% auto;
    }

    .btn {
        padding: 12px;
        font-size: 18px;
    }

    .s-h1 {
        padding: 0 10px;
        line-height: 1.2;
    }

    .video {
        margin: 7% auto 0;
    }

    .banner-btn {
        padding: 2% 0%;
        font-size: 0.9rem;
        width: 200px;
    }

    .score img {
        width: 46%;
    }

    .vickong-pricing-table {
        min-width: 530px;
    }

    .vickong-pricing-table th {
        font-size: 1.1rem;
        padding: 10px 8px;
    }

    .vickong-pricing-table td {
        font-size: 0.9rem;
        padding: 12px 8px;
    }

    #evaluate-swiper {
        margin-top: 10%;
    }

    #evaluate-swiper .swiper-wrapper {
        padding: 19% 0;
    }

    #evaluate-swiper .swiper-wrapper .swiper-slide-active {
        z-index: 1;
    }

    #evaluate-swiper .swiper-wrapper .swiper-slide-active img {
        transform: scale(1.6);
    }

    #evaluate-swiper .swiper-slide-prev img,
    #evaluate-swiper .swiper-slide-next img {
        transform: scale(1.1);
    }

    .praise h2 {
        margin: 3% 0;
    }

    .information img {
        margin: 6% auto;
    }

    #doctor-swiper {
        width: 86%;
        margin: 8% auto 0;
    }

    .doc-navigation {
        top: 66%;
    }

    #doc-button-next {
        right: 0%;
    }

    #doc-button-prev {
        left: 0%;
    }

    .doc-name p {
        font-size: 1rem;
    }

    .doc-name p:nth-of-type(2) {
        font-size: 0.9rem;
    }

    .doc-intro-content {
        font-size: 0.9rem;
    }

    .doc-intro {
        margin-top: 5px;
    }

    .quality {
        padding-bottom: 0;
        margin-top: 18%;
    }

    .quality h1 {
        font-size: 30px;
    }

    .quality-intro p {
        font-size: 20px;
        line-height: 1.8em;
    }

    .reason1-img .reson1-content {
        width: 53%;
        top: 23%;
    }

    .reason1-img .reson1-content h4 {
        font-size: 1.1rem;
    }

    .reason1-img .reson1-content p {
        font-size: 0.75rem;
    }

    .reson2-left .s-p1 {
        font-size: 20px;
    }

    .reson2-left .advantage {
        font-size: 18px;
    }

    .advantage li::before {
        width: 23px;
    }

    .disinfect-intro h3 {
        font-size: 0.9rem;
    }

    .disinfect-intro p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .disinfect-item:nth-of-type(n+2) {
        margin-top: 8%;
    }

    .holiday-content {
        width: 86%;
    }

}