* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --side-width: 144px;
}

html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    color: #393939;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-text-size-adjust: none;
}

a:hover {
    cursor: pointer;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
    background: transparent;
}

textarea {
    -webkit-appearance: none;
}

img {
    vertical-align: middle;
    max-width: 100%;
    border: 0;
}

a {
    text-decoration: none;
    outline: none
}

ul,
li {
    list-style-type: none
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix {
    zoom: 1;
}

.overflow {
    overflow: hidden;
}

.overflow_line1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overflow_line2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.overflow_line3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.overflow_line4 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.overflow_line5 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
}

.flex_sbe {
    justify-content: space-between;
}

.flex_end {
    display: flex;
    justify-content: flex-end;
}

.flex_jcen {
    justify-content: center;
}

.flex_ac {
    display: flex;
    align-items: center;
}

.flex_wrap {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.text_center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.acenter {
    text-align: center;
}

.flex_align_end {
    display: flex;
    align-items: flex-end;
}

.flex_column_between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main {
    width: calc(100% - var(--side-width) * 2);
    margin: 0 auto;
}

header {
    width: 100%;
}

@keyframes fadeInUp80 {
    0% {
        transform: translateY(80px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fadeInUp80 {
    animation-name: fadeInUp80;
    animation-duration: 1s;
}

.toSmall {
    animation: toSmall 2s linear;
    animation-duration: 2s;
    animation-delay: 0s;
    animation-fill-mode: none;
    animation-fill-mode: forwards;
}

/*导航*/
header.fixed {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
}

/*首页滑动 导航样式*/
header.is-sticky {
    background-color: #fff;
}

header .logo img {
    width: 12rem;
}

header.fixed .logo img.logo_lan {
    display: none;
}

header.is-sticky .logo img.logo_bai,
header.inner .logo img.logo_bai {
    display: none;
}

header.is-sticky .logo img.logo_lan,
header.inner .logo img.logo_lan {
    display: block;
}

header .navlist .fenge {
    margin: 0 1.8rem;
    line-height: 3rem;
    color: #c3c3c2;
    font-weight: 200;
}

header.inner .navlist .fenge {
    color: #070707;
}

header .navlist .fenge:last-child {
    display: none;
}

header .navlist li {
    position: relative;
    padding: 1.2rem 0;
}

header .navlist > li > a {
    padding: 0 0.15rem;
    line-height: 3rem;
    display: block;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
}

header.is-sticky .navlist > li > a,
header.inner .navlist > li > a {
    color: #070707;
}

header .navlist > li.active > a,
header .navlist > li:hover > a {
    color: #73bcff;
}

header.inner .navlist > li.active > a,
header.inner .navlist > li:hover > a {
    color: #006abe;
}

header .navlist .two {
    position: absolute;
    height: auto;
    left: 50%;
    min-width: 100px;
    z-index: 1000;
    white-space: nowrap;
    transition: all 0.4s;
    top: 7rem;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%);

}

header .navlist .two dd a {
    font-size: 14px;
    color: #fff;
    display: block;
}

header .navlist .two dd a:hover {
    color: #72c2ff;
}

header .two dl {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 9px 15px;
    border-radius: 0 15px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

header .two dd {
    width: 100%;
    text-align: left;
    padding: 4px 0;
    line-height: 1.5;
    position: relative;
}

header .two dl dd:last-child {
    border: 0;
}

header .navlist > li:hover .two {
    visibility: visible;
    opacity: 1;
    top: 5.4rem;
}

.head_btn {
    margin-left: 2.5rem
}

.head_btn .search {
    position: relative;
    height: 1.3125rem;
}

.head_btn .search em {
    background: url('../images/2.png') no-repeat center left;
    width: 1.25rem;
    height: 1.25rem;
    background-size: 100%;
    cursor: pointer;
    display: block;
}

.search_pop {
    position: absolute;
    top: calc(100% + 3rem);
    right: -5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 0.3rem;
    width: 22.5rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
    z-index: 10001;
}

.search_pop form {
    border: 1px solid #1c1d20;
    border-radius: 30px;
    position: relative;
}

.search_pop form input {
    border: 0;
    background: transparent;
}

.search_pop form .ss_bd {
    display: block;
    width: calc(100% - 4rem);
    padding-left: 1rem;
    height: 2.2rem;
    line-height: 2.2rem;
}

.search_pop form .ss_btn {
    width: 3.8rem;
    height: 2.2rem;
    line-height: 2.2rem;
    background: #1c1d20;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.9rem;
    color: #fff;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.search_pop form:before {
    width: 0.2rem;
    height: 0.11rem;
    content: '';
    display: block;
    background: url('../images/jt.png') no-repeat center;
    position: absolute;
    top: -0.2rem;
    right: 0.2rem;
}

.search_pop.active {
    top: calc(100% + 2rem);
    visibility: visible;
    opacity: 1;
}

.lan {
    height: 1.25rem;
    text-align: center;
    line-height: 1.25rem;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    margin-left: 1.25rem;
}

.lan img {
    width: 1.25rem;
    margin-right: 0.4rem
}

header.is-sticky .lan,
header.inner .lan {
    color: #070707;
}

header.is-sticky .lan img.lang_hui,
header.inner .lan img.lang_hui {
    display: block;
}

header .lan img.lang_hui,
header.is-sticky .lan img.lang_bai,
header.inner .lan img.lang_bai {
    display: none;
}

.phone {
    display: none
}

.nr {
    position: relative;
    z-index: 10;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.banner .swiper {
    height: 100vh;
}

.banner .swiper .video_box {
    height: 100%;
}

.banner .swiper .img_box {
    height: 100%;
}

.banner .swiper .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper .text_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.banner .swiper .text_box h3 {
    font-size: 4rem;
    font-weight: bold;
}

.banner .swiper .text_box h3 span {
    color: #006abe;
}

.banner .swiper .text_box p {
    font-size: 1.8rem;
}

/*banner - 特点*/
.feature {
    left: 0;
    bottom: 0;
    z-index: 9;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid #777c7b;
}

.feature_each {
    padding: 1.5% 1%;
    width: 25%;
    justify-content: center;
    transition: all 0.4s;
}

.feature_each img {
    width: 15%;
    height: auto;
    flex-shrink: 0;
}

.feature_info {
    margin-left: 2%;
    color: #fff;
}

.fea_tit {
    font-size: 1.3rem;
}

.fea_nr {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.feature_each::after {
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    height: 100%;
    background: #777c7b;
}

.feature_each:last-child::after {
    display: none;
}

.feature_each:hover {
    background: #006abe;
}

.sec_title span {
    font-size: 0.95rem;
    color: #006abe;
}

.sec_title p {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3e3e3e;
    line-height: 1;
}

.sec_title img {
    width: 5rem;
}

/*关于我们*/
.section1 {
    padding: 6.75rem 0 1.5625rem;
    background: url('../images/sec1.jpg') no-repeat center;
    background-size: cover
}

.sec1_left {
    width: 42%;
}

.sec1_left .company_name {
    font-size: 1.875rem;
    font-weight: bold;
    color: #006abe;
    margin-top: 2.2rem;
}

.sec1_left .company_cont {
    font-size: 16px;
    color: #393939;
    line-height: 2;
    margin: 1.5rem 0;
}

.sec1_left .nums_num {
    font-size: 3.125rem;
    font-weight: bold;
    color: #006abe;
    align-items: flex-end;
    line-height: 0.8;
    height: 3.125rem;
    margin-bottom: 0.5rem;
}

.sec1_left .nums_num p {
    font-size: 16px;
    font-weight: 600;
}

.nums_desc {
    font-size: 17px;
}

.sec1_left .more {
    margin-top: 8vw;
}

.more {
    width: 7.6875rem;
    height: 2.375rem;
    line-height: 2.3rem;
    border-radius: 25px 0 25px 0;
    transition: all 1s;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    border: 1px solid #7b7b7b;
    color: #7b7b7b;
}

.more_lan {
    border: 1px solid #006abe;
    color: #006abe;
}

.sec1_right {
    width: 54%;
}

.sec1_right .pic {
    width: 100%;
}

.sec1_right .fmt {
    position: relative;
    width: calc(100% - 20px);
    bottom: 20px;
    left: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

.sec1_right .fmt img {
    transition: all 1s;
}

.sec1_right:hover .fmt img {
    transform: scale(1.1);
}

.sec1_right .pic p {
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    bottom: 0px;
    left: 0px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: #307fc7;
}

.play {
    width: 7.6875rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/*产品服务*/
.section2 {
    padding: 3.75rem 0;
}

.prod_type {
    font-size: 16px;
    width: 80%;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.prod_type a {
    margin-left: 1.5rem;
    padding-bottom: 3px;
}

.prod_type a.active {
    color: #006abe;
    border-bottom: 3px solid #006abe;
}

.prods {
    margin-top: 1.5rem;
}

.prods_each {
    gap: 14px;
    flex-wrap: wrap;
}

/*8个图*/
.prods_each li {
    background: #f8f8f9;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    width: calc(25% - 14px);
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    transition: all 0.5s;
}

.prods_each li .prod_tit {
    padding-left: 2rem;
    font-size: 1.25rem;
    color: #474747;
    transition: all 0.5s;
}

.prods_each li .prod_titen {
    padding-left: 2rem;
    font-size: 16px;
    color: #888888;
    font-weight: 200;
    transition: all 0.5s;
}

.prods_each li .prod_img {
    text-align: center;
    width: calc(100% - 4rem);
    margin: 25px 2rem 0;
    overflow: hidden;
}

.prods_each li .prod_img img {
    width: 100%;
}

/*2个图*/
.prods_each.prod_1 li,
.prods_each.prod_2 li {
    width: calc(calc(100% - 14px) / 2);
}

.prods_each.prod_1 li .prod_tit,
.prods_each.prod_1 li .prod_titen,
.prods_each.prod_2 li .prod_tit,
.prods_each.prod_2 li .prod_titen {
    padding-left: 2rem;
}

/*12个图*/
.prods_each.prod_9 li {
    width: calc(16.6% - 14px);
}

.prods_each.prod_9 li .prod_tit {
    font-size: 1.1rem;
    padding-left: 1rem;
}

.prods_each.prod_9 li .prod_titen {
    font-size: 1rem;
    padding-left: 1rem;
}

.prods_each.prod_9 li .prod_img {
    width: calc(100% - 2rem);
    margin: 25px 1rem 0;
}

.prods_each li:hover {
    background: #307fc7;
}

.prods_each li:hover .prod_tit {
    color: #fff;
}

.prods_each li:hover .prod_titen {
    color: #68aceb;
}

.prods_each li img {
    transition: all 1s;
}

.prods_each li:hover img {
    transform: scale(1.1);
}

.more_prod {
    text-align: center;
    margin-top: 2rem;
}

.section3 {
    height: 67.5rem;
    background: #ccc;
}

.section3 .sec_title {
    position: absolute;
    left: var(--side-width);
    top: 8.6rem;
    z-index: 2;
}

.section3 .sec_title span {
    color: #fff;
}

.section3 .sec_title p {
    color: #fff;
}

.section3 .timeline {
    height: 100%;
    position: relative;
}

.section3 .timeline .swiper-container {
    height: 100%;
}

.section3 .timeline .swiper-wrapper {
    transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}

.section3 .timeline .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 1s;
}

.section3 .timeline .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.5s ease-in-out;
    z-index: 0;
    background: linear-gradient(to bottom right, rgba(23, 63, 143, 0.8), rgba(0, 0, 0, 0));
}

.swiper-slide:hover::before {
    transform: scale(1.1);
}

.section3 .swiper-pagination {
    left: var(--side-width);
    height: 24rem;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    font-size: 1.25rem;
    z-index: 1;
    text-align: left;
}

.section3 .swiper-horizontal > .swiper-pagination-bullets,
.section3 .swiper-pagination-bullets.swiper-pagination-vertical {
    bottom: auto;
    width: 10rem;
    overflow-y: scroll;
}

.section3 .swiper-horizontal > .swiper-pagination-bullets.en,
.section3 .swiper-pagination-bullets.swiper-pagination-vertical.en {
    bottom: auto;
    width: 24rem;
    overflow-y: scroll;
}

.section3 .timeline .swiper-pagination-bullet {
    width: auto;
    height: auto;
    text-align: left;
    opacity: 1;
    background: transparent;
    margin: 0.75rem 0 !important;
    position: relative;
    font-size: 16px;
    border-radius: 0;
}

.section3 .timeline .swiper-pagination-bullet a {
    color: #fff;
}

.section3 .swiper-pagination-bullet-active a {
    padding-bottom: 2px;
    border-bottom: 2px solid #a3b2d0;
}

.section3 .timeline .swiper-slide-content {
    position: absolute;
    text-align: center;
    right: 0;
    bottom: 0;
    background: #173f8f;
    color: #fff;
    padding: 5% 15% 6% 5%;
    text-align: left;
    border-top-left-radius: 30px;
}

.section3 .timeline .swiper-slide-content span {
    font-size: 1.875rem;
    font-weight: bold;
    border-bottom: 3px solid #4161a3;
    padding-bottom: 3px;
}

.section3 .timeline .swiper-slide-content h4 {
    font-size: 16px;
    margin-top: 2rem;
    line-height: 2em;
    width: 40rem;
    position: relative;
    z-index: 1;
}

.section3 .timeline .swiper-slide-content p {
    width: 7rem;
    height: 2.4rem;
    line-height: 2.4rem;
    background: #fff;
    border-radius: 4px;
    text-align: center;
    margin-top: 2rem;
    font-size: 16px;
}

.section3 .timeline .swiper-slide-content p a {
    color: #173f8f;
}

.section3 .timeline .swiper-slide-content li {
    position: absolute;
    font-size: 18rem;
    right: -6rem;
    bottom: 0;
    line-height: 18rem;
    font-family: 'DIN regula';
    color: #234995;
}

.section3 .swiper-button-prev,
.section3 .swiper-button-next {
    left: auto;
    right: var(--side-width);
    width: 3rem;
    opacity: 1;
}

.section3 .swiper-button-prev::after,
.section3 .swiper-button-next::after {
    display: none;
}

.section3 .swiper-button-prev {
    margin-top: -5rem;
}

.section3 .jiahao {
    bottom: 10rem;
    left: var(--side-width);
    z-index: 2;
    width: 3.75rem;
}

/*技术实力*/
.section4 {
    padding: 4.5rem 0 6.5625rem;
}

.sec4_list {
    width: calc(100% - var(--side-width) * 2 - 20px);
    margin: 3rem auto 0;
    position: relative;
}

.sec4_list .swiper {
    padding: 20px 15px;
}

.sec4_list a {
    display: block;
    overflow: hidden;
    box-shadow: 0 0 15px 4px #ccc;
}

.sec4_list img {

    width: 100%;
    transition: all 1s;
}

.sec4_list a:hover img {
    transform: scale(1.1);
}

.sec4_list .swiper-button-prev {
    width: 14px;
    left: 0;
    display: none;
}

.sec4_list .swiper-button-next {
    width: 14px;
    right: 0;
    display: none;
}

.sec4_list .swiper-button-prev::after,
.sec4_list .swiper-button-next::after {
    font-size: 18px;
}


/*行业应用*/
.section5 .img_box {
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.section5 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    z-index: 1;
    transition: all 1s;
}

.section5 .img_box:hover img {
    transform: scale(1.06);
}

.section5 .shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../image/behavior01_bg.png) no-repeat center center;
    background-size: 100% 100%;
    z-index: 2;
    transition: all 0.36s;
}

.section5 .img_box:hover .shadow {
    opacity: 0.5;
}

.section5 .text_box {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
}

.section5 .text_box .content_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 6% 10% 0;
    display: flex;
    flex-direction: column;
}

.section5 .text_box .content_box h4 {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 32px;
    color: #FFFFFF;
    transition: all 0.36s;
}

.section5 .img_box:hover .text_box .content_box h4 {
    color: #0aa6ea;
    margin-bottom: 5px;
}

.section5 .text_box .content_box p {
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    margin-top: 8px;
}

.section5 .left_box {
    width: 30%;
}

.section5 .left_box .l_top_box {
    width: 100%;
    padding-top: 70%;
    background: #307fc7;
    margin-bottom: 1px;
}

.section5 .left_box .be_title {
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% / 3);
    width: 100%;
    display: flex;
    align-items: center;
}

.section5 .left_box .be_title .title_box {
    text-align: left;
    width: calc(100% - var(--side-width) * 2);
    margin: 0 auto;
    color: #fff;
}

.section5 .left_box .be_title.en .title_box {
    width: 94%;
}

.section5 .left_box .be_title .title_box h2 {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.section5 .left_box .be_title .title_box h3 {
    font-size: 2.2rem;
    font-weight: bold;
}

.section5 .left_box .l_bottom_box {
    width: calc(100% - 1px);
}

.section5 .left_box .l_bottom_box .img_box {
    width: 100%;
    padding-top: 100%;
}

.section5 .right_box {
    width: 70%;
}

.section5 .right_box .r_top_box {
    margin-bottom: 1px;
}

.section5 .right_box .r_top_left_box {
    width: 56%;
}

.section5 .right_box .r_top_left_box .img_box {
    width: 100%;
    padding-top: 53.5%;
}

.section5 .right_box .r_top_right_box {
    width: calc(44% - 1px);
    margin-left: 1px;
}

.section5 .right_box .r_top_right_box .img_box {
    width: 100%;
    padding-top: 68.3%;
}

.section5 .right_box .r_bottom_box .r_bottom_left_box {
    width: 44%;
}

.section5 .right_box .r_bottom_box .r_bottom_left_box .img_box {
    width: 100%;
    padding-top: 48.5%;
    margin-bottom: 1px;
}

.section5 .right_box .r_bottom_box .r_bottom_right_box {
    width: calc(56% - 1px);
    margin-left: 1px;
}

.section5 .right_box .r_bottom_box .r_bottom_right_box .img_box {
    width: 100%;
    padding-top: 76.5%;
}

/*新闻中心*/
.section6 {
    padding: 3% 0 5%;
    background: #f7f7f7;
}

.section6 .sec6_list {
    margin-top: 3%;
    flex-wrap: wrap;
}

.sec6_left {
    width: calc(60% - 20px);
}

.sec6_left a {
    display: block;
    width: calc(50% - 20px);
    background: #fff;
}

.sec6_left .pic {
    overflow: hidden;
    height: 14vw;
}

.sec6_left .pic img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 1s;
    object-fit: cover;
}

.sec6_left a:hover img {
    transform: scale(1.1);
}

.sec6_left .info {
    padding: 2.75rem 2rem;
    background: #fff;
}

.sec6_list .tit {
    font-size: 18px;
    height: 56px;
    color: #2d2d2d;
    font-weight: bold;
    transition: all 0.2s;
}

.sec6_list .jian {
    font-size: 16px;
    color: #4d4d4d;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.sec6_left a .mor img {
    transition: all 1s;
}

.sec6_left a:hover .mor img {
    transform: translateX(15px);
}


.sec6_list .sec6_left .jian {
    height: 80px;
}

.sec6_list .sec6_rig .jian {
    height: 52px;
}

.sec6_list .date {
    font-size: 13px;
    color: #d7d7d7;
    display: block;
}

.sec6_list .sec6_left .date {
    padding-top: 0.6rem;
}

.sec6_list .sec6_rig .date {
    padding-top: 1vw;
}

.sec6_left .mor {
    margin-top: 2rem;
    font-size: 14px;
    color: #ababab;
}

.sec6_rig {
    width: calc(40% - 20px);
    padding: 0 2.5rem;
    background: #fff;
}

.sec6_rig a {
    display: block;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 1.3rem;
    padding-top: 1.3rem;
}

.sec6_rig a:last-child {
    border: none;
}

.sec6_list a:hover .tit {
    color: #307fc7;
}

.lanxian {
    width: 100%;
    height: 0.5rem;
    background: #0c5ba8;
}

.section7 {
    padding: 6% 0;
    background: url('../images/sec7.jpg') no-repeat center;
    background-size: cover
}

.sec7_list {
    width: 75%;
    gap: 30px;
}

.sec7_list a {
    display: block;
    width: calc(33% - 15px);
    /*保证高度一致*/
    display: flex;
}

.sec7_each {
    width: 100%;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    text-align: center;
    background: #fff;
    padding: 4rem 0;
}

.sec7_tit {
    font-size: 22px;
    color: #3e3e3e;
    font-weight: bold;
    margin-top: 12px;
}

.sec7_jj {
    font-size: 16px;
    color: #3e3e3e;
    margin-top: 16px;
    line-height: 1.5;
    padding: 0 10%;
}

.sec7_each img {
    width: 8rem;
    transition: all 1s;
}

.sec7_each:hover img {
    transform: rotateY(180deg)
}

.sec7_each:hover .sec7_tit {
    color: #307fc7;;
}

.section8 {
    margin-top: 3.9375rem;
}

.sec8_left {
    width: 48.5%;
    background: #307fc7;
    color: #ffffff;
    padding: 2rem 2.375rem;
    border-radius: 20px;
}

.sec8_left .title p {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
}

.sec8_left .title span {
    font-size: 1rem;
    display: block;
}

.sec8_left .part_list {
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 15px;
}

.sec8_left .part_list .part_each {
    width: calc((100% - 2 * 15px) / 3);
}

.sec8_rig {
    width: 48%;
}

.sec8_rig .title p {
    font-size: 2rem;
    font-weight: bold;
    color: #1b1b1b;
    line-height: 1;
}

.sec8_rig .title span {
    font-size: 1rem;
    display: block;
    color: #828282;
}

.sec8_rig form {
    width: 100%;
    margin: 2rem auto 0;
}

.sec8_rig .item {
    border: 1px solid #aaaaaa;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.sec8_rig .item input {
    height: 3rem;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 0 3%;
    border: 0;
    font-size: 16px;
}

.sec8_rig .item2 textarea {
    width: 100%;
    height: 8rem;
    background: #fff;
    border-radius: 10px;
    padding: 15px 3%;
    border: 0;
    resize: none;
    font-size: 16px;
}

.sec8_rig .item2 {
    border: 1px solid #aaaaaa;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    margin-top: 1.25rem;
}

.sec8_rig .mes_btn {
    width: 160px;
    height: 42px;
    line-height: 42px;
    background: #006abe;
    border-radius: 30px 0 30px 0;
    text-align: center;
    border: 0;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    margin: 20px auto 0;
}

.section9 {
    margin-bottom: 2rem;
}

.section9 .main {
    background: #f7f7f7;
    padding: 2rem;
    margin-top: 4rem;
    border-radius: 12px;
}

.sec9_left {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: bold;
    line-height: 1;
    position: relative;
    padding-right: 10px;
}

.sec9_left::after {
    content: '';
    width: 2px;
    height: 100%;
    background: #000;
    position: absolute;
    right: 0;
    top: 0;
}

.sec9_rig {
    margin-left: 1rem;
    justify-content: space-around;
    font-size: 16px;
}

.sec9_rig a {
    margin: 0 1rem;
}

.sec9_rig a:hover {
    color: #307fc7;;
}

/*底部*/
footer {
    background: #2d2d2d;
}

.foot1 {
    color: #cccccc;
    position: relative;
    padding-top: 5rem;
}

.foot1:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #444444;
    position: absolute;
    left: 0;
    bottom: 0;
}

.foot1 .main {
    justify-content: space-between;
}

.foot1_left .blogo {
    width: 10rem;
}

.foot1 .navlist > ul > li > a {
    display: block;
    font-size: 1.125rem;
    color: #fff;
    font-weight: bold;
    line-height: 1;
}

.foot1 .navlist > ul > li {
    margin: 0 1.6vw;
}

.foot1 .navlist > ul > li dd a {
    color: #ababab;
    line-height: 2.2;
    font-size: 15px;
}

.foot1 .navlist > ul > li dd a:hover {
    color: #fff;
    font-weight: bold;
}

.foot1 .navlist > ul > li > a:hover {
    font-weight: bold;
}

.foot1 .navlist .two {
    margin-top: 1.5rem;
}

.foot1 .navlist .two.en {
    display: none;
}

.foot1_rig .codes {
    gap: 20px;
    text-align: center;
    justify-content: flex-end;
    font-size: 1rem;
}

.foot1_rig .codes img {
    width: 8.5rem;
    margin-bottom: 4px;
}

.foot1_rig .hottel {
    margin-top: 1rem;
    color: #dedede;
    font-size: 1.4rem;
}

.foot1_rig .b_conatct {
    margin-top: 0.5rem;
    color: #cccccc;
    line-height: 2.1;
    gap: 30px;
    justify-content: flex-end;
}

.foot1 {
    padding-bottom: 1rem
}

.b_conatct .codetu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 180%;
    z-index: 9;
    width: 120px;
    opacity: 0;
    transition: all 0.5s;
}

.b_conatct .relative:hover .codetu {
    opacity: 1;
    top: 130%;
}

.foot2 {
    padding: 1.5rem 0;
    font-size: 15px;
    color: #dedede;
    line-height: 2;
}

/*视频*/
.vwrap {
    display: none;
    z-index: 1040;
    width: 100%;
    position: fixed;
}

.vwrap .videobtg {
    z-index: 900;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
    overflow: hidden;
}

.vwrap .videobox {
    z-index: 1200;
    width: 700px;
    height: 446px;
    background-color: #000;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -223px;
    margin-left: -350px;
}

.vwrap .close {
    z-index: 999;
    width: 31px;
    height: 31px;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: -42px;
}

.vwrap .close i {
    display: block;
    width: 31px;
    height: 31px;
    background: url(../images/close.png) no-repeat 50% 50%;
    -webkit-transition: 400ms;
    transition: 400ms;
}

.vwrap .close:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.videobox video {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/*侧边栏*/
aside#top {
}

.online_q {
    position: fixed;
    right: 7px;
    bottom: 30%;
    z-index: 9999;
    transition: .5s;
    -webkit-transition: .5s;
}

.online_q .btn2 {
    width: 60px;
    height: 60px;
    line-height: 60px;
    cursor: pointer;
    position: relative;
    margin-bottom: 1px;
    transition: .3s;
    text-align: center;
}

.online_q .btn-top {
    background: #108f91;
    padding: 0;
}

.online_q .btn2 span {
    display: block;
    float: left;
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: relative;
    z-index: 999;
    overflow: hidden;
    transition: .3s;
    -webkit-transition: .3s;
    color: #fff;
    border-radius: 0;
    background: #1c1d20;
    text-align: center;
}

.online_q .btn-top {
    background: #1c1d20;
}

.online_q .open.pic {
    position: absolute;
    background: #158b8d;
    border-radius: 3px;
    width: 100px;
    height: 100px;
    right: 95px;
    top: 50%;
    margin-top: -50px;
    text-align: right;
    opacity: 0;
    transition: .6s;
    -webkit-transition: .6s;
    visibility: hidden;
}

.online_q .open.pic:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 10px solid #158b8d;
    position: absolute;
    right: -15px;
    top: 50%;
    margin-top: -10px;
}

