a:hover {
    text-decoration: none;
}

* {
    padding: 0;
    margin: 0;
}

p {
    text-align: justify;
}

@keyframes downUp {
    0% {
        margin-top: 5px
    }

    25% {
        margin-top: -5px
    }

    50% {
        margin-top: 5px
    }

    75% {
        margin-top: -5px
    }

    100% {
        margin-top: 5px
    }
}

@keyframes scaleDownUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes leftRight {
    0% {
        margin-left: 3px
    }

    25% {
        margin-left: 0px
    }

    50% {
        margin-left: 3px
    }

    75% {
        margin-left: 0px
    }

    100% {
        margin-left: 3px
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0.5;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes triangleMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.image {
    overflow: hidden;
    cursor: pointer;

}

/* 旋转 */
.rotate-image {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.rotate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rotate-image:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(255, 255, 255, .30);
    -webkit-transform: scaleX(0) scaleY(0.5);
    -ms-transform: scaleX(0) scaleY(0.5);
    transform: scaleX(0) scaleY(0.5);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    z-index: 1;
}

.rotate-image:hover:before {
    -webkit-transform: scaleX(2) scaleY(2.0);
    -ms-transform: scaleX(2) scaleY(2.0);
    transform: scaleX(2) scaleY(2.0);
    opacity: 0;
}

* {
    margin: 0;
    padding: 0
}

p {
    margin: 0;
    padding: 0
}

.image {
    display: inline-block;
    vertical-align: top;
}

.image img {
    width: 100%;
    height: 100%;
    transition: .5s all ease-in-out;
    object-fit: cover;
}

.image img:hover {
    transform: scale(1.02) rotate(.5deg);
}

@media (min-width: 1200px) {
    .mu-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 101;
        background-color: rgba(255, 255, 255, 0.8);
        transition: 0.5s all ease;
        height: 100px;
        box-shadow: inset 0 -1px 6px rgba(0, 0, 0, 0.1);
    }

    .mu-header .wap_header {
        display: none;
    }

    .mu-header .web_header {
        display: flex;
        flex-direction: column;
    }

    .mu-header .web_header .header-t {
        display: flex;
        flex-direction: column;
        height: 60px;
        align-items: flex-end;
        padding: 5px 0;
        border-bottom: 1px solid #d0d2d0;
    }

    .mu-header .web_header .header-t .container {
        display: flex;
        justify-content: space-between;
        /* padding: 0 50px 0 70px; */
    }

    .mu-header .web_header .header-t .header-r {
        display: flex;
        align-items: center;
    }

    .mu-header .web_header .header-t .slog-list {
        display: flex;
        align-items: center;
    }

    .mu-header .web_header .header-t .slog-list .slog-item {
        margin-right: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 50px;
    }

    .mu-header .web_header .header-t .slog-list .slog-item i {
        font-size: 20px;
        margin-right: 5px;
    }

    .mu-header .web_header .header-t .slog-list .slog-item p {
        font-size: 14px;
    }

    .mu-header .web_header .navbar-brand {
        width: 20%;
    }

    .mu-header.change .web_header .navbar-brand {
        width: 10%;
        padding-top: 10px;
    }


    .mu-header .web_header .header-t .navbar-phone {
        display: block;
        color: #000;
        margin-left: 0px;
        transition: 0.5s all ease;
        display: flex;
        align-items: center;
    }

    .fill-w-icon {
        font-size: 18px !important;
        padding: 5px 10px;
        margin-right: 10px;
        border-radius: 50%;
        color: #fff;
        background: var(--teal);
        /* margin-right: 5px; */
    }

    .mu-header .web_header .header-b {
        padding-bottom: 10px;
    }

    .mu-header.change .web_header .header-t {
        display: none;
    }

    .mu-header .web_header .navbar-brand img {
        width: 100%;
    }

    .mu-header .navbar-nav {
        display: flex;
        margin: 0;
        justify-content: space-between;
    }

    .mu-header .navbar-nav .nav-item {
        list-style: none;
    }

    .mu-header .navbar-nav .nav-item .nav-link {
        color: #616161;
        height: 38px;
        line-height: 32px;
        padding: 5px 0;
        margin: 0 2.804vw;
        transition: all 0.3s ease;
        position: relative;
    }

    .mu-header .navbar-nav .nav-item .nav-link::after {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 4px;
        background: #1d9a96;
        content: " ";
        transition: width 250ms cubic-bezier(.25, .46, .45, .94);
        transform: translateX(-50%);
    }

    .mu-header .navbar-nav .nav-item .nav-link:hover::after {
        width: 50%;
    }

    .mu-header .navbar-nav .nav-item .nav-link:hover {
        transform: translateY(-2px);
        transition: transform 0.3s ease;
    }

    .mu-header .navbar-nav .nav-item.active .nav-link {
        color: #1f9a97;
    }

    .change {
        height: 50px;
        background-color: rgba(255, 255, 255, 1);
    }

    .change .container {
        align-items: self-start;
    }

    .change.mu-header .navbar-nav .nav-item .nav-link {
        height: 40px;
        line-height: 40px;
    }

    .mu-header.change .navbar-phone {
        height: 40px;
        line-height: 22px;
    }

    .change.mu-header .navbar-menu {
        align-items: self-start;
    }

    .change.mu-header .navbar-brand img {
        width: 146px;
    }

    .change.mu-header .navbar-nav .nav-item .nav-link {
        height: 40px;
        line-height: 40px;
    }

    .mu-footer {
        background: #424242;
        background-size: 100%;
        color: #fff;
    }

    .mu-footer .footer_top {
        display: flex;
        margin-top: 50px;
        align-items: baseline;
        padding: 10px 0;
        justify-content: space-between;
    }

    .mu-footer .footer_top .footer_nav_box {
        display: flex;
        align-items: center;
    }

    .mu-footer .footer_top .footer_nav_box_l {
        display: flex;
        align-items: center;
    }

    .mu-footer .footer_top .footer_nav_box_r {
        margin-left: 10px;
    }

    .mu-footer .footer_top .footer_nav_box_r .title {
        font-size: 14px;
        color: #dbdbdb;
        margin-bottom: 10px;
    }

    .mu-footer .footer_top .footer_logo {
        display: block;
        width: 350px;
    }

    .mu-footer .footer_top .footer_top-l .p {
        font-size: 18px;
        color: #dbdbdb;
        margin-top: 20px;
        padding-left: 20px;
        width: 350px;
        text-align: justify;
    }

    .mu-footer .footer_top .footer_logo img {
        width: 100%;
        text-align: center;

    }

    .mu-footer .footer_top .footer_nav {
        display: flex;
        align-items: center;
        margin: 0;
    }

    .mu-footer .footer_top .footer_nav li {
        list-style: none;
        margin-right: 60px;
        color: #fff;
        font-size: 18px;
    }

    .mu-footer .footer_bottom {
        display: flex;
        justify-content: space-between;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .mu-footer .footer_bottom .footer-b-left {
        margin-top: 10px;
        display: flex;
        padding-left: 20px;
    }

    .mu-footer .footer_bottom .footer-b-left .contact .contact-r {
        margin-left: 10px;
    }

    .mu-footer .footer_bottom .footer-b-left .contact {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        font-size: 14px;
        color: #dbdbdb;
    }

    .mu-footer .footer_bottom .footer-b-left .contact.phone {
        margin-right: 18.417vw;
    }

    .mu-footer .footer_bottom .footer-b-left .contact .con-r-b {
        font-size: 18px;
        color: #fff;
        margin-top: 10px;
    }

    .mu-footer .footer_bottom .footer-b-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-top: 20px;
    }

    .mu-footer .footer_bottom .footer-b-right .wechat {
        display: flex;
        align-items: center;
        padding-right: 20px;
    }


    .mu-footer .footer_bottom .footer-b-right .wechat p {
        font-size: 16px;
        margin: 0 10px;
        padding-top: 30px;
    }

    .mu-footer .footer_bottom .footer-b-right .wechat img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        margin-left: 20px;
    }

    .mu-footer .copyright {
        font-size: 14px;
        color: #dbdbdb;
        text-align: center;
        border-top: 1px solid #dbdbdb;
        padding: 20px 0;
    }

    /*==================================================首页========================================================*/
    .index_banner {
        position: relative;
        height: 51.042vw;
        margin-top: 95px
    }

    .index_banner .swiper-pagination {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: baseline;
        height: 50px;
    }

    .index_banner .swiper-pagination span {
        color: #000;
        font-size: 20px;
        font-weight: 500;
    }

    .index_banner .swiper-pagination .swiper-pagination-current {
        color: #000;
        font-size: 30px;
        font-weight: 500;
    }

    .index_banner .swiper-pagination span.swiper-pagination-total {
        color: #c5bfbf;
    }

    .index_banner .swiper-pagination .swiper-pagination-bullet-active {
        position: relative;
        border: none;
        width: 8px;
        height: 8px;
    }

    .index_banner .swiper-pagination .swiper-pagination-bullet-active:after {
        position: absolute;
        content: '';
        width: 14px;
        height: 14px;
        background: none;
        border: 1px solid #fff;
        left: -3px;
        top: -3px;
        border-radius: 16px;
    }

    .index_banner .swiper-slide img {
        width: 100%;
        height: auto;
        min-height: 100%;
        transition: 1s linear 2s;
        transform: scale(1.1, 1.1);
    }

    .index_banner .swiper-slide-active img,
    .swiper-slide-duplicate-active img {
        transition: 6s linear;
        transform: scale(1, 1);
    }

    /* 首页轮播图数字分页器样式 */
    .index_banner .swiper-pagination {
        position: absolute;
        left: 80%;
        bottom: 80px;
        width: 100px;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
    }

    .mouse {
        position: absolute;
        bottom: 73px;
        left: 47%;
        width: 63px;
        height: 40px;
        color: #000;
        z-index: 99999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        opacity: 0.8;
        animation: bounceIn 3s infinite;
    }

    .mouse.hidden {
        display: none;
        transform: translateY(-20px);
        pointer-events: none;
    }

    .mouse i {
        font-size: 40px;
        color: #000;
    }

    .index-page .index-title .line {
        width: 102px;
        height: 3px;
        background: #D4A474;
    }


    .index-page .index-title .cate-title {
        font-size: 36px;
        margin-top: 39px;
        margin-bottom: 19px;
    }

    .index-page .index-title .cate-content {
        font-size: 18px;
    }

    .index-page .more {
        width: 166px;
        height: 40px;
        background: linear-gradient(83deg, #1D9B97 0%, #00C7C1 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        padding: 0 5px;
        position: relative;
        cursor: pointer;
    }

    .index-page .more .more-text {
        margin-left: 20px;
        font-size: 16px;
        color: #FFFFFF;
        transition: 1s all ease-in-out;
    }

    .index-page .more .more-icon {
        position: absolute;
        right: 17px;
        width: 30px;
        height: 30px;
        background: #FFFFFF;
        border-radius: 50%;
        display: flex;
        align-items: center;
        padding-left: 8px;
        /* text-align: center; */
        transition: 1s all ease-in-out;
        color: #1D9B97;
    }

    .index-page .index-cate {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .index-page .index-cate .line {
        width: 63px;
        height: 4px;
        background: #1D9B97;
        border-radius: 2px;
    }

    .index-page .index-cate .name {
        font-size: 48px;
        color: #333333;
        margin: 20px 0;
    }

    .index-page .index-cate .name span {
        color: #1D9B97;
    }

    .index-page .index-cate .content {
        font-size: 16px;
        color: #333333;
        line-height: 30px;
    }

    .index-page .more:hover .more-icon {
        transform: rotate(-45deg);
    }

    .index-page .more:hover .more-text {
        margin-left: 25px;
    }

    .index-page .index-doctor {
        margin-top: 120px;
        background-repeat: no-repeat;
        background-size: 50%;
        overflow: hidden;
        height: 960px;
        background-position: left 216px;
    }

    .index-page .index-doctor .container {
        display: flex;
        justify-content: space-between;
    }

    .index-page .index-doctor .container .doctor-left {
        width: 50%;
    }

    .index-page .index-doctor .container .doctor-left .doctor-l-t {
        width: 262px;
    }

    .index-page .index-doctor .container .doctor-left .doctor-l-t .cate-name {
        font-size: 30px;
        color: #1D9B97;
    }

    .index-page .index-doctor .container .doctor-left .doctor-l-t .cate-content {
        font-size: 46px;
        color: #B4B4B1;
        line-height: 61px;
        text-transform: uppercase;
    }

    .index-page .index-doctor .container .doctor-left .doctor-l-t .line {
        width: 61px;
        height: 4px;
        background: #B3B2B1;
        margin-top: 32px;
    }

    .index-page .index-doctor .container .doctor-right {
        width: 40%;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-t {
        display: flex;
        align-items: baseline;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-t .doctor-name {
        font-size: 60px;
        color: #323232;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-t .doctor-tag {
        width: 113px;
        height: 35px;
        border-radius: 11px;
        border: 1px solid #B3B2B1;
        font-size: 18px;
        color: #1D9B97;
        line-height: 35px;
        text-align: center;
        margin-left: 20px;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-b .doctor-box {
        margin: 30px 0;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-b .doctor-box .tag {
        background: url('../images/tag.png') no-repeat center center;
        background-size: 100% 100%;
        font-size: 24px;
        color: #FFFFFF;
        line-height: 35px;
        padding-left: 20px;
        width: 284px;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-b .doctor-box .tag span {
        font-size: 16px;
        text-transform: uppercase;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-b .doctor-box .doctor-content {
        font-weight: 400;
        font-size: 16px;
        color: #525252;
        line-height: 34px;
        text-indent: 2rem;
        margin-top: 20px;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-b .doctor-box .doctor-description {
        font-weight: 400;
        font-size: 16px;
        color: #525252;
        line-height: 34px;
        margin-top: 20px;
    }

    .index-page .index-doctor .container .doctor-right .doctor-r-b .doctor-box .doctor-source {
        font-weight: 400;
        font-size: 16px;
        color: #525252;
        line-height: 34px;
        margin-top: 20px;
    }

    .index-page .index-doctor .container .doctor-right .more {
        margin-top: 40px;
    }

    .index-page .index-doctor .container .doctor-right .more .icon {
        font-size: 20px;
        color: #FFFFFF;
        margin-left: 30px;
        margin-top: 10px;
        transition: 0.5s all ease-in-out;
    }

    .index-page .index-doctor .container .doctor-right .more:hover .icon {
        animation: bounceIn 2s infinite;
    }

    .index-page .index-product {
        padding-top: 80px;
        background: url('../images/index_product_cate.jpg') no-repeat center center;
        background-size: 100%;
        background-attachment: fixed;
        height: 960px;
    }

    .index-page .index-product .product-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .index-page .index-product .cate-list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .index-page .index-product .cate-list .cate-item {
        width: 22.917vw;
        height: 15.625vw;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        margin: 20px 15px;
    }

    .index-page .index-product .cate-list .cate-item .info {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(12, 36, 36, 0.8) 10%, transparent 90%);
        display: flex;
        flex-direction: column;
        opacity: 1;
        align-items: flex-start;
        color: #FFFFFF;
        padding: 2.604vw 20px;
        transition: 0.5s all ease-in-out;
    }

    .index-page .index-product .cate-list .cate-item .info .icon {
        font-size: 48px;
        color: #FFFFFF;
        margin-bottom: 1.042vw;
    }

    .index-page .index-product .cate-list .cate-item .info .name {
        font-size: 1.25vw;
        color: #FFFFFF;
        margin-bottom: 1.042vw;
    }

    .index-page .index-product .cate-list .cate-item .info .desc {
        width: 128px;
        height: 47px;
        font-weight: 400;
        font-size: 0.9375vw;
        color: #FFFFFF;
        line-height: 1.5625vw;
    }

    .index-page .index-product .cate-list .cate-item .content {
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: rgba(29, 155, 151, 0.8);
        display: flex;
        flex-direction: column;
        opacity: 0;
        align-items: flex-start;
        padding: 20px;
        transition: 0.5s all ease-in-out;
    }

    .index-page .index-product .cate-list .cate-item:hover .content {
        opacity: 1;
        width: 100%;
    }

    .index-page .index-product .cate-list .cate-item:hover .info {
        opacity: 0;
    }

    .index-page .index-product .cate-list .cate-item .content .name {
        font-size: 24px;
        color: #FFFFFF;
        margin-bottom: 20px;
    }

    .index-page .index-product .cate-list .cate-item .content .desc {
        font-size: 18px;
        color: #FFFFFF;
        line-height: 30px;
    }

    .index-page .index-about {
        background: url('../images/index_about.png') no-repeat bottom left;
        background-size: 50%;
        height: 960px;
        display: flex;
        justify-content: space-between;
    }

    .index-page .index-about .about-left {
        width: 50vw;
        padding-left: 14%;
        padding-top: 120px;
        margin-right: 38px;
    }

    .index-page .index-about .about-left .post-content {
        margin-top: 50px;
        font-weight: 400;
        font-size: 16px;
        color: #333333;
        line-height: 40px;
        text-indent: 2rem;
        margin-bottom: 50px;

    }

    .index-page .index-about .about-left .about-list {
        display: flex;
        margin-top: 80px;
        width: 100%;
    }

    .index-page .index-about .about-left .about-list .about-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 30%;
    }

    .index-page .index-about .about-left .about-list .about-item img {
        width: 56px;
        margin-bottom: 20px;
    }

    .index-page .index-about .about-left .about-list .about-item .name {
        font-size: 18px;
        color: #3C3C3C;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .index-page .index-about .about-left .about-list .about-item .desc {
        font-weight: 400;
        font-size: 14px;
        color: #3C3C3C;
    }

    .index-page .index-about .about-left {
        width: 50vw;
    }

    .index-page .index-advantage {
        height: 960px;

    }

    .index-page .index-advantage .advantage-list {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
    }

    .index-page .index-advantage .advantage-item {
        width: 20%;
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        cursor: pointer;
        overflow: hidden;
        transition: 0.5s all ease-in-out;
    }

    .index-page .index-advantage .advantage-item .detail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(29, 155, 151, 0.8);
        display: flex;
        flex-direction: column;
        opacity: 0;
        align-items: flex-start;
        padding: 20px;
        color: #FFFFFF;
    }

    .index-page .index-advantage .advantage-item.un-active .detail {
        opacity: 0;
    }

    .index-page .index-advantage .advantage-item.un-active .info {
        opacity: 1;
    }

    .index-page .index-advantage .advantage-item.active .detail {
        opacity: 1;
        padding-top: 6.875vw;
        padding-left: 8.333vw;
    }

    .index-page .index-advantage .advantage-item.active .detail .cate {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-size: 48px;
        color: #FFFFFF;
        margin-bottom: 100px;
    }

    .index-page .index-advantage .advantage-item.active .detail .cate .desc {
        font-size: 18px;
        color: #FFFFFF;
    }

    .index-page .index-advantage .advantage-item.active .detail .icon {
        font-size: 60px;
    }

    .index-page .index-advantage .advantage-item.active .detail .title {
        font-size: 24px;
        color: #FFFFFF;
        margin-bottom: 50px;
    }

    .index-page .index-advantage .advantage-item.active .detail .content {
        font-weight: 400;
        font-size: 18px;
        color: #FFFFFF;
        margin-bottom: 80px;
        padding-right: 20px;
    }

    .index-page .index-advantage .advantage-item.active .detail .more {
        width: 146px;
        height: 40px;
        background: linear-gradient(83deg, #C4916E 0%, #E6AF8A 100%);
        border-radius: 20px;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
    }

    .index-page .index-advantage .advantage-item.active .detail .more i {
        font-size: 22px;
        margin-left: 20px;
    }

    .index-page .index-advantage .advantage-item.active .detail .more:hover i {
        animation: bounceIn 3s ease-in-out infinite;
    }

    .index-page .index-advantage .advantage-item.active .detail .number {
        font-size: 24px;
        color: #FFFFFF;
        margin-top: 40px;
        display: flex;
        align-items: center;
    }

    .index-page .index-advantage .advantage-item.active .detail .number .line {
        width: 13.542vw;
        height: 1px;
        background: #FFFFFF;
        margin-left: 20px;
    }

    .index-page .index-advantage .advantage-item.active .info {
        opacity: 0;
    }

    .index-page .index-advantage .advantage-item.active .detail i {
        animation: bounceIn 2s ease-in-out;
    }

    .index-page .index-advantage .advantage-item .info {
        height: 100%;
        font-size: 24px;
        color: #FFFFFF;
        margin-bottom: 20px;
        text-align: center;
        padding-top: 112%;
        opacity: 1;
    }

    .index-page .index-advantage .advantage-item .info i {
        font-size: 60px;
    }

    .index-page .index-advantage .advantage-item .info .desc {
        font-size: 18px;
        color: #FFFFFF;
        line-height: 30px;
        text-align: center;
    }

    .index-page .index-advantage .advantage-item.active {
        width: 40%;
        transition: 0.5s all ease-in-out;
    }

    .index-page .index-advantage .advantage-item.un-active {
        width: 15%;
        transition: 0.5s all ease-in-out;
    }

    .index-page .news-question {
        padding: 90px 0;
        background: url('../images/news_bg.jpg') no-repeat center center fixed;
        background-size: cover;
    }

    .index-page .news-question .container {
        height: 100%;
        display: flex;
    }

    .index-page .news-question .news-box {
        width: 70%;
    }

    .index-page .news-question .question-box {
        width: 30%;
    }

    .index-page .news-question .news-box .news-list {
        display: flex;
        margin-bottom: 30px;
    }

    .index-page .news-question .news-box .news-list .news-item {
        display: block;
        width: 46%;
        background: #FFFFFF;
        margin-bottom: 20px;
        margin-right: 20px;
        padding: 40px 20px;
    }

    .index-page .news-question .news-box .news-list .news-item .item-top {
        display: flex;
        align-items: center;
        justify-content: space-between;

    }

    .index-page .news-question .news-box .news-list .news-item .item-top .date {
        display: flex;
        align-items: baseline;
    }

    .index-page .news-question .news-box .news-list .news-item .item-top .date .day {
        font-family: Impact;
        font-weight: 400;
        font-size: 60px;
        color: #1D9B97;
        margin-right: 10px;
    }

    .index-page .news-question .news-box .news-list .news-item .item-top .date .year-m {
        font-family: Impact;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
    }

    .index-page .news-question .news-box .news-list .news-item .item-top i {
        font-size: 47px;
        color: rgba(207, 207, 207, 1);
        transition: 0.5s all ease-in-out;
    }

    .index-page .news-question .news-box .news-list .news-item:hover .item-top i {
        color: #1D9B97;
    }

    .index-page .news-question .news-box .news-list .news-item .image {
        width: 100%;
        height: 260px;
        overflow: hidden;
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .index-page .news-question .news-box .news-list .news-item .title {
        font-size: 18px;
        color: #333333;
        line-height: 34px;
        font-weight: bold;
    }


    .index-page .news-question .news-box .news-list .news-item .desc {
        font-weight: 400;
        font-size: 16px;
        color: #7D7D7D;
        line-height: 28px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .index-page .news-question .news-box .news-list .news-item .see-more {
        font-weight: 400;
        font-size: 16px;
        color: #7D7D7D;
        position: relative;
    }

    .index-page .news-question .news-box .news-list .news-item .see-more::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 0;
        height: 2px;
        background: #1d9b97;
        transition: 0.5s all ease-in-out;
    }

    .index-page .news-question .news-box .news-list .news-item:hover .see-more::after {
        width: 90px;
    }

    .index-page .news-question .news-box .news-list .news-item:hover .desc {
        color: #1D9B97;
    }

    .index-page .news-question .question-box .question-cate {
        display: block;
        width: 100%;
        font-size: 48px;
        color: #333333;
        text-align: center;
        background-color: transparent;
        background: url('../images/Q.png') no-repeat center center;
        background-size: contain;
        margin-top: 30px;
    }

    .index-page .news-question .question-box .question-list {
        display: flex;
        flex-direction: column;
        margin-top: 16px;
        padding: 20px;
        background: #FFFFFF;
        border: 1px solid #E5E5E5;
    }

    .index-page .news-question .question-box .question-list .question-item {
        padding-bottom: 20px;

    }

    .index-page .news-question .question-box .question-list .question-item .title {
        font-size: 18px;
        color: #2B2B2B;
        background: url(../images/A.png) no-repeat left center;
        background-size: contain;
        padding-left: 40px;
        font-weight: bold;
    }

    .index-page .news-question .question-box .question-list .question-item .desc {
        font-size: 16px;
        color: #737373;
        line-height: 28px;
        margin-top: 30px;
        padding-bottom: 10px;
        border-bottom: 1px dashed #E5E5E5;
        position: relative;
        display: block;
        width: 100%;
    }

    .index-page .news-question .question-box .question-list .question-item .desc:hover {
        color: #1D9B97;
    }

    .index-page .news-question .question-box .question-list .question-item .desc:after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 0;
        height: 2px;
        background: #1d9b97;
        transition: 0.5s all ease-in-out;
    }

    .index-page .news-question .question-box .question-list .question-item .desc:hover::after {
        width: 100%;
    }

    .index-page .promise-box {
        background-size: contain;
        background-attachment: fixed;
        height: 350px;
        padding-top: 70px;
        color: #FFFFFF;
    }

    .index-page .promise-box .promise-list {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .index-page .promise-box .promise-list .promise-item {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .index-page .promise-box .promise-list .promise-item .title {
        font-weight: bold;
        font-size: 48px;
        color: #FFFFFF;
    }

    .index-page .promise-box .promise-list .promise-item .desc {
        font-weight: 500;
        font-size: 24px;
        color: #FFFFFF;
        text-align: center;
    }

    .index-page .promise-box .call {
        width: 270px;
        height: 36px;
        background: #D59961;
        border-radius: 18px;
        margin: 50px auto;
        display: flex;
        align-items: center;
        padding-left: 5px;
        cursor: pointer;
        animation: bounceIn 2s infinite;
    }

    .index-page .promise-box .call .call-text {
        width: 79px;
        height: 30px;
        background: #FFFFFF;
        border-radius: 15px;
        font-weight: 400;
        font-size: 16px;
        color: #D59961;
        line-height: 28px;
        text-align: center;
    }

    .index-page .promise-box .call .tel {
        font-weight: 400;
        font-size: 24px;
        color: #FFFFFF;
        line-height: 11px;
        margin-left: 10px;
    }

    /*===============================================公司简介=======================================================*/
    .profile-page .profile-banner {
        height: 620px;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: hidden;
    }

    .profile-page .profile-banner img {
        width: 100%;
        height: auto;
        min-height: 100%;
        animation: scaleDownUp 20s ease-in-out infinite;
    }

    .profile-page .profile-title {
        text-align: center;
    }

    .profile-page .profile-title .subtitle {
        font-family: PingFang SC;
        font-size: 60px;
        color: #1d9a96;
    }

    .profile-page .profile-title .title {
        font-family: PingFang SC;
        font-size: 30px;
        color: #333333;
        font-weight: bold;
    }

    .profile-page .profile-about {
        padding-top: 20px;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .profile-page .about-box .about-top {
        display: flex;
        margin-top: 30px;
    }

    .profile-page .about-box .about-right {
        width: 60%;
        padding-right: 50px;
    }

    .profile-page .about-box .about-left .about-l-t {
        font-size: 48px;
        font-weight: bold;
        color: #333333;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
    }

    .profile-page .about-box .about-left .about-l-t .sanjiao {
        width: 0;
        height: 0;
        border: 0 solid transparent;
        border-bottom: 5px solid transparent;
        border-top: 5px solid transparent;
        border-left: 15px solid #1d9a96;
        margin-right: 10px;
        margin-left: 10px;
        animation: triangleMove 1.5s ease-in-out infinite;
    }

    .profile-page .about-box .about-left .about-l-t .sanjiao:nth-child(2) {
        animation-delay: 0.3s;
    }

    .profile-page .about-box .about-left .about-l-t .sanjiao:nth-child(3) {
        animation-delay: 0.6s;
    }

    .profile-page .about-box .about-right .about-r-b {
        font-weight: 400;
        font-size: 16px;
        color: #333333;
        line-height: 32px;
        text-indent: 2rem;
    }

    .profile-page .about-box .about-left {
        width: 30vw;
        position: relative;
        overflow: hidden;
    }

    .profile-page .about-box .about-bottom {
        margin-top: 10px;
        width: 100%;
        height: 600px;
        border-radius: 50px;
    }

    .profile-page .profile-brand {
        background: url('../images/brand_bg.png') no-repeat center center;
        background-attachment: fixed;
        background-size: contain;
        margin-top: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .profile-page .profile-brand .brand-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        margin-top: 50px;
    }

    .profile-page .profile-brand .brand-list .brand-item img {
        width: 80px;
        /* height: 80px; */
    }

    .profile-page .profile-brand .brand-list .brand-item {
        width: 305px;
        height: 300px;
        margin: 20px;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        flex-direction: column;
        cursor: pointer;
        transition: all .5s ease-in-out;
        border: 1px solid #fff;
    }

    .profile-page .profile-brand .brand-list .brand-item .brand-name {
        font-size: 36px;
        color: #000;
        margin-top: 28px;
    }

    .profile-page .profile-brand .brand-list .brand-item .brand-desc {
        font-size: 18px;
        color: #333333;
        margin-top: 37px;
        display: flex;
        align-items: flex-start;
    }

    .profile-page .profile-brand .brand-list .brand-item:hover {
        background: rgba(29, 154, 150, 0.2);
        color: #fff;
        border: 1px solid #1d9a96;
        margin-top: -5px;
    }

    .profile-page .profile-brand .call {
        width: 272px;
        height: 52px;
        border-radius: 24px;
        border: 3px solid #1D9B97;
        margin: 10px auto;
        font-size: 18px;
        color: #303030;
        animation: bounceIn 10s infinite;
        text-align: center;
        line-height: 48px;
    }

    .profile-page .profile-env {
        margin-top: 30px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .profile-page .profile-env .envSwiper {
        margin-top: 50px;
        height: 600px;
        position: relative;
    }

    .profile-page .profile-env .envSwiper .env-item {
        display: block;
        width: 910px !important;
        height: 560px;
        border-radius: 10px;
        cursor: pointer;
        transition: all .5s ease-in-out;
        overflow: hidden;
    }

    .profile-page .profile-env .envSwiper .env-item .image {
        width: 100%;
        height: 100%;
    }

    .profile-page .profile-env .envSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #1d9a96;
        border: none;
    }

    .profile-page .profile-env .envSwiper .swiper-pagination-bullet {
        background: #c0c0c0;
    }

    .page-banner {
        width: 100%;
        height: 620px;
        background-repeat: no-repeat;
        background-position: top;
        background-size: contain;
        position: relative;
        background-attachment: fixed;
    }

    .page-banner::before {
        display: none;
    }

    .article-page .card-img-top {
        height: 280px;
    }

    .article-page .card-img-top img {
        /* object-fit: contain; */
    }

    .product-page .card-img-top {
        height: 360px;
    }

    .product-page .cate-list {
        display: flex;
        flex-wrap: wrap;
        padding: 20px;
    }

    .product-page .cate-list .cate-item {
        display: flex;
        align-items: center;
        width: 200px;
        height: 60px;
        background: #eeeeee;
        padding: 0 20px;
        color: #939393;
        font-size: 18px;
        margin-right: 32px;
        margin-bottom: 20px;
        transition: .5s all ease-in-out;
    }

    .product-page .cate-list .cate-item i {
        font-size: 30px;
        color: #000;
        margin-right: 30px;
        transition: .5s all ease-in-out;
    }

    .product-page .cate-list .cate-item.active {
        background: #1d9a96;
        color: #fff;
    }

    .product-page .cate-list .cate-item.active i {
        color: #fff;
        transition: transform 0.3s ease;
    }

    .product-page .cate-list .cate-item:hover {
        background: #1d9a96;
        color: #fff;
        transform: translateY(-2px);
        transition: transform 0.3s ease;
    }

    .product-page .cate-list .cate-item:hover i {
        color: #fff;
        animation: bounceIn 1s linear;
    }

    /* 容器样式 - 模拟输入框+下拉箭头的整体样式 */
    .product-page .select-input-container {
        position: relative;
        width: 200px;
        /* 可根据需求调整宽度 */
        height: 36px;
        border: 1px solid #dcdfe6;
        box-sizing: border-box;
        cursor: text;
        border-radius: 50px;
    }

    /* 输入框样式 - 去除默认边框，适配容器 */
    .product-page .select-input {
        width: 90%;
        height: 90%;
        padding: 0 30px 0 20px;
        /* 右侧留空给下拉箭头 */
        border: none;
        outline: none;
        font-size: 14px;
        box-sizing: border-box;

    }

    /* 下拉箭头样式 */
    .product-page .dropdown-arrow {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid #909399;
        pointer-events: none;
        /* 不影响输入框点击 */
    }

    /* 下拉选项列表样式 */
    .product-page .options-list {
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        border: 1px solid #e4e7ed;
        border-radius: 4px;
        background-color: #fff;
        list-style: none;
        margin: 0;
        padding: 0;
        display: none;
        /* 默认隐藏 */
        z-index: 999;
    }

    /* 选项样式 */
    .product-page .options-list li {
        padding: 8px 10px;
        font-size: 14px;
        cursor: pointer;
    }

    /* 选项hover效果 */
    .product-page .options-list li:hover {
        background-color: #f5f7fa;
    }

    /* 激活状态 - 显示下拉列表 */
    .product-page .select-input-container.active .options-list {
        display: block;
    }

    .product-page .product-list {
        display: flex;
        flex-wrap: wrap;
    }

    .product-page .product-box {
        padding-bottom: 50px;
    }

    .product-page .product-list .product-item {
        width: 30%;
        display: block;
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
        margin-right: 2.396vw;
        border: none;
    }

    .product-page .product-list .product-item.teacher {
        height: 560px;
    }

    .product-page .product-list .product-item .box {
        height: 100%;
    }

    .product-page .product-list .product-item .image {
        width: 100%;
        height: 210px;
        border: 1px solid #c2c2c2;
    }

    .product-page .product-list .product-item img {
        object-fit: contain;
        transition: 1s all ease-in-out;
    }

    .product-page .product-list .product-item.teacher :hover img {
        -webkit-mask-position: 0 0;
        -webkit-mask: linear-gradient(135deg, #000c 40%, #000, #000c 60%) 100% 100% / 250% 250%;
    }

    .product-page .product-list .product-item .info {
        width: 100%;
        height: 60px;
        font-size: 16px;
        text-align: center;
        color: #000;
        padding: 20px;
    }

    .product-page .product-list .product-item .see-more {
        width: 100%;
        margin-top: 10px;
        padding: 10px 0;
        text-align: center;
        background: #eeeeee;
        color: #000;
        transition: .5s all ease-in-out;
        font-size: 16px;
    }

    .product-page .product-list .product-item .see-more:hover {
        background: #1d9a96;
        color: #fff;
    }

    .page-header {
        margin-top: 60px;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #363636;
        padding-bottom: 20px;
        margin-bottom: 30px;
        cursor: pointer;
    }

    .page-header .header-l {
        font-size: 24px;
        color: #252525;
    }

    .page-header .header-r {
        display: flex;
        align-items: center;
        width: 40%;
        justify-content: space-between;
    }

    .page-header .nav i {
        font-size: 22px;
        margin-right: 20px;
    }

    .page-header .nav .nav-item {
        font-weight: 400;
        font-size: 16px;
        color: #333333;
    }

    .page-header .nav a {
        color: #333333;
    }

    .page-content * {
        font-size: 15px !important;
        line-height: 26px;
    }

    .page-banner .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-banner .page-banner-content .cate-name {
        color: #1d9b97;
        font-size: 43px;
        font-weight: bold;
        z-index: 10;
        padding-top: 20px;
        padding-right: 171px;
        background: url(../images/cate.png) no-repeat left top;
        background-size: 100%;
    }

    .page-banner .page-banner-content p {
        color: #000;
        font-size: 29px;
    }
}
