.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes buttonNitai {
    0%,100% {
        box-shadow: 4px 4px 12px rgba(0,0,0,0.2),-4px -4px 12px rgba(255,255,255,0.8),inset 0px 0px 0px rgba(0,0,0,0.2),inset 0px 0px 0px rgba(255,255,255,0.8);
    }

    50%{
        box-shadow: 0px 0px 0px rgba(0,0,0,0.2),0px 0px 0px rgba(255,255,255,0.8),inset 4px 4px 12px rgba(0,0,0,0.2),inset -6px -4px 12px rgba(255,255,255,0.8);
    }
}

@keyframes textMove {
    0%,100% {
        transform: scale(1);
    }

    50%{
        transform: scale(0.95);
    }
}

@keyframes shubiaoMove {
    0%,100% {
        transform: scale(1.2);
    }

    50%{
        transform: scale(1);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.slot-wrap {
    position: relative;
    padding: 3% 0;
    background: #FFF;
    z-index: 1;
}

.boxW {
    width: 1200px;
    margin: 6% auto 0;
}

.title {
    text-align: center;
    margin-bottom: 4%;
}

.title .title-content {
    display: inline-block;
    padding: 0 3%;
    box-sizing: border-box;
}

.title-content h1 {
    position: relative;
    font-size: 35px;
    color: #0E2837;
}

.title-content h2 {
    font-size: 22px;
    margin-top: 40px;
    color: #1A2936;
    font-weight: 400;
}

.title .line-blue {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FFFFFF 0%, #00ACFF 50%, #FFFFFF 100%);
}

.title img {
    width: 100%;
}

.slogan-content {
    display: flex;
    justify-content: space-between;
    padding-top: 1%;
    margin-top: 8%;
}

.slogan-content .slogan-item {
    width: 22%;
}

.slogan-content .slogan-item img {
    width: 100%;
    aspect-ratio: 130 / 53;
}

.slogan-content .slogan-item p {
    width: 100%;
    text-align: center;
    font-size: 18px;
    color: #0E2837;
}

.slogan-content .slogan-item p:nth-of-type(1) {
    margin-top: 10px;
}

.slogan-content .slogan-item p:nth-of-type(2) {
    margin-top: 5px;
}



.highopinion {
    position: relative;
    background-image: url(/skin/images/sfbz/highopinion-bg.webp);
    background-size: cover;
    /* 背景图片覆盖整个容器 */
    background-position: left top;
    /* 背景图片居中 */
    background-repeat: no-repeat;
    /* 背景图片不重复 */
    padding: 4% 0 6%;
}

.highopinion .title .line-blue,
.gift .title .line-blue {
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, #00ACFF 50%, rgba(255,255,255,0) 100%);
}

.highopinion .swiper,
.doctor .swiper {
    --swiper-preloader-color: #00ACFF;
}

#evaluate-swiper {
    position: relative;
    width: 900px;
}

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

.wgintro {
    overflow: hidden;
}

.swiper .navigation {
    position: absolute;
    color: transparent;
    background: #C2DEEC;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    top: 60%;
    opacity: 0.5;
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.5s;
    z-index: 999;
    outline: none;
}

.swiper .navigation::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 4px;
    background: #fff;
    transition: 0.5s;
}

.swiper .navigation::after {
    content: "";
    position: absolute;
    top: 48%;
    width: 30%;
    height: 4px;
    background: #fff;
    transition: 0.5s;
}

#evaluate-button-prev {
    left: 3%;
}

#evaluate-button-prev::before {
    left: 35%;
    transform: rotate(-45deg);
    transform-origin: left;
}

#evaluate-button-prev::after {
    left: 35%;
    transform: rotate(45deg);
    transform-origin: left;
}

#evaluate-button-next {
    right: 3%;
}

#evaluate-button-next::before {
    right: 35%;
    transform: rotate(45deg);
    transform-origin: right;
}

#evaluate-button-next::after {
    right: 35%;
    transform: rotate(-45deg);
    transform-origin: right;
}

.swiper .navigation:hover {
    background: #00ACFF;
}