.online_q .open.pic img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
    margin-right: 10px;
}

.online_q .btn2:hover .open.pic {
    opacity: 1;
    right: 70px;
    visibility: visible;
}

#gotop.hide {
    height: 0;
    overflow: hidden;
}

.online_q .btn2:hover span {
    background: #158b8d;
}


.online_q .social-share {
    position: absolute;
    background: #158b8d;
    border-radius: 3px;
    width: 160px;
    height: 60px;
    right: 95px;
    top: 50%;
    margin-top: -30px;
    text-align: center;
    opacity: 0;
    transition: .6s;
    -webkit-transition: .6s;
    visibility: hidden;
    font-size: 18px;
    color: #fff;
}

.online_q .social-share:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left: 10px solid #158b8d;
    position: absolute;
    right: -15px;
    top: 50%;
    margin-top: -10px;
}

.online_q .social-share img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
    margin-right: 10px;
}

.online_q .btn2:hover .social-share {
    opacity: 1;
    right: 70px;
    visibility: visible;
}

/**
 * 二级
 */
.banner2 .lanmu {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 99;
}

.banner2 .lanmu .lmname {
    font-size: 3.125rem;
    font-weight: bold;
}

.banner2 .lanmu .lmjian {
    font-size: 1.125rem;
    text-transform: uppercase;
    display: block;
}

