/* 自己写的动画样式 */

.news-imageDiv {
    display: flex;
}

.news-imageTitleDiv {
    margin-left: 20px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-image {
    width: 40%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.news-image img {
    cursor: pointer;
    transition: all 2s;
}

.news-image img:hover {
    transform: scale(1.1);
}

.news-imageTitle {
    font-size: 18px;
    cursor: pointer;
}

.news-imageTitle:hover {
    color: #2982E5;
}


/* 360度旋转 */

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* 闪烁动画 */

@keyframes mydeamon {
    0% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}


/* 呼吸扩散 */

@keyframes breathe {
    0% {
        transform: scale(0.4);
        box-shadow: 0 0 0 0 rgb(73 143 204 / 30%);
    }
    60% {
        transform: scale(0.8);
        box-shadow: 0 0 0 30px rgba(204, 73, 152, 0%);
    }
    100% {
        transform: scale(0.60);
        box-shadow: 0 0 0 0 rgba(204, 73, 152, 0%);
    }
}


/*** 

====================================================================
宣传视频
====================================================================

***/

.banner-section {
    position: relative;
}

.banner-section .background-text {
    position: absolute;
    right: -280px;
    bottom: 190px;
    z-index: 99;
    text-transform: uppercase;
    font-size: 240px;
    font-weight: 700;
    letter-spacing: -5px;
    line-height: 200px;
    color: rgb(255 255 255 / 0.1);
    transform: rotate(-30deg);
}

.banner-section .background-text .text-2 {
    position: absolute;
    top: -5px;
    left: 15px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgb(255 255 255 / 0.2);
    color: transparent;
}

.banner-section .content-outer {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    display: table;
    vertical-align: middle;
    /* padding-top: 90px; */
}

.banner-section .content-box {
    position: relative;
    padding: 0 15px 10px;
    min-height: 800px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.banner-section .content-box .inner {
    position: relative;
    opacity: 0;
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
    padding: 0 15px;
}

.banner-section .content-box .inner {
    opacity: 1;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.banner-section .content-box h1 {
    position: relative;
    font-size: 60px;
    font-weight: 400;
    line-height: 74px;
    color: #ffffff;
    text-transform: capitalize;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    margin-bottom: 30px;
    letter-spacing: 0;
}

.banner-section .content-box h1 {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.banner-section .content-box h4 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}

.banner-section h4 {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.banner-section .content-box .text {
    position: relative;
    font-size: 24px;
    line-height: 34px;
    color: #ffffff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    margin-bottom: 40px;
}

.banner-section .text {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 1600ms;
    -o-transition-delay: 1600ms;
    transition-delay: 1600ms;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.banner-section .link-box {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    margin: 0 -10px;
}

.banner-section .link-box {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.banner-section .link-box a {
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    transition: .5s ease;
    margin: 0 10px 10px;
    border-radius: 5px;
}

.banner-section .banner-slider-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.banner-section .banner-slider-button-prev,
.banner-section .banner-slider-button-next {
    opacity: 0;
}

.banner-section:hover .banner-slider-button-prev,
.banner-section:hover .banner-slider-button-next {
    opacity: 1;
}

.banner-section .banner-slider-button-next {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 65px;
    text-align: center;
    color: #181614;
    cursor: pointer;
    z-index: 9;
    margin-right: 50px;
    font-size: 25px;
    background-color: rgb(255 255 255 / 0.8);
    transition: .5s;
    border-radius: 50%;
}

.banner-section .banner-slider-button-next:hover {
    color: #fff;
}

.banner-section .banner-slider-button-prev {
    position: relative;
    width: 60px;
    height: 60px;
    line-height: 62px;
    text-align: center;
    color: #181614;
    cursor: pointer;
    z-index: 9;
    margin-left: 50px;
    font-size: 25px;
    background-color: rgb(255 255 255 / 0.80);
    transition: .5s;
    transform: rotate(180deg);
    border-radius: 50%;
}

.banner-section .banner-slider-button-prev:hover {
    color: #fff;
}

.banner-section .our-facts {
    position: absolute;
    right: 80px;
    bottom: -5px;
    width: 100%;
    max-width: 400px;
    background-color: rgba(17, 17, 17, 0.81);
    padding: 55px 55px 30px;
    border-bottom: 5px solid #dca809;
    z-index: 99;
}

.banner-section .our-facts h4 {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
}

.banner-section .our-facts .inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 4px;
    margin-bottom: 27px;
    border-bottom: 1px solid #666;
}

.banner-section .our-facts .column:last-child .inner {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.banner-section .our-facts .icon {
    position: relative;
    font-size: 34px;
    color: #fff;
    margin-right: 20px;
    margin-bottom: 20px;
    line-height: 35px;
}

.banner-section .our-facts .count-box {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    margin-right: 20px;
    margin-bottom: 20px;
}

.banner-section .our-facts .text {
    position: relative;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 22px;
}


/* Services Section */

.services-section {
    position: relative;
    padding: 120px 0 65px;
}

.service-block .inner-box {
    position: relative;
    margin-bottom: 55px;
    margin-left: 30px;
    padding: 40px 20px;
    padding-left: 105px;
    box-shadow: 0px 10px 21.25px 3.75px rgba(0, 0, 0, 0.06);
}

.service-block .inner-box:before {
    position: absolute;
    content: '';
    left: 0;
    top: 1px;
    right: 0;
    bottom: 0;
}

.service-block .icon {
    position: absolute;
    width: 98px;
    height: 100%;
    top: 0;
    left: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    transition: .7s;
}

.service-block .icon:before {
    position: absolute;
    content: '';
    width: 98px;
    height: 100%;
    max-height: 165px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: .7s;
    background-color: #f4f4f4;
}

.service-block .inner-box:hover .icon:before {
    max-height: 100%;
}

.service-block .inner-box:hover .icon {
    color: #fff;
}

.service-block .icon i {
    position: relative;
}

.service-block h4 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 17px;
}

.service-block .text {
    position: relative;
}

.service-block .link-btn a {
    position: relative;
    font-size: 20px;
    color: #000;
}

.service-block .link-btn a i:before {
    padding-right: 6px;
    border-right: 1px solid #222;
    transition: .5s;
    color: #000;
    top: 3px;
    position: relative;
}

.service-block .link-btn a span {
    font-size: 13px;
    font-weight: 700;
    margin-left: 15px;
    opacity: 0;
    transition: .5s;
    transform: translateX(20px);
    display: inline-block;
    vertical-align: middle;
}

.service-block .inner-box:hover .link-btn a span {
    transform: translateX(0);
    opacity: 1;
}


/* 分标题样式 */

.sec-title {
    position: relative;
    margin-bottom: 50px;
}

.sec-title .sub-title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #2982E5;
}

.sec-title.light .sub-title {
    color: #fff;
}

.sec-title h2 {
    position: relative;
    font-size: 40px !important;
    font-weight: 600;
    line-height: 56px;
    padding-bottom: 45px;
}

.sec-title.light h2 {
    color: #fff;
}

.sec-title.text-center .big-title {
    left: 0% !important;
}

.sec-title.text-center h2:before {
    left: 50%;
    transform: translateX(-50%);
}

.sec-title .text {
    margin-top: 16px;
    margin-bottom: 0px;
}

.sec-title.light .text {
    color: #fff;
}

.sec-title .big-title {
    position: absolute;
    top: -130px;
    left: 0;
    font-size: 180px;
    font-weight: 700;
    color: #f6f6f6;
}


/*宣传视频按钮*/


/*了解更多按钮*/

.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    padding: 16px 20px;
    /* padding-right: 66px; */
    font-weight: 700;
    overflow: hidden;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-style-one:hover {
    color: #fff;
}

.btn-style-one:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    content: "";
    background-color: #2982E5;
    transition: .5s;
    opacity: .1;
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
}

.btn-style-one:hover:before {
    width: 100%;
    border-radius: 0;
}

.btn-style-one span {
    position: relative;
}


/*VR视频按钮*/

.btn-style-one.style-two {
    background-color: #fff;
    color: #222;
}

.btn-style-one.style-two:hover {
    color: #fff;
}

.btn-style-one.style-two span:before {
    background-color: #222;
}

.btn-style-one.style-two:hover span:before {
    background-color: #fff;
}

.btn-style-one.style-two:after {
    color: #222;
}

.btn-style-one.style-two:hover:after {
    color: #fff;
}

.btn-style-one.style-two:before {
    opacity: 1;
}


/* 服务平台*/

.no-gutters {
    height: 230px;
}

.projects-section {
    position: relative;
}

.projects-section .auto-container {
    padding: 0;
    max-width: 100%;
}

.project-block {
    position: relative;
    height: 100%;
}

.project-block .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.project-block .image {
    position: relative;
}

.project-block .image img {
    width: 100%;
    transition: .7s;
}

.project-block .content {
    position: absolute;
    left: 97px;
    bottom: 70px;
    transition: .5s;
}

.project-block .inner-box:hover .content {
    opacity: 0;
    transform: scaleY(0);
}

.project-block h4 {
    position: relative;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.project-block h4:before {
    position: absolute;
    content: '';
    height: 1px;
    width: 25px;
    bottom: 8px;
    left: -37px;
    background-color: #fff;
}

.project-block h3 {
    position: relative;
    font-size: 22px;
    color: #fff;
    margin-bottom: 0px;
    font-weight: 600;
}

.project-block .text {
    font-size: 15px;
    position: relative;
    color: #fff;
    margin: 15px 0 20px;
}

.project-block .link-btn a {
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 60px;
    text-align: center;
    transition: .5s;
    background: #fff;
    color: #000;
    font-size: 20px;
}

.project-block .link-btn a i:before {
    padding-right: 6px;
    border-right: 1px solid #222;
    transition: .5s;
    color: #000;
}

.project-block .link-btn a:hover i:before {
    border-color: #fff;
    color: #fff;
}

.project-block .link-btn a:hover {
    color: #fff;
    background: #2982E5;
}

.project-block .overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: .7s;
    padding: 15px;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: rgb(0 0 0 / 52%);
}

.project-block .inner-box:hover .overlay {
    opacity: 1;
}

.project-block .overlay .content-two {
    position: relative;
    transition: .9s;
    transform: translateY(20px);
}

.project-block .inner-box:hover .overlay .content-two {
    transform: translateY(0);
}


/* 覆盖层样式 */

.overlay {
    position: absolute;
    /* 绝对定位 */
    top: 0;
    /* 与父容器的顶部对齐 */
    left: 0;
    /* 与父容器的左侧对齐 */
    width: 100%;
    /* 宽度填满整个父容器 */
    height: 100%;
    /* 高度填满整个父容器 */
    background-color: rgba(0, 0, 0, 0.5);
    /* 半透明的黑色背景 */
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide2 {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.swiper-slide2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.counter-shape1 {
    background-color: rgba(17, 33, 62, 0.07);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    top: -60px;
    -webkit-clip-path: polygon(0 0, 100% 120px, 100% 100%, 0 calc(100% - 120px));
    clip-path: polygon(0 0, 100% 120px, 100% 100%, 0 calc(100% - 120px));
}

.auto-container {
    position: static;
    max-width: 1200px;
    margin: 0 auto;
}

.funfacts-section .text {
    /* position: relative; */
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 30px;
}

.funfacts-section .count-box {
    position: relative;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.funfacts-section .icon {
    margin-right: 30px;
}

.funfacts-section .text:before {
    position: relative;
}

.about-section .content-block .bottom-content {
    display: block !important;
    text-align: center !important;
    margin-left: -30px
}

.about-section {
    margin-bottom: 30px;
}

.project-block .overlay {
    opacity: 1;
}

.project-block .content {
    opacity: 0;
}

.project-block .link-btn a {
    display: inline-block;
    width: 50px;
    height: 45px;
    line-height: 50px;
    text-align: center;
    transition: .5s;
    background: #fff;
    color: #000;
    font-size: 20px;
}

.about-section .content-block h3 {
    line-height: 50px;
    font-size: 30px;
}

.about-section .content-block .list {
    font-size: 18px;
}

.project-block h4 {
    position: relative;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.project-block .link-btn a {
    display: inline-block;
    width: 45px;
    height: 40px;
    line-height: 45px;
    font-size: 20px;
}

ul,
li {
    list-style: none;
    padding-left: 0px;
}

section {
    display: block;
    unicode-bidi: isolate;
}

.tpm-solution2 {
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

.tpm-solution2__cards {
    width: 100%;
    white-space: nowrap;
    font-size: 0;
}

@media screen and (min-width: 1440px) {
    .tpm-solution2__card.is-active {
        width: 556px;
    }
}

@media screen and (min-width: 1440px) {
    .tpm-solution2__card {
        width: 196px;
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 {
        height: 420px;
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.is-active {
        font-size: 0;
        width: 460px;
        background: linear-gradient(180deg, #f3f5f8, #fff);
        box-shadow: 8px 8px 20px rgba(55, 99, 170, .1), -8px -8px 20px #fff;
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card {
        height: 410px;
    }
}

.tpm-solution2__card {
    display: inline-block;
    transition: width .3s ease-in-out, box-shadow .3s ease-in-out;
    margin-right: 20px;
    width: 160px;
    border: 2px solid #fff;
    box-sizing: border-box;
    color: #fff;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    box-shadow: 8px 8px 20px rgba(55, 99, 170, .1);
    padding: 22px 18px;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.is-active .tpm-solution2__card-tit {
        color: #181818;
        transition: color .3s ease-in-out;
    }
}

.tpm-solution2__card-tit {
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    position: relative;
    cursor: pointer;
    color: #fff;
    z-index: 2;
    display: block;
}

.tpm-solution2__card a {
    text-decoration: none;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2.is-active .tpm-solution2__card-cover {
        opacity: .5 !important;
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 .tpm-solution2__card-cover {
        background-position: 100% 0;
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.is-active .tpm-solution2__card-cover {
        opacity: 0;
    }
}

.tpm-solution2__card-cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 62px 20px 22px;
    background-position: 0 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
    transition: opacity .3s ease-in-out;
    border-radius: 5px;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.is-active .tpm-solution2__card-tit {
        color: #181818;
        transition: color .3s ease-in-out;
    }
}

.tpm-solution2__card-btn.mobile,
.tpm-solution2__card-tit.mobile {
    display: none;
}

.tpm-solution2__card-link {
    display: none;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2.is-active .tpm-solution2__card-desc {
        display: block;
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        pointer-events: none;
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 .tpm-solution2__card-desc {
        position: absolute;
        right: 18px;
        top: 62px;
        transition: opacity .3s ease-in-out, -webkit-transform .3s ease-in-out;
        transition: opacity .3s ease-in-out, transform .3s ease-in-out;
        transition: opacity .3s ease-in-out, transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        max-width: calc(100% - 36px);
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.is-active .tpm-solution2__card-desc {
        display: none;
    }
}

.tpm-solution2__card-desc {
    font-size: 15px;
    line-height: 22px;
    white-space: pre-wrap;
    max-width: 152px;
    color: #fff;
}

.tpm-solution2__card-btn.mobile,
.tpm-solution2__card-tit.mobile {
    display: none;
}

@media screen and (min-width: 769px) {
    .tpm-btn--white {
        transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out, color .3s ease-in-out, border-color .3s ease-in-out;
    }
}

.tpm-btn--white {
    background-color: #fff;
    color: #43474d;
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1), inset 0 4px 20px 0 hsla(0, 0%, 100%, .5);
}

@media screen and (min-width: 769px) {
    .tpm-btn {
        transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
    }
}

.tpm-btn {
    display: inline-block;
    box-sizing: border-box;
    min-width: 104px;
    height: 36px;
    padding: 0 24px;
    color: #fff;
    font-size: 14px;
    line-height: 34px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background-color: #0052d9;
    border: 1px solid transparent;
    outline: 0 none;
    cursor: pointer;
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2.is-active .tpm-solution2__card-cnt {
        pointer-events: auto;
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 .tpm-solution2__card-cnt {
        transition: all .3s ease-in-out;
        position: absolute;
        top: 50px;
        right: 18px;
        pointer-events: none;
        min-width: calc(100% - 36px);
    }
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.is-active .tpm-solution2__card-cnt {
        opacity: 1;
    }
}

.tpm-solution2__card-cnt {
    opacity: 0;
    transition: all .3s ease-in-out;
}

.tpm-list {
    -webkit-font-smoothing: antialiased;
}

.tpm-solution2__card-features {
    margin-top: 12px;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 .tpm-solution2__card-features .tpm-list__item {
        padding-left: 24px;
    }
}

.tpm-list__item {
    padding-left: 28px;
    position: relative;
}

.tpm-list__item-cnt {
    overflow: hidden;
}

.tpm-solution2__card-features .tpm-list__item-text {
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    width: 100%;
}

.tpm-list__item-text {
    font-size: 15px;
    color: #495770;
    line-height: 24px;
}

.tpm-solution2__card .tpm-group {
    margin-top: 20px;
}

.tpm-group {
    -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 .tpm-group__tit {
        font-size: 18px;
        line-height: 26px;
    }
}

.tpm-solution2__card .tpm-group__tit {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
}

.tpm-group__tit {
    font-size: 18px;
    color: #16181a;
    letter-spacing: 0;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

.tpm-group__bd {
    font-size: 14px;
    color: #495770;
    line-height: 22px;
}

.tpm-logo-card__wrap {
    padding-bottom: 15px;
    margin-bottom: -40px;
}

.tpm-solution2__card-case .tpm-logo-card__list {
    padding: 0;
}

.tpm-logo-card__list {
    padding: 0 6px;
}

.tpm-solution2__card-case .tpm-logo-card__list>li:first-child {
    padding-left: 0;
}

.tpm-solution2__card-case .tpm-logo-card__list>li {
    padding: 0 8px 12px;
    position: relative;
}

.tpm-logo-card__list>li {
    display: inline-block;
    vertical-align: top;
    padding: 0 6px 12px;
}

.tpm-solution2__card-case .tpm-logo-card {
    width: 120px;
    height: 120px;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: none;
    background: #fff;
    border: 1px solid #e5e8ed;
    border-radius: 4px;
}

@media screen and (min-width: 769px) {
    .tpm-logo-card {
        transition: box-shadow .3s ease-in-out;
    }
}

.tpm-logo-card {
    box-sizing: border-box;
    width: 200px;
    background: #fff;
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1), -8px -8px 20px 0 #fff, inset 0 4px 20px 0 hsla(0, 0%, 100%, .5);
    border-radius: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    padding: 20px;
}

.tpm-logo-card__img-wrap {
    width: 100%;
    max-width: 160px;
}

.tpm-logo-card__img {
    padding-top: 25%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0 !important;
    line-height: 0 !important;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 .tpm-solution2__card-btns {
        margin-top: 20px;
    }
}

.tpm-solution2__card-btns {
    margin-top: 20px;
}

@media screen and (min-width: 1440px) {
    .tpm-solution2__card-btns .tpm-btn {
        width: 248px;
    }
}

.tpm-solution2__card-btns .tpm-btn {
    width: 200px;
    position: relative;
}

@media screen and (min-width: 769px) {
    .tpm-btn {
        transition: background-color .3s ease-in-out, box-shadow .3s ease-in-out;
    }
}

.tpm-btn {
    display: inline-block;
    box-sizing: border-box;
    min-width: 104px;
    height: 36px;
    padding: 0 24px;
    color: #fff;
    font-size: 14px;
    line-height: 34px;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    background-color: #0052d9;
    border: 1px solid transparent;
    outline: 0 none;
    cursor: pointer;
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
}

.tpm-solution2__card-btns .tpm-btn__text {
    -webkit-font-smoothing: auto;
}

.tpm-btn__text {
    color: inherit;
}

.tpm-solution2__card .tpm-group+.tpm-group {
    margin-top: 20px;
}

.tpm-group+.tpm-group {
    margin-top: 28px;
}

.tpm-solution2__card .tpm-group {
    margin-top: 20px;
}

.tpm-group {
    -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 .tpm-group__tit {
        font-size: 18px;
        line-height: 26px;
    }
}

.tpm-solution2__card .tpm-group__tit {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
}

.tpm-group__tit {
    font-size: 18px;
    color: #16181a;
    letter-spacing: 0;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

.tpm-group__bd {
    font-size: 14px;
    color: #495770;
    line-height: 22px;
}

.tpm-solution2__card-prod .tpm-list {
    display: -ms-flexbox;
    /* display: flex; */
}

.tpm-list {
    -webkit-font-smoothing: antialiased;
}

.tpm-solution2__card-prod .tpm-list__item {
    position: relative;
}

.tpm-list__item--icon {
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}

.tpm-solution2__card-prod .tpm-list__item-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.tpm-solution2__card-prod .tpm-list__item--icon+.tpm-list__item--icon {
    margin-top: 0;
    /* margin-left: 16px; */
}

@media screen and (min-width: 769px) {
    .tpm-list__item-link {
        transition: color .3s ease-in-out;
    }
}

.tpm-list__item-link {
    display: block;
    color: #0052d9;
    /* cursor: pointer; */
}

.tpm-solution2__card-prod .tpm-list__item-icon {
    width: 20px;
    margin-right: 8px;
}

.prodectIcon {
    width: 30px !important;
}

.tpm-list__item-icon {
    width: 24px;
    margin-right: 16px;
}

.tpm-solution2__card-prod .tpm-list__item-cnt {
    display: inline;
    width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tpm-list__item-cnt {
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__card.v2 .tpm-solution2__card-prod .tpm-list__item-link .tpm-list__item-text {
        font-weight: 500;
        opacity: 1;
    }
}

.tpm-solution2__card-prod .tpm-list__item-link .tpm-list__item-text {
    font-size: 16px;
    color: #181818;
    opacity: .8;
}

@media screen and (min-width: 769px) {
    .tpm-list__item-link .tpm-list__item-text {
        transition: color .3s ease-in-out;
    }
}

.tpm-list__item-link .tpm-list__item-text {
    color: #0052d9;
}

.tpm-solution2__navs {
    font-size: 0;
    margin: 20px -10px -20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tpm-solution2__navs>li {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    box-sizing: border-box;
    padding: 0 10px;
    margin-bottom: 20px;
}

.tpm-solution2__nav {
    display: block;
    height: 100%;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__nav-inner {
        transition: background .3s ease-in-out, box-shadow .3s ease-in-out;
    }
}

.tpm-solution2__nav-inner {
    position: relative;
    box-sizing: border-box;
    height: 100%;
    padding: 24px 20px;
    background-image: linear-gradient(180deg, #f3f5f8, #fff);
    border: 2px solid #fff;
    box-shadow: 8px 8px 20px rgba(55, 99, 170, .1), -8px -8px 20px #fff;
    border-radius: 4px;
}

.tpm-solution2__nav-icon {
    position: absolute;
    width: 30px !important;
    height: 30px !important;
    bottom: 24px;
    right: 20px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
}

.tpm-solution2__nav-cnt {
    max-width: calc(100% - 56px);
    overflow: hidden;
}

@media screen and (min-width: 769px) {
    .tpm-solution2__nav-title {
        transition: color .3s ease-in-out;
    }
}

.tpm-solution2__nav-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
    margin-top: 0;
}

.tpm-solution2__nav-desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #4b5b76;
    opacity: .8;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 44px;
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.tpm-solution2__nav:hover .tpm-solution2__nav-inner {
    background: #f3f5f8;
    box-shadow: inset 8px 8px 20px rgba(55, 99, 170, .1), inset -8px -8px 20px #fff;
}


/* 移动端适配 */

@media screen and (max-width: 768px) {
    .tpm-section {
        position: relative;
        padding: 0;
    }
}

@media screen and (max-width: 600px) {
    .tpm-solution2__card {
        width: calc(50% - 12px);
    }
}

@media screen and (max-width: 768px) {
    .tpm-solution2__card {
        margin: 0 6px 12px;
        width: calc(33.33333% - 12px);
        padding: 16px 12px;
        height: 132px;
    }
}

@media screen and (max-width: 768px) {
    .tpm-solution2__card-tit.pc {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .tpm-solution2__card-cover {
        background-size: auto 100%;
        background-position: 100% 0;
        padding: 14px 12px;
    }
}

@media screen and (max-width: 768px) {
    .tpm-solution2__card-tit.mobile {
        display: block;
        z-index: unset;
    }
}

@media screen and (max-width: 768px) {
    .tpm-solution2__card-link {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1;
    }
}

@media screen and (max-width: 768px) {
    .tpm-solution2__card-btn.mobile {
        display: block;
        margin-top: 8px;
        position: relative;
        z-index: 1;
    }
}

@media screen and (max-width: 600px) {
    .tpm-btn {
        min-width: 88px;
        height: 36px;
        padding: 0 20px;
        font-size: 14px;
        line-height: 34px;
    }
}

@media screen and (max-width: 768px) {
    .tpm-solution2__card-btn.mobile .tpm-btn__text {
        -webkit-font-smoothing: auto;
    }
}

@media screen and (max-width: 768px) {
    .tpm-solution2__card-cnt {
        display: none;
    }
}


/* 项目的css */

.tpm1-section {
    padding: 60px 20px;
}

.tpm1-section__inner {
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 1180px;
}

.tp1-grid__row.tp1-grid--gutter-5n {
    margin-right: -10px;
    margin-bottom: 0px;
    margin-left: -10px;
}

.tp1-grid__row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    box-sizing: border-box;
    margin-right: 0;
    margin-left: 0;
}

.tp1-grid__row.tp1-grid--gutter-5n .tp1-grid__col {
    margin-bottom: 20px;
    padding-right: 10px;
    padding-left: 10px;
}

.tp1-grid__col--12 {
    display: block;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
    -webkit-box-flex: 0;
}

.tp1-grid__col {
    display: block;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    box-sizing: border-box;
    padding-right: 0;
    padding-left: 0;
    font-size: 14px;
    -webkit-box-flex: 1;
}

@media screen and (min-width: 769px) {
    .solution-card__item {
        transition: box-shadow .3s ease-in-out;
    }
}

.solution-card__item {
    color: #fff;
    height: 168px;
    position: relative;
    padding: 58px 22px 22px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 2px solid #fff;
    background-image: linear-gradient(0deg, #fff, #f3f5f8);
    box-shadow: 4px 4px 8px 0 rgba(55, 99, 170, .2), -4px -4px 8px 0 #fff;
    z-index: 0;
    overflow: hidden;
    display: block;
}

.solution-card__item-bg {
    position: absolute;
    background-size: auto 100%;
    background-position: 100%;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    padding: 20px;
}

.solution-card__item-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 0;
}

.solution-card__item-desc {
    font-size: 14px;
    line-height: 22px;
    max-width: 324px;
    display: -webkit-box;
    box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


/*--------------------------------------------------------------
# 四个入口
--------------------------------------------------------------*/


/*         
.services-one {
position: relative;
display: block;
background-color: #f1ece9;
padding: 120px 0 90px;
z-index: 1;
} */

.services-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    mix-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.services-one__top {
    position: relative;
    display: block;
    margin-bottom: 47px;
}

.services-one__left {
    position: relative;
    display: block;
}

.services-one__left .section-title {
    margin-bottom: 0;
}

.services-one__right {
    position: relative;
    display: block;
    margin-left: 100px;
    margin-top: 24px;
}

.services-one__bottom .row {
    --bs-gutter-x: 23px;
}

.services-one__single {
    position: relative;
    display: block;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover {
    transform: translateY(-10px);
}

.services-one__content {
    position: relative;
    display: block;
    padding: 32px 40px 19px;
    border-radius: var(--delogis-bdr-radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.services-one__content:before {
    position: absolute;
    top: 0;
    bottom: -2px;
    left: 0;
    right: 0;
    content: "";
    border: 2px solid var(--delogis-base);
    border-radius: var(--delogis-bdr-radius);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: all 500ms ease;
    transform: translate3d(0px, 100%, 0px);
    z-index: -1;
}

.services-one__single:hover .services-one__content:before {
    transform: translate3d(0px, 0, 0px);
}

.services-one__icon {
    position: relative;
    display: inline-block;
    z-index: 1;
}


/*         
.services-one__icon::before {
content: "";
position: absolute;
top: -2px;
left: -40px;
right: -36px;
bottom: 2px;
border-radius: var(--delogis-bdr-radius);
background: rgb(241, 236, 233);
background: linear-gradient(90deg, rgba(241, 236, 233, 0) 0%, rgba(241, 236, 233, 1) 80%);
z-index: -1;
} */

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 64px;
    color: var(--delogis-base);
    -webkit-transition: all 500ms linear;
    transition: all 500ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.services-one__single:hover .services-one__icon span {
    transform: scale(.9);
}

.services-one__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 11px;
    /* margin-top: 14px; */
}

.services-one__title a {
    color: var(--delogis-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__title a:hover {
    color: var(--delogis-base);
}

.services-one__text {
    font-weight: 300;
}

.services-one__btn-box {
    position: relative;
    display: block;
}

.services-one__btn {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    padding: 10px 40px 13px;
    border-top: 1px solid var(--delogis-bdr-color);
    border-bottom-left-radius: var(--delogis-bdr-radius);
    border-bottom-right-radius: var(--delogis-bdr-radius);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.services-one__single:hover .services-one__btn {
    border-top: 1px solid transparent;
    background-color: var(--delogis-base);
    color: #fff;
}

.services-one__btn span {
    position: relative;
    font-size: 15px;
    color: #736b6b;
    margin-right: 10px;
    top: 2px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__btn span {
    color: #fff;
}

.services-one__content {
    padding: 15px;
}

.services-one__text {
    font-weight: 400;
    font-family: none !important;
    font-size: 16px;
    line-height: 20px;
    height: 60px;
    margin-bottom: 0 !important;
}

.services-one__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 11px;
    /* margin-top: 14px; */
}

.services-one__btn {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    padding: 15px;
}

.services-one__single:hover .services-one__btn {
    background-color: #2982E5;
    font-weight: 600;
}

.services-one__title a:hover {
    color: #2982E5;
}

.services-one__content:before {
    border: 3px solid #2982E5;
}

.services-one__btn span {
    position: relative;
    font-size: 15px;
    color: #736b6b;
    margin-right: 10px;
    top: 2px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}


/* .icon-right-arrow:before {
    content: "\e907";
} */


/* ======= 产品类别 ======= */

.blog-home .item {
    padding: 60px 30px 45px 30px;
    border: 1px solid #f1f1f1;
    position: relative;
    background-size: cover;
    background-position: 50% 0% !important;
    margin-bottom: 30px;
    width: 32% !important;
}

.blog-home .item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.blog-home .item .content {
    position: relative;
    z-index: 7;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.blog-home .item h5 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.blog-home .item .info {
    margin-bottom: 15px;
}

.blog-home .item .info span {
    color: #3b3b3b;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-right: 15px;
}

.blog-home .item .info span:last-child {
    margin: 0;
}

.blog-home .item p {
    font-size: 15px;
    margin-bottom: 0px;
    margin-top: 10px;
    color: #fff;
}

.blog-home .item .arrow {
    position: relative;
    display: block;
    top: 0px;
    transform: translateY(-0%);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: visible;
    opacity: 1;
    margin-bottom: 0px;
    margin-top: 50px;
}

.blog-home .item .arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 30px;
    /* border: 1px solid #fff; */
    /* background: #fff; */
    border-radius: 8px;
    font-size: 12px;
    color: #1b1b1b;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: #fff;
}

.blog-home .item {
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #0F0D1D;
    box-shadow: #0f0d1d 0px 6px 12px -2px, #556ee6 2px 5px 10px -3px;
}


/* .blog-home .item .content {
text-align: center;
} */

.blog-home .item:before {
    border-radius: 6px;
}


/* .blog-home .item:after {
border-radius: 6px;
} */

.section-padding {
    background: #0F0D1D !important;
}

.mayor-message-section .content-block {
    padding: 200px 0 70px;
}

.sec-title h2 {
    padding-bottom: 0px;
}

.swiper-slide3 {
    background: #fff;
}

.swiper-slide3 img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.project-block .link-btn a i:before {
    padding-right: 6px;
    border-right: 1px solid #222;
    transition: .5s;
    color: #000;
}

.icon-arrow:before {
    content: "\e902";
}

#news_img1 {
    position: absolute;
    left: -50px;
    top: -20px;
    width: 200px;
}

#news_img2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 230px;
}

.news-data {
    background: #2982E5;
    text-align: center;
    color: #fff;
    font-size: 15px;
}

.news-data2 {
    color: #707070;
    font-size: 14px;
}

#programmeImg {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 120px;
}

.propaganda {
    height: 125px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.propagandaImg1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 230px;
    animation: rotate 12s linear infinite;
}

.propagandaImg2 {
    position: absolute;
    top: 200px;
    left: 140px;
    width: 100px;
    border-radius: 50%;
    animation: breathe 3s infinite;
}

.propagandaImg3 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 120px;
    animation: rotate 3s infinite;
}

.propagandaImg4 {
    position: absolute;
    bottom: 100px;
    right: 120px;
    width: 60px;
    z-index: 1;
    animation: rotate 12s linear infinite;
}

.programmeBG {
    background: url("https://bkrc-admin-user.oss-cn-beijing.aliyuncs.com/big-files/%E8%B5%B5%E4%B8%80%E6%96%B0-4779/newHomepage/111.png") no-repeat;
    background-size: 100%;
    margin-top: -150px;
    padding-bottom: 0;
}

.programmeTitle {
    margin-top: 120px;
}

.propagandaSpan {
    color: #2982E5;
    font-size: 35px;
    font-weight: 600;
}

.propagandaTitle {
    font-size: 20px;
}

.NewButton {
    float: right;
    padding: 5px 22px;
    font-size: 14px;
    z-index: 100;
}

.sub-title-dec {
    font-size: 40px;
}


/* 移动端适配 */

@media screen and (max-width: 500px) {
    /* 页脚 */
    .accordion .card {
        background: #0f0d1d;
    }
    .auto-container {
        padding: 0 10px;
    }
    /* 宣传片 */
    .banner-section .content-box {
        min-height: 100px;
    }
    .banner-section .content-box .inner {
        padding-top: 20px;
    }
    .banner-section .content-box h1 {
        position: relative;
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .banner-section .content-box .text {
        font-size: 14px;
        line-height: 20px;
        transform: translateX(0px);
        margin-bottom: 10px;
    }
    .btn-style-one {
        font-size: 14px;
        line-height: 20px;
        padding: 10px;
        font-weight: 500;
    }
    .propaganda {
        display: none;
    }
    .propagandaImg1 {
        width: 130px;
    }
    .propagandaImg2 {
        display: none;
    }
    .propagandaImg3 {
        width: 60px;
        animation: rotate 12s linear infinite;
    }
    .propagandaImg4 {
        display: none;
    }
    .services-section {
        padding: 0;
        padding-bottom: 0px;
    }
    .sec-title.text-center .big-title {
        left: 10% !important;
    }
    .sec-title .big-title {
        position: absolute;
        top: 0px;
        font-size: 50px;
        font-weight: 700;
        color: #f6f6f6;
    }
    .sec-title .sub-title {
        position: relative;
        font-size: 14px;
        font-weight: 700;
        top: -50px;
    }
    .sub-title-dec {
        font-size: 20px;
    }
    .sec-title h2 {
        position: relative;
        font-size: 20px !important;
        font-weight: 600;
        line-height: 30px;
        top: -60px;
        padding-bottom: 0px;
    }
    #news_img1 {
        position: absolute;
        left: -30px;
        top: -20px;
        width: 100px;
    }
    #news_img2 {
        width: 130px;
    }
    .sec-title {
        margin-bottom: 0px;
        padding-top: 80px;
    }
    .news_ul {
        margin-top: -50px;
    }
    .news-imageTitle {
        font-size: 15px;
        cursor: pointer;
        line-height: 19px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .news-data {
        font-size: 12px;
    }
    .news-data2 {
        font-size: 12px;
    }
    .swiper-slide2 {
        height: 100%;
    }
    #programmeImg {
        top: 20px;
        right: 10px;
        width: 40px;
    }
    .NewButton {
        float: right;
        padding: 2px 10px;
        font-size: 12px;
        z-index: 100;
        margin-top: -30px;
    }
    /* 解决方案 */
    .tpm-section__inner {
        padding: 10px;
        margin-top: -60px;
    }
    .tpm-solution2__card-tit {
        font-size: 15px;
        line-height: 20px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .tpm-solution2__card-desc {
        font-size: 12px;
        margin-top: 2px;
        max-width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 0;
    }
    .tpm-solution2__card-btn.mobile .tpm-btn {
        width: 100%;
        font-size: 12px;
        line-height: 20px;
        color: #0052d9;
        background: #fff;
    }
    .tpm-btn {
        min-width: 20%;
        height: 30px;
        padding: 0 10px;
    }
    .tpm-solution2__card {
        margin: 0px;
        width: 100%;
        height: 130px;
    }
    .tpm-solution2__cards {
        box-sizing: border-box;
        white-space: pre-wrap;
        display: grid;
        grid: 2;
        gap: 10px 10px;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        margin: 0;
    }
    .tpm-solution2__nav-inner {
        padding: 10px;
    }
    .tpm-solution2__nav-title {
        font-size: 15px;
        line-height: 20px;
    }
    .tpm-solution2__nav-desc {
        display: none;
    }
    .tpm-solution2__nav-cnt {
        max-width: 100%;
    }
    .tpm-solution2__nav-icon {
        display: none;
    }
    .programmeBG {
        margin-top: 0;
    }
    .programmeTitle {
        margin-top: 0px;
    }
    /* 服务平台 */
    .no-gutters {
        height: 120px;
    }
    .swiper-slide3 img {
        height: 120px;
    }
    .project-block h4 {
        display: none;
    }
    .project-block h3 {
        font-size: 15px;
        width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .project-block .text {
        font-size: 12px;
        margin: 10px 0;
    }
    .project-block .overlay {
        padding: 20px;
    }
    .project-block .overlay .content-two {
        transform: translateY(0px);
    }
    .link-btn {
        display: none;
    }
    /* 产品类别 */
    .blog-home .item {
        height: 100px;
        padding: 8px;
        width: 30% !important;
    }
    .blog-home .item h5 {
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .blog-home .item p {
        display: none;
    }
    .row {
        margin-left: 0px;
        margin-right: 0px
    }
    .mayor-message-section .content-block {
        padding: 0px;
        margin-top: 60px;
    }
    #prodectRow {
        margin-top: -50px;
    }
    .blog-home .item .arrow {
        margin-top: 15px;
    }
    .blog-home .item .arrow a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30%;
        height: 20px;
        /* border: 1px solid #fff; */
        /* background: #fff; */
        border-radius: 8px;
        font-size: 11px;
        color: #1b1b1b;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        color: #fff;
        padding: 1px 30px;
    }
    .prodectBG {
        display: none;
    }
    /* .blog-home .item .arrow a {
        width: 20px;
        height: 20px;
    }
    .blog-home .item .arrow a svg {
        width: 15px;
        height: 15px;
    } */
}

@media screen and (min-width: 500px) and (max-width: 800px) {
    .auto-container {
        padding: 0 10px;
    }
    .accordion .card {
        background: #0f0d1d;
    }
    /* 宣传片 */
    .banner-section .content-box {
        min-height: 300px;
    }
    .banner-section .content-box .inner {
        margin-top: -30px;
    }
    .banner-section .content-box h1 {
        position: relative;
        font-size: 32px;
        font-weight: 400;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .banner-section .content-box .text {
        font-size: 16px;
        line-height: 24px;
        transform: translateX(0px);
        margin-bottom: 10px;
    }
    .btn-style-one {
        font-size: 14px;
        line-height: 20px;
        padding: 10px;
        font-weight: 500;
    }
    .propaganda {
        height: 75px
    }
    .propagandaImg1 {
        width: 130px;
    }
    .propagandaImg2 {
        display: none;
    }
    .propagandaImg3 {
        width: 60px;
        animation: rotate 12s linear infinite;
    }
    .propagandaImg4 {
        display: none;
    }
    .propagandaSpan {
        font-size: 22px;
    }
    .propagandaTitle {
        font-size: 15px;
    }
    .services-section {
        padding: 0;
        padding-bottom: 20px;
    }
    .sec-title.text-center .big-title {
        left: 20% !important;
    }
    .sec-title .big-title {
        position: absolute;
        top: 0px;
        font-size: 60px;
        font-weight: 700;
        color: #f6f6f6;
    }
    .sec-title .sub-title {
        position: relative;
        font-size: 14px;
        font-weight: 700;
        top: -50px;
    }
    .sec-title h2 {
        position: relative;
        font-size: 24px !important;
        font-weight: 600;
        line-height: 30px;
        top: -60px;
        padding-bottom: 0px;
    }
    #news_img1 {
        position: absolute;
        left: -30px;
        top: -20px;
        width: 100px;
    }
    #news_img2 {
        width: 130px;
    }
    .sec-title {
        margin-bottom: 0px;
        padding-top: 80px;
    }
    .news_ul {
        margin-top: -50px;
    }
    .news-imageTitle {
        font-size: 18px;
        cursor: pointer;
        line-height: 24px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .news-data {
        font-size: 14px;
    }
    .news-data2 {
        font-size: 14px;
    }
    .swiper-slide2 {
        height: 100%;
    }
    #programmeImg {
        top: 20px;
        right: 10px;
        width: 40px;
    }
    .NewButton {
        float: right;
        padding: 2px 10px;
        font-size: 12px;
        z-index: 100;
        margin-top: -70px;
    }
    .sub-title-dec {
        font-size: 18px;
    }
    /* 解决方案 */
    /* .tpm-solution2__card-cover {
        background: none;
    } */
    .tpm-section__inner {
        padding: 10px;
        margin-top: -60px;
    }
    .tpm-solution2__card-tit {
        font-size: 18px;
        line-height: 24px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    .tpm-solution2__card-desc {
        font-size: 14px;
        margin-top: 8px;
        max-width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 0;
    }
    .tpm-solution2__card-btn.mobile .tpm-btn {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        color: #0052d9;
        background: #fff;
    }
    .tpm-btn {
        min-width: 20%;
        height: 30px;
        padding: 0 10px;
    }
    .tpm-solution2__card {
        margin: 0px;
        width: 100%;
        height: 130px;
    }
    .tpm-solution2__cards {
        box-sizing: border-box;
        white-space: pre-wrap;
        display: grid;
        grid: 2;
        gap: 10px 10px;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        margin: 0;
    }
    .tpm-solution2__nav-inner {
        padding: 10px;
    }
    .tpm-solution2__nav-title {
        font-size: 15px;
        line-height: 20px;
    }
    .tpm-solution2__nav-desc {
        display: none;
    }
    .tpm-solution2__nav-cnt {
        max-width: 100%;
    }
    .tpm-solution2__nav-icon {
        display: none;
    }
    .programmeBG {
        margin-top: 0;
    }
    .programmeTitle {
        margin-top: 0px;
    }
    /* 服务平台 */
    .no-gutters {
        height: 130px;
    }
    .swiper-slide3 img {
        height: 130px;
    }
    .project-block h4 {
        display: none;
    }
    .project-block h3 {
        font-size: 18px;
    }
    .project-block .text {
        font-size: 14px;
        margin: 10px 0;
    }
    .project-block .overlay {
        padding: 20px;
    }
    .project-block .overlay .content-two {
        transform: translateY(0px);
    }
    .link-btn {
        display: none;
    }
    /* 产品类别 */
    .blog-home .item {
        height: 100px;
        padding: 8px;
        width: 30% !important;
    }
    .blog-home .item h5 {
        font-size: 15px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .blog-home .item p {
        display: none;
    }
    .row {
        margin-left: 0px;
        margin-right: 0px
    }
    .mayor-message-section .content-block {
        padding: 0px;
        margin-top: 60px;
    }
    #prodectRow {
        margin-top: -50px;
    }
    .blog-home .item .arrow {
        margin-top: 15px;
    }
    .blog-home .item .arrow a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30%;
        height: 20px;
        /* border: 1px solid #fff; */
        /* background: #fff; */
        border-radius: 8px;
        font-size: 11px;
        color: #1b1b1b;
        -webkit-transition: all 500ms ease;
        transition: all 500ms ease;
        color: #fff;
        padding: 1px 30px;
    }
    .prodectBG {
        display: none;
    }
    /* .blog-home .item .arrow a {
        width: 20px;
        height: 20px;
    }
    .blog-home .item .arrow a svg {
        width: 15px;
        height: 15px;
    } */
}

@media screen and (min-width: 800px) and (max-width: 992px) {
    .auto-container {
        padding: 0 10px;
    }
    .banner-section .content-box {
        min-height: 500px;
    }
    .banner-section .content-box h1 {
        font-size: 45px;
    }
    .tpm-solution2__card {
        width: 120px;
    }
    .tpm-solution2__card.is-active {
        width: 420px;
    }
    .tpm-solution2__card.v2 {
        height: 420px;
    }
    .propaganda {
        height: 115px;
    }
    .sec-title .big-title {
        font-size: 150px;
    }
    .NewButton {
        float: right;
        padding: 5px 22px;
        font-size: 14px;
        z-index: 100;
        margin-top: -40px;
    }
    .prodectBG {
        display: none;
    }
    .sub-title-dec {
        font-size: 26px;
    }
}

@media screen and (min-width: 992px) and (max-width:1400px) {
    .auto-container {
        padding: 0 15px;
    }
    .sub-title-dec {
        font-size: 26px;
    }
}

@media screen and (min-width: 992px) and (max-width:1200px) {
    .sub-title-dec {
        font-size: 26px;
    }
    .auto-container {
        padding: 0 15px;
    }
    .banner-section .content-box {
        min-height: 600px;
    }
    .sec-title.text-center .big-title {
        left: 5% !important;
    }
    .sec-title .big-title {
        font-size: 130px;
    }
    .sec-title .big-title {
        top: -100px;
    }
    .programmeTitle {
        margin-top: 80px;
    }
    .blog-home .item {
        width: 30% !important;
    }
    .mayor-message-section .content-block {
        padding: 100px 0 70px;
    }
    .news-imageTitle {
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .tpm-solution2__card.is-active {
        width: 420px;
    }
    .tpm-solution2__card.v2 .tpm-solution2__card-cover {
        background-position: 100% 0;
    }
    .tpm-solution2__card {
        width: 140px;
    }
    .prodectBG {
        margin-left: -8%;
    }
}

@media screen and (min-width: 1201px) and (max-width:1211px) {
    .prodectBG {
        margin-left: -5%;
    }
}

@media screen and (min-width: 1211px) and (max-width:1235px) {
    .prodectBG {
        margin-left: -8%;
    }
}

@media screen and (min-width: 1235px) and (max-width:1250px) {
    .prodectBG {
        margin-left: -10%;
    }
}

@media screen and (min-width: 1250px) and (max-width:1265px) {
    .prodectBG {
        margin-left: -13%;
    }
}

@media screen and (min-width: 1265px) and (max-width:1285px) {
    .prodectBG {
        margin-left: -16%;
    }
}

@media screen and (min-width: 1285px) and (max-width:1300px) {
    .prodectBG {
        margin-left: -18%;
    }
}

@media screen and (min-width: 1300px) and (max-width:1350px) {
    .prodectBG {
        margin-left: -22%;
    }
}

@media screen and (min-width: 1350px) and (max-width:1390px) {
    .prodectBG {
        margin-left: -29%;
    }
}

@media screen and (min-width: 1390px) and (max-width:1400px) {
    .prodectBG {
        margin-left: -32%;
    }
}

@media screen and (min-width: 1400px) and (max-width:1430px) {
    .prodectBG {
        margin-left: -30%;
    }
}

@media screen and (min-width: 1430px) and (max-width:1460px) {
    .prodectBG {
        margin-left: -34%;
    }
}

@media screen and (min-width: 1460px) and (max-width:1500px) {
    .prodectBG {
        margin-left: -38%;
    }
}

@media screen and (min-width: 1500px) and (max-width:1540px) {
    .prodectBG {
        margin-left: -44%;
    }
}

@media screen and (min-width: 1540px) and (max-width:1580px) {
    .prodectBG {
        margin-left: -48%;
    }
}

@media screen and (min-width: 1580px) and (max-width:1620px) {
    .prodectBG {
        margin-left: -52%;
    }
}

@media screen and (min-width: 1620px) and (max-width:1640px) {
    .prodectBG {
        margin-left: -58%;
    }
}

@media screen and (min-width: 1640px) and (max-width:1680px) {
    .prodectBG {
        margin-left: -62%;
    }
}

@media screen and (min-width: 1680px) and (max-width:1720px) {
    .prodectBG {
        margin-left: -67%;
    }
}

@media screen and (min-width: 1720px) and (max-width:1760px) {
    .prodectBG {
        margin-left: -72%;
    }
}

@media screen and (min-width: 1760px) and (max-width:1800px) {
    .prodectBG {
        margin-left: -78%;
    }
}

@media screen and (min-width: 1800px) and (max-width:1840px) {
    .prodectBG {
        margin-left: -83%;
    }
}

@media screen and (min-width: 1840px) and (max-width:1880px) {
    .prodectBG {
        margin-left: -88%;
    }
}

@media screen and (min-width: 1880px) and (max-width:1910px) {
    .prodectBG {
        margin-left: -93%;
    }
}

@media screen and (min-width: 1910px) and (max-width:1945px) {
    .prodectBG {
        margin-left: -98%;
    }
}

@media screen and (min-width: 1945px) and (max-width:1980px) {
    .prodectBG {
        margin-left: -102%;
    }
}

@media screen and (min-width: 1980px) and (max-width:2020px) {
    .prodectBG {
        margin-left: -107%;
    }
}