#evaluate-button-prev:hover::before {
    transform: rotate(-30deg);
}

#evaluate-button-prev:hover::after {
    transform: rotate(30deg);
}

#evaluate-button-next:hover::before {
    transform: rotate(30deg);
}

#evaluate-button-next:hover::after {
    transform: rotate(-30deg);
}

.gift {
    position: relative;
    background-image: url(/skin/images/sfbz/gift-bg.webp);
    background-size: cover;
    /* 背景图片覆盖整个容器 */
    background-position: left top;
    /* 背景图片居中 */
    background-repeat: no-repeat;
    /* 背景图片不重复 */
    padding: 4% 0 3%;
    margin: 0 auto;
}

.video {
    position: relative;
    width: 70%;
    margin: 2% auto 0;
    border: 10px solid #00ACFF;
    border-radius: 15px;
    z-index: 0;
}

.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.5);
    z-index: 2;
    transition: opacity 0.5s ease; /* 添加过渡效果 */
}

.video-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 42px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E90D0D;
    padding: 12px 30px;
    border-radius: 24px;
    z-index: 3;
    cursor: pointer;
    opacity: 1;
}

.video-button img {
    position: absolute;
    left: 38%;
    width: 35px;
}

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

.quality-video {
    position: relative;

}

.quality-video iframe {
    position: absolute;
    background: #A0A0A0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wgintro-content:not(:nth-of-type(1)) {
    margin-top: 14%;
}

.wgintro-content .intro-content {
    font-size: 20px;
    color: #1A2936;
    line-height: 2em;
    text-align: center;
}

.wgintro-content .intro-content .bg-blue {
    color: #000;
    font-weight: bold;
}

.wgintro-content .wgintro-img img {
    display: block;
    width: 80%;
    aspect-ratio: 487/274;
    margin: 5% auto 0;
}

#slogan-swiper {
    display: none;
}

.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);
}

.fw {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 4%;
}

.fw-m{
    display: none;
}

.fw-item {
    position: relative;
    width: 100%;
}

.fw-item img {
    display: block;
    width: 100%;
    aspect-ratio: 487/141;
}

.fw-item .content-wrap {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
}

.fw-item .content-wrap .content-title {
    font-size: 32px;
}

.fw-item .content-wrap .content-title span {
    position: relative;
    color: #1A2936;
    font-weight: bold;
    z-index: 0;
}



.fw-item .content-wrap .content-title .text-blue {
    color: #00ACFF;
    font-size: 35px;
}

.fw-item .content-wrap .content-details {
    margin-top: 10px;
    font-size: 22px;
    line-height: 30px;
    width: 470px;
    text-align: justify;
}

.fw-item:nth-of-type(2) .content-wrap{
    left: unset;
    right: 4%;
}

.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;
}

.disinfect-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 7% 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 10px;
}

.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;
}

.title-2 {
    text-align: center;
}

.title-2 h1 {
    position: relative;
    display: inline-block;
    font-size: 35px;
}