.banner2 .pic {
    display: flex;
    justify-content: center;
}

.banner2 .pic img {
    width: 100%;
    object-fit: cover;
}

.banner2 .pic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(12, 49, 120), rgba(0, 0, 0, 0));
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 2;
}

/*单页*/
.danye1 {
    padding: 6.75rem 0 6rem;
    background: #f7faff;
    scroll-margin-top: 60px;
}

.danye1_top {
    font-size: 2.5rem;
    font-weight: bold;
    padding-left: 10px;
    line-height: 1;
}

.danye1_top::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: 100%;
    background-color: #006abe;
}

.danye1_cont {
    margin-top: 3.75rem;
}

.danye1_left {
    width: 20%;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.danye1_left .data {
    font-size: 0.88rem;
    color: #006abe;
    position: relative;
    padding-top: 5px;
}

.danye1_left .data span {
    font-size: 2rem;
    font-weight: bold;
}

.danye1_left .data::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 4px;
    background-color: #006abe;
}

.danye1_left .data_desc {
    font-size: 0.88rem;
    color: #005da6;
}

.danye1_rig {
    width: calc(80% - 40px);
}

.danye1_rig table {
    width: 100%;
}

.danye1_rig table tr {
    display: flex;
}

.danye1_rig table tr td {
    flex: 1;
    width: auto !important;
}

