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 pointDownUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

@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 heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.2);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.2);
    }

    70% {
        transform: scale(1);
    }
}

@keyframes pendulum {
    0% {
        transform: rotate(-15deg);
        /* 左摆 */
    }

    50% {
        transform: rotate(15deg);
        /* 右摆 */
    }

    100% {
        transform: rotate(-15deg);
        /* 回到左摆 */
    }
}

@keyframes rotateWindmill {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.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.05);
}

@media (min-width: 1200px) {
    .mu-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 101;
        background-color: rgba(255, 255, 255, 0.3);
        transition: 0.5s all ease;
        height: 80px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .mu-header .web_header {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    .mu-header .web_header .navbar-brand {
        width: 20%;
        padding-top: 20px;
        display: block;
        /* margin-right: 120px; */
        display: flex;
    }

    .mu-header.change .web_header .navbar-brand {
        width: 20%;
        padding-top: 3px;
    }
    .mu-header .web_header .navbar-brand .logo_text{
        margin-left: 10px;
    }

    .mu-header .web_header .header-r {
        display: flex;
        padding-top: 10px;
        align-items: center;
    }

    .mu-header .web_header .header-r .navbar-phone {
        color: #000;
        height: 65px;
        line-height: 65px;
        float: right;
    }

    .mu-header .web_header .header-r .mu-header .navbar-phone i {
        font-size: 20px;
        color: #000;
    }

    .mu-header .web_header .navbar-brand img {
        width: 100%;
    }

    .mu-header .navbar-nav {
        display: flex;
        justify-content: space-between;
        padding-top: 10px;
        float: left;
    }

    .mu-header .navbar-nav .nav-item .nav-link {
        color: #000;
        line-height: 32px;
        padding: 5px 0;
        font-size: 16px;
        margin: 0 20px;
        transition: all 0.3s ease-in-out;
        position: relative;
        background: url(../images/nav_icon1.png) no-repeat center 40px;
    }

    .mu-header .navbar-nav .nav-item:hover .nav-link {
        color: #2f366a;
        /* border-bottom: 2px solid #fff; */
        background: url(../images/nav_icon.png) no-repeat center 40px;
        transition: all 0.3s ease-in-out;
        margin-top: -2px;
    }

    .mu-header .navbar-nav .nav-item.active .nav-link {
        color: #2f366a;
        /* border-bottom: 2px solid #fff; */
        background: url(../images/nav_icon.png) no-repeat center 40px;
        transition: all 0.3s ease-in-out;
    }

    .mu-header .navbar-phone i {
        font-size: 26px;
        color: #fc004f;
        /* margin-right: 5px; */
    }

    .mu-header .navbar-phone {
        font-size: 0.9375vw;
        color: #2F396D;
    }

    .change {
        height: 60px;
        background-color: rgba(255, 255, 255, 1);
    }

    .change .container {
        align-items: self-start;
    }

    .change .navbar-brand {
        padding: 0;
        margin: 0;
    }

    .change .navbar-brand>img {
        /*height: 40px;*/
    }

    .change.mu-header .navbar-nav .nav-item .nav-link {
        height: 40px;
        line-height: 40px;
        color: #000;
    }

    .change.mu-header .navbar-nav {
        padding-top: 0;
        margin-left: 80px;
    }

    .change.mu-header .navbar-nav .nav-item.active .nav-link {
        color: #2f366a;
        /* border-bottom: 2px solid #fff; */
        background: url(../images/nav_icon.png) no-repeat center 30px;
        transition: all 0.3s ease-in-out;
        font-size: 0.833vw;
    }

    .mu-header.change .navbar-phone {
        height: 40px;
        line-height: 22px;
    }

    .change.mu-header .navbar-menu {
        align-items: self-start;
        margin-left: 50px;
    }

    .change.mu-header .navbar-brand img {
        width: 146px;
    }

    .change .container {
        align-items: self-start;
    }

    .change .navbar-brand {
        padding: 0;
        margin: 0;
    }

    .change .navbar-brand>img {
        /*height: 40px;*/
    }

    .change.mu-header .navbar-nav .nav-item .nav-link {
        height: 40px;
        line-height: 20px;
        font-size: 16px;
    }

    .mu-header.change .navbar-phone {
        height: 40px;
        margin-top: 16px;
    }

    .change.mu-header .navbar-menu {
        align-items: self-start;
    }

    .change.mu-header .navbar-brand img {
        width: 146px;
    }

    .change.mu-header .navbar-search .navbar-search-button {
        height: 40px;
        margin-top: 2px;
        line-height: 40px;
    }

    .mu-footer {
        background-color: #2a2a2a;
        color: #fff;
        margin-bottom: 100px;
    }

    .mu-footer .footer_top {
        display: flex;
        margin-top: 70px;
        align-items: flex-start;
        justify-content: space-between;
        padding-bottom: 20px;
    }

    .mu-footer .footer_top .footer_logo {
        display: block;
        width: 249px;
        margin-bottom: 60px;
    }

    .mu-footer .footer_top .footer_logo img {
        width: 100%;
        text-align: center;

    }

    .mu-footer .footer_top .footer_top_l {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .mu-footer .footer_top .footer_top_l .wechat {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin-top: 20px;
        position: relative;
        cursor: pointer;
    }

    .mu-footer .footer_top .footer_top_l .wechat i {
        font-size: 26px;
        color: #2a2a2a;
        width: 36px;
        height: 36px;
        background: #FFFFFF;
        border-radius: 50%;
        margin-top: 30px;
        text-align: center;
        line-height: 36px;
    }

    .mu-footer .footer_top .footer_top_l .wechat p {
        font-size: 16px;
        color: #FFFFFF;
    }

    .mu-footer .footer_top .footer_top_l .wechat img {
        position: absolute;
        bottom: 50px;
        left: 0;
        width: 100px;
        height: 100px;
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }

    .mu-footer .footer_top .footer_top_l .wechat:hover img {
        opacity: 1;
    }

    .mu-footer .footer_top .footer_top_m {
        display: flex;
        align-items: flex-start;
        margin-left: 90px;
    }

    .mu-footer .footer_top .footer_top_m .item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-right: 30px;
        height: 220px;
        justify-content: space-between;
        font-size: 14px;
        color: #FFFFFF;
    }

    .mu-footer .footer_top .footer_top_m .item .image {
        height: 170px;
        width: 100px;
    }

    .mu-footer .footer_top .footer_top_r {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 50%;
        margin-left: 80px;
    }

    .mu-footer .footer_top .footer_top_r .footer_nav {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin-top: -14px;
        border-bottom: 1px solid #fff;
    }

    .mu-footer .footer_top .footer_top_r .footer_nav li {
        list-style: none;
        margin-right: 30px;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        line-height: 54px;
    }

    .mu-footer .footer_top .footer_top_r .footer_contact {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
    }

    .mu-footer .footer_top .footer_top_r .footer_contact .contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .mu-footer .footer_top .footer_top_r .footer_contact .contact .contact-t {
        display: flex;
        align-items: baseline;
        font-size: 16px;
        color: #FFFFFF;
        margin-bottom: 10px;
    }

    .mu-footer .footer_top .footer_top_r .footer_contact .contact .contact-t i {
        font-size: 20px;
        color: #FFFFFF;
        margin-right: 10px;
    }

    .mu-footer .footer_top .footer_top_r .footer_contact .contact .contact-b {
        font-size: 20px;
        color: #FFFFFF;
    }

    .mu-footer .copyright {
        width: 100%;
        font-size: 14px;
        padding: 20px 0;
        border-top: 1px solid #fff;
        text-align: center;
    }

    .mu-footer .footer-bottom {
        height: 100px;
        background: #11184c;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    .mu-footer .footer-bottom .container {
        height: 100%;
        display: flex;
        align-items: center;
        position: relative;
    }

    .mu-footer .footer-bottom .footer-bottom-left {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

    }

    .mu-footer .footer-bottom .footer-bottom-left .f-b-l-t {
        font-size: 30px;
        color: #FFFFFF;
    }

    .mu-footer .footer-bottom .footer-bottom-left .f-b-l-b {
        font-size: 16px;
        color: #FFFFFF;
        text-align: justify;
    }

    .mu-footer .footer-bottom .message-form {
        display: flex;
        align-items: center;
        margin-left: 80px;
    }

    .mu-footer .footer-bottom .message-form .message-input {
        width: 200px;
        height: 50px;
        background: #FFFFFF;
        border-radius: 8px;
        padding-left: 10px;
        border: none;
        margin-right: 20px;
    }

    .mu-footer .footer-bottom .message-form .message-input:focus {
        outline: none;
    }

    .mu-footer .footer-bottom .message-form .message-btn {
        width: 200px;
        height: 50px;
        background: #FC004F;
        border-radius: 8px;
        margin-left: 10px;
        border: none;
        color: #FFFFFF;
    }

    .mu-footer .footer-bottom .xiaohai {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 999;
        cursor: pointer;
        animation: bounceIn 3s infinite;
    }

    /*==================================================首页========================================================*/
    .index_banner {
        position: relative;
        height: 51.042vw;
        margin-top: 80px;
    }

    .index_banner .swiper-pagination {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
    }

    .index_banner .swiper-pagination span {
        background: #fff;
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .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;
        margin-right: 117px;
        min-height: 100%;
        transition: 1s linear 2s;
        transform: scale(1.05, 1.05);
    }

    .index_banner .swiper-slide-active img,
    .swiper-slide-duplicate-active img {
        transition: 6s linear;
        transform: scale(1, 1);
    }

    /* Banner Bottom Style */
    .index_banner .banner-bottom {
        width: 700px;
        height: 50px;
        position: absolute;
        bottom: 40px;
        left: 34%;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(47, 57, 109, 0.3);
        z-index: 99;
    }

    .index_banner .banner-bottom-l {
        background: #2f366a;
        width: 200px;
        height: 50px;
        color: white;
        padding: 4px 10px;
        font-size: 14px;
        text-transform: uppercase;
    }

    .index_banner .banner-bottom-r {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-right: 20px;
        width: 500px;
        padding-left: 30px;
    }

    .index_banner .banner-bottom-r .b-b-r-text {
        color: white;
        font-size: 16px;
        white-space: nowrap;
    }

    .index_banner .banner-bottom-r .b-b-r-r {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Custom Swiper Pagination */
    .index_banner .swiper-pagination {
        position: static;
        display: flex;
        align-items: center;
        height: auto;
        color: white;
        font-size: 14px;
    }

    .index_banner .swiper-pagination .swiper-pagination-bullet {
        display: none;
        background: none;
    }

    .index_banner .swiper-pagination .swiper-pagination-current {
        color: white;
        background: none;
    }

    .index_banner .swiper-pagination .swiper-pagination-total {
        color: white;
        margin-left: 5px;
        background: none;
    }

    /* Custom Swiper Buttons */
    .index_banner .swiper-button-prev,
    .index_banner .swiper-button-next {
        position: static;
        width: 20px;
        height: 20px;
        background: none;
        color: white;
        margin: 0;
    }

    .index_banner .swiper-button-prev:after,
    .index_banner .swiper-button-next:after {
        font-size: 16px;
        font-weight: bold;
        content: '';
    }

    .index_banner .swiper-button-prev:before {
        content: '←';
        font-size: 16px;
        font-weight: bold;
    }

    .index_banner .swiper-button-next:before {
        content: '→';
        font-size: 16px;
        font-weight: bold;
    }

    .index-page .more {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 178px;
        height: 38px;
        border-radius: 5px;
        border: 2px solid #FFFFFF;
        padding: 10px;
        transition: 0.5s all ease-in-out;
    }

    .index-page .more .more-text {
        font-size: 16px;
        color: #FFFFFF;
        transition: 0.5s all ease-in-out;
    }

    .index-page .more .icon {
        color: #FC004F;
        font-size: 22px;
        transition: 0.5s all ease-in-out;
        margin-right: 10px;
    }

    .index-page .more:hover .icon {
        margin-right: 5px;
    }

    .index-page .more:hover {
        border: 2px solid #FFFFFF;
        background: #fff;
        color: #FC004F;
    }

    .index-page .more:hover .more-text {
        color: #FC004F;
    }

    .index-page .index-form {
        height: 220px;
        background: url('../images/form_bg.jpg') center center;
        background-size: contain;
        background-attachment: fixed;
    }

    .index-page .index-form .container {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .index-page .index-form .form-left {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .index-page .index-form .form-left .f-l-t {
        font-size: 30px;
        color: #2F396D;
    }

    .index-page .index-form .form-left .f-l-b {
        font-size: 16px;
        color: #2F396D;
    }

    .index-page .index-form .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .index-page .index-form .form-left {
        flex: 1;
        margin-right: 40px;
    }

    .index-page .index-form .form-left .f-l-t {
        font-size: 24px;
        color: #2F396D;
        margin-bottom: 10px;
    }

    .index-page .index-form .form-left .f-l-b {
        font-size: 14px;
        color: #666;
    }

    .index-page .message-form {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .index-page .message-form .message-input {
        width: 180px;
        height: 40px;
        padding: 0 10px;
        background: transparent;
        border: none;
        border-bottom: 1px solid #2F396D;
        font-size: 14px;
        color: #333;
        margin-right: 20px;
    }

    .index-page .message-form .message-input::placeholder {
        color: #2F396D;
    }

    .index-page .message-form .message-input::-internal-autofill-selected {
        background: transparent;
    }


    .index-page .message-form .message-input:focus {
        outline: none;
        border-bottom-color: #2F396D;
        background: transparent;
    }

    .index-page .message-form .message-btn {
        width: 160px;
        height: 40px;
        background: #FC004F;
        border: none;
        color: #FFFFFF;
        font-size: 14px;
        cursor: pointer;
        border: 1px solid #FC004F;
        transition: all 0.3s ease;
    }

    .message-form .message-btn:hover {
        background: #fff !important;
        color: #FC004F !important;
        border: 1px solid #FC004F;
    }

    .index-page .index-statics {
        height: 411px;
        background-size: contain;
        background-attachment: fixed;
        /* background-repeat: no-repeat; */
        background-position: center center;
        padding-top: 59px;
    }

    .index-page .index-statics .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 292px;
        padding: 50px 20px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    }

    .index-page .index-statics .container .image {
        width: 286px;
        height: 56px;

    }

    .index-page .index-statics .container .statics-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .index-page .index-statics .container .statics-list .statics-item {
        display: flex;
        align-items: flex-start;
        position: relative;
    }

    .index-page .index-statics .container .statics-list .statics-item ::after {
        content: '';
        position: absolute;
        bottom: 27px;
        z-index: -1;
        left: 0;
        width: 100%;
        height: 24px;
        background: #2F396D;
    }

    .index-page .index-statics .container .statics-list .statics-item .statics-item-l {
        font-family: Impact;
        font-weight: 400;
        font-size: 90px;
        color: #FFFFFF;
    }

    .index-page .index-statics .container .statics-list .statics-item .statics-item-r {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 10px;
    }

    .index-page .index-statics .container .statics-list .statics-item .statics-item-r .s-i-r-t {
        width: 34px;
        height: 34px;
        background: #FC004F;
        border-radius: 50%;
        line-height: 34px;
        font-size: 16px;
        color: #FFFFFF;
        text-align: center;
        margin-top: 30px;
    }

    .index-page .index-statics .container .statics-list .statics-item .statics-item-r .s-i-r-b {
        font-size: 18px;
        color: #FFFFFF;
        margin-top: 18px;
    }

    .index-page .index-cate {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .index-page .index-cate .cate-title {
        font-size: 18px;
        color: #333333;
        margin-top: 18px;
    }

    .index-page .index-style {
        background: url(../images/style_bg.jpg) no-repeat center center;
        height: 980px;
        background-size: cover;
        background-attachment: fixed;
        padding-top: 69px;
    }

    .index-page .index-style .style-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .index-page .index-style .style-box .style-box-top {
        display: flex;
        height: 420px;
        align-items: center;
        justify-content: space-between;
    }

    .index-page .index-style .style-box .style-box-top .cate-box {
        width: 400px;
        height: 100%;
        background: #2F396D;
        padding: 30px 20px;

    }

    .index-page .index-style .style-box .style-box-top .cate-box .cate-list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 40px;
    }

    .index-page .index-style .style-box .style-box-top .cate-box .cate-list .cate-item {
        width: 100px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        margin-bottom: 10px;
        font-size: 16px;
        color: #FFFFFF;
        border-bottom: 1px solid #FFFFFF;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
    }

    .index-page .index-style .style-box .style-box-top .cate-box .cate-list .cate-item.active {
        background: #FC004F;
        border-radius: 12px;
        text-align: center;
        border-bottom: none;
        transition: all 0.5s ease-in-out;
        margin-top: -5px;
    }

    .index-page .index-style .style-box .style-box-top .product-box {
        width: 990px;
        height: 100%;
        margin-left: 10px;

    }

    .index-page .index-style .style-box .product-item {
        position: relative;
        margin-left: 10px;
        cursor: pointer;
    }

    .index-page .index-style .style-box .product-item .image {
        width: 100%;
        height: 100%;
    }

    .index-page .index-style .style-box .product-item .info {
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        transition: all 0.5s ease-in-out;
        opacity: 0;
    }

    .index-page .index-style .style-box .product-item:hover .info {
        opacity: 1;
        width: 100%;
    }

    .index-page .index-style .style-box .product-item .info .title {
        font-size: 30px;
        color: #FFFFFF;
    }

    .index-page .index-style .style-box .product-item .info .detail {
        font-size: 14px;
        color: #FFFFFF;
    }

    .index-page .index-style .style-box .style-box-bottom {
        display: flex;
        height: 270px;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
    }

    .index-page .index-style .style-box .style-box-bottom .product-1 {
        width: 400px;
        height: 100%;
        margin-left: 0;
    }

    .index-page .index-style .style-box .style-box-bottom .product-2 {
        width: 400px;
        height: 100%;
    }

    .index-page .index-style .style-box .style-box-bottom .product-3 {
        width: 580px;
        height: 100%;
    }

    .index-page .index-designer {
        background: url(../images/designer_bg.jpg) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        padding: 80px 0;
    }

    .index-page .index-designer .container {
        position: relative;
    }

    .index-page .index-designer .index-cate {
        margin-left: 10%;
        margin-bottom: 40px;
    }

    .index-page .index-designer .more {
        position: absolute;
        top: 154px;
        right: 10px;
        border: 1px solid #000;
        /* padding: 8px 20px; */
        text-decoration: none;
        color: #000;
        font-size: 14px;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .index-page .index-designer .more:hover {
        background: #FC004F;
        border: 1px solid #FC004F;
        color: #FFFFFF;
    }

    .index-page .index-designer .more:hover .more-text {
        color: #FFFFFF;
    }

    .index-page .index-designer .more .more-text {
        color: #000;
    }

    .index-page .index-designer .more:hover .icon {
        color: #fff;
    }

    .index-page .index-designer .designSwiper {
        margin-top: 30px;
        width: 100%;
        overflow: hidden;
    }

    .index-page .index-designer .designSwiper .swiper-slide {
        position: relative;

        height: 700px;
    }

    .index-page .index-designer .designSwiper .swiper-slide .designer-image {
        width: 503px;
        height: 671px;
        float: left;
        /* margin-right: 40px; */
        position: absolute;
        left: 40px;
        bottom: 40px;
        z-index: 99;
    }

    .index-page .index-designer .designSwiper .swiper-slide .designer-image::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: -20px;
        width: 100px;
        height: 100px;
        background: #2f366a;
        z-index: -1;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box {
        overflow: hidden;
        padding-left: 639px;
        height: 590px;
        background: white;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        padding-top: 30px;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .title {
        margin-bottom: 30px;
        display: flex;
        align-items: center;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .title .name {
        font-size: 36px;
        color: #333333;
        margin-bottom: 5px;
        margin-right: 20px;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .title .position {
        font-size: 24px;
        color: #333333;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .tag {
        width: 133px;
        height: 30px;
        background: linear-gradient(90deg, #2F396D 21%, #FFFFFF 89%);
        font-weight: 400;
        font-size: 18px;
        color: #FFFFFF;
        text-align: left;
        line-height: 30px;
        padding-left: 10px;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .content {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 36px;
        margin: 20px 0;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .photos {
        display: flex;
        gap: 20px;
        margin: 20px 0;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .photos .image {
        width: 230px;
        height: 150px;
        overflow: hidden;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .photos .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .detail-btn {
        display: flex;
        align-items: center;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .detail {
        display: block;
        width: 159px;
        height: 41px;
        background: #2F396D;
        border-radius: 12px;
        color: white;
        text-decoration: none;
        text-align: center;
        line-height: 41px;
        margin-right: 20px;
        margin-top: 20px;
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .contact {
        display: inline-block;
        width: 159px;
        height: 41px;
        background: #FC004F;
        border-radius: 12px;
        font-size: 16px;
        color: #FFFFFF;
        text-decoration: none;
        margin-top: 20px;
        line-height: 41px;
        text-align: center;
        margin-left: -50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .contact i {
        font-size: 28px;
        margin-left: 20px;
        transition: all 3s ease-in-out;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .contact:hover {
        margin-left: -55px;
    }

    .index-page .index-designer .designSwiper .swiper-slide .info-box .contact:hover i {
        transform: rotate(360deg);
    }

    .index-page .index-designer .designSwiper .swiper-prev,
    .index-page .index-designer .designSwiper .swiper-next {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin: 0 20px;
        font-size: 16px;
        color: #FC004F;
    }

    .index-page .index-designer .designSwiper .swiper-button .rand {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 2px solid #FC004F;
        margin: 0 10px;
        line-height: 37px;
        text-align: center;
    }

    .index-page .index-designer .designSwiper .swiper-button {
        position: absolute;
        top: 37%;
        right: 76px;
        transform: translateY(-50%);
        /* width: 40px; */
        height: 40px;
        background: transparent;
        border: none;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        cursor: pointer;
        z-index: 10;
    }

    .index-page .index-designer .designSwiper .swiper-button-prev {
        left: 0;
    }

    .index-page .index-designer .designSwiper .swiper-button-disabled {
        opacity: 0;
    }

    .index-page .index-designer .designSwiper .swiper-button-next {
        right: 0;
    }

    .index-page .index-panorama {
        height: 980px;
        background: url('../images/case_bg.jpg') no-repeat center center;
        background-attachment: fixed;
        background-size: cover;
        padding-top: 80px;

    }

    .index-page .index-panorama .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .index-page .index-panorama .container .index-cate {
        align-items: flex-start;
    }

    .index-page .index-panorama .container .more {
        border: 1px solid #000;
    }

    .index-page .index-designer .more {
        position: absolute;
        top: 154px;
        right: 10px;
        border: 1px solid #000;
        /* padding: 8px 20px; */
        text-decoration: none;
        color: #000;
        font-size: 14px;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .index-page .index-panorama .more:hover {
        background: #FC004F;
        border: 1px solid #FC004F;
        color: #FFFFFF;
    }

    .index-page .index-panorama .more:hover .more-text {
        color: #FFFFFF;
    }

    .index-page .index-panorama .more .more-text {
        color: #000;
    }

    .index-page .index-panorama .more:hover .icon {
        color: #fff;
    }

    .index-page .index-panorama .container .more-text {
        color: #000;
    }

    .index-page .index-panorama .panorama-box {
        display: flex;
        justify-content: space-between;
        padding-left: 14%;
        margin-top: 30px;
    }

    .index-page .index-panorama .panorama-box .panorama-left {
        margin-right: 60px;
        width: 30%;
    }

    .index-page .index-panorama .panorama-box .panorama-left .cate {
        display: flex;
        align-items: center;
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 24px;
        color: #333333;
    }

    .index-page .index-panorama .panorama-box .panorama-left .sanjiao {
        width: 0;
        height: 0;
        border: 0 solid transparent;
        border-bottom: 6px solid transparent;
        border-top: 6px solid transparent;
        border-left: 12px solid #FC004F;
        margin-right: 10px;
    }

    .index-page .index-panorama .panorama-box .panorama-left .cate-img {
        width: 260px;
        height: 90px;
        margin: 20px 0;
    }

    .index-page .index-panorama .panorama-box .panorama-left .image {
        width: 420px;
        height: 286px;
        border-radius: 13px;
    }

    .index-page .index-panorama .panorama-box .panorama-left .p-l-b {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .index-page .index-panorama .panorama-box .panorama-left .quote {
        display: block;
        width: 262px;
        height: 62px;
        border-radius: 30px;
        border: 2px solid #FC004F;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 62px;
        text-align: center;
        margin-top: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .index-page .index-panorama .panorama-box .panorama-left .quote:hover {
        background: #FC004F;
        color: #FFFFFF;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper {
        width: 65%;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .panorama-list {
        align-items: center;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .swiper-slide {
        /* width: 44.271vw !important; */
        height: 135px;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .swiper-slide .image {
        width: 100%;
        height: 286px;
        /* height: 30.208vw; */
        border-radius: 13px;
        position: relative;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .swiper-slide .image i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 70px;
        color: #fff;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .swiper-slide .item-bottom {
        display: flex;
        align-items: center;
        margin-top: 20px;
        justify-content: space-between;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .swiper-slide .item-bottom .i-b-l {
        font-size: 18px;
        color: #333333;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .swiper-slide .item-bottom .i-b-r {
        font-weight: 400;
        font-size: 16px;
        color: #333333;
        cursor: pointer;
        position: relative;
        margin-right: 20px;
        padding-bottom: 10px;
    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .swiper-slide .item-bottom .i-b-r::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        height: 2px;
        width: 0;
        background-color: #FC004F;
        transition: all 0.5s ease-in-out;

    }

    .index-page .index-panorama .panorama-box .panoramaSwiper .swiper-slide:hover .item-bottom .i-b-r::after {
        width: 100%;
    }

    .index-page .index-5s {
        background: url('../images/5s_bg.jpg') no-repeat center center;
        background-attachment: fixed;
        background-size: cover;
        padding: 80px 0;
        height: 980px;
    }

    .index-page .index-5s .index-cate .cate-title {
        color: #fff;
    }

    .index-page .index-5s .nav-list {
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin-top: 30px;
        width: 80%;
        margin: 30px auto;
        padding-right: 30px;
    }

    .index-page .index-5s .nav-list .nav-item {
        font-size: 24px;
        color: #fff;
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 164px;
        cursor: pointer;

    }

    .index-page .index-5s .nav-list .nav-item .title {
        font-size: 20px;
        color: #FFFFFF;
    }

    .index-page .index-5s .nav-list .nav-item .subtitle {
        font-size: 16px;
        color: #FFFFFF;
        position: relative;
    }

    .index-page .index-5s .nav-list .nav-item.swiper-slide-thumb-active .subtitle::after {
        opacity: 1;
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        height: 7px;
        width: 100%;
        background: url('../images/5s_nav.png') no-repeat center center;
        background-size: cover;
        background-position: center center;
        transition: all 0.5s ease-in-out;
    }

    .index-page .index-5s .safeArticleSwiper {
        margin-top: 50px;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide {
        display: flex;
        background-color: #fff;
        cursor: pointer;
        justify-content: space-between;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left {
        width: 350px;
        height: 100%;
        padding: 30px;
        box-sizing: border-box;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .a-l-t {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .a-l-t .title {
        font-size: 36px;
        color: #2F396D;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .a-l-t .index {
        font-family: Impact;
        font-weight: 400;
        font-size: 60px;
        color: #2F396D;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .desc {
        font-size: 22px;
        color: #333333;
        line-height: 36px;
        position: relative;
        padding-bottom: 20px;
        margin-bottom: 60px;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .desc::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 6px;
        background: #2F396D;
        width: 100%;
        transition: all 0.5s ease-in-out;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .content {
        font-size: 18px;
        color: #333333;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .see-more {
        font-weight: 400;
        font-size: 16px;
        color: #333333;
        position: relative;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .see-more::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0;
        height: 2px;
        background: #FC004F;
        transition: all 0.5s ease-in-out;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-left .see-more:hover::after {
        width: 100%;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-right {
        width: 60%;
        height: 563px;
        box-sizing: border-box;
    }

    .index-page .index-5s .safeArticleSwiper .swiper-slide .article-right .rotate-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .index-page .index-news {
        display: flex;
        justify-content: space-between;
        padding: 60px 0;
    }

    .index-page .index-news .news-left {
        width: 40%;
        height: 857px;
        background: url(../images/news_bg.jpg) no-repeat center center;
        background-size: cover;
        background-position: center center;
        padding-top: 304px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .index-page .index-news .news-left .index-cate {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        padding: 0 30px;
        margin-bottom: 120px;
    }

    .index-page .index-news .news-left .index-cate .cate-title {
        font-size: 24px;
        color: #2F396D;
        width: 265px;
        text-align: center;
        font-size: 18px;
        color: #333333;
        line-height: 31px;
    }

    .index-page .index-news .news-left .more {
        border: 2px solid #2F396D;
    }

    .index-page .index-news .news-left .more .more-text {
        font-size: 16px;
        color: #2F396D;
    }

    .index-page .index-news .news-left .more .icon {
        font-weight: bold;
    }

    .index-page .index-news .news-left .more:hover {
        background-color: transparent;
    }

    .index-page .index-news .news-left .more:hover .more-text {
        color: #fff;
    }

    .index-page .index-news .news-left .index-cate img {
        width: 100%;
    }

    .index-page .index-news .news-right {
        margin-left: 60px;

    }

    .index-page .index-news .news-right .news-list {
        display: flex;
        flex-direction: column;
    }

    .index-page .index-news .news-right .news-list .news-item {
        width: 41.146vw;
        height: 200px;
        background: #F8F8F8;
        display: flex;
        justify-content: space-between;
        padding: 20px;
        margin-bottom: 20px;
        transition: all 0.5s ease-in-out;
    }

    .index-page .index-news .news-right .news-list .news-item .item-left {
        width: 70%;
    }

    .index-page .index-news .news-right .news-list .news-item .title {
        font-size: 18px;
        color: #333333;
        margin-bottom: 20px;
    }

    .index-page .index-news .news-right .news-list .news-item .desc {
        font-weight: 400;
        font-size: 14px;
        color: #333333;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .index-page .index-news .news-right .news-list .news-item .item-right {
        margin-top: 60px;
        width: 140px;
        height: 44px;
        background: #E4E4E4;
        font-size: 16px;
        color: #333333;
        line-height: 44px;
        text-align: center;
        transition: all 0.5s ease-in-out;
    }

    .index-page .index-news .news-right .news-list .news-item .see-more {
        font-size: 16px;
        color: #333333;
        position: relative;
    }

    .index-page .index-news .news-right .news-list .news-item .see-more::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0;
        height: 2px;
        background: #FC004F;
        transition: all 0.5s ease-in-out;
    }

    .index-page .index-news .news-right .news-list .news-item:hover .see-more::after {
        width: 100%;
    }

    .index-page .index-news .news-right .news-list .news-item:hover .item-right {
        background: #FC004F;
        color: #fff;
    }

    .index-page .index-news .news-right .news-list .news-item:hover {
        box-shadow: 0 0 10px #E4E4E4;
    }

    .index-page .index-profile {
        height: 980px;
        background: url(../images/profile_bg.jpg) no-repeat center center;
        background-attachment: fixed;
        background-size: cover;
        background-position: center center;
        padding-top: 120px;
    }

    .index-page .index-profile .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .index-page .index-profile .container .index-cate .cate-title {
        color: #fff;
    }

    .index-page .index-profile .container .content {
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        line-height: 36px;
        margin-bottom: 40px;
        color: #fff;
        margin-top: 80px;
        width: 80%;
    }

    .index-page .index-profile .container .rotate-image {
        width: 590px;
        height: 115px;
        margin-top: 80px;
    }

    .index-page .index-profile .container .slogan {
        font-weight: 400;
        font-size: 36px;
        color: #FFFFFF;
        margin-top: 50px;
    }

    /*===============================================公司简介=======================================================*/
    .profile-page .profile-about {
        background: url(../images/about_bg.jpg) no-repeat;
        padding-top: 100px;
        padding-bottom: 100px;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        height: 860px;
    }

    .profile-page .about-box {
        display: flex;
        margin-top: 30px;

    }

    .profile-page .about-box .about-left {
        width: 40%;
        margin-right: 20px;
        padding-right: 30px;
    }

    .profile-page .about-box .about-left .subtitle {
        margin-top: 70px;
        font-size: 24px;
        color: #384274;
        margin-bottom: 30px;
    }

    .profile-page .about-box .about-left .subtitle li {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    .profile-page .about-box .about-left .subtitle li .point {
        width: 10px;
        height: 10px;
        background-color: #FC004F;
        border-radius: 50%;
        margin-right: 10px;
    }

    .profile-page .about-box .about-left .subtitle li .text {
        font-size: 24px;
        color: #384274;
        margin-left: 20px;
    }

    .profile-page .about-box .about-right {
        width: 37.5vw;
        position: relative;
        overflow: hidden;
    }

    .profile-page .about-box .about-right .title {
        font-size: 30px;
        color: #333333;
        margin-bottom: 30px;
    }

    .profile-page .about-box .about-right .content {
        font-weight: 400;
        font-size: 16px;
        color: #333333;
        line-height: 43px;
        text-indent: 2rem;
    }

    .profile-page .profile-school {
        padding: 100px 0;
    }

    .profile-page .profile-values {
        padding: 60px 0;
    }

    .profile-page .profile-values .values-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 60px;
    }

    .profile-page .profile-values .values-list .values-item {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px 30px 50px 0;
        border-bottom: 1px solid #dedede;
        transition: all 0.5s ease-in-out;
    }

    .profile-page .profile-values .values-list .values-item:hover {
        box-shadow: 0 0 10px #E4E4E4;
    }

    .profile-page .profile-values .values-list .values-item:nth-child(1) {
        border-right: 1px solid #dedede;
    }

    .profile-page .profile-values .values-list .values-item:nth-child(2) {
        padding-left: 30px;
    }

    .profile-page .profile-values .values-list .values-item .title {
        font-size: 36px;
        color: #020202;
        margin-bottom: 30px;
    }

    .profile-page .profile-values .values-list .values-item .desc {
        font-weight: 400;
        font-size: 24px;
        color: #020202;
    }
     .profile-page .profile-values .values-list .values-item .item-left{
        padding-left: 20px;
     }
    .profile-page .profile-values .values-list .values-item .item-right {
        font-family: Impact;
        font-weight: 400;
        font-size: 72px;
        color: #c7c9d3;
    }

    .profile-page .profile-values .core-values {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .profile-page .profile-values .valuesSwiper .swiper-button {
        position: absolute;
        width: 100px;
        height: 10px;
        right: 20px;
        bottom: 40px;
        display: flex;
        justify-content: space-between;
        z-index: 100;
    }

    .profile-page .profile-values .valuesSwiper .swiper-button-next::after,
    .profile-page .profile-values .valuesSwiper .swiper-button-prev::after {
        display: none;
    }

    .profile-page .profile-values .valuesSwiper .swiper-button-next,
    .profile-page .profile-values .valuesSwiper .swiper-button-prev {
        width: 32px;
    }

    .profile-page .profile-values .valuesSwiper .swiper-button-next i,
    .profile-page .profile-values .valuesSwiper .swiper-button-prev i {
        color: #FC004F;
        font-size: 32px;
    }

    .profile-page .profile-values .valuesSwiper .swiper-button-prev i {
        transform: rotate(180deg);
    }

    .profile-page .profile-values .valuesSwiper .swiper-slide {
        display: flex;
        justify-content: space-between;
        padding: 50px 30px 50px 0;
        transition: all 0.5s ease-in-out;
    }


    .profile-page .profile-values .core-values .item-left {
        width: 50%;
        padding-right: 40px;
    }

    .profile-page .profile-values .core-values .item-left .rotate-image {
        width: 100%;
    }

    .profile-page .profile-values .core-values .item-left .title {
        font-size: 36px;
        color: #020202;
        margin-bottom: 30px;
    }

    .profile-page .profile-values .core-values .item-right {
        width: 50%;
        display: flex;
        justify-content: space-between;
    }

    .profile-page .profile-values .core-values .item-right .item-r-l {
        width: 20%;
        font-size: 30px;
        color: #FC004F;
    }

    .profile-page .profile-values .core-values .item-right .item-r-r {
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        color: #020202;
        line-height: 36px;
        text-indent: 2rem;
    }

    .profile-page .profile-history {
        padding: 90px 0;
        position: relative;
        background-size: cover;
        background-attachment: fixed;
        background-repeat: no-repeat;
        height: 580px;
    }

    .profile-page .profile-history .container {
        display: flex;
        justify-content: space-between;
    }

    .profile-page .profile-history .container .profile-cate {
        width: 20%;
    }

    .profile-page .profile-history .container .history-box {
        width: 70%;
    }


    .profile-page .profile-history .container .history-box .historyYearSwiper {
        width: 90%;
    }

    .profile-page .profile-history .container .history-box .historyYearSwiper .swiper-slide {
        text-align: left;
        padding-left: 49px;
        transition: all 0.5s ease-in-out;
        font-family: Impact;
        font-weight: 400;
        font-size: 2.5vw;
        color: #333333;
        line-height: 43px;
        cursor: pointer;
        background: url(../images/year_bg.png) no-repeat bottom center;
        background-size: 97%;
        padding-bottom: 50px;
        opacity: 0.3;
    }

    .profile-page .profile-history .container .history-box .historyYearSwiper .swiper-slide.swiper-slide-thumb-active {
        opacity: 1;
    }

    .profile-page .profile-history .container .history-box .historySwiper {
        margin-top: 30px;
    }

    .profile-page .profile-history .container .history-box .historySwiper .swiper-button {
        width: 100px;
        position: absolute;
        top: 26px;
        left: 90px;
        z-index: 100;
    }

    .profile-page .profile-history .container .history-box .historySwiper .swiper-button-next,
    .profile-page .profile-history .container .history-box .historySwiper .swiper-button-prev {
        width: 30px;
        height: 30px;
        background: #2F396D;
        border-radius: 50%;
    }

    .profile-page .profile-history .container .history-box .historySwiper .swiper-button-next::after,
    .profile-page .profile-history .container .history-box .historySwiper .swiper-button-prev::after {
        font-size: 12px;
        text-align: center;
        line-height: 30px;
    }

    .profile-page .profile-history .container .history-box .historySwiper .swiper-slide {
        padding-left: 100px
    }

    .profile-page .profile-history .container .history-box .historySwiper .desc {
        font-size: 30px;
        color: #333333;
        margin-top: 80px;
        margin-bottom: 20px;
    }

    .profile-page .profile-history .container .history-box .historySwiper .content {
        font-weight: 400;
        font-size: 16px;
        color: #333333;
        line-height: 35px;
    }

    .profile-page .profile-honor {
        padding: 90px 0;
        display: flex;
        justify-content: space-between;
    }

    .profile-page .profile-honor .honor-left {
        width: 50%;
    }

    .profile-page .profile-honor .honor-left .honor-content {
        margin-top: 90px;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 53px;
        height: 654px;
        overflow-y: scroll;
    }

    .profile-page .profile-honor .honor-left .honor-content::-webkit-scrollbar {
        display: none;
    }

    .profile-page .profile-honor .honor-right {
        width: 600px;
        height: 800px;
        background: url(../images/honor_bg.jpg) no-repeat bottom center;
        margin-top: 140px;
    }

    .profile-page .profile-honor .honor-right .honorSwiper {
        padding-bottom: 20px;
    }

    .profile-page .profile-honor .honor-right .honorSwiper .swiper-slide .honor-item {
        display: flex;
        margin: 50px auto;
        width: 461px;
        height: 652px;
        align-items: flex-end;
    }

    .profile-page .profile-honor .honor-right .honorSwiper .swiper-slide .honor-item img {
        width: 100%;
        transition: 1s all ease-in-out;
    }

    .profile-page .profile-honor .honor-right .honorSwiper .swiper-slide:hover img {
        -webkit-mask-position: 0 0;
        -webkit-mask: linear-gradient(135deg, #000c 40%, #000, #000c 60%) 100% 100% / 250% 250%;
    }

    .profile-page .profile-honor .honor-right .honorSwiper .swiper-pagination-bullet {
        width: 16px;
        height: 16px;
        background: #FFFFFF;
        border-radius: 50%;
        border: none
    }

    .profile-page .profile-honor .honor-right .honorSwiper .swiper-pagination-bullet-active {
        background: #FC004F;
    }

    .profile-page .profile-concept {
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding-top: 160px;
        min-height: 960px;
        position: relative;
    }

    .profile-page .profile-concept .concept-box {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 59.74vw;
        background: rgba(29, 46, 133, 0.8);
        border-radius: 230px 0px 0px 0px;
        padding-top: 70px;
        padding-left: 140px;
        padding-right: 250px;
        color: #FFFFFF;
    }

    .profile-page .profile-concept .concept-box .title {
        font-size: 24px;
        color: #FFFFFF;
        margin-bottom: 30px;
    }

    .profile-page .profile-concept .concept-box .content {
        font-weight: 400;
        font-size: 16px;
        color: #FFFFFF;
        line-height: 47px;
        text-indent: 2rem;
    }

    .profile-page .profile-version {
        padding-top: 150px;
        height: 960px;
    }

    .profile-page .profile-version .version-content {
        margin-top: 60px;
        cursor: pointer;
        transition: .5s all ease-in-out;

    }

    .profile-page .profile-version .version-content img {
        width: 100%;
        animation: downUp 10s infinite;
    }

    .profile-page .profile-version .version-content:hover img {
        animation-play-state: paused;
    }

    .profile-page .profile-experience {
        padding: 120px;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .profile-page .profile-experience .container {
        height: 606px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 20px;
        padding: 60px;
    }

    .profile-page .profile-experience .container .experience-top .content {
        font-size: 18px;
        color: #282725;
        margin-top: 40px;
    }

    .profile-page .profile-experience .container .experience-top {
        margin-bottom: 100px;
    }

    .profile-page .profile-experience .container .experience-list {
        display: flex;
        justify-content: space-between;
        margin-top: 45px;
        font-size: 18px;
        color: #282725;
    }

    .profile-page .profile-experience .container .experience-bottom img {
        width: 100%;
    }

    /* ==============================================5s 够省心================================ */
    .safe-page .safe-banner {
        width: 100%;
        overflow: hidden;
        height: 32.292vw;
    }

    .safe-page .safe-banner img {
        width: 100%;
        height: 100%;
        animation: scaleDownUp 20s ease-in-out infinite;
    }

    .safe-page .safe-select {
        width: 100%;
        display: flex;
        padding-bottom: 50px;
    }

    .safe-page .safe-select .select-left {
        width: 430px;
        height: 460px;
        background: url(../images/safe_cate_bg.jpg) no-repeat center center;
        background-size: cover;
        padding: 30px 20px;
        margin-right: 40px;
        color: #FFFFFF;

    }

    .safe-page .safe-select .select-left .cate-title {
        font-weight: 400;
        font-size: 48px;
        color: #FFFFFF;
        margin-bottom: 30px;
    }

    .safe-page .safe-select .select-left .cate-subtitle {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
        font-weight: 400;
        font-size: 24px;
        color: #FFFFFF;
        align-items: center;
    }

    .safe-page .safe-select .select-left .cate-subtitle i {
        font-weight: 400;
        font-size: 33px;
        color: #FFFFFF;
    }

    .safe-page .safe-select .select-left .desc {
        font-weight: 400;
        font-size: 18px;
        color: #FFFFFF;
        margin-top: 80px;
        padding-right: 30px;
    }

    .safe-page .safe-select .select-left .back-home {
        display: block;
        width: 77px;
        height: 75px;
        float: right;
        margin-top: 30px;
        cursor: pointer;
        background: url(../images/back_home.png) no-repeat center center;
        background-size: cover;
        transform-origin: center top;

        /* 启用动画：名称 时长 匀速 无限循环 */
        animation: pendulum 1.8s ease-in-out infinite;
    }

    .safe-page .safe-select .select-left .back-home:hover {
        animation-play-state: paused;
    }



    .safe-page .safe-select .select-right {
        padding-top: 40px;
        width: 66%;
    }

    .safe-page .safe-title .title {
        font-size: 30px;
        color: #333333;
    }

    .safe-page .safe-title .title img {
        width: 125px;
        margin-right: 20px;
    }

    .safe-page .safe-title .subtitle {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        margin-top: 30px;
    }

    .safe-page .safe-select .select-right .select-list {
        margin-top: 50px;
    }

    .safe-page .safe-select .select-right .select-list .select-item {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .safe-page .safe-select .select-right .select-list .select-item::after {
        content: '';
        width: 0;
        height: 1px;
        background: #fc2a6c;
        position: absolute;
        left: 14px;
        bottom: 3px;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .safe-select .select-right .select-list .select-item:hover::after {
        width: 100%;
    }

    .safe-page .safe-select .select-right .select-list .select-item .icon {
        padding: 10px 30px;
        background: url(../images/selct_icon.png) no-repeat center center;
        background-size: 100%;
        font-size: 30px;
        color: #333333;
        line-height: 28px;
    }

    .safe-page .safe-select .select-right .select-list .select-item .name {
        font-size: 18px;
        color: #333333;
        margin-left: 20px;
        font-weight: bold;
    }

    .safe-page .safe-select .select-right .select-r-b {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    @keyframes upDownBounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(10px);
        }
    }

    .safe-page .safe-select .select-right .select-img {
        will-change: transform;
        animation: upDownBounce 3s infinite cubic-bezier(0.45, 1.2, 0.55, 1);
        width: 50%;
    }

    .safe-page .safe-full {
        margin-top: 100px;
        padding-bottom: 80px;
    }

    .safe-page .safe-full .full-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .safe-page .safe-full .full-box .full-left {
        width: 40%;
    }

    .safe-page .safe-full .full-box .full-right {
        width: 60%;
        padding-left: 40px;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 36px;
    }

    .safe-page .safe-full .full-box .full-right .desc {
        font-size: 18px;
        color: #333333;
        margin-top: 30px;
    }

    .safe-page .safe-experience {
        padding: 60px 0;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .safe-page .safe-experience .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .safe-page .safe-experience .container .safe-title .subtitle {
        margin-left: 20px;
    }

    .safe-page .safe-experience .experience-box {
        width: 100%;
    }

    .safe-page .safe-experience .experience-list {
        margin-top: 40px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .safe-page .safe-advantage {
        padding: 70px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .safe-page .safe-advantage .safe-title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .safe-page .safe-advantage .advantageSwiper {
        width: 100%;
        margin-top: 70px;
    }

    .safe-page .safe-advantage .advantage-item {
        width: 100%;
        display: flex;
    }

    .safe-page .safe-advantage .advantage-item .item-left {
        width: 40%;
        padding-right: 60px;
        padding-top: 150px;
    }

    .safe-page .safe-advantage .advantage-item .item-left .subtitle {
        font-size: 59px;
        color: #CFCFCF;
        line-height: 59px;
        text-transform: uppercase;
    }

    .safe-page .safe-advantage .advantage-item .item-left .title {
        font-size: 36px;
        color: #333333;
        margin-top: 30px;
    }

    .safe-page .safe-advantage .advantage-item .item-left .content {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 36px;
        margin-top: 90px;
    }

    .safe-page .safe-advantage .advantage-item .item-right {
        width: 60%;
        height: 740px;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button {
        position: absolute;
        top: 81%;
        left: 31%;
        width: 229px;
        height: 58px;
        background: #FC004F;
        box-shadow: -21px 28px 31px 1px rgba(252, 0, 79, 0.15);
        z-index: 999;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button:hover {
        background: #fff;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button:hover i {
        color: #FC004F;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button-next::after,
    .safe-page .safe-advantage .advantageSwiper .swiper-button-prev::after {
        display: none;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button-next i,
    .safe-page .safe-advantage .advantageSwiper .swiper-button-prev i {
        font-size: 44px;
        color: #fff;
        font-weight: bold;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button-next {
        /* right: 40px;
         */
        width: 80px;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button-prev {
        width: 80px;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button-prev i {
        transform: rotate(-180deg) rotateX(180deg);
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button-next:hover {
        right: 5px;
        ;
    }

    .safe-page .safe-advantage .advantageSwiper .swiper-button-prev:hover {
        left: 5px;
    }

    /* ==========================================够省钱===================================================== */
    .safe-page .brand-r-b {
        display: block;
        margin-top: 40px;
        height: 799px;
    }

    .safe-page .brand-r-b img {
        width: 100%;
        object-fit: contain;
    }

    .safe-page .rotate-home {
        width: 75px;
        height: 75px;
        background: url(../images/rotate_home.png) no-repeat center center;
        float: right;
        margin-top: 20px;
        animation: rotateWindmill 3s linear infinite;
    }

    .safe-page .rotate-home:hover {
        animation-play-state: paused;
    }

    .safe-page .safe-advantage.brand {
        padding: 0;
    }

    .safe-page .safe-advantage.brand .item-left {
        width: 60%;
        height: 500px;
        padding: 0;
    }

    .safe-page .safe-advantage.brand .item-right {
        width: 40%;
        padding-left: 60px;
        height: 500px;

    }

    .safe-page .safe-advantage.brand .item-right .logo {
        width: 300px;
        height: 100px;
        margin-bottom: 30px;
    }

    .safe-page .safe-advantage.brand .item-right .logo img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .safe-page .safe-advantage.brand .item-right .logo-content {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 36px;
        height: 368px;
        overflow-y: scroll;
        text-indent: 2em;
        padding-right: 20px;
    }

    .safe-page .safe-advantage.brand .item-right .logo-content::-webkit-scrollbar {
        display: none;
    }

    .safe-page .safe-advantage.brand .swiper-button {
        top: 80%;
        left: 48%;
    }

    .safe-page .brand-notonly {
        margin-top: 80px;
        display: flex;
        padding-bottom: 60px;
    }

    .safe-page .brand-notonly .brand-left {
        width: 40%;
        height: 450px;
    }

    .safe-page .brand-notonly .brand-left .brand-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 100px;
        padding-right: 70px;
    }

    .safe-page .brand-notonly .brand-left .brand-list .brand-item {
        width: 11.979vw;
        height: 6.354vw;
        background: #F4F4F4;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .brand-notonly .brand-left .brand-list .brand-item:hover {
        margin-top: -10px;
    }

    .safe-page .brand-notonly .brand-left .brand-list .brand-item img {
        object-fit: contain;
        width: 50%;
        text-align: center;
    }

    .safe-page .brand-notonly .brand-right .brand-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .safe-page .brand-notonly .brand-right .brand-list .brand-item {
        width: 13.49vw;
        height: 23.4375vw;
    }


    .safe-page .brand-notonly .brand-right {
        width: 60%;
        margin-top: 20px;
    }

    .safe-page .environment-protection {
        display: flex;
        padding-bottom: 60px;
    }

    .safe-page .environment-protection .protection-left {
        width: 50%;
        height: 730px;
    }

    .safe-page .environment-protection .protection-right {
        width: 50%;
    }

    .safe-page .environment-protection .protection-right .safe-title {
        margin-left: 40px;
    }

    .safe-page .environment-protection .protection-right .protection-list {
        margin-top: 100px;
        margin-left: -92px;
        display: flex;
        flex-wrap: wrap;
    }

    .safe-page .environment-protection .protection-right .protection-list .protection-item {
        width: 20.3125vw;
        /* height: 6.40625vw; */
        margin-right: 1.042vw;
        margin-bottom: 1.042vw;
        background: #EEEFF3;
        padding: 1.5625vw;
        transition: all 0.5s ease-in-out;
        cursor: pointer;
    }

    .safe-page .environment-protection .protection-right .protection-list .protection-item:hover {
        transform: translateY(-10px);
        background-image: url(../images/protection_hover.png);
        background-position: bottom right;
        background-repeat: no-repeat;
        background-color: #2F396D;
    }

    .safe-page .environment-protection .protection-right .protection-list .protection-item:hover .title {
        color: #fff;
    }

    .safe-page .environment-protection .protection-right .protection-list .protection-item:hover .content {
        color: #fff;
    }

    .safe-page .environment-protection .protection-right .protection-list .protection-item .title {
        font-size: 1.25vw;
        color: #333333;
        transition: all 0.5s ease-in-out;
    }

    .safe-page .environment-protection .protection-right .protection-list .protection-item .content {
        font-weight: 400;
        font-size: 0.729vw;
        color: #333333;
        line-height: 24px;
        transition: all 0.5s ease-in-out;
    }

    .safe-page .environment-protection .protection-right .protection-list .protection-item.short {
        width: 13.177vw;
    }

    /* ==============================================够省力================================================= */
    .safe-page .watch-home {
        width: 84px;
        height: 69px;
        background-image: url(../images/watch_home.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        float: right;
        margin-top: 20px;
        animation: pointDownUp 1.8s ease-in-out infinite;
    }

    .safe-page .watch-home:hover {
        animation-play-state: paused;
    }

    .safe-page .safe-select.cloud .cloud-list {
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .safe-page .safe-select.cloud .cloud-list .cloud-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .safe-page .safe-select.cloud .cloud-list .cloud-item .cloud-item-title {
        font-weight: bold;
        font-size: 20px;
        color: #333333;
        position: relative;
        cursor: pointer;
    }

    .safe-page .safe-select.cloud .cloud-list .cloud-item .cloud-item-title::after {
        content: '';
        display: block;
        width: 30%;
        height: 6px;
        background: #FC004F;
        margin-top: 10px;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 0.5s ease-in-out;
    }

    .safe-page .safe-select.cloud .cloud-list .cloud-item .cloud-item-title:hover::after {
        width: 100%;
    }

    .safe-page .safe-select.cloud .cloud-list .cloud-item .cloud-item-title span {
        font-size: 36px;
        color: #333333;
        font-weight: 400;
    }

    .safe-page .safe-select.cloud .cloud-list .cloud-item .cloud-item-desc {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 36px;
        margin-top: 36px;
    }

    .safe-page .safe-select.cloud .cloud-image {
        margin-top: 60px;
        width: 100%;
        will-change: transform;
        animation: upDownBounce 3s infinite cubic-bezier(0.45, 1.2, 0.55, 1);
    }

    .safe-page .problem-solve .solve-top {
        margin-top: 50px;
        display: flex;
    }

    .safe-page .problem-solve .solve-top .solve-t-l {
        width: 50%;
    }

    .safe-page .problem-solve .solve-top .solve-t-l img {
        width: 100%;
    }

    .safe-page .problem-solve .solve-top .solve-t-r {
        width: 50%;
        padding-left: 50px;
    }

    .safe-page .problem-solve .solve-top .solve-t-r .solve-list {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .safe-page .problem-solve .solve-top .solve-t-r .solve-list .solve-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .safe-page .problem-solve .solve-top .solve-t-r .solve-list .solve-item .solve-item-title {
        font-weight: bold;
        font-size: 20px;
        color: #333333;
        position: relative;
        cursor: pointer;
    }

    .safe-page .problem-solve .solve-top .solve-t-r .solve-list .solve-item .solve-item-title::after {
        content: '';
        display: block;
        width: 30%;
        height: 6px;
        background: #FC004F;
        margin-top: 10px;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 0.5s ease-in-out;
    }

    .safe-page .problem-solve .solve-top .solve-t-r .solve-list .solve-item .solve-item-title:hover::after {
        width: 100%;
    }

    .safe-page .problem-solve .solve-top .solve-t-r .solve-list .solve-item .solve-item-title span {
        font-size: 36px;
        color: #333333;
        font-weight: 400;
    }

    .safe-page .problem-solve .solve-top .solve-t-r .solve-list .solve-item .solve-item-desc {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 36px;
        margin-top: 36px;
    }

    .safe-page .problem-solve .solve-image {
        margin-top: 40px;
        width: 100%;
    }

    .safe-page .problem-solve .solve-image.solve-image-2 {
        height: 225px;
    }

    .safe-page .safe-craftsmanship {
        margin-top: 50px;
        padding: 50px 0;
        background: url('../images/gy_bg.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box {
        margin-top: 45px;
        display: flex;
        align-items: flex-start;

    }

    .safe-page .safe-craftsmanship .craftsmanship-box-left {
        background: url('../images/gy_l.png') no-repeat center center;
        background-size: cover;
        height: 24.74vw;
        width: 23.698vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-middle {
        background: url('../images/gy_m.png') no-repeat center center;
        background-size: cover;
        height: 24.479vw;
        width: 24.479vw;
        margin: 0 20px;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-right {
        background: url('../images/gy_r.png') no-repeat center center;
        background-size: cover;
        height: 24.74vw;
        width: 23.698vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-list {
        display: flex;
        flex-wrap: wrap;
    }

    .safe-page .safe-craftsmanship .craftsmanship-list .craftsmanship-item {
        width: 46%;
        height: 11.979vw;
        padding: 1.042vw;
        color: #333333;
        margin-right: 10px;
    }

    .safe-page .safe-craftsmanship .craftsmanship-item {
        padding: 1.042vw;
        color: #fff;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-left .craftsmanship-item:nth-child(1) {
        margin-top: 4.479vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-left .craftsmanship-item:nth-child(2) {
        padding-left: 0.521vw;
        margin-top: -0.521vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-left .craftsmanship-item:nth-child(3) {
        margin-top: -1.921vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-left .craftsmanship-item:nth-child(4) {
        margin-top: -3.921vw;
        color: #fff;
    }

    .safe-page .safe-craftsmanship .craftsmanship-item .title {
        font-size: 1.25vw;
        margin-bottom: 0.521vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-middle.craftsmanship-item .title {
        margin-bottom: 1.042vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-item .desc {
        font-weight: 400;
        font-size: 0.833vw;
        line-height: 1.5625vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-right .craftsmanship-item:nth-child(1) {
        color: #fff;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-right .craftsmanship-item:nth-child(2) {
        padding-left: 2.03125vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-right .craftsmanship-item:nth-child(3) {
        margin-top: 0.921vw;
    }

    .safe-page .safe-craftsmanship .craftsmanship-box-right .craftsmanship-item:nth-child(4) {
        margin-top: -1.921vw;
        padding-left: 2.03125vw;
        color: #fff;
    }

    .safe-page .safe-standard {
        margin-top: 50px;
    }

    .safe-page .safe-standard.safe-standard-50 {
        background: url('../images/standard_bg.jpg');
        background-size: cover;
        background-attachment: fixed;
        padding: 50px 0;
    }

    .safe-page .safe-standard .standard-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 40px;

    }



    .safe-page .safe-standard .standard-box a {
        display: block;
        width: 48%;
        height: 100%;
    }

    .safe-page .safe-standard.safe-standard-50 .standard-box a {
        width: 100%;
        height: 100%;
    }

    .safe-page .safe-standard .standard-box a img {
        width: 100%;
        height: 100%;
    }

    .safe-page .safe-standard .standard-box .standard-item {
        width: 46%;
        height: 11.979vw;
        padding: 1.042vw;
        color: #333333;
        margin-right: 10px;
    }

    .safe-page .safe-manager {
        padding-top: 80px;
        position: relative;
        padding-bottom: 60px;
    }

    .safe-page .safe-manager .container {
        display: flex;
        justify-content: space-between;
    }

    .safe-page .safe-manager .manager-left {
        width: 50%;
        padding-right: 100px;
    }

    .safe-page .safe-manager .manager-left .manager-bottom {
        margin-top: -28px;
        font-weight: 400;
        font-size: 30px;
        color: #FFFFFF;
        padding-top: 20px;
    }

    .safe-page .safe-manager .manager-left .content {
        margin-top: 40px;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 36px;
        text-indent: 2em;
    }

    .safe-page .safe-manager .manager-right {
        width: 50%;
        height: 471px;
    }

    .safe-page .safe-manager .managerSwiper .swiper-slide {
        width: 100%;
        height: 100%;
    }

    .safe-page .safe-manager .managerSwiper .swiper-slide .image {
        display: block;
        width: 100%;
        height: 100%;
    }

    .safe-page .safe-manager .managerSwiper .swiper-pagination {
        bottom: 30px;
    }

    .safe-page .safe-manager .managerSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #FFFFFF;
        border-radius: 50%;
        opacity: 0.63;
    }

    .safe-page .safe-manager .managerSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
        opacity: 1;
        border: none;
    }

    .safe-page .safe-manager:after {
        content: '';
        position: absolute;
        bottom: 29px;
        left: 0;
        width: 100%;
        height: 100px;
        background: #2F396D;
        z-index: -1;
    }

    .safe-page .safe-staff {
        margin-top: 40px;
        padding: 40px 0;
        position: relative;
    }

    .safe-page .safe-staff .staff-box {
        display: flex;
        margin-top: 30px;
    }

    .safe-page .cloud-image:hover {
        animation-play-state: paused !important;
    }

    .safe-page .safe-staff .staff-box .staff-left.cloud-image {
        width: 40%;
        padding-right: 40px;
        will-change: transform;
        animation: upDownBounce 3s infinite cubic-bezier(0.45, 1.2, 0.55, 1);
    }

    .safe-page .safe-staff .staff-box .staff-left.cloud-image img {
        width: 100%;
        height: 100%;
    }

    .safe-page .safe-staff .staff-box .staff-right {
        width: 60%;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
    }

    .safe-page .safe-staff .staff-box .staff-right .staff-r-t {
        display: flex;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        align-items: center;
    }

    .safe-page .safe-staff .staff-box .staff-right .staff-r-t .keywords {
        padding: 10px 15px;
        background: #2F396D;
        border-radius: 12px;
        color: #fff;
        margin-right: 20px;
    }

    .safe-page .safe-staff .staff-box .staff-right .staff-r-b {
        margin-top: 30px;
    }

    .safe-page .safe-staff .staff-box .staff-right .staff-r-b .staff-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .safe-page .safe-staff .staff-box .staff-right .staff-r-b .staff-list .staff-item {
        width: 171px;
        height: 206px;
    }

    .safe-page .details-box {
        display: flex;
        margin-top: 40px;
        width: 100%;
        justify-content: space-between;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .details-box img {
        width: 48%;
        height: 100%;
    }

    .safe-page .details-box.card {
        width: 100%;
        border-radius: 30px;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .details-box.card img {
        width: 100%;
        height: 100%;
    }

    .safe-page .details-box.card:hover {
        transform: translateY(-10px);
    }

    .safe-page .safe-process {
        margin-top: 40px;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .safe-page .safe-process .safe-title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .safe-page .safe-process .process-box {
        margin-top: 40px;
        width: 100%;
    }

    .safe-page .safe-process .process-box .process-list {
        display: flex;
        align-items: center;
    }

    .safe-page .safe-process .process-box .process-list .process-item {
        width: 16.042vw;
        height: 14.6875vw;
        background: url(../images/process_bg.png) no-repeat center center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.042vw;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        position: relative;
    }

    .safe-page .safe-process .process-box .process-list .process-item:hover {
        transform: translateY(-10px);
    }

    .safe-page .safe-process .process-box .process-list .process-item .title {
        width: 5.208vw;
        font-size: 1.25vw;
        color: #373737;
        line-height: 1.875vw;
    }

    .safe-page .safe-process .process-box .process-list .process-item .level {
        display: none;
    }

    .safe-page .safe-process .process-box .process-list .process-item .desc {
        font-weight: 400;
        font-size: 0.833vw;
        color: #373737;
        line-height: 1.5625vw;
        margin-top: 1.042vw;
        padding-right: 1.142vw;
    }

    .safe-page .safe-process .process-box .process-line {
        width: 100%;
        height: 108px;
        background: url(../images/process_line.png) no-repeat center center;
        background-size: contain;
        margin: 20px 0;
    }

    .safe-page .safe-process .process-box .process-top {
        margin-left: 4%;
    }

    .safe-page .safe-process .process-box .process-bottom {
        margin-left: 14%;
        margin-top: -18px;
    }

    .safe-page .safe-process .process-box .process-list .process-item .tag {
        position: absolute;
        top: 2.1875vw;
        right: 1.51vw;
        font-weight: bold;
        font-size: 0.9375vw;
        color: #FFFFFF;
    }

    /* ========================================够安心======================================== */


    .safe-page .scale-heart {
        width: 82px;
        height: 74px;
        background: url(../images/scale_heart.png) no-repeat center center;
        background-size: cover;
        float: right;
        margin-top: 30px;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        animation: heartbeat 2s infinite;
    }

    .safe-page .safe-select .select-left .scale-heart:hover {
        animation-play-state: paused;
    }

    .safe-page .brand-r-b.model {
        height: auto;
    }

    .safe-page .scale-heart:hover {
        transform: scale(1.1);
    }

    .safe-page .safe-group {
        margin-top: 40px;
    }

    .safe-page .safe-group .group-list {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .safe-page .safe-group .group-list .group-item {
        width: 28%;
        margin-bottom: 20px;
    }

    .safe-page .safe-services {
        padding: 50px 0;
        margin-top: 40px;
        /* height: 720px; */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        background-attachment: fixed;
    }

    .safe-page .safe-services .safe-title .desc {
        display: inline-block;
        margin-top: 20px;
        width: 201px;
        height: 40px;
        background: #FC004F;
        border-radius: 20px;
        font-size: 18px;
        color: #FFFFFF;
        line-height: 38px;
        text-align: center;
        margin-left: 9.375vw;
        will-change: transform;
        animation: upDownBounce 3s infinite cubic-bezier(0.45, 1.2, 0.55, 1);
    }

    .safe-page .safe-services .service-list {
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        width: 50%;
    }

    .safe-page .safe-services .service-list .service-item {
        width: 46%;
        margin-bottom: 40px;
        margin-right: 20px;
        /* height: 126px; */
        background: #FFFFFF;
        border-radius: 20px 0px 20px 0px;
        padding: 20px 70px;
        position: relative;
        transition: all 0.5s ease-in-out;
        cursor: pointer;
    }

    .safe-page .safe-services .service-list .service-item:hover {
        transform: translateY(-10px);
    }

    .safe-page .safe-services .service-list .service-item .number {
        font-size: 48px;
        color: #FFFFFF;
        line-height: 50px;
        text-align: center;
        position: absolute;
        top: -20px;
        left: 0;
        width: 50px;
        height: 50px;
        background: #FC004F;
        border-radius: 50%;
        color: #FFFFFF;
    }

    .safe-page .safe-services .service-list .service-item .desc {
        font-size: 18px;
        color: #333333;
        line-height: 36px;
    }

    .safe-page .safe-media {
        margin-top: 40px;
        padding: 50px 0;
    }

    .safe-page .safe-media .media-box {
        display: flex;
        margin-top: -30px;
        align-items: flex-end;
        justify-content: space-between;
    }

    .safe-page .safe-media .media-box .media-left {
        width: 70%;
    }

    .safe-page .safe-media .media-box .media-right {
        width: 30%;
    }

    .safe-page .safe-media .media-box .media-list {
        display: flex;
        flex-wrap: wrap;
    }

    .safe-page .safe-media .media-box .media-left .media-list .media-item {
        width: 22%;
        height: 91px;
        background: #FFFFFF;
        border: 1px solid #CFD6D9;
        padding: 20px;
        margin-bottom: 20px;
        margin-right: 20px;
        transition: all 0.5s ease-in-out;
        cursor: pointer;
    }

    .safe-page .safe-media .media-box .media-left .media-list .media-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .safe-page .safe-media .media-box .media-right .media-list .media-item {
        width: 50%;
        height: 320px;
        background: #FFFFFF;
        border: none;
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
        transition: all 0.5s ease-in-out;
        cursor: pointer;
    }

    .safe-page .safe-media .media-box .media-right .media-list .media-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .safe-promise {
        margin-top: 40px;
        padding: 50px 0;
        display: flex;
        align-items: flex-start;
    }

    .safe-promise .promise-left {
        width: 50%;
    }

    .safe-promise .promise-right {
        width: 60%;
        background: linear-gradient(115deg, #2F396D 0%, #2F8DC4 100%);
        box-shadow: -12px 5px 18px 0px rgba(23, 46, 157, 0.35);
        border-radius: 61px;
        margin-left: -78px;
        z-index: 99;
    }

    .safe-promise .promise-left .promise-box {
        margin-top: 40px;
        background: #EEEEEE;
        border-radius: 61px;
        padding: 30px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
    }



    .safe-promise .promise-box .promise-title {
        width: 390px;
        height: 71px;
        background: #FFFFFF;
        border-radius: 35px;
        font-size: 30px;
        color: #333333;
        line-height: 71px;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .safe-promise .promise-box .promise-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .safe-promise .promise-box .promise-list .promise-item {
        width: 100%;
        height: 89px;
        font-size: 18px;
        color: #333333;
        line-height: 89px;
        text-align: center;
        border-bottom: 1px solid #CFD6D9;
    }

    .safe-promise .promise-box .promise-list .promise-item:last-child {
        border-bottom: none;
    }

    .safe-promise .promise-right .promise-box {
        padding: 30px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        transition: all 0.5s ease-in-out;
    }

    .safe-promise .promise-box .promise-list .promise-item {
        position: relative;
    }

    .safe-promise .promise-box .promise-list .promise-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 2px;
        background: rgb(47 128 182);
        transition: all 0.5s ease-in-out;
    }

    .safe-promise .promise-box .promise-list .promise-item:hover::after {
        width: 100%;
    }

    .safe-promise .promise-right .promise-list {
        margin-top: 50px;
    }

    .safe-promise .promise-right .promise-box .image {
        width: 50%;
        object-fit: contain;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .safe-promise .promise-right .promise-box .promise-item {
        border: none;
        display: flex;
        height: 57px;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .safe-promise .promise-right .promise-box .promise-item .tag {
        width: 100px;
        height: 40px;
        background: #FC004F;
        border-radius: 20px;
        font-size: 18px;
        color: #FFFFFF;
        line-height: 40px;
        text-align: center;
    }

    .safe-promise .promise-right .promise-box .promise-item .desc {
        width: calc(100% - 114px);
        font-size: 18px;
        color: #FFFFFF;
        line-height: 30px;
        text-align: left;
    }

    /* =========================================够美好========================================== */
    .safe-page .safe-select.custom-made {
        display: flex;
        flex-direction: column;
    }

    .safe-page .safe-select.custom-made .custom-box {
        width: 100%;
        display: flex;
    }

    .safe-page .safe-select.custom-made .select-r-b {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .safe-page .safe-select.custom-made .select-r-b .keywords {
        font-weight: 400;
        font-size: 30px;
        color: #333333;
        margin-bottom: 20px;
    }

    .safe-page .safe-select.custom-made .select-r-b .custom-list {
        display: flex;
        justify-content: space-between;
    }

    .safe-page .safe-select.custom-made .select-r-b .custom-list .custom-item {
        width: 32%;
    }

    .safe-page .safe-select.custom-made .rotate-windmill {
        background-image: url('../images/rotate_windmill.png');
        background-size: contain;
        width: 72px;
        height: 72px;
        float: right;
        margin-top: 30px;
        animation: rotateWindmill 3s linear infinite;
    }

    .safe-page .safe-select.custom-made .rotate-windmill:hover {
        animation-play-state: paused;
    }

    .safe-page .safe-select.custom-made .custom-content {
        width: 100%;
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 49px;
        text-indent: 2em;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .safe-page .safe-select.custom-made .custom-bottom {
        height: 28.646vw;
        background-size: contain;
        background-attachment: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .safe-page .safe-select.custom-made .custom-bottom .desc {
        width: 100%;
        height: 7.292vw;
        background: linear-gradient(to right, #FC004F 0%, transparent 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 400;
        font-size: 30px;
        color: #FFFFFF;
        line-height: 140px;
    }

    .safe-page .safe-rooms {
        margin-left: 13.542vw;
        background: url(../images/room_bg.png) no-repeat center right;
        background-size: contain;
        background-attachment: fixed;
        position: relative;
    }

    .safe-page .safe-rooms .swiper-slide {
        padding-top: 50px;
        display: flex;
        padding-right: 50px;
        height: 600px;

    }

    .safe-page .safe-rooms .swiper-slide .room-left {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 100px;
    }

    .safe-page .safe-rooms .swiper-slide .room-left .cate {
        width: 215px;
        height: 60px;
        background: #FC004F;
        border-radius: 14px;
        font-size: 30px;
        color: #FFFFFF;
        line-height: 60px;
        text-align: center;
    }

    .safe-page .safe-rooms .swiper-slide .room-left .title {
        display: flex;
        font-weight: bold;
        font-size: 30px;
        color: #333333;
        line-height: 49px;
        margin-top: 30px;
        align-items: center;
    }

    .safe-page .safe-rooms .swiper-slide .room-left .sanjiao {
        width: 0;
        height: 0;
        border: 0 solid transparent;
        border-bottom: 10px solid transparent;
        border-top: 10px solid transparent;
        border-left: 20px solid #FC004F;
        margin-right: 10px;
    }

    .safe-page .safe-rooms .swiper-slide .room-left .keywords {
        padding: 10px 25px;
        background: #ffdbe6;
        border-radius: 22px;
        font-weight: 400;
        font-size: 18px;
        color: #FC004F;
        margin-top: 20px;
    }

    .safe-page .safe-rooms .swiper-slide .room-left .content-box {
        margin-top: 30px;
    }

    .safe-page .safe-rooms .swiper-slide .room-left .content-box .special {
        font-size: 24px;
        color: #333333;
        line-height: 49px;
        position: relative;
        padding-left: 40px;
    }

    .safe-page .safe-rooms .swiper-slide .room-left .content-box .special::after {
        content: '';
        position: absolute;
        left: 17px;
        top: 37%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: linear-gradient(to right, #2f396d 20%, transparent 80%);
        border-radius: 50%;
    }

    .safe-page .safe-rooms .swiper-slide .room-left .content-box .content {
        font-weight: 400;
        font-size: 18px;
        color: #333333;
        line-height: 49px;
        margin-top: 10px;
        text-indent: 2em;
    }

    .safe-page .safe-rooms .swiper-button {
        width: 178px;
        height: 40px;
        background: #2F396D;
        border-radius: 8px;
        position: absolute;
        left: 0;
        bottom: 0;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .safe-rooms .swiper-button:hover {
        background: #d5d6dc;
    }

    .safe-page .safe-rooms .swiper-button:hover i {
        color: #2f396d;
    }

    .safe-page .safe-rooms .swiper-button-next::after,
    .safe-page .safe-rooms .swiper-button-prev::after {
        display: none;
    }

    .safe-page .safe-rooms .swiper-button-next i,
    .safe-page .safe-rooms .swiper-button-prev i {
        font-size: 30px;
        color: #fff;
    }

    .safe-page .safe-rooms .swiper-button-next {
        right: 40px;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .safe-rooms .swiper-button-prev {
        left: 40px;
        transition: all 0.3s ease-in-out;
    }

    .safe-page .safe-rooms .swiper-button-prev i {
        transform: rotate(-180deg) rotateX(180deg);
    }

    .safe-page .safe-rooms .swiper-button-next:hover {
        right: 35px;
    }

    .safe-page .safe-rooms .swiper-button-prev:hover {
        left: 35px;
    }

    .safe-page .safe-rooms .swiper-slide .roomImageSwiper {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

    }

    .safe-page .safe-rooms .swiper-slide .roomImageSwiper .swiper-pagination {
        bottom: 40px;
        width: 60px;
        left: 40px;
    }

    .safe-page .safe-rooms .swiper-slide .roomImageSwiper .swiper-pagination .swiper-pagination-bullet {
        width: 11px;
        height: 3px;
        background: #FFFFFF;
        border-radius: 1px;
    }

    .safe-page .safe-rooms .swiper-slide .roomImageSwiper .swiper-pagination .swiper-pagination-bullet-active {
        width: 32px;
        background: #FC004F;
        border: none;
    }

    .safe-page .safe-rooms .swiper-slide .roomImageSwiper .swiper-slide {
        display: block;
        padding: 0;
        width: 100% !important;
        height: 100%;
        border-radius: 50px;
        overflow: hidden;
    }

    .safe-page .safe-space {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        padding: 50px 0;
        margin-top: 60px;
    }

    .safe-page .safe-space .safe-title .subtitle {
        width: 55%;
    }

    .safe-page .safe-space .space-list {
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .safe-page .safe-space .space-list .space-item {
        margin-bottom: 20px;
        width: 32%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .safe-page .safe-space .space-list .space-item .image {
        width: 100%;
        height: 330px;
    }

    .safe-page .safe-space .space-list .space-item .title {
        width: 188px;
        height: 40px;
        background: #FC004F;
        border-radius: 20px;
        font-size: 18px;
        color: #FFFFFF;
        text-align: center;
        line-height: 40px;
        margin-top: -20px;
    }

    .safe-page .safe-space .space-list .space-item .content {
        font-weight: 400;
        font-size: 16px;
        color: #333333;
        line-height: 36px;
        padding: 20px;
    }

    .safe-page .safe-space .space-list .space-item .content * {
        text-align: center;
    }

    .safe-page .safe-designer {
        padding: 50px 0;
    }

    .safe-page .safe-designer .designer_top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .safe-page .safe-designer .designer_top .more {
        width: 149px;
        height: 40px;
        background: #2F396D;
        border-radius: 6px;
        font-size: 16px;
        color: #FFFFFF;
        text-align: center;
        line-height: 40px;
        transition: all 0.3s ease-in-out;
        border: 1px solid #2F396D;
    }

    .safe-page .safe-designer .designer_top .more:hover {
        background: #fff;
        color: #2F396D;
        border: 1px solid #2F396D;
        padding-left: 5px;
    }

    .safe-page .safe-designer .designerSwiper {
        margin-top: 40px;
        padding-bottom: 80px;
    }

    .safe-page .safe-designer .designerSwiper .designer-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .safe-page .safe-designer .designerSwiper .swiper-slide .image {
        display: block;
        width: 100%;
        height: 430px;
        border-radius: 20px;
    }

    .safe-page .safe-designer .designerSwiper .swiper-slide .title {
        margin-top: 20px;
        font-size: 24px;
        color: #333333;
        line-height: 36px;
    }

    .safe-page .safe-designer .designerSwiper .swiper-slide .position {
        width: 167px;
        height: 29px;
        border-radius: 14px;
        border: 1px solid #333333;
        font-size: 16px;
        color: #333333;
        line-height: 26px;
        text-align: center;
        margin-top: 20px;
        transition: all 0.5s ease-in-out;
    }

    .safe-page .safe-designer .designerSwiper .swiper-slide:hover .position {
        background: #000;
        color: #fff;
    }

    .safe-page .safe-designer .designerSwiper .swiper-pagination {
        bottom: 20px;
    }

    .safe-page .safe-designer .designerSwiper .swiper-pagination .swiper-pagination-bullet {
        width: 21px;
        height: 5px;
        background: #858585;
        border-radius: 2px;
    }

    .safe-page .safe-designer .designerSwiper .swiper-pagination .swiper-pagination-bullet-active {
        background: #FC004F;
        width: 41px;
        border: none;
    }

    .product-page .swiper-pagination .swiper-pagination-bullet {
        width: 21px;
        height: 5px;
        background: #858585;
        border-radius: 2px;
    }

    .product-page .swiper-pagination .swiper-pagination-bullet-active {
        background: #FC004F;
        width: 41px;
        border: none;
    }


    .article-page {
        margin-top: 80px;
    }

    .page-page {
        margin-top: 80px;
    }

    .product-page {
        margin-top: 80px;
    }

    .product-page .search-btn {
        margin-left: 10px;
        padding: 5px 10px;
        border-radius: 5px;
        background: #FC004F;
        color: #FFFFFF;
        cursor: pointer;
    }

    .page-banner::before {
        display: none;
    }

    .article-page .card-img-top {
        height: 250px;
    }

    .page-banner {
        background-attachment: fixed;
        background-size: contain;
    }

    .article-page .card-img-top img {
        object-fit: contain;
    }

    .product-page .card-img-top {
        height: 360px;
    }

    /* 容器样式 - 模拟输入框+下拉箭头的整体样式 */
    .product-page .select-input-container {
        position: relative;
        width: 200px;
        /* 可根据需求调整宽度 */
        height: 36px;
        border: 1px solid #dcdfe6;
        box-sizing: border-box;
        cursor: text;
        border-radius: 5px;
    }

    /* 输入框样式 - 去除默认边框，适配容器 */
    .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: 23%;
        display: block;
        height: 360px;
        position: relative;
        overflow: hidden;
        margin-bottom: 20px;
        margin-right: 20px;
    }

    .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: 100%;
    }

    .product-page .product-list .product-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        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 {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 60px;
        background: rgba(61, 78, 108, 0.8);
        color: #fff;
        padding: 20px;
    }

    .product-page .product-list .product-item.teacher .info {
        height: 70px;
    }

    .product-page .product-list .product-item .info .title-type {
        display: flex;
        align-items: flex-end;
        margin-bottom: 20px;
    }

    .product-page .product-list .product-item .info .title-type .title {
        font-size: 24px;
        color: #FFFFFF;
        margin-right: 20px;
        line-height: 24px;

    }

    .product-page .product-list .product-item .info .title-type .type {
        font-size: 16px;
        color: #FFFFFF;
    }

    .product-page .product-list .product-item .info .desc {
        font-size: 16px;
        color: #FFFFFF;
    }

    .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; */
    }
}