.title-2 h1::before {
    /*content: '';*/
    position: absolute;
    width: 40%;
    height: 6px;
    left: -42%;
    top: 38%;
    background: linear-gradient(-90deg, #00ACFF 0%, #FFFFFF 100%);
}

.title-2 h1::after {
    /*content: '';*/
    position: absolute;
    width: 40%;
    height: 6px;
    right: -42%;
    top: 38%;
    background: linear-gradient(90deg, #00ACFF 0%, #FFFFFF 100%);
}

.disinfect-video {
    margin-top: 6%;
}

.disinfect-video .title {
    display: none;
}

.disinfect-video-content {
    margin: 5% auto 0;
}

.environment-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 6%;
}

.environment-content img {
    width: 30%;
    aspect-ratio: 181/133;
}

.environment-content img:nth-of-type(n+4) {
    margin-top: 5%;
}

.time .title-2 h1::before {
    width: 260px;
    left: -273px;
}

.time .title-2 h1::after {
    width: 260px;
    right: -273px;
}

.time-wrap {
    display: flex;
    width: 90%;
    margin: 5% auto 0;
}

.time-content {
    width: 50%;
    background: linear-gradient(270deg, #00ACFF 0%, #F0F8FC 100%);
}

.time-content p {
    font-size: 25px;
    color: #0E2837;
    text-align: center;
    line-height: 1.8em;
}

.time-content p:nth-of-type(1) {
    padding-top: 7%;
}

.time-img {
    width: 50%;
}

.time-img img {
    display: block;
    width: 100%;
    aspect-ratio: 611/328;
}

.question-wrap {
    width: 90%;
    margin: 5% auto 0;
}

.question-item {
    border-bottom: 1px solid #C7CACB;
    padding-bottom: 3%;
}

.question-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question-title h5 {
    color: #0E2837;
    font-size: 26px;
    font-weight: 500;
}

.question-title img {
    width: 38px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.question-item.open .question-title img {
    transform: rotate(180deg);
}

.question-item .answers {
    padding: 0 2%;
    color: #5E6366;
    font-size: 20px;
    line-height: 1.5em;
    transition: none;
    height: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.question-item:not(:first-child) {
    padding-top: 3%;
}

.whatsapp-book {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
    height: 40px;
    margin: 5% auto 0;
    padding: 10px 0;
    background: #fff;
    border-radius: 32px;
    animation-fill-mode: both;
    animation: buttonNitai 1s linear infinite;
}

.whatsapp-book span {
    font-size: 25px;
    animation: textMove 1s linear infinite;
    animation-fill-mode: both;
}

.whatsapp-book img {
    width: 35px;
    margin-left: 8px;
    animation: shubiaoMove 1s linear infinite;
    animation-fill-mode: both;
}


@media screen and (max-width:1440px) {
    .boxW {
        width: 980px;
    }

    .title-content h1 {
        font-size: 42px;
    }

    .slogan-content .slogan-item p {
        font-size: 20px;
    }

    #doctor-swiper {
        width: 800px;
    }

    .doc-name p {
        font-size: 22px;
    }

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

    .doc-intro-content {
        font-size: 14px;
    }


    .fw-item .content-wrap .content-title {
        font-size: 32px;
    }

    .fw-item .content-wrap .content-title .text-blue {
        font-size: 40px;
    }

    .quality {
        width: 980px;
    }

    .disinfect-intro h3 {
        font-size: 26px;
    }

    .disinfect-intro p {
        font-size: 18px;
    }

    .title-2 h1::before {
        width: 28%;
        left: -30%;
    }

    .title-2 h1::after {
        width: 28%;
        right: -30%;
    }

    .time-content p {
        font-size: 26px;
    }

    .whatsapp-book span {
        font-size: 24px;
    }

    .time-content p:nth-of-type(1) {
        padding-top: 9%;
    }
    
    .time-wrap {
        width: 100%;
    }

    .whatsapp-book {
        padding: 5px 0;
        margin: 2% auto 0;
    }
}

@media screen and (max-width:1024px) {
    .boxW {
        width: 760px;
    }

    .title-content h1,
    .title-2 h1 {
        font-size: 34px;
    }

    .title-2 h1::before {
        top: 25%;
    }

    .title-2 h1::after {
        top: 25%;
    }

    .title-content h2 {
        font-size: 26px;
    }

    .slogan-content .slogan-item p {
        font-size: 15px;
    }

    #evaluate-swiper {
        width: 760px;
    }

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

    .wgintro-content .intro-content {
        font-size: 20px;
    }

    #doctor-swiper {
        width: 760px;
    }


    .doc-intro-content {
        padding: 0 8px;
        box-sizing: border-box;
    }


    .fw-item .content-wrap .content-title {
        font-size: 22px;
    }

    .fw-item .content-wrap .content-details {
        font-size: 18px;
        width: 370px;
    }

    .fw-item .content-wrap .content-title span {
        -webkit-text-stroke: 3px transparent;
    }

    .fw-item .content-wrap .content-title .text-blue {
        font-size: 30px;
    }

    .quality {
        width: 765px;
    }

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

    .quality-intro p {
        font-size: 20px;
    }

    .disinfect-intro h3 {
        font-size: 21px;
    }

    .disinfect-intro p {
        font-size: 16px;
    }

    .time-content p {
        font-size: 20px;
    }
    
    .question-title h5 {
        font-size: 24px;
    }
    
    .question-item .answers {
        font-size: 20px;
    }

    .whatsapp-book span {
        font-size: 18px;
    }

    .whatsapp-book img {
        width: 24px;
    }

    .whatsapp-book {
        margin: 0 auto;
        padding: 0;
    }
}

@media screen and (max-width:768px) {
    .boxW {
        width: 100%;
        margin: 12% auto 0;
    }

    .boxW-m {
        width: 92%;
    }

    .title-content h1,
    .title-2 h1 {
        font-size: 1rem;
    }

    .title-content h2 {
        font-weight: 500;
        font-size: 0.85rem;
        line-height: 1.2em;
    }

    .title img {
        display: block;
    }

    .title .line-blue {
        bottom: -20px;
    }

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

    .highopinion {
        padding: 8% 0;
    }

    .gift {
        padding: 8% 0 4%;
        margin: 0 auto;
    }

    .gift-video {
        margin-top: 5%;
        width: 92%;
    }

    .slogan-content .slogan-item img {
        height: 16.235vw;
    }

    .slogan-content {
        flex-wrap: wrap;
        justify-content: space-evenly;
        margin-top: 10%;
    }

    .slogan-content .slogan-item {
        width: 40%;
        line-height: 1em;
    }

    .slogan-content .slogan-item:nth-of-type(n+3) {
        margin-top: 40px;
    }

    .slogan-content .slogan-item p {
        font-size: 0.65rem;
    }

    #slogan-swiper {
        display: block;
    }

    #slogan-swiper {
        width: 88%;
        margin-top: 10%;
    }

    #slogan-swiper .swiper-slide {
        display: flex;
        justify-content: space-between;
    }

    #slogan-swiper .swiper-slide img {
        width: 44%;
    }

    #evaluate-swiper {
        width: 100%;
    }

    #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);
    }
    
    .fw-item img {
        aspect-ratio: 5/2;
    }

    .wgintro-content .intro-content {
        font-size: 0.75rem;
        margin: 6% auto;
        line-height: 1.65em;
    }

    .wgintro-content .intro-content p {
        padding: 0 2%;
        box-sizing: border-box;
    }

    .wgintro-content .wgintro-img img {
        width: 100%;
        aspect-ratio: 375/274;
    }

    #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-button-next {
        right: -1%;
    }

    .fw-item .content-wrap {
        width: 45%;
    }

    .fw-item .content-wrap .content-details {
        width: 100%;
        font-size: 0.6rem;
        line-height: 1.5em;
    }

    .fw-item .content-wrap .content-title span {
        font-size: 0.8rem;
    }

    .fw-item .content-wrap .content-title .text-blue {
        font-size: 0.9rem;
    }

    .fw-item .content-wrap .content-title {
        bottom: -9%;
        font-size: unset;
    }

    .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%;
    }

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

    .quality-video {
        width: 92%;
        margin-top: 7%;
    }

    .disinfect-item {
        display: flex;
        align-items: center;
        width: 92%;
        margin: 0 auto;
        border-radius: 0 60px 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;
    }

    .disinfect-video .title {
        display: block;
    }

    .disinfect-video .title-2 {
        display: none;
    }

    .disinfect-video-content {
        width: 92%;
        margin-top: 8%;
    }

    .disinfect-content {
        margin: 10% auto 0;
    }

    .environment-content {
        display: flex;
        width: 92%;
        margin: 8% auto 0;
        flex-wrap: wrap;
    }

    .environment-content img {
        display: block;
        width: 48%;
    }

    .environment-content img:nth-of-type(n+3) {
        margin-top: 5%;
    }

    .time .title-2 h1::before {
        top: 37%;
        width: 180%;
        left: -190%;
    }

    .time .title-2 h1::after {
        top: 37%;
        width: 180%;
        right: -190%;
    }

    .time-wrap {
        position: relative;
        width: 100%;
        flex-wrap: wrap;
    }

    .time-img {
        order: 0;
        width: 100%;
        /* 使用 mask-image 创建羽化效果 */
        /* -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0));
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0)); */
    }

    .time-content {
        position: absolute;
        bottom: 0%;
        order: 1;
        width: 100%;
        background: unset;
    }

    .time-content {
        padding: 3% 4%;
        box-sizing: border-box;
    }

    .time-content p:nth-of-type(1) {
        padding-top: 0%;
        font-size: 0.9rem;
    }

    .time-content p:nth-of-type(2) {
        font-size: 0.9rem;
    }
    
    .question-title h5 {
        font-size: 0.8rem;
    }
    
    .question-item .answers {
        font-size: 0.65rem;
    }

    .whatsapp-book {
        width: 45%;
        height: unset;
        padding: 2% 0;
        margin-top: 3%;
    }

    .whatsapp-book span {
        font-size: 0.8rem;
    }

    .whatsapp-book img {
        width: 10%;
    }

    .time-img img {
        aspect-ratio: 375/328;
    }

}