.danye1_rig table img {
    max-width: 98%;
    height: auto !important;
}

.danye1_kouhao {
    font-size: 2rem;
    color: #2b2b2b;
}

.danye1_nr {
    font-size: 16px;
    color: #2c2c2c;
    line-height: 2;
    margin-top: 15px;
}

.danye2 {
    scroll-margin-top: 60px;
}

.danye2_top {
    text-align: center;
}

.danye2_desc {
    font-size: 1rem;
    color: #272727;
    text-transform: uppercase;
    margin-top: 6px;
}

/*华浦优势*/
.isbAccordionBox {
    margin-top: 3rem;
    box-shadow: 0 5px 23px 4px rgba(113, 117, 118, 0.07);
}

.isbAccordionBox li {
    width: 17%;
    position: relative;
    transition: all 0.5s;
}

.isbAccordionBox li .isLittle {
    width: 100%;
    height: 500px;
    padding: 360px 0 0 20px;
    border-left: 1px solid white;
    position: relative;
    z-index: 100;
    opacity: 1;
    background-size: cover;
    background-repeat: no-repeat;
}

.isbAccordionBox li.en .isLittle {
    height: 600px;
    padding: 450px 0 0 20px;
}

.isbAccordionBox li .isLittle .isbalText {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    margin-top: 10px;
    letter-spacing: 2px;
}

.isbAccordionBox li .isLittle .isbaMoreBox p {
    float: left;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    line-height: 32px;
}

.isbAccordionBox li .isLittle .isbaMoreBox img {
    margin-left: 10px;
}

.isbAccordionBox .active {
    width: 49%;
}

.isbAccordionBox .active .isLittle {
    opacity: 0;
    transition: all 0.5s;
    transition-delay: 0s;
    transition-delay: 0.2s;
    z-index: -1;
}

.isbAccordionBox li .isBig {
    width: 100%;
    height: 559px;
    border-left: 1px solid white;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.isbAccordionBox .active .isBig {
    display: block;
    background: white;
}


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

.isbAccordionBox li .fadeInRight--ObiV0 {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.isbAccordionBox li .isBig .isbbTop {
    width: 100%;
    height: 90px;
    margin: auto;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.isbAccordionBox li .isBig .isbbTop img {
    float: left;
}

.isbAccordionBox li .isBig .isbbTop p {
    float: left;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-left: 10px;
    letter-spacing: 2px;
}

.isbAccordionBox li .isBig .isbbContent {
    padding: 0 2.5rem;
}

.isbAccordionBox li .isBig .isbbContent .box {
    margin: 2.5rem 0;
}

.isbAccordionBox li .isBig .isbbContent .box .isbbImgBox {
    flex: 3;
    text-align: center;
}

.isbAccordionBox li .isBig .isbbContent .box .isbbImgBox p {
    font-size: 16px;
    font-weight: 400;
    color: #1a9ad7;
}

.isbAccordionBox li .isBig .isbbContent .box .isbbLongText {
    flex: 7;
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
    display: flex;
    align-items: center;
}

.isbAccordionBox li:nth-child(2) .isbbContent {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.isbAccordionBox .isbbContent p.isbbcText {
    margin-bottom: 1.6rem;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.isbAccordionBox li .isBig .isbbContent .isbbBackBox {
    height: 2.5rem;
    margin: 12px auto;
    background-image: url('../images/42.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.isbAccordionBox li .isBig .isbbContent .isbbBackBox p:first-child {
    font-size: 14px;
    font-weight: 400;
    margin-left: 15px;
    color: #38a2da;
    line-height: 1.8rem;
}

.isbAccordionBox li .isBig .isbbContent .isbbBackBox p:last-child {
    font-size: 14px;
    font-weight: 400;
    color: #4d4d4d;
    margin: 0.6rem 0 0 1rem;
    position: absolute;
    left: 40%;
    top: 0;
}

.isbAccordionBox li:nth-child(3) .isbbContent {
    margin: 3.75rem 0;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox {
    margin: 4rem 0 7rem;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox.en {
    flex-wrap: wrap;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox .numen {
    width: 50%;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox .isbbtNumBox {
    font-size: 1rem;
    color: #4d4d4d;
    font-weight: 400;
    line-height: 50px;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox .isbbtNumBox span {
    font-size: 2rem;
    color: #15b0ec;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox .isbbtText {
    font-size: 14px;
    color: #4d4d4d;
    font-weight: 400;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox .isbbtLine {
    width: 1px;
    height: 85px;
    border: 1px solid #e5e5e5;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox .isbbtLine:last-child {
    display: none;
}

.isbAccordionBox li .isBig .isbbContent .isbbcFixedBox.en .isbbtLine {
    display: none;
}

.isbAccordionBox li:nth-child(4) .isbbContent {
    margin: 2.5rem 0;
}

.isbAccordionBox li .isBig .isbbContent .isbbcTitle {
    color: #1a9ad7;
    font-size: 1.25rem;
    margin: 1.5rem 0;
}

.isbAccordionBox li .isBig .isbbContent .isbbcListBox .isbbcListOne {
    width: 152px;
    border: 1px solid #e5e5e5;
    text-align: center;
    margin: 0 2px;
}

.isbAccordionBox li .isBig .isbbContent .isbbcListBox .isbbcListOne .isbbcListNum {
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    text-align: center;
    line-height: 3.25rem;
    color: #e5e5e5;
    font-size: 1.8rem;
    margin: 24px auto 14px;
}

.isbAccordionBox li .isBig .isbbContent .isbbcListBox .isbbcListOne .isbbcListBlue {
    font-size: 15px;
    font-family: '微软雅黑';
    font-weight: 400;
    color: #38a2da;
    line-height: 1.5;
    margin: 10px 0;
}

.isbAccordionBox li .isBig .isbbContent .isbbcListBox .isbbcListOne .isbbcListText {
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin-bottom: 10px;
}

/*发展历程*/
.danye3 {
    margin-top: 6em;
    padding: 7rem 0 11rem;
    background: url('../images/43.jpg') no-repeat;
    background-size: cover;
    background-position: center bottom;
    scroll-margin-top: 60px;
}

.danye3 .danye3_top {
    color: #fff;
}

.fazhan_tit {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    padding-left: 20px;
    line-height: 1;
}

.fazhan_tit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6%;
    width: 8px;
    height: 96%;
    background: #fff;
    border-radius: 10px;
}

.fazhan_titen {
    font-size: 1rem;
    margin-top: 8px;
    text-transform: uppercase;
}

.fazhan_jian {
    font-size: 16px;
    width: 55%;
    margin-top: 6px;
    line-height: 2;
}

.fanzhan_list {
    width: calc(100% - var(--side-width) - 40px);
    margin-left: var(--side-width);
    margin-right: 40px;
    position: relative;
}

.timeline-swiper {
    position: relative;
    padding-left: 10px;
    padding-top: 10rem;
}

.fanzhan_list .button-prev,
.fanzhan_list .button-next {
    position: absolute;
    top: 50%;
    width: 60px;
    cursor: pointer;
}

.fanzhan_list .button-prev {
    left: 0;
    margin-left: -40px;
}

.fanzhan_list .button-next {
    right: 0;
    margin-right: -40px;
}

.timeline-slide {
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    border-left: 1px dashed #fff;
    padding-bottom: 5rem;
    color: #fff;
    transform: translateY(0);
}

.timeline-ye {
    position: relative;
    top: -10px;
    font-size: 20px;
    margin-bottom: 15px;
    padding-left: 20px;
    color: #fff;
    line-height: 1;
}

.timeline-ye::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 12px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    z-index: 2;
}

.timeline-desc {
    color: #fff;
    line-height: 1.5;
    font-size: 15px;
    padding: 10px 20px;
}

/* 自定义分页器样式 */
.timeline-pagination {
    position: relative;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.timeline-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #bdc3c7;
    opacity: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background-color: #3498db;
}

/* 错落有致的效果（水平布局下依然保留） */
.timeline-slide:nth-child(odd) {
    transform: translateY(10px);
}

.timeline-slide:nth-child(even) {
    transform: translateY(-10px);
}

.timeline-slide.swiper-slide-active:nth-child(odd) .timeline-content,
.timeline-slide.swiper-slide-active:nth-child(even) .timeline-content {
    transform: translateY(0);
}

.danye4 {
    background: #f8f8f8;
    padding-bottom: 4.5rem;
    scroll-margin-top: 60px;
}

.shicha_list {
    margin-top: 3rem;
    width: calc(100% - var(--side-width));
    margin-left: var(--side-width);
}

.shicha_list .swiper-slide {
    position: relative;
}

.shicha_list .swiper-slide:hover .tu img {
    transform: scale(1.1);
}

.shicha_list .tu {
    border-radius: 20px 0 20px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.shicha_list .tu img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 居中 + 占满 */
    object-fit: cover;
    object-position: center;
    transition: all 1s;
}

.shicha_list .info {
    position: absolute;
    color: #fff;
    z-index: 9;
    left: 0;
    bottom: 0;
    padding: 1rem;
}

.shicha_list .info .title {
    font-size: 20px;
    font-weight: bold;
}

.shicha_list .info .jian {
    font-size: 14px;
    text-transform: uppercase;
}

.shicha_list .swiper-button-prev,
.shicha_list .swiper-button-next {
    position: static;
    display: inline-block;
    margin-top: 20px;
    text-align: center;
    opacity: 1;
    height: auto;
}

.shicha_list .swiper-button-prev::after,
.shicha_list .swiper-button-next::after {
    display: none;
}

.danye5 {
    padding-bottom: 10rem;
    scroll-margin-top: 60px;
}

.danye5 .line {
    position: absolute;
    right: calc(-1 * var(--side-width));
    top: 7.6rem;
    width: calc(65% - 40px + var(--side-width));
    height: 1px;
    background: #eaeaea;
}

.danye5 .wenhua {
    margin-top: 6rem;
    height: 18rem;
}

.cul1_list1 {
    width: 30%;
}

.cul1_list1 .swiper-slide .pic {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 47%;
}

.cul1_list1 .swiper-slide .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.cul1_list1 .swiper-slide .tit {
    font-size: 20px;
    color: #2d2d2d;
    margin-top: 15px;
}

.cul1_list1 .swiper-slide .des {
    font-size: 14px;
    color: #525252;
    margin-top: 5px;
}

.cul1_list2 {
    width: calc(70% - 40px);
    padding: 0 12rem 0 6rem;
    position: relative;
}

.cul1_list2 .nav-item {
    color: #d4d4d4;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.cul1_list2 .nav-item.active {
    color: #000000;
}

.cul1_list2 .nav-item .dot {
    width: 10px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 5rem;
    transform: translateX(-50%);
}

.cul1_list2 .nav-item .dot span {
    width: 10px;
    height: 10px;
    background: #dfdfdf;
    border-radius: 50%;
    display: block;
    z-index: 1;
}

.cul1_list2 .sort {
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: bold;
}

.cul1_list2 .info {
    margin-top: 3.75rem;
}

.cul1_list2 .tit {
    font-size: 16px;
}

.cul1_list2 .nav-item .icon {
    width: 100%;
    height: 3.2rem;
    margin-top: 15px;
    text-align: center;
}

.cul1_list2 .nav-item .icon img {
    margin: 0 auto;
    height: 100%;
}

.cul1_list2 .nav-item .icon img:nth-child(1) {
    display: block;
}

.cul1_list2 .nav-item .icon img:nth-child(2) {
    display: none;
}

.cul1_list2 .nav-item.active .icon img:nth-child(1) {
    display: none;
}

.cul1_list2 .nav-item.active .icon img:nth-child(2) {
    display: block;
}

.cul1_list2 .nav-item.active .dot span {
    position: relative;
    background: #1d75e1;
}

.cul1_list2 .nav-item.active .dot::after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    background: #e6e6e6;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.cul1_list2 .swiper-button-prev,
.cul1_list2 .swiper-button-next {
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: 5.1rem;
    z-index: 10;
    display: block !important;
}

.cul1_list2 .swiper-button-prev::after,
.cul1_list2 .swiper-button-next::after {
    content: '';
}

.cul1_list2 .swiper-button-prev {
    background: url('../images/icon/p1.png') no-repeat center;
    right: 80px;
    left: auto;
}

.cul1_list2 .swiper-button-next {
    background: url('../images/icon/n1.png') no-repeat center;
    right: 0px;
}

.cul1_list2 .swiper-button-prev:hover {
    background: url('../images/icon/p2.png') no-repeat center;
    background-size: auto;
    background-size: 100%;
}

.cul1_list2 .swiper-button-next:hover {
    background: url('../images/icon/n2.png') no-repeat center;
    background-size: auto;
    background-size: 100%;
}

.inner_sec_top {
    text-align: center;
}

.inner_name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #373737;
    line-height: 1;
}

.inner_name_en {
    color: #8b8b8b;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 8px;
}

.inner_types {
    text-align: center;
    margin-top: 2rem;
}

.inner_types a {
    display: inline-block;
    padding: 6px 40px;
    border: 1px solid #5e5e5e;
    border-radius: 30px 0 30px 0;
    margin: 3px 10px;
    font-size: 16px;
}

.inner_types a.active {
    color: #0c5caa;
    border-color: #0c5caa;
}

.shili .inner_types a {
    border: none;
    border-radius: 0;
    background: linear-gradient(to right, #006abe, #f7f7f7);
    color: #fff;
    padding: 8px 50px 8px 15px;
    font-size: 16px;
}

.rongyu_list {
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 50px 40px;
    display: none;
}

.rongyu_list.active {
    display: flex;
}

.rongyu_list .rongyu_each {
    flex: 0 0 calc((100% - 4 * 40px) / 5);
    overflow: hidden;
    box-shadow: 0 0 12px 10px #f5f4f3;
}

.rongyu_list .rongyu_each img {
    transition: all 1s;
}

.rongyu_each:hover img {
    transform: scale(1.1);
}

.shili {
    margin-top: 4.5%;
    background: #f7f7f7;
    padding: 3rem 0 6rem;
}

.shili_list {
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 38px 23px;
    display: none;
}

.shili_list.active {
    display: flex;
}

.shili_list .shili_each {
    flex: 0 0 calc((100% - 3 * 23px) / 4);
    overflow: hidden;
    border-radius: 30px 0 30px 0;
}

.shili_list .shili_each img {
    transition: all 1s;
}

.shili_each:hover img {
    transform: scale(1.1);
}

.shili_each div {
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
}

/*新闻中心*/
.article {
    margin-top: 5rem;
}

.tjlist {
    margin-top: 4rem;
    background: #f6f9fc;
}

.tjlist .tjtu {
    width: 50%;
    height: 0;
    padding-bottom: 30%;
    overflow: hidden;
    position: relative;
}

.tjlist .tjtu img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.tjlist:hover img {
    transform: scale(1.1);
}

.tjinfo {
    width: 50%;
    padding: 0 3rem 0 4rem;
    color: #3f3f3f;
}

.tjinfo .tj_time {
    font-size: 1rem;
    margin-top: 2.5rem;
}

.tjinfo .tj_title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
    font-weight: bold;
}

.tjinfo .tj_jian {
    font-size: 1rem;
    line-height: 2.2;
    margin-top: 2rem;
}

.tjinfo .tj_more a {
    color: #737373;
    border: 1px solid #737373;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    margin-top: 6rem;
}

.art_list {
    margin-top: 3.5rem;
}

.art_each {
    padding: 2rem;
    box-shadow: 0 0 20px 6px #f6f6f6;
    margin-bottom: 3rem;
}

.art_each .info {
    width: calc(72% - 50px);
}

.art_each .tit {
    font-size: 1.25rem;
    color: #3a3a3a;
}

.art_each .jian {
    font-size: 0.9rem;
    color: #0f0f0f;
    line-height: 2;
    margin-top: 15px;
}

.art_each .art_more {
    color: #808080;
    border: 1px solid #737373;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-top: 1.5rem;
}

.art_each .pic {
    width: 28%;
    height: 0;
    padding-bottom: 14%;
    overflow: hidden;
    position: relative;
}

.art_each .pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.art_each:hover .tit,
.art_each:hover .art_more {
    color: #006abe;
    border-color: #006abe;
}

.art_each:hover img {
    transform: scale(1.1);
}

/*新闻详情*/
.ns {
    padding-top: 3rem;
}

.newde {
    width: 860px;
}

.ns .tit {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.ns .info {
    color: #555555;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
}

.ns .con {
    color: #121212;
    line-height: 2;
    padding: 1.2rem 0;
    margin-top: 1.2rem;
    border-top: 1px solid #d8d8d8;
    font-size: 0.94rem;
}

/*分页*/
.page {
    padding: 4vw 0;
}

.pagination {
    width: 100%;
    text-align: center;
    font-size: 0;
}

.pagination li {
    display: inline-block;
    text-align: center;
    font-size: 16px;
    color: #757575;
    margin: 3px;
    min-width: 36px;
    line-height: 36px;
    background: #f2f4f6;
    border-radius: 5px;
}

.pagination li.active {
    background: #0f6fc8;;
    color: #fff;
}

.pagination li a {
    display: block;
    text-align: center;
    color: #222222;
    padding: 0 15px;
}

.pagination li span {
    padding: 0 15px;
    display: block;
}

.pagination li.disabled span {
    color: #222222;
    cursor: not-allowed !important;
}

/*分页*/
.fenye {
    padding: 2rem 0 5rem;
    font-size: 0.94rem;
}

.fenye li {
    color: #121212;
    max-width: 50%;
}

.fenye li a {
    color: #121212
}

.fenye li:hover a {
    color: #024a9f
}

/*提供服务*/
.ser_list {
    margin-top: 4%;
}

.ser_part {
    background: #f6f6f6;
    margin-bottom: 4%;
    flex-wrap: wrap;
}

.ser_part .ser_tu {
    width: 49%;
    border-radius: 15px;
    overflow: hidden;
}

.ser_part .ser_tu img {
    width: 100%;
    transition: all 1s;
}

.ser_part .ser_info {
    width: 51%;
    padding-right: 3%;
    padding-left: 3%;
}

.ser_part .ser_tit {
    color: #006abe;
    font-size: 30px;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 2%;
}

.ser_part .ser_tit::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #006abe, #adc9e4);
    border-radius: 10px;
    left: 0;
    bottom: 0;
}

.ser_part .ser_jian {
    color: #252525;
    line-height: 1.8;
    font-size: 18px;
}

.sjconttype {
    display: none;
}

/*招聘*/
.job_list {
    margin-top: 3%;
}

.job_each {
    border: 1px solid #e5e5e5;
    padding: 1% 1.5%;
    margin-bottom: 3rem;
}

.job_top_left .tu {
    border-radius: 50%;
    width: 60px;
}

.job_each .tit {
    color: #291919;
    font-size: 16px;
    margin-left: 15px;
}

.job_each .job_top_rig {
    color: #fff;
    background: #006abe;
    font-size: 14px;
    border-radius: 20px;
    padding: 0.5% 2%;
    text-align: center;
}

.job_bot {
    display: none;
    padding-left: calc(4rem + 15px);
    font-size: 14px;
    line-height: 2;
}

.job_each .arrow-icon {
    width: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.job_each .arrow-icon.rotated {
    transform: rotate(180deg);
}

/*联系我们*/
.inner_cont {
    padding-top: 4.5%;
}

.contactInfo-top {
    padding-top: 5%;
    flex-wrap: wrap;
}

.contactInfo .contactInfo-top .top-left {
    width: 50%;
    padding-right: 5%;
}

.contactInfo .top-left-title {
    font-size: 1.8rem;
    color: #464646;
}

.contactInfo .top-left-text {
    margin: 3% 0;
    font-size: 16px;
    color: #464646;
    line-height: 1.8;
}

.contactInfo .top-right {
    flex-wrap: wrap;
    padding-top: 10px;
    width: 450px;
}

.contactInfo .top-right-item {
    position: relative;
    margin-bottom: 20px;
    padding: 3px 0 0 20px;
    width: 50%;
    font-weight: 400;
    border: 1px solid #f2f2f2;
    padding: 1.5% 3%;
}

.contactInfo .item-num {
    font-size: 2rem;
    color: #15b0ec;
}

.contactInfo .item-text {
    padding-left: 14px;
    font-size: 16px;
    color: #4d4d4d;
}

.contactInfo .item-add {
    position: absolute;
    top: -8px;
    left: 4.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #15b0ec;
}

.contactInfo .top-right-item:nth-child(odd) {
    border-right: none;
}

.contactInfo .contactInfo-bottom {
    margin-top: 3rem;
    margin-bottom: 6%;
}

.contactInfo .contactInfo-bottom .bottom-left {
    width: 40%;
    padding-right: 2%;
    height: 50rem;
}

.contactInfo .contactInfo-bottom .commpanyList-item {
    cursor: pointer;
    color: #464646;
}

.contactInfo .contactInfo-bottom .commpanyList-item .item-title {
    height: 42px;
    padding-left: 1rem;
    font-size: 18px;
    line-height: 42px;
    background: linear-gradient(to right, #c9dff1, #fff);
}

.contactInfo .contactInfo-bottom .commpanyList-item .item-title:hover {
    color: #fff;
    background: linear-gradient(to right, #006abe, #fff);
}

.contactInfo .contactInfo-bottom .item-content {
    padding-left: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 16px;
}

.contactInfo .contactInfo-bottom .content-box {
    margin-bottom: 20px;
}

.contactInfo .contactInfo-bottom .content-box img {
    width: 20px;
    margin-right: 5px;
}

.contactInfo .bottom-right {
    width: 50%;
}

/*样板案例*/
.cases .sampleProject-main .projectType {
    gap: 12px;
    font-size: 16px;
    color: #8b8b8b;
    text-align: center;
    flex-wrap: wrap;
}

.cases .sampleProject-main .projectType span {
    font-weight: bold;
    line-height: 38px;
    border: 1px solid #8b8b8b;
    width: calc((100% - 6 * 12px) / 7);
    border-radius: 6px;
}

.cases .sampleProject-main .projectType a {
    width: calc((100% - 6 * 12px) / 7);
    background: #f1f6fb;
    line-height: 40px;
    cursor: pointer;
    border-radius: 6px;
    display: block;
    color: #8b8b8b;
}

.cases .sampleProject-main .projectType.en span,
.cases .sampleProject-main .projectType.en a {
    width: auto;
    padding: 0 10px;
}

.cases .sampleProject-main .projectType a.active {
    color: #fff;
    background: #006abe;
}

.cases .sampleProject-main .topProject {
    margin: 3% auto 6rem;
    min-height: 380px;
    background: linear-gradient(to right, #ebf3fa, #fff);
    flex-wrap: wrap;
}

.cases .sampleProject-main .topProject .topProject-left {
    position: relative;
    display: flex;
    align-items: center;
    width: 48%;
    background: #000;
    overflow: hidden;
}

.cases .sampleProject-main .topProject .topProject-left video {
    width: 100%;
    height: 100%;
}

.cases .sampleProject-main .topProject .topProject-left img {
    width: 100%;
}

.cases .sampleProject-main .topProject .topProject-right {
    position: relative;
    padding-left: 3%;
    width: 52%;
}

.cases .sampleProject-main .topProject .topProject-right > img {
    position: absolute;
    top: 18px;
    right: 28px;
}

.cases .sampleProject-main .topProject .topProject-right > a {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #000000;
    line-height: 1.3;
    display: block;
}


.cases .topProject-right .content {
    margin-top: 2rem;
}

.cases .topProject-right .effect {
    margin-top: 20px;
}

.cases .topProject-right .content div,
.cases .topProject-right .effect div {
    margin: 10px 0 15px 0;
    line-height: 2;
    color: #5a5a5a;
    font-size: 16px;
}

.cases .topProject-right .content .title img,
.cases .topProject-right .effect .title img {
    width: 1.4rem;
    margin-top: 2px;
}

.cases .topProject-right .content .title span,
.cases .topProject-right .effect .title span {
    margin-left: 8px;
    font-size: 20px;
    color: #000;
    line-height: 1;
}

.cases .moreProject-box {
    padding: 4% 0;
    background: #edf7ff;
}

.cases .sampleProject-main .moreProject .more-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 30px;
}

.cases .moreProject .more-title-box > div {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1d1d1d;
    line-height: 1;
}

.cases .moreProject .more-title-box .title-search {
    width: 300px;
    border-radius: 60px;
    border: 1px solid #74afde;
    padding-left: 15px;
    background: #fff;
}

.cases .moreProject .more-title-box .title-search input {
    height: 34px;
    font-size: 14px;
    margin-left: 5px;
    border: none;
    font-weight: 200;
    color: #bfc0c1;
}

.cases .moreProject .more-title-box .title-search .button {
    background: #006abe;
    border-radius: 60px;
    line-height: 35px;
    font-size: 14px;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
    text-align: center;
}

.cases .moreProject .more-list-box {
    gap: 35px;
    flex-wrap: wrap;
}

.cases .moreProject .more-list-box .more-item-box {
    width: calc((100% - 3 * 35px) / 4);
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
}

.cases .moreProject .more-list-box .more-item-box img {
    width: 100%;
    object-fit: cover;
}

.cases .moreProject .more-list-box .more-item-box .info {
    padding: 15px;
    color: #444444;
    font-size: 16px;
    width: 100%;
}

.cases .moreProject .more-list-box .more-item-box .info .more-item-title {
    width: 80%;
    flex-shrink: 0;
}

.cases .moreProject .more-list-box .more-item-box .info .more-item-content {
    width: 6%;
}

/*样板详情*/
.cases_det {
    flex-wrap: wrap;
}

.cases_rig {
    width: calc(100% - 300px - 60px);
    padding-bottom: 3%;
}

.cases_name {
    font-size: 24px;
    line-height: 1;
    position: relative;
    padding-left: 12px;
    margin-top: 1rem;
}

.cases_name::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3%;
    width: 5px;
    height: 100%;
    background: #0d74cf;
    border-radius: 5px;
}

.cases_banner {
    margin-top: 2rem;
}

.cases_banner .preview {
    width: 500px;
    padding: 0 40px;
    margin-top: 1rem;
    position: relative;
}

.cases_banner .preview .swiper {
    padding-bottom: 1px;
}

.cases_banner .preview .swiper-slide {
    width: 98px;
    cursor: pointer;
}

.cases_banner .preview .arrow-left {
    background: url('../images/89.jpg') no-repeat left top;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    z-index: 10;
}

.cases_banner .preview .arrow-right {
    background: url('../images/90.jpg') no-repeat left bottom;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    z-index: 10;
}

.cases_banner .preview img {
    padding: 1px;
}

.cases_banner .preview .active-nav img {
    padding: 0;
    border: 1px solid #006abe;
}

.detailInfo {
    margin-top: 5rem;
}

.detailInfo > ul {
    display: flex;
    width: 100%;
    height: 57px;
    background: #f9f9fa;
    opacity: 1;
    border-bottom: 1px solid #eeeeee;
}

.detailInfo > ul.fixed {
    position: fixed !important;
    top: 0;
    z-index: 100;
    width: calc(100% - var(--side-width) * 2 - 300px - 60px);
}

.detailInfo > ul li {
    padding: 16px 24px;
    cursor: pointer;
    font-size: 18px;
    color: #666666;
    border-bottom: 3px solid #f9f9fa;
}

.detailInfo > ul li.active {
    font-weight: bold;
    color: #006abe;
    border-color: #006abe;
}

.detailInfo > div {
    padding: 35px 0;
    border-bottom: 1px solid #d9d9d9;
}

.detailInfo > div .ant-typography {
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: normal;
}

.detailInfo > div .ant-card {
    font-size: 16px;
    color: #64676c;
    text-align: left;
    line-height: 1.88;
}

.detailInfo > div .ant-card img {
    max-width: 100%;
    height: auto;
}


/*手机导航*/
.head_3g .main {
    height: 5rem;
}

.head_kong.phone{
    height: 5rem;
}

.logo_3g img {
    height: 3rem;
}

.nav img {
    height: 1.5rem;
    cursor: pointer;
}

.search2 img {
    height: 2rem
}

.head_3g .lan {
    width: 0.3rem;
    line-height: 0.3rem;
    height: 0.3rem;
    font-size: 0.15rem;
    margin: 0 0.1rem;
}

.ss {
    width: 0;
    height: 0.35rem;
    overflow: hidden;
    z-index: 7;
    font-size: 0.14rem;
    top: 0.5rem;
}

.ss .ss_btn {
    line-height: 0.35rem;
}

.ss .ss_bd {
    height: 0.35rem;
}

body.open {
    height: 100%;
    overflow: hidden;
}

body.open #sidebar {
    width: 70%
}

#sidebar {
    width: 0%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    overflow-x: hidden;
    overflow-y: auto;

    transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    z-index: 1001;
}

#sidebar ul li {
    display: block;
    min-height: 45px;
    border-bottom: 1px solid #dddddd;
    font-size: 15px;
    width: 100%;
}

.agent-mobile #sidebar ul li {
    border-color: rgba(255, 255, 255, .05);
}

#sidebar ul li > a {
    display: block;
    color: #333333;
    padding: 0 15px;
    height: 65px;
    line-height: 65px;

}

#close {
    position: absolute;
    right: 2rem;
    top: 1rem;
}

#close img {
    height: 1.5rem;
}


/*行业应用*/
.industry_list {
    margin-top: 3rem;
}

.industry_each {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 6%;
    padding-bottom: 10%;
    margin-bottom: 3%;
    overflow: hidden;
}

.industry_each.ji {
    padding-left: 5%;
    border-radius: 10px 120px 10px 10px;
}

.industry_each.ou {
    padding-right: 5%;
    text-align: right;
    border-radius: 120px 10px 10px 10px;
}

.industry_each.ou .ind_jian {
    margin-left: 64%;
}

.industry_each .ind_tit {
    font-size: 30px;
    font-weight: bold;
}

.industry_each .ind_jian {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
    width: 36%;
}

.industry_each .ind_jian.en {
    width: 90%;
    word-break: break-all;
}

.industry_each.ou .ind_jian.en {
    margin-left: 10%;
}


/*解决方案*/
.solute_banner {
    position: relative;
}

.solute_banner img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    object-fit: cover;
}

.solute_banner .lanmu {
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.solute_banner .lanmu.en {
    width: 80%;
}

.solute_banner .lanmu .lmname {
    font-size: 3.125rem;
    font-weight: bold;
}

.solute_banner .lanmu .lmjian {
    font-size: 1.125rem;
    margin-top: 12px;
}

.solute_index_banner .lanmu {
    text-align: left;
    left: var(--side-width);
    transform: translate(0, -50%);
}

.solute_index_banner .lmdesc {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.01));
    padding: 10px 0;
    margin-top: 12px;
    display: inline-block;
}

.solute_box {
    margin-top: 3%;
}

.solute_tit {
    position: relative;
    font-size: 1.4rem;
    padding-left: 14px;
    line-height: 1.1;
}

.solute_tit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #006abe;
    border-radius: 4px;
}

.solute_cont {
    font-size: 16px;
    line-height: 1.8;
    padding: 0 14px;
    margin-top: 1.5%;
}

.solute_yblist {
    margin-top: 1.5%;
    flex-wrap: wrap;
    gap: 30px;
}

.solute_ybtu {
    width: calc((100% - 2 * 30px) / 3);
    overflow: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.solute_ybtu img {
    width: 100%;
    transition: all 1s;
}

.solute_ybtu:hover img {
    transform: scale(1.1);
}


/*产品详情*/
.prodetail {
    background: #ebf0f4;
}

.prod_zutu {
    padding-top: 6%;
    padding-bottom: 5%;
    background: #e4e8ee;
}

.prod_zutu .main {
    flex-wrap: wrap;
}

.zutu_left {
    width: 52%;
    padding-right: 3%;
}

.prodetail .prod_tit {
    font-size: 2rem;
    font-weight: bold;
}

.prod_canshu {
    margin-top: 4%;
    line-height: 3;
    font-size: 16px;
}

.pord_xiaotu {
    margin-top: 5%;
}

.zutu_rig {
    width: 48%;
}

.zutu_left .xiaotu .swiper-slide {
    background: #fff;
    border-radius: 12px;
    border: 2px solid #dcdcdc;
    padding: 2%;
}


.zutu_left .xiaotu .swiper-slide.active-nav {
    border-color: #5eb7ff;
}

.zutu_rig .swiper-slide {
    opacity: 0;
    transition: all 0.2s;
    border-radius: 8px;
    overflow: hidden;
}

.zutu_rig .swiper-slide img {
    width: 100%;
}

.zutu_rig .swiper-slide-active {
    opacity: 1;
}

.prod_rexian {
    padding: 3% 0;
    background: url("../images/73.png") no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
}

.prod_rexian img {
    width: 3.5rem;
    margin-right: 12px;
}

.prod_jian_cont {
    padding: 15px;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 2%;
}

.prod_jishu {
    background: #006abe;
    padding: 3% 0 4%;
}

.prod_jishu .solute_tit {
    color: #fff;
}

.prod_jishu .solute_tit:before {
    background: #fff;
}

.prod_jishu_list {
    margin-top: 3%;
    gap: 45px;
    flex-wrap: wrap;
}

.prod_jishu_ech {
    width: calc((100% - 3 * 45px) / 4);
    background: #fff;
    border-radius: 10px;
}

.prod_jishu_ech .tu {
    overflow: hidden;
}

.prod_jishu_ech .tu img {
    width: 100%;
    transition: all 1s;
}

.prod_jishu_info {
    padding: 4% 12px 8%;
}

.prod_jishu_ech .tit {
    font-size: 16px;
    color: #2c3844;
}

.prod_jishu_ech .jian {
    font-size: 14px;
    color: #777777;
    line-height: 1.6;
    margin-top: 2%;
}

.prod_jishu_ech:hover .tu img {
    transform: scale(1.1);
}

.prod_gongyi_table,
.prod_xuanxing_table {
    padding: 15px;
    font-size: 16px;
    line-height: 2;
}

.prod_gongyi_table table,
.prod_xuanxing_table table {
    margin-top: 3%;
    width: 100%;
}

.prod_gongyi_table th,
.prod_xuanxing_table th {
    background: #1660a7;
    color: #fff;
    font-size: 16px;
}

.prod_gongyi_table td,
.prod_xuanxing_table td {
    color: #333333;
    font-size: 16px;
    text-align: center;
}

.prod_gongyi_table th,
.prod_gongyi_table td,
.prod_xuanxing_table th,
.prod_xuanxing_table td {
    font-weight: 400;
    line-height: 1.6;
    padding: 1.2% 10px;
}

.prod_gongyi_table tbody tr:nth-child(2n-1),
.prod_xuanxing_table tbody tr:nth-child(2n-1) {
    background: #f4f5f7;
}

.prod_gongyi_table tbody tr:nth-child(2n),
.prod_xuanxing_table tbody tr:nth-child(2n) {
    background: #fff;
}

/*.prod_xuanxing_table {*/
/*    padding: 15px;*/
/*}*/

/*.prod_xuanxing_table table {*/
/*    margin-top: 3%;*/
/*    width: 100%;*/
/*    border: 1px solid #dddddd;*/
/*    border-collapse: collapse;*/
/*}*/

/*.prod_xuanxing_table th,*/
/*.prod_xuanxing_table td {*/
/*    font-weight: 400;*/
/*    line-height: 1.6;*/
/*    padding: 1.2% 10px;*/
/*    background: #fff;*/
/*    border-bottom: 1px solid #dddddd;*/
/*    border-right: 1px solid #dddddd;*/
/*}*/

/*.prod_xuanxing_table th {*/
/*    color: #000000;*/
/*    font-weight: bold;*/
/*}*/

/*.prod_xuanxing_table td {*/
/*    color: #838c9b;*/
/*    font-size: 16px;*/
/*}*/

/*.prod_xuanxing_table tr td:first-child {*/
/*    color: #333333;*/
/*}*/

.prod_jishu.yingyong {
    margin-top: 5%;
}

.prod_jishu.yingyong .jian {
    color: #816b6b;
}

.prod_jishu.yingyong .jian img {
    margin-left: 6px;
    width: 18px;
    display: block;
}

.prod_jishu.yingyong .bai {
    display: none;
}

.prod_jishu.yingyong .prod_jishu_ech:hover {
    background: #1660a7;
}

.prod_jishu.yingyong .prod_jishu_ech:hover .tit,
.prod_jishu.yingyong .prod_jishu_ech:hover .jian {
    color: #fff;
}

.prod_jishu.yingyong .prod_jishu_ech:hover .hui {
    display: none;
}

.prod_jishu.yingyong .prod_jishu_ech:hover .bai {
    display: block;
}

.prod_jishu.yingyong .prod_jishu_list {
    gap: 20px;
}

.prod_jishu.yingyong .prod_jishu_ech {
    width: calc((100% - 3 * 20px) / 4);
    border-radius: 14px;
    overflow: hidden;
}

/*产品列表*/
.pro_cont {
    flex-wrap: wrap;
    gap: 60px;
}

.pro_left {
    width: 300px;
}

.pro_right {
    width: calc(100% - 300px - 60px);
    padding-bottom: 3%;
}

.pro_seach {
    border: 1px solid #c9c9c9;
    border-radius: 8px;
}

.pro_seach input {
    line-height: 45px;
    padding-left: 12px;
    border: none;
    font-size: 15px;
    border-radius: 8px;
}

.pro_seach #searc {
    padding: 0 12px;
    background: linear-gradient(to right, #1275d0, #1d8ef5);
    border-radius: 0 8px 8px 0;
}

.pro_seach #searc img {
    width: 22px;
}

.search-suggest {
    margin-top: 2px;
    padding: 5px 0;
}

.search-suggest li {
    padding: 8px 10px;
    cursor: pointer;
    list-style: none;
    font-size: 14px;
}

.search-suggest li:hover {
    background-color: #f5f5f5;
}

.pro_left .type {
    margin-top: 1rem;
}

.pro_left .type li {
    line-height: 60px;
    margin-bottom: 1px;
    font-size: 15px;
}

.pro_left .type li dd.active a {
    color: #0f6fc8;
}

.pro_left .type.en li {
    line-height: 25px;

}

.pro_left li .type_one {
    padding-left: 40px;
    padding-right: 40px;
    background: #eeeeee;
}

.pro_left li .type_one.en {
    padding-left: 10px;
    padding-right: 10px;

    padding-top: 17.5px;
    padding-bottom: 17.5px;
}

.pro_left li.active .type_one {
    background: url("../images/82.png") no-repeat;
    color: #fff;
    background-size: cover;
}

.pro_left li.active .type_one a {
    color: #fff;
}

.pro_left li img {
    width: 14px;
}

.pro_left li.active .bai {
    display: block;
}

.pro_left li .bai,
.pro_left li.active .hui {
    display: none;
}

.pro_left .sub_nav {
    display: none;
    overflow: hidden;
}

.pro_left .sub_nav a {
    color: #020202;
    padding-left: 50px;
    padding-right: 50px;
}

.pro_left .sub_nav.en dd {
    padding-top: 8px;
    padding-bottom: 8px;
}

.pro_left .sub_nav.en a {
    padding-left: 10px;
    padding-right: 10px;
}

.pro_left li .sub_nav.active,
.pro_left li .sub_nav.show {
    display: block;
}

.pro_cj_left {
    font-size: 16px;
    width: 80px;
    line-height: 27px;
    flex-shrink: 0;
}

.pro_cj_rig {
    flex-wrap: wrap;
    gap: 20px;
}

.pro_cj_rig a {
    font-size: 16px;
    background: #ebebeb;
    border-radius: 5px;
    padding: 0 20px;
    line-height: 30px;
}

.pro_cj_rig a.active {
    background: #0f6fc8;
    color: #fff;
}

.pro_list {
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 30px;
}

.pro_list a {
    width: calc((100% - 2 * 30px) / 3);
}

.pro_each {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
}

.pro_each .pic {
    height: 0;
    padding-bottom: 70%;
    position: relative;
}

.pro_each .pic img {
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
}

.pro_info {
    padding: 25px 15px;
    color: #251313;
}

.pro_info .tit {
    font-size: 18px;
    font-weight: bold;
}

.pro_info .keywords {
    font-size: 16px;
    margin-top: 1%;
    max-width: 80%;
}

.pro_info .pro_icon img {
    width: 22px;
    margin-top: 1%;
}

.pro_each:hover {
    background: #207ad0;
}

.pro_each:hover .pro_info {
    color: #fff;
}

.pro_each:hover .hui,
.pro_info .bai {
    display: none;
}

.pro_each:hover .bai {
    display: block;
}


/*解决方案*/
.solu_part {
    background: #f6f6f6;
    margin-bottom: 4%;
    flex-wrap: wrap;
    scroll-margin-top: 80px;
}

.solu_part:nth-child(2n-1) {
    border-radius: 20px 30px 30px 10px;
}

.solu_part .ser_tu {
    width: 49%;
    border-radius: 0 30px 30px 30px;
    overflow: hidden;
}

.solu_part .ser_tu img {
    width: 100%;
    transition: all 1s;
}

.solu_part .ser_info {
    width: 51%;
    padding-right: 3%;
    padding-left: 3%;
}

.solu_part .ser_tit {
    color: #006abe;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    position: relative;
    margin-bottom: 3%;
    padding-left: 10px;
}

.solu_part .ser_tit_fu {
    color: #464646;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 3%;
    padding-left: 10px;
}

.solu_part .ser_tit::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #006abe, #8ebce1);
    border-radius: 0 10px 0 10px;
    left: 0;
    top: 0;
}