@media screen and (max-width:425px) {
    .boxW {
        margin: 18% auto 0;
    }

    .title-content h1,
    .title-2 h1 {
        font-size: 1.2rem;
        line-height: 1.2em;
        margin-bottom: 10px;
    }

    .title-content h2 {
        font-size: 1rem;
        margin-top: 30px;
    }

    .title .line-blue {
        bottom: -15px;
        height: 4px;
    }

    .slogan-content {
        margin-top: 12%;
    }

    .slogan-content .slogan-item p {
        font-size: 0.8rem;
    }

    .title-2 h1::before {
        top: 32%;
        height: 4px;
    }

    .title-2 h1::after {
        top: 32%;
        height: 4px;
    }



    .fw-item .content-wrap .content-details {
        font-size: 0.8rem;
    }

    .fw-item .content-wrap .content-title span::after {
        -webkit-text-stroke: 3px #fff;
        text-shadow: 2px 2px 3px #003346;
    }

    .time .title-2 h1::before {
        width: 110%;
        left: -115%;
    }

    .time .title-2 h1::after {
        width: 110%;
        right: -115%;
    }

    .highopinion {
        padding: 10% 0;
    }

    .gift {
        padding: 10% 0 6%;
        margin: 0 auto;
    }

    .swiper .navigation {
        width: 40px;
        height: 40px;
        top: 63%;
    }

    #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);
    }

    .video-button img {
        width: 20px;
    }

    .video-button {
        width: 12px;
        height: 20px;
    }

    .gift-video {
        border: 5px solid #00ACFF;
        border-radius: 8px;
    }

    #doctor-swiper .swiper-slide {
        width: 80%;
        /* transform: scale(0.8); */
    }

    .wgintro-content:not(:nth-of-type(1)) {
        margin-top: 18%;
    }

    .wgintro-content .intro-content {
        font-size: 0.8rem;
        margin: 8% auto;
    }

    .wgintro-content .intro-content p {
        padding: 0 10px;
        box-sizing: border-box;
    }

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

    .quality h1 {
        font-size: 1.5rem;
    }

    .quality-intro p {
        font-size: 0.8rem;
        line-height: 1.5em;
    }

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

    .disinfect-intro p {
        font-size: 0.75rem;
        line-height: 1rem;
    }
    
    .disinfect-item {
        padding: 2% 0;
    }

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

    .time-content p {
        line-height: unset;
    }

    .time-content p:nth-of-type(1),
    .time-content p:nth-of-type(2) {
        font-size: 1rem;
    }

    .time-content p:nth-of-type(2) {
        margin-top: 1%;
    }

    .whatsapp-book {
        margin-top: 4%;
        width: 48%;
    }

    .whatsapp-book span {
        font-size: 0.9rem;
    }

    .whatsapp-book img {
        width: 13%;
    }

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

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

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

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

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

    .environment-content {
        margin: 10% auto 0;
    }

}