.solu_part .ser_jian {
    color: #7b7b7b;
    line-height: 1.8;
    font-size: 16px;
    padding-left: 10px;
    margin-bottom: 3%;
}

.solu_list .solu_part:nth-child(2n) {
    border-radius: 30px 20px 10px 30px;
}

.solu_list .solu_part:nth-child(2n) .ser_tu {
    border-radius: 30px 0 30px 30px;
}

.solu_part a {
    margin-left: 10px;
    background: #d6ecff;
    color: #1a70b9;
    font-size: 16px;
    padding: 4px 15px;
    border: 1px solid #006abe;
    display: inline-flex;
    align-items: center;
}

.solu_part a img {
    width: 20px;
    display: inline-block;
}

/*搜索*/
.search_list .infolist {
    margin-top: 3rem;
    margin-bottom: 5rem;
    font-size: 16px;
}

/*智慧水务*/
.m3proCon1 {
    position: relative;
    overflow: hidden;
    background: #F7F7F7;
    flex-wrap: wrap;
}

.m3proc1mv {
    width: 50%;
}

.m3proc1mv img {
    width: 100%;
}

.m3proc1mv2 {
    width: 45%;
}

.m2pubTx {
    line-height: 1.8;
}

.m2pubTxnm {
    display: inline-block;
    font-size: 32px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1;;
}

.m2pubTxnm:before {
    content: "";
    height: 5px;
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 100%;
    border-radius: 4px;
    background: linear-gradient(to right, #2d7cc4 0%, #abc8e4 100%);
}

.m2pubTxnm span {
    display: inline-block;
    position: relative;
    z-index: 1;
    color: #006abe;
    font-weight: bold;
}

.m3pubjie {
    margin-left: 15px;
    margin-top: 30px;
    width: 60%;
}

.m3proc2Imgx {
    width: 35%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/m3pro_imgx1_02.png') no-repeat center center;
    background-size: cover;
    padding-bottom: 4%;
    border-radius: 20px;
}

.m3proc2Imgx img {
    width: 98%;
    height: 98%;
    margin: 1% 1%;
    border-radius: 20px;
}

.m3proc1txt {
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    margin: 1.2rem 0px;
    padding-right: 3rem;
}

.m3proc1txt.en {
    height: 20rem;
    overflow-y: scroll;
}

.m3proc1btn a {
    line-height: 52px;
    height: 52px;
    width: 158px;
    padding-left: 27px;
    background: #004b9f url(../images/m3pro_c1i.png) no-repeat 114px center;
    font-size: 16px;
    color: #FFF;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 0.2em;
}

.m3proc1btn a:hover {
    box-shadow: 0 3px 15px rgba(0, 75, 159, 0.3);
    transform: translateY(-3px);
}

.m3proCon2Wpr {
    background: #f7f7f7;
    margin-top: 6rem;
    padding: 3rem 0 1.5rem;
}

.m3proCon2 {
    flex-wrap: wrap;
    position: relative;
}

.m3proCon3 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.m3proc3dls {
    margin-top: 1rem;
    flex-wrap: wrap;
}

.m3proc3dls dl {
    width: 50%;
    padding: 0 2.6vw;
    margin-top: 2rem;
    min-height: 76px;
}

.m3proc3dls dl dt {
    line-height: 38px;
    margin-left: 6px;
    position: relative;
    padding-left: 110px;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.m3proc3dls dl dt span {
    background: #F4F4F4;
    height: 76px;
    width: 76px;
    position: absolute;
    left: 0px;
    top: 0px;
    border-radius: 0.8em;
}

.m3proc3dls dl dt span img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.m3proc3dls dl dt strong {
    display: block;
    font-weight: normal;
}

.m3proc3dls dl dd {
    padding-left: 110px;
    font-size: 16px;
    line-height: 1.8;
}

.m3proc3dls dl dd p {
    padding-left: 14px;
    position: relative;
}

.m3proc3dls dl dd p:after {
    content: "";
    width: 5px;
    height: 5px;
    background: #1178D9;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

.m3proCon4Wpr {
    background: #f7f7f7;
    padding: 2rem 0;
}

.m3proCon4 {
    flex-wrap: wrap;
}

.m3proCon4_left {
    width: 45%;
}

.m3proc4Imgs {
    width: 50%;
    position: relative;
}

.m3proc4Imgs .bgImg {
    height: 50%;
    width: 65%;
    position: absolute;
    left: 17.5%;
    top: 24.5%;
    overflow: hidden;
    border-radius: 1.4rem;
}

.bgImg img {
    display: block !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0%;
    top: 0%;
}

.m3pro_c4txt {
    font-size: 16px;
    line-height: 2;
    margin: 1.2rem 0;
}

.m4case {
    padding: 2rem 0;
}

.m4caselist {
    margin-top: 2rem;
    gap: 30px;
    flex-wrap: wrap;
}

.m4casetu {
    border-radius: 15px;
    overflow: hidden;
    width: calc((100% - 2 * 30px) / 3);
}

.m4casetu img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.m4casetu:hover img {
    transform: scale(1.1);
}

/* 放大预览遮罩层 */
.img-preview-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    justify-content: center;
}

/* 预览图片容器 */
.img-preview-box {
    width: 90vw;
    height: 90vh;
    position: relative;
    margin: 5vh 5vw;
}

.img-preview-box img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    border-radius: 6px;
}

/* 关闭按钮 */
.img-preview-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

/*荣誉资质分页*/
.pagination_tech {
    gap: 8px;
    margin: 10px 0 30px;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.page-item {
    min-width: 36px;
    line-height: 36px;
    background: #f2f4f6;
    border-radius: 5px;
    cursor: pointer;
    color: #757575;
}

.page-item.active {
    background: #0f6fc8;
    color: #fff;
}

.page-prev, .page-next {
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
    margin: 0 3px;
    background: #f2f4f6;
}

.shili_each div {
    font-size: 14px;
}