.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: #224178;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224, 27%, 35%, 0.6);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #ffffff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #ffffff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #ffffff;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes resize {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../image/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../image/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}


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

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

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

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    line-height: 1;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
th,
td,
p,
blockquote,
pre,
form,
fieldset,
legend,
input,
button,
textarea,
hr,
span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
}

html,
body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: 'Microsoft YaHei' !important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type='button'],
input[type='submit'],
input[type='reset'],
input[type='text'] {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #265a9b;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    /* padding-top: 80px; */
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
    }
}

.rotate {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.rotate img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.wrap:after,
.clearflex:after {
    content: '';
    display: table;
    clear: both;
}

.wrap {
    width: 1479px;
    padding: 0px 15px;
    max-width: 100%;
    margin: auto;
}

.head.current {
    background: #ffffff;
    box-shadow: 0px 11px 43px 0px rgba(0, 0, 0, 0.16);
}

.head {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 777;
}

.head li:hover .slideType2 {
}

.head .slideType2 {
    position: fixed;
    /* left: 10px; */
    top: 80px;
    background: #fff;
    box-shadow: 0px 0px 15.75px 5.25px rgb(0 0 0 / 4%);
    background-color: #f5f5f5;
    padding-left: 318px;
    display: none;
}

.head .slideType2 .left {
    width: 318px;
    height: 423px;
    float: left;
    padding: 62px 38px 98px;
    position: relative;
    background: url(../image/navbg.png) no-repeat center center #28282b;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0px;
    height: 100%;
}

.head .slideType2 .title {
    font-weight: bold;
    line-height: 1.75;
    position: relative;
    z-index: 1;
    font-size: 24px;
    color: #fff;
}

.head .slideType2 .dec {
    margin-top: 28px;
    color: #acacac;
    font-size: 16px;
    line-height: 2;
    position: relative;
    z-index: 1;
}

.head .slideType2 .right {
    padding: 46px 65px 52px;
    background-color: #f5f5f5;
    float: right;
}

.head .slideType2 .item:last-child {
    margin: 0px;
}

.head .slideType2 .item {
    margin-right: 86px;
    /* display: flex; */
    /* flex-flow: column; */
    /* flex-wrap: wrap; */
    /* height: 228px; */
    float: left;
    width: 140px;
}

.head .slideType2 .item a:hover {
    color: #265a9b !important;
}

.head .slideType2 .item a {
    margin-bottom: 12px;
    line-height: 28px;
    display: block;
    color: #333;
    font-size: 16px;
    background: url(../image/more8.png) no-repeat right center;
    background-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 25px;
}

.head .logo {
    float: left;
    margin-top: 24px;
    position: relative;
}

.head .logo img.current {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
}

.head .logo img.default {
    opacity: 1;
}

.current.head .logo img.current {
    opacity: 1;
}

.current.head .logo img.default {
    opacity: 0;
}

.head .logo img {
}

.head .nav {
    padding-left: 130px;
    float: left;
}

.head .nav li {
    float: left;
    padding: 0 20px;
    position: relative;
}

.head .nav li .h2tit {
}

.head .nav li.current .h2tit a,
.head .nav li:hover .h2tit a,
.head .link a:hover {
    color: #265a9b !important;
}

.current.head .nav li .h2tit a {
    color: #333;
}

.head .nav li .h2tit a {
    display: block;
    line-height: 80px;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #fff;
}

.head .nav li:hover .slide {
}

.head .nav li .slide {
    position: absolute;
    width: 100%;
    left: 0;
    top: 80px;
    background: rgb(0 0 0 / 0.15);
    padding-bottom: 116px;
    display: none !important;
}

.head .nav li .slide .text {
    width: 198px;
    font-size: 20px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #ffffff;
    line-height: 43px;
    padding-top: 227px;
    float: left;
}

.head .nav li .slide .right {
    float: right;
    padding-top: 66px;
    width: calc(100% - 300px);
}

.head .nav li .slide .title {
    font-size: 28px;
    font-family: SourceHanSansSC;
    font-weight: bold;
    color: #ffffff;
    padding-bottom: 32px;
    border-bottom: 1px solid #eeeeee;
    padding-left: 61px;
    text-align: left;
}

.head .nav li .slide .secMenu {
}

.head .nav li .slide .item:nth-child(3n) {
    margin-right: 0px;
    border: none;
}

.head .nav li .slide .item {
    float: left;
    width: calc((100% - 120px) / 3);
    margin-top: 60px;
    margin-right: 60px;
    height: 478px;
    border-right: 1px dashed #ffffff;
}

.head .nav li .slide .item a {
    font-size: 23px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #fefefe;
    margin-bottom: 106px;
    display: block;
    background: url(../image/more.png) no-repeat 60% center;
}

.head .nav li .slide .item:last-child {
}

.head .nav li .slide .item a:last-child {
}

.head .link {
    float: right;
}

.head .link a {
    float: left;
    font-size: 20px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #fff;
    line-height: 80px;
}

.current.head .link a {
    color: #333;
}

.current.head .link a.link1 {
    background: url(../image/link.png) no-repeat left center;
}

.head .link a.link1 {
    padding-left: 35px;
    background: url(../image/linkwhite.png) no-repeat left center;
}

.head,
.head *:not(.slide, .slideType2) {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.banner {
    position: relative;
}

.banner .swiper-slide-active .imgbox {
    -webkit-transform: none;
    -o-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
}

.banner .imgbox {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    height: 100%;
    -webkit-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    -webkit-transition: all 9.4s;
    -o-transition: all 9.4s;
    -moz-transition: all 9.4s;
    -ms-transition: all 9.4s;
    transition: all 9.4s;
}

.banner .imgContent {
    overflow: hidden;
    position: relative;
}

.banner .content {
    padding-top: 25%;
    padding-bottom: 16%;
    z-index: 5;
    position: relative;
    display: flex;
    flex-direction: column;
}

.banner .title {
    font-size: 60px;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    color: #ffffff;
}

.banner .dec {
    font-size: 40px;
    font-family: FZLTDHK;
    font-weight: normal;
    color: #ffffff;
    padding-top: 33px;
}

.banner .swiper-pagination {
    bottom: 40px;
}

.banner .swiper-pagination * {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    margin: 0px 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 1;
}

.banner .swiper-pagination *.swiper-pagination-bullet-active {
    width: 50px;
    height: 12px;
    background: #265a9b;
    border-radius: 6px;
}

.banner .warning {
    z-index: 5;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 102px;
    text-align: right;
}

@keyframes move {
    from {
        -o-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

    to {
        -o-transform: translate(0%, 10px);
        -webkit-transform: translate(0%, 10px);
        -moz-transform: translate(0%, 10px);
        -ms-transform: translate(0%, 10px);
        transform: translate(0%, 10px);
    }
}

@-moz-keyframes move {
    from {
        -o-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

    to {
        -o-transform: translate(0%, 10px);
        -webkit-transform: translate(0%, 10px);
        -moz-transform: translate(0%, 10px);
        -ms-transform: translate(0%, 10px);
        transform: translate(0%, 10px);
    }
}

@-webkit-keyframes move {
    from {
        -o-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

    to {
        -o-transform: translate(0%, 10px);
        -webkit-transform: translate(0%, 10px);
        -moz-transform: translate(0%, 10px);
        -ms-transform: translate(0%, 10px);
        transform: translate(0%, 10px);
    }
}

@-o-keyframes move {
    from {
        -o-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        -moz-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
    }

    to {
        -o-transform: translate(0%, 10px);
        -webkit-transform: translate(0%, 10px);
        -moz-transform: translate(0%, 10px);
        -ms-transform: translate(0%, 10px);
        transform: translate(0%, 10px);
    }
}

.banner .warning span:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 50px;
    background: url(../image/down.png) no-repeat right center;
    background-size: auto 75%;
    animation: move 0.5s infinite;
    -webkit-animation: move 0.5s infinite;
    -o-animation: move 1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: ease-in;
    -webkit-animation-timing-function: ease-in;
}

.banner .warning span {
    display: inline-block;
    position: relative;
    line-height: 76px;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0px 5px 2px rgba(0, 0, 0, 0.2);
    padding-right: 47px;
}

.section3 .bd {
    position: relative;
}

.section1 .title,
.section2 .title,
.section5 .title,
.section6 .title,
.section3 .title.wow {
    text-align: center;
    font-size: 40px;
    font-family: SourceHanSansSC;
    font-weight: bold;
    color: #333333;
    padding-top: 111px;
}

.section1.section10 .title {
    padding-top: 51px;
}

.section1 .dec0,
.section2 .dec0,
.section5 .dec0,
.section6 .dec0,
.section3 .dec0 {
    width: 100%;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #949494;
    line-height: 36px;
    margin: auto;
    padding-top: 64px;
    margin-bottom: 102px;
    max-width: 100%;
    text-align: center;
}

.section1,
.section10 .dec0 {
    padding-top: 34px;
    margin-bottom: 52px;
}

.section1.section10 {
    margin-bottom: 0;
}

.cooperative-box .solutions-list {
    margin-top: 60px;
}

.cooperative-box .solutions .title {
    line-height: 1.6;
}

.cooperative-box .section1:last-of-type {
    padding-bottom: 100px;
}

.ai.caseMain {
    padding-bottom: 0;
}

.ai .tabs-box {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    font-size: 16px;
}

.ai .tabs-box a {
    padding-bottom: 15px;
    color: #333;
    border-bottom: 3px solid transparent;
}

.ai .tabs-box a.active,
.ai .tabs-box a:hover {
    color: #224178;
    border-bottom: 3px solid #224178;
}

.ai-box .section1.section10:nth-child(2) {
    padding-top: 0;
}

.ai-box .caseMain.ai {
    padding-top: 0;
}

.ai-box .scene-box,
.section11 {
    background-color: #f8f8f8;
}

.section11.section1 {
    padding-bottom: 100px;
}

.ai-box .scene-box .title,
.ai-box .section11 .title {
    padding-top: 45px;
    padding-bottom: 45px;
}

.ai-box .scene-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.ai-box .scene-box .item-wrap {
    width: 50%;
    box-sizing: border-box;
    padding: 13px;
}

.ai-box .scene-box .scene-item {
    padding: 30px 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-box .scene-box img {
    height: 118px;
}

.ai-box .scene-box .scene-info {
    flex: 1;
    margin-left: 30px;
}

.ai-box .scene-box .name {
    font-size: 24px;
    margin-bottom: 20px;
}

.ai-box .scene-box .content {
    font-size: 14px;
    color: #999999;
    line-height: 2;
}

.ai-box .aibox {
    display: flex;
    margin-top: 30px;
}

.ai-box .aibox p {
    flex: 1;
    color: #999999;
    line-height: 2;
    margin-top: 30px;
    font-size: 16px;
}

.ai-box .aibox .aibox-img {
    width: 45%;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 140px;
    background-color: #fff;
}

.ai-box .aibox .aibox-img img {
    width: 80%;
}

.ai-box .aiability {
    display: flex;
    flex-wrap: wrap;
}

.ai-box .aiability .ability-wrap {
    width: 50%;
    padding: 10px;
}

.ai-box .aiability .ability-item {
    padding: 0 40px;
    background-color: #f0f7fe;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.ai-box .aiability img {
    height: 80px;
    margin-right: 40px;
}

.ai-box .aiability .ability-info {
    flex: 1;
}

.ai-box .aiability .name {
    font-size: 24px;
    margin-bottom: 10px;
}

.ai-box .aiability .name span {
    font-size: 18px;
}

.ai-box .aiability .content {
    color: #999999;
    font-size: 14px;
    line-height: 1.4;
}

.menu-btn {
    display: none;
}

.pc-btn {
    display: block;
}

.step-box {
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 19px;
    text-align: center;
}

.step-box .step-item {
    position: relative;
}

.step-box .step-item .icon {
    position: relative;
    background-color: #fff;
    z-index: 10;
}

.step-box .step-item::after {
    content: '';
    left: 100%;
    right: 0;
    width: 19vw;
    top: 50px;
    position: absolute;
    border-bottom: 2px dashed #bebfbf;
}

.step-box .step-item::before {
    content: '';
    position: absolute;
    top: 47px;
    width: 8px;
    left: -20px;
    height: 8px;
    border-radius: 50%;
    background-color: #bebfbf;
}

.step-box .step-item:last-child::after,
.step-box .step-item:first-child::before {
    display: none;
}

.step-box .icon {
    margin: 0 auto 20px auto;
}

.deploy-box {
    margin-top: 70px;
}

.deploy-list {
    margin-top: -180px;
    padding: 40px 0;
    display: flex;
}

.deploy-list .deploy-wrap {
    width: 25%;
    padding: 15px 10px;
}

.deploy-list .deploy-item {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #f3f3f3;
}

.deploy-list .name {
    font-size: 18px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.deploy-list .content {
    font-size: 14px;
    height: 44px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
}

.deploy-list .tags {
    padding-bottom: 10px;
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: space-between;
}

.deploy-list img {
    width: 100%;
}

.deploy-step-list {
    padding: 0 10px 40px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.deploy-step-list .deploy-item {
    position: relative;
}

.deploy-step-list .deploy-item::after {
    content: '';
    position: absolute;
    left: 100%;
    right: 0;
    width: 100%;
    top: 30px;
    border-bottom: 2px dashed #8eacf9;
}

.deploy-step-list .deploy-item::before {
    content: '';
    position: absolute;
    border-left: 10px solid #8eacf9;
    border-right: 5px solid transparent;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    top: 24px;
    left: -10px;
}

.deploy-step-list .deploy-item:first-of-type::before {
    display: none;
}

.deploy-step-list .deploy-item:last-of-type::after {
    display: none;
}

.deploy-step-list .deploy-item span {
    background-color: #f2f5ff;
    width: 150px;
    font-size: 20px;
    display: inline-block;
    height: 60px;
    text-align: center;
    line-height: 60px;
    box-shadow: 0 3px 7px 3px #dee4f7;
}

.ai-train .section1.section10:last-of-type,
.fusion .section1.section10:last-of-type,
.vc-box .section1.section10:last-of-type,
.gis-home .section1.section10:last-of-type {
    padding-bottom: 100px;
}

.ai-train.ai-box .aibox .aibox-img {
    margin-left: 0;
    width: 55%;
    background: url(../image/circle-bg.png) no-repeat left center;
    background-size: contain;
}

.cirlcle-box {
    display: flex;
    align-items: center;
}

.cirlcle1 {
    background-color: #fff;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: baseline;
    box-shadow: 0 0 5px 5px #f4f4f4;
    justify-content: center;
    color: #333333;
    font-size: 40px;
}

.line1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
    background: url(../image/line-bg.png) no-repeat center center;
    background-size: cover;
}

.cirlcle1 span {
    font-size: 20px;
}

.cirlcle2 {
    background-color: #4c8af7;
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #fff;

    font-size: 50px;
}

.cirlcle2 span {
    font-size: 20px;
}

.framework-step-box {
    display: flex;

    flex-wrap: wrap;
}

.framework-step-box .framework-step-wrap {
    width: 50%;
    padding: 10px;
    position: relative;
}

.framework-step-box .framework-step-wrap:nth-child(2) .st2 {
    margin: 32px 0;
}

.framework-step-box .framework-step-wrap.four .st1 {
    margin: 11px 0;
}

.framework-step-box .step-name {
    text-align: center;
    padding-bottom: 20px;
    font-size: 16px;
}

.framework-step-box .framework-step-item {
    border: 1px dashed #3e7fff;
    padding: 20px 40px 10px 40px;
}

.framework-step-box .step-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

/* .framework-step-box .framework-step-wrap:nth-of-type(1) .st1::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3e7fff;
}
.framework-step-box .framework-step-wrap:nth-of-type(1) .st2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3e7fff;
}
.framework-step-box .framework-step-wrap:nth-of-type(1) .st3::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 1px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #3e7fff;
}
.framework-step-box
  .framework-step-wrap:nth-of-type(1)
  .st1:nth-of-type(1)::after {
  transform: rotate(45deg) translateY(26px) translateX(12px);
  width: 80px;
  right: -80px;
}
.framework-step-box
  .framework-step-wrap:nth-of-type(1)
  .st1:nth-of-type(2)::after {
  width: 55px;
  right: -55px;
}
.framework-step-box
  .framework-step-wrap:nth-of-type(1)
  .st1:nth-of-type(3)::after {
  transform: rotate(-45deg) translateY(-26px) translateX(12px);
  width: 80px;
  right: -80px;
} */
.framework-step-box .framework-step-wrap:nth-of-type(2)::after {
    content: '';
    background: url(../image/icon-1.png) no-repeat center center;
    background-size: cover;
    position: absolute;
    width: 30px;
    height: 50px;
    right: 100px;
    bottom: -25px;
}

.framework-step-box .framework-step-wrap:nth-of-type(3)::after {
    content: '';
    background: url(../image/icon-2.png) no-repeat center center;
    background-size: cover;
    position: absolute;
    width: 50px;
    height: 30px;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.framework-step-box .framework-step-wrap.four::after {
    content: '';
    background: url(../image/icon-2.png) no-repeat center center;
    background-size: cover;
    position: absolute;
    width: 50px;
    height: 30px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hid {
    display: none;
}

.shw {
    display: block;
}

.framework-step-box .framework-step-wrap:nth-of-type(2) .stline1::after {
    display: none;
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3e7fff;
}

.framework-step-box .framework-step-wrap:nth-of-type(2) .stline1::before {
    display: none;
    content: '';
    position: absolute;
    width: 60px;
    height: 1px;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3e7fff;
}

.core-box .tabs-box {
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
}

.core-box .tabs-box a {
    position: relative;
    color: #333;
}

.core-box .tabs-box a::after {
    content: '';
    bottom: -16px;
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
}

.core-box .tabs-box a:hover,
.core-box .tabs-box a.active {
    color: #224177;
}

.core-box .tabs-box a:hover::after,
.core-box .tabs-box a.active::after {
    background-color: #224177;
}

.core-list {
    margin-top: 40px;
    padding-bottom: 100px;
}

.core-list .core-item {
    padding: 25px;
    background-color: #fff;
}

.st {
    position: relative;
    border: 1px solid #3e7fff;
    background: #eaf1ff;
    width: 120px;
    height: 45px;
    line-height: 43px;
    text-align: center;
    font-size: 16px;
}

.st1 {
    margin: 30px 0;
}

.st2 {
    height: 80px;
    line-height: 80px;
}

.st3 {
    height: 160px;
    line-height: 160px;
}

.productInfoMain {
    margin-top: 60px;
}

.productInfoMain .productTop {
    display: flex;
}

.productInfoMain .productTop .productTopLeft {
    width: 490px;
}

.productInfoMain .productTop .productTopRight {
    flex: 1;
    background-color: #f0f7fe;
    padding: 35px 45px;
}

.productInfoMain .productTop .name {
    font-size: 22px;
    margin-bottom: 25px;
}

.productInfoMain .productTop .info-item {
    font-size: 16px;
    padding: 0 20px;
    position: relative;
    margin: 15px 0;
}

.productInfoMain .productTop .info-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #333333;
}

.product-thumbs .swiper-slide {
    /* width: 25%; */
}

.ai-banner {
    padding: 55px 0;
    background: url(../image/banner-bg.png) no-repeat center center #252c45;
    color: #fff;
    text-align: center;
    background-size: cover;
}

.ai-banner h2 {
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: normal;
}

.ai-banner p {
    font-size: 20px;
}

.productInfoMain .productTop .info-content {
    font-size: 14px;
    margin-top: 25px;
    color: #999;
    line-height: 2;
    text-indent: 2em;
}

.productInfoMain .productTabs {
    display: flex;
    align-items: center;
    padding: 25px 0;
}

.productInfoMain .productTabs a {
    width: 120px;
    color: #333;
    height: 35px;
    line-height: 35px;
    background-color: #f5f5f5;
    margin-right: 20px;
    text-align: center;
    display: inline-block;
}

.productInfoMain .productTabs a:hover,
.productInfoMain .productTabs a.active {
    background-color: #224178;
    color: #fff;
}

.productInfoMain .productCaseList {
    display: flex;
    margin: 0 -10px;
}

.productInfoMain .productCaseWrap {
    width: 33.33%;
    padding: 10px;
}

.productInfoMain .productCaseWrap .productCaseItem:hover .productCaseInfo {
    box-shadow: 0 5px 10px 5px #f4f4f4;
}

.productInfoMain .productCaseWrap .productCaseInfo {
    padding: 0 20px;
}

.productInfoMain .productCaseWrap .name {
    font-size: 20px;
    padding: 20px 0;
}

.productInfoMain .productCaseWrap .content {
    font-size: 14px;
    padding: 0 20px 20px 0;
}

.productInfoMain .productTitle h2 {
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 35px;
    font-weight: normal;
}

.productInfoMain .productTitle p {
    font-size: 16px;
    color: #333;
    margin-bottom: 45px;
}

.productInfoMain .productCaseList .img {
    width: 100%;
}

.productInfoMain .productDownList {
    display: flex;
}

.productInfoMain .productDownWrap {
    width: 33.33%;
    padding: 10px;
}

.productInfoMain .productDownItem {
    padding-top: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.productInfoMain .productDownItem .icon {
    height: 60px;
    margin: 60px 0 20px 0;
}

.productInfoMain .productDownItem .btn {
    margin-top: 55px;
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: space-around;
}

.productInfoMain .productDownItem .btn img {
    height: 13px;
    margin-left: 10px;
}

.productInfoMain .productDownItem .name {
    font-size: 18px;
}

.productInfoMain .productDownTitle {
    font-size: 19px;
    position: relative;
    padding: 20px;
}

.productInfoMain .productDownTitle::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #224178;
}

.gis-box {
    display: flex;
    align-items: center;
}

.gis-box.reverse {
    flex-direction: row-reverse;
}

.gis-box.reverse .left {
    margin-left: 90px;
}

.gis-box.reverse .right {
    margin-left: 0;
}

.gis-box .left {
    flex: 1;
    padding: 40px 40px;
    text-align: left;
}

.gis-box .right {
    flex: 1;
    margin-left: 90px;
}

.gis-box .right img {
    width: 100%;
}

.gis-box .title {
    line-height: 1.6;
}

.gis-box .dec0 {
    text-align: left;
    margin-bottom: 0;
}

.serve-box {
    display: flex;
    margin: 0 -20px;
}

.serve-box .serve-wrap {
    width: 50%;
    padding: 0 20px;
}

.serve-box .serve-item {
    display: flex;
    padding: 20px 25px;

    flex-direction: column;
    justify-content: center;
    background-color: #f0f7fe;
}

.serve-box .serve-item .serve-title {
    font-size: 20px;
    position: relative;
}

.serve-box .serve-item .serve-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    bottom: -20px;
    left: 0;
    background-color: #333333;
}

.serve-box .serve-item .name {
    font-size: 16px;
    margin: 40px 0 30px 0;
}

.serve-box .serve-item .content {
    font-size: 14px;
    line-height: 2;
    color: #999999;
}

.framework-table {
    margin-top: 50px;
}

.framework-table .table-item {
    font-size: 16px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dbdbdd;
}

.framework-table .table-item .label {
    color: #999;
    flex: 1;
}

.framework-table .table-item .value {
    flex: 2;
}

.framework-type {
    display: flex;
    margin-top: 70px;
}

.framework-type .framework-tabs {
    width: 200px;
    text-align: center;
    font-size: 17px;
    margin-right: 50px;
    border-right: 1px solid #e4e4e4;
}

.framework-type .framework-tabs a {
    position: relative;
    display: block;
    padding-bottom: 40px;
    color: #333;
}

.framework-type .framework-tabs a.active,
.framework-type .framework-tabs a:hover {
    color: #224178;
}

.framework-type .framework-tabs a.active::after,
.framework-type .framework-tabs a:hover::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    right: 0;
    top: -10px;
    background-color: #224178;
}

.framework-type .framework-tabs-body .name {
    font-size: 17px;
    margin-bottom: 20px;
}

.framework-type .framework-tabs-body .content {
    line-height: 2;
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
}

.framework-type .framework-tabs-body .li-item {
    position: relative;
    margin: 30px 0;
    padding: 0 20px;
}

.framework-type .framework-tabs-body .li-item::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #224178;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.fusion-box .fusion-list {
    display: flex;
    flex-wrap: wrap;
}

.fusion-box .fusion-wrap {
    width: 50%;
    padding: 20px;
}

.fusion-box .fusion-wrap:nth-child(2n) .fusion-item {
    padding: 20px 20px 20px 50px;
}

.fusion-box .fusion-item {
    background: #f6f8fa;
    padding: 20px 50px 20px 20px;
    border-radius: 10px;
}

.fusion-box .name {
    font-size: 17px;
    margin-bottom: 20px;
}

.fusion-box .fusion-info {
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
    line-height: 1.6;
}

.fusion-box .fusion-info::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #224178;
    left: 0;
    top: 8px;
}

.ts.rights-box {
    margin-top: 50px;
}

.ts.rights-box .rights-item {
    box-shadow: 0 3px 10px 3px #e4e4e4;
    border: 0;
}

.framework {
    display: flex;
    margin: 0 -10px;
}

.framework img {
    width: 85%;
    margin-top: 50px;
}

.framework .left,
.framework .right {
    width: 50%;
    padding: 0 10px;
}

.framework .right img {
    margin-top: 130px;
}

.rights-box {
    display: flex;
    margin: 0 -20px;
}

.rights-box .rights-wrap {
    width: 33.33%;
    padding: 0 20px;
}

.rights-box .rights-item {
    display: flex;
    padding: 20px 25px;
    height: 350px;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e4e4e4;
    justify-content: center;
    background-color: #fff;
}

.rights-box .rights-item img {
    height: 70px;
}

.rights-box .rights-item .name {
    font-size: 20px;
    margin: 40px 0;
}

.rights-box .rights-item .content {
    font-size: 14px;
    line-height: 2;
    color: #999999;
}

.gps-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px;
}

.gps-list .gps-wrap {
    width: 33.33%;
    padding: 14px;
}

.gps-list .gps-item {
    padding: 25px 0;
    display: flex;
    border-bottom: 2px solid transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-shadow: 0 0 3px 10px 3px #f4f4f4;
    border-radius: 5px;
}

.gps-list .gps-item:hover {
    border-bottom: 2px solid #347ce6;
}

.gps-list img {
    height: 70px;
}

.gps-list .name {
    margin-top: 20px;
    font-size: 20px;
}

.gps-box .gis-box .left,
.gps-box .gis-box .right {
    flex: 1;
    text-align: left;
}

.gps-box .gis-box .left img {
    width: 100%;
}

.gps-advantage {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gps-advantage .center img {
    width: 300px;
}

.gps-advantage .left,
.gps-advantage .right {
    margin-top: 30px;
}

.gps-advantage .left > div,
.gps-advantage .right > div {
    margin-bottom: 70px;
    font-size: 17px;
}

.streaming-box .section.solutions.is-medium .solutions-list {
    margin-top: 50px;
    margin-bottom: 120px;
}

.streaming-box .advantage-list {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.advantage-list .advantage-item {
    width: 25%;
    padding: 0 20px;
    display: flex;
    height: 280px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.advantage-list .advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px auto;
    background: url(../image/icon-bg.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-list .advantage-icon img {
    height: 40px;
}

.advantage-list .name {
    font-size: 20px;
    margin-bottom: 20px;
}

.advantage-list .content {
    font-size: 14px;
    line-height: 2;
}

.core-list > div {
    display: none;
}

.core-list .core-item {
    display: flex;
    padding: 40px;
}

.core-list .core-item .img-box {
    flex: 2;
}

.core-list .core-item .content {
    flex: 1;
    line-height: 2;
    font-size: 14px;
    padding: 30px;
}

.core-list .core-item img {
    width: 100%;
}

.target-list {
    display: flex;
    margin: 0 -15px;
}

.target-list .target-wrap {
    width: 25%;
    padding: 15px;
}

.target-list .target-item {
    padding: 20px;
    box-sizing: border-box;
    height: 280px;

    border-top: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
    border-right: 4px solid #4b80f7;
    border-bottom: 4px solid #4b80f7;
}

.target-list .number {
    width: 60px;
    height: 60px;
    background-color: #8dc5f6;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 40px;
}

.target-list .content {
    font-size: 14px;
    line-height: 2;
    margin-top: 30px;
}

.serve-step-box {
    margin-top: -30px;
    position: relative;
    display: flex;
}

.serve-step-box::after {
    content: '';
    position: absolute;
    top: 145px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ebebeb;
}

.serve-step-box .serve-step-item {
    flex: 1;
}

.serve-step-box .sq {
    position: relative;
    width: 12px;
    z-index: 1;
    height: 12px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: linear-gradient(to right, #fff 0%, #a5a5a6 100%);
}

.serve-step-box .step-title {
    position: relative;
    margin: auto;
    width: 70px;
    height: 140px;
    line-height: 140px;
    font-size: 80px;
    color: #ebebeb;
    text-align: center;
}

.serve-step-box .step-title span {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 10;
    color: #333;
    font-size: 16px;
    text-align: center;
    transform: translateY(-50%);
    padding: 5px 0px;
    display: inline-block;
    background-color: #f8f8f8;
}

.serve-step-box li {
    text-align: center;
    margin: 25px 0;
    color: #999999;
    font-size: 14px;
}

.mode-box {
    display: flex;
    margin: 0 -20px;
}

.mode-box .mode-wrap {
    width: 50%;
    padding: 0 20px;
}

.mode-box .mode-item {
    padding: 40px;
    border: 1px solid #e4e4e4;
    display: flex;
    align-items: center;
}

.mode-box .mode-info {
    flex: 1;
    margin-left: 30px;
}

.mode-box .name {
    font-size: 20px;
    margin-bottom: 15px;
}

.mode-box .content {
    font-size: 14px;
    color: #999;
}

.mode-box img {
    width: 59px;
    height: 59px;
}

.system-box {
    display: flex;
    margin: 40px -9px 0 -9px;
}

.system-box .system-wrap {
    width: 25%;
    padding: 9px;
    font-size: 19px;
    text-align: center;
}

.system-box img {
    width: 100%;
    margin-bottom: 25px;
}

.th-box {
    margin: 10px -5px;
    display: flex;
    align-items: center;
}

.th-box .th-wrap {
    width: 25%;
    padding: 10px 5px;
}

.th-box .th-item {
    height: 90px;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cooperative-list {
    display: flex;
    margin-top: 60px;
}

.cooperative-list .cooperative-wrap {
    width: 25%;
    padding: 0 15px;
}

.cooperative-list img {
    width: 90px;
    margin-bottom: 40px;
}

.cooperative-list .cooperative-item {
    height: 325px;
    box-sizing: border-box;
    padding: 0 25px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cooperative-list .name {
    font-size: 22px;
    margin-bottom: 40px;
}

.cooperative-list .content {
    color: #999999;
    line-height: 2;
    font-size: 15px;
    text-align: center;
}

.cooperative-advice {
    display: flex;
    align-items: flex-end;
}

.cooperative-advice .left {
    background-color: #426ebf;
    color: #fff;
    width: 260px;
    padding: 25px;
    box-sizing: border-box;
}

.cooperative-advice .left h2 {
    font-size: 28px;
}

.cooperative-advice .left h5 {
    font-size: 20px;
    margin-top: 40px;
}

.cooperative-advice .left .content {
    line-height: 2;
    margin-top: 20px;
    font-size: 14px;

    padding-bottom: 100px;
}

.cooperative-advice .right {
    flex: 1;
    padding: 25px 45px;
    background-color: #fff;
    color: #949494;
}

.cooperative-advice .right .advice-title {
    font-size: 28px;
    color: #333;
}

.cooperative-advice .right .content {
    font-size: 14px;
    margin: 30px 0;
    line-height: 2;
}

.cooperative-advice .right .btn-primary {
    width: 125px;
    height: 35px;
    margin-right: 30px;
    line-height: 33px;
}

.cooperative-advice .right .btn-default {
    width: 125px;
    height: 35px;
    line-height: 33px;
}

.apply-box .apply-item {
    background-color: #fff;
    margin: 26px 0;
    padding: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apply-box img {
    width: 65px;
}

.apply-box .info {
    flex: 1;
    padding: 0 30px;
}

.apply-box .info .name {
    font-size: 22px;
    margin-bottom: 20px;
}

.apply-box .info .content {
    color: #999;
    font-size: 14px;
}

.apply-box .btn-primary,
.apply-box .btn-default {
    display: inline-block;
    padding: 8px 10px;
}

.btn-primary {
    background-color: #224178;
    color: #fff;
    margin-right: 30px;
    display: inline-block;
    text-align: center;
    border: 1px solid #224178;
}

.btn-default {
    display: inline-block;
    background-color: #fff;
    color: #224178;
    text-align: center;
    border: 1px solid #224178;
}

.section1 .list {
    zoom: 1;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.section1 .tit em {
    font-size: 16px;
    font-style: normal;
}

.section1 .item {
    position: relative;
    display: flex;
}

.section1 .icon {
    height: 86px;
    text-align: left;
}

.section1 {
    padding-bottom: 25px;
}

.section1 .icon img {
    height: 60px;
}

.section1 .con {
    flex: 1;
    text-align: left;
}

.section1 .tit {
    font-size: 35px;
    font-family: FZLTCHK;
    font-weight: normal;
    color: #333333;
}

.section1 .dec {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #949494;
    padding-top: 15px;
    padding-bottom: 45px;
}

.section1 .more {
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #224178;
    display: inline-block;
    background: url(../image/more2.png) no-repeat right center;
    padding-right: 50px;
}

.section1 .item:last-child {
    justify-content: flex-end;
}

.swiper-slide-active .section3 {
    filter: blur(0px);
}

.section3 {
    zoom: 1; /* margin-top: 120px; */
    overflow: hidden;
    position: relative;

    /* filter: blur(5px); */
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section3 .left {
    position: absolute;
    overflow: hidden;
    width: 54%;
    height: 100%;
    top: 0px;
    right: 0;
}

.section3 .left::after {
    border: 120px solid #fff;
    width: 1946px;
    height: 1946px;
    box-shadow: 0 0 31px 3px rgba(0, 0, 0, 0.05);
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    z-index: 6;
    border-radius: 50%;
    display: block;
}

.section3 .left .list {
    padding-left: 103px;
}

.section3 .left .list li.active {
    opacity: 1;
    z-index: 1;
    display: block;
}

.section3 .left .list li {
    display: none;
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
}

.section3 .left .img:after {
    background: url(../image/imgpic.jpg) no-repeat center center;
    background-size: cover;
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0.4 !important;
}

.section3 .left .img {
    height: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
}

.section3 .left .text {
    position: absolute;
    left: 50px;
    right: 50px;
    top: 50px;
    bottom: 50px;
    border: 1px solid #ffffff;
    padding: 0px 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section3 .left .title span {
    font-size: 26px;
    font-family: SourceHanSansSC;
    font-weight: bold;
    color: #ffffff;
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 2px solid #fff;
}

.section3 .left .title {
}

.section4 .section3 .left .dec {
    font-size: 17px;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    color: #dcdcdc;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.section3 .left .more {
    width: 155px;
    line-height: 43px;
    background: url(../image/more3.png) no-repeat 84% center #225697;
    display: block;
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #ffffff;
    padding-left: 20px;
}

.section3 .right {
    background: #eef7ff;
    padding: 60px 80px;
    width: 55%;
    box-sizing: border-box;
}

.section3 .right .list1 {
}

.section3 .right .list1 li {
    zoom: 1;
    overflow: hidden;
    margin-bottom: 17px;
}

.section3 .right .list1 li .s1 {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: bold;
    color: #265a9b;
    float: left;
    width: 100px;
    line-height: 32px;
}

.section3 .right .list1 li .s2 {
    float: left;
    width: calc(100% - 100px);
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #4c4c4c;
    line-height: 32px;
}

.section3 .right .list1 li .s2 .link a {
    float: left;
    margin-right: 18px;
    width: 170px;
    line-height: 35px;
    background: #265a9b;
    text-align: center;
    font-size: 15px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
}

.section3 .right .list1 li .s2 .link a:last-child {
    margin-right: 0px;
}

.section3 .right .list2 ul {
    display: flex;
    justify-content: space-between;
}

.section3 .right .list2 {
    /* padding-bottom: 87px; */
}

.section3 .right .list2 li {
    text-align: center;
}

.section3 .right .list2 li .val {
    font-size: 50px;
    font-family: FZLTCHJW;
    font-weight: bold;
    color: #333333;
}

.section3 .right .list2 li .title {
    font-size: 14px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #333333;
    margin-top: 14px;
    padding-left: 35px;
    padding-right: 35px;
    line-height: 22px;
    background-size: auto 100% !important;
}

.section3 .right .list2 li .val em {
    font-size: 25px;
    font-style: normal;
}

.section3 .right .list2 li.down .title {
    background: url(../image/down1.png) no-repeat right center;
}

.section3 .right .list2 li.up .title {
    background: url(../image/up.png) no-repeat right center;
}

.section3,
.section3 * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section4 .title0 {
    font-size: 40px;
    font-family: SourceHanSansSC;
    font-weight: bold;
    color: #333333;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 40px;
}

.section4 .dec0 {
    font-size: 28px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    line-height: 48px;
    max-width: 100%;
    margin: auto;
    width: 1287px;
    margin-bottom: 112px;
    text-align: center;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    line-height: 36px;
}

.section4 .hd {
    width: 1286px;
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 76px;
}

.section4 .hd a {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    font-size: 20px;
    font-family: FZLTZCHK;
    font-weight: normal;
    color: #333333;
    display: inline-block;
    position: relative;
    padding-bottom: 21px;
}

.section4 .hd a:hover,
.section4 .hd a.current {
    border-bottom: 4px solid #225697;
    color: #225697;
}

.section4 .bd .content:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 92%;
    left: 0px;
    top: 0px;
    background: #225697;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section4 .bd .content:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #fff;
    z-index: 55;
    opacity: 0.6;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section4 .bd .content > * {
    position: relative;
    z-index: 4;
}

.section4 .bd .content,
.section4 .bd .content * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section4 .bd .content {
    width: 1321px;
    height: 494px;
    max-width: 100%;
    position: relative;
    margin: auto;
    filter: blur(5px);
}

.section4 .bd .swiper-slide-active .content {
    filter: blur(0px);
}

.section4 .bd .swiper-slide-active .content:before {
    opacity: 0;
    z-index: 1;
}

.section4 .bd .left {
    /* padding-top: 46px; */
    /* padding-left: 50px; */
    /* width: 37.6%; */
}

.section4 .bd .title {
    font-size: 26px;
    font-family: FZLTZCHK;
    font-weight: normal;
    color: #ffffff;
}

.section4 .bd .dec {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #ffffff;
    line-height: 32px;
    max-width: 100%;
    margin-top: 58px;
    margin-bottom: 175px;
}

.section4 .bd .more {
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #ffffff;
    padding-right: 56px;
    background: url(../image/more3.png) no-repeat right center;
}

.section4 .bd .imgbox {
    width: 52%;
    height: 452px;
    background: #cccccc;
    position: absolute;
    right: 37px;
    top: 38px;
    overflow: hidden;
}

.section4 .bd .img {
    height: 100%;
}

.section5 {
    padding-bottom: 50px;
    background: #eeeeee;
}

.section5 .left {
    float: left;
    padding-top: 39px;
}

.section5 .left .title {
    font-size: 54px;
    font-family: FZLTCHK;
    font-weight: bold;
    color: #225697;
    padding-bottom: 43px;
}

.section5 .left .dec {
    font-size: 22px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #225697;
    padding-bottom: 100px;
}

.section5 .left .more {
    width: 210px;
    line-height: 53px;
    background: url(../image/more3.png) no-repeat 90% center #225697;
    display: block;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #ffffff;
    padding-left: 23px;
}

.section5 .right {
    float: right;
    width: calc(100% - 680px);
}

.section5 .right .item:nth-child(3n) {
    margin-right: 0px;
    border: none;
}

.section5 .right .item {
    margin-right: 14px;
    width: calc((100% - 28px) / 3);
    float: left;
    padding-right: 15px;
    border-right: 1px solid #cccccc;
    padding-bottom: 60px;
}

.section5 .right .item .time {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #28282b;
    padding-top: 39px;
}

.section5 .right .item .title {
    display: block;
    height: 67px;
    font-size: 20px;
    font-family: FZLTCHK;
    font-weight: bold;
    color: #28282b;
    line-height: 36px;
    margin-top: 22px;
    margin-bottom: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section5 .right .item .imgbox:hover img {
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.section5 .right .item .imgbox {
    overflow: hidden;
}

.section5 .right .item .imgbox img {
    width: 100%;
}

.section5 .right .item .dec {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #28282b;
    line-height: 30px;
    margin-top: 26px;
    margin-bottom: 51px;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section5 .right .item .more {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #224178;
    display: inline-block;
    background: url(../image/more2.png) no-repeat right center;
    padding-right: 47px;
}

.footer {
    background: #28282b;
    position: relative;
    z-index: 55;
}

.footer .block1 {
    padding-bottom: 20px;
    color: #999;
}

.footer .block1 .left {
    width: 41.5%;
    height: 335px;
    background: #222225;
    padding-left: 35px;
    padding-right: 35px;
    float: left;
    margin-top: -60px;
    position: relative;
}

.footer .block1 .left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(../image/zx.png) no-repeat center center;
    background-size: contain;
    width: 80%;
    height: 60%;
}

.footer .block1 .left .title {
    font-size: 24px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #ffffff;
    padding-top: 33px;
}

.footer .block1 .left .dec {
    width: 402px;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #8e8e90;
    line-height: 30px;
    max-width: 100%;
    margin-top: 46px;
    margin-bottom: 49px;
}

.footer .block1 .left .more {
    width: 160px;
    line-height: 44px;
    border: 1px solid #919192;
    display: block;
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #8e8e90;
    padding-left: 33px;
    background: url(../image/more4.png) no-repeat 84% center;
}

.footer .block1 .right {
    float: right;
    padding-top: 37px;
    width: 54.7%;
}

.footer .block1 .right .logo {
    padding-bottom: 60px;
}

.footer .block1 .right .logo img {
    height: 35px;
}

.footer .block1 .right .link {
    padding-bottom: 40px;
    border-bottom: 1px solid #424245;
    display: flex;
    justify-content: space-between;
}

.footer .block1 .right .link a {
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #ffffff;
    display: inline-block;
    padding-left: 26px;
    background: url(../image/more5.png) no-repeat left center;
}

.footer .block1 .right .item {
    float: left;
    margin-right: 36px;
    text-align: center;
}

.footer .block1 .right .item img {
    width: 86px;
    height: 87px;
}

.footer .block1 .right .name {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #fff;
    padding-top: 9px;
    padding-bottom: 6px;
}

.footer .block1 .right .tel {
    font-size: 14px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #999999;
}

.footer .block2 {
}

.footer .block2 .flink {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #ffffff;
    padding-bottom: 50px;
}

.footer .block2 .flink a {
    margin-left: 25px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #999999;
}

.footer .block2 .address {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #616162;
    padding-bottom: 23px;
    border-bottom: 1px solid #424245;
}

.footer .block2 .address p:last-child {
    border-right: none;
    padding-right: 0px;
    margin-right: 0px;
}

.footer .block2 .address p {
    display: inline-block;
    border-right: 1px solid #555555;
    margin-right: 35px;
    padding-right: 35px;
    color: #999;
}

.footer .block2 .copy {
    font-size: 14px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #999;
    padding-top: 27px;
    padding-bottom: 27px;
}

.footer .block2 .copy a {
    color: inherit;
}

.btn_top {
    right: 10%;
    bottom: 20%;
    z-index: 999;
    cursor: pointer;
    width: 49px;
    height: 49px;
    background: url(../image/top.png) no-repeat center center;
    background-size: 100% 100%;
}

.footer,
.footer *,
.btn_top,
.section5,
.section5 *,
.section1 *,
.banner .content * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.head .nav li .slide .item a:hover,
.footer .block2 .copy a:hover,
.footer .block1 .right .link a:hover,
.section5 .right .item .title:hover {
    color: #225697;
}

.cbanner {
    position: relative;
    /* overflow: hidden; */
    z-index: 55;
}

.cbanner:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #232323;
    opacity: 0.5;
    z-index: 3;
}

.cbanner > * {
    position: relative;
    z-index: 4;
}

@keyframes scalc {
    0% {
        -webkit-transform: scale(2.05, 2.05);
        -o-transform: scale(2.05, 2.05);
        -moz-transform: scale(2.05, 2.05);
        -ms-transform: scale(2.05, 2.05);
        transform: scale(2.05, 2.05);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.cbanner .imgbox .img {
    height: 100%;
    animation: scalc 7s forwards;
    animation-timing-function: ease-out;
}

.cbanner .imgbox {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.cbanner {
    min-height: 570px;
}

.cbanner .imgbox {
    transform: scale(1);
}

.cbanner .content {
    padding-top: 10%;
    padding-bottom: 6%;
}

.cbanner .typename {
    font-size: 19px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #265ec3;
    padding-top: 25%;
    padding-bottom: 27px;
}

.cbanner .dec {
    font-size: 40px;
    font-family: FZLTDHK;
    color: #ffffff;
    position: relative;
    top: 18px;
}

.position {
    background: #464646;
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #7a7a7a;
    text-align: right;
    padding: 2% 0px;
    position: relative;
    z-index: 2;
}

.position a {
    color: inherit;
}

.position a.home {
    width: 24px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
    background: url(../image/home.png) no-repeat center center;
    position: relative;
    top: -2px;
}

.newsWrap .pagesize {
    padding-top: 30px;
    margin-bottom: 80px;
}

.position span {
    color: #fff;
}

.newsWrapInfo {
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
}

.newsWrapInfo .left {
    width: 303px;
    box-sizing: border-box;
    padding: 32px 35px 35px 35px;
    background-color: #fff;
    box-shadow: 0 0 5px 5px #f4f4f4;
}

.newsWrapInfo .left .date {
    color: #999999;
    display: flex;
    align-items: center;
    font-size: 18px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #f3f3f3;
}

.newsWrapInfo .left .date img {
    margin-right: 7px;
}

.newsWrapInfo .left .share-title {
    padding: 20px 0;
    font-size: 20px;
}

.newsWrapInfo .left .share {
    display: flex;
    align-items: center;
}

.newsWrapInfo .left .share a {
    margin-right: 20px;
}

.newsWrapInfo .menu-left {
    display: none;
    width: 100%;
    padding-top: 30px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    color: #999999;
}

.newsWrapInfo .menu-left .date img {
    margin-right: 7px;
}

.newsWrapInfo .menu-left .share-title {
    font-size: 15px;
    margin-right: 7px;
}

.newsWrapInfo .menu-left .share {
    display: flex;
    align-items: center;
}

.newsWrapInfo .menu-left .share img {
    width: 25px;
}

.newsWrapInfo .menu-left .share a {
    margin-right: 10px;
}

.newsWrapInfo .right {
    flex: 1;
    padding-left: 150px;
    padding-top: 35px;
}

.newsWrapInfo .right .title {
    font-size: 30px;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

.newsWrapInfo .right .content {
    margin: 35px 0;
    font-size: 16px;
    line-height: 2;
    color: #999999;
    text-indent: 2em;
}

.newsWrapInfo .right .img-box {
    padding: 0 45px;
    margin: 35px 0;
}

.newsWrapInfo .right .img-box img {
    width: 100%;
}

.newsWrap {
    padding-top: 43px;
    padding-bottom: 30px;
}

.newsWrap .hd {
    zoom: 1;
    overflow: hidden;
    padding-bottom: 40px;
}

.newsWrap .hd a {
    font-size: 20px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    float: left;
    color: #999999;
    position: relative;
    margin-right: 60px;
    padding-left: 32px;
    padding-bottom: 19px;
    border-bottom: 1px solid #fff;
}

.newsWrap .hd a:after {
    content: '';
    position: absolute;
    left: 3px;
    width: 7px;
    height: 6px;
    background: #999999;
    transform: skew(-35deg);
    top: 9px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.newsWrap .hd a:hover,
.newsWrap .hd a.current {
    color: #333333;
    border-color: #333333;
}

.newsWrap .hd a:hover:after,
.newsWrap .hd a.current:after {
    background: #333333;
}

.newsWrap .floating {
    padding-left: 37px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eeeeee;
}

.newsWrap .floating .pos {
    position: relative;
    padding-left: 30%;
}

.newsWrap .floating .imgbox {
    position: absolute;
    left: 0px;
    top: 46px;
    bottom: 38px;
    overflow: hidden;
    width: 50.7%;
    z-index: 4;
}

.newsWrap .floating .imgbox a {
    height: 100%;
    display: block;
}

.newsWrap .floating .content * {
    position: relative;
    z-index: 4;
}

.newsWrap .floating .content {
    position: relative;
    padding-left: 35%;
    padding-right: 7%;
    overflow: hidden;
    padding-bottom: 38px;
}

.newsWrap .floating .time {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #999;
    padding-top: 85px;
    padding-bottom: 31px;
}

.newsWrap .floating .title {
    font-size: 22px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    display: block;
    line-height: 1.7;
    margin-bottom: 24px;
}

.newsWrap .floating .dec {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #999;
    margin-bottom: 148px;
    line-height: 1.8;
}

.newsWrap .floating .more {
    line-height: 43px;
    background: url(../image/more6.png) no-repeat 84% center;
    display: block;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #333333;
    padding-left: 23px;
}

.case-study-list .pagesize {
    padding-bottom: 40px;
}

.newsWrap .floating .line {
    width: 68px;
    height: 2px;
    background: #395586;
    margin-bottom: 37px;
}

.newsWrap .floating .swiper-pagination {
    bottom: 0;
}

.newsWrap .floating .swiper-pagination * {
    width: 63px;
    height: 4px;
    background: #eee;
    margin: 0px 8px;
    opacity: 1;
    border-radius: 0;
    transform: skew(-33deg);
}

.newsWrap .floating .swiper-pagination *.swiper-pagination-bullet-active {
    background: #395586;
}

.newsWrap .floating .content:after {
    content: '';
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    left: 23%;
    background: #eeeeee;
}

.newsWrap .floating .content:before {
    content: '';
    position: absolute;
    background: #eeeeee;
    width: 23%;
    height: 100%;
    left: 13%;
    top: 0px;
    transform: skew(-19deg);
}

.newsWrap .floating .swiper-wrapper {
    padding-bottom: 50px;
}

.listType1 {
}

.listType1 li {
    position: relative;
    zoom: 1;
    overflow: hidden;
    margin-top: 27px;
    padding-top: 27px;
    border-bottom: 1px solid #eee;
    padding-right: 33.7%;
    padding-bottom: 57px;
}

.listType1 li .time {
    float: left;
    width: 200px;
}

.listType1 li .val1 {
    font-size: 30px;
    font-family: FZLTDHK;
    font-weight: bold;
    color: #333333;
}

.listType1 li .year {
    font-size: 18px;
    font-family: FZLTDHK;
    font-weight: normal;
    color: #999999;
    padding-top: 20px;
}

.listType1 li .title {
    padding-right: 30px;
    font-size: 25px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listType1 li .dec {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #999999;
    padding-top: 28px;
    padding-bottom: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.listType1 li .more {
    font-size: 15px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #333333;
    padding-right: 90px;
    background: url(../image/more6.png) no-repeat right center;
    display: inline-block;
}

.listType1 li .imgbox {
    position: absolute;
    right: 0;
    top: 0px;
    width: 30.6%;
    height: 175px;
    overflow: hidden;
}

.listType1 li .imgbox a {
    height: 100%;
    display: block;
}

.pagesize {
    padding-top: 20px;
    text-align: center;
    font-size: 0px;
}

.pagesize a {
    display: inline-block;
    line-height: 56px;
    position: relative;
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: bold;
    color: #333333;
    width: 40px;
    margin: 0px 5px;
    overflow: hidden;
}

.pagesize a:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 69%;
    background: #395586;
    transform: skew(-11deg);
    left: 15%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}

.pagesize a span {
    position: relative;
    z-index: 4;
}

.pagesize a:hover,
.pagesize a.current {
    color: #fff;
}

.pagesize a:hover:after,
.pagesize a.current:after {
    opacity: 1;
}

.cbanner,
.cbanner *,
.newsWrap,
.newsWrap * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.newsWrap .floating .more:hover,
.listType1 li .more:hover,
.newsWrap .floating .title:hover,
.listType1 li .title:hover {
    color: #395586;
}

.listType1 li .imgbox a:hover,
.newsWrap .floating .imgbox a:hover {
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.footer .block2 .flink a:hover,
.footer .block1 .left .more:hover {
    color: #fff;
}

.aboutMain {
}

.aboutMain .block1 {
    background: #eeeeee;
    padding-top: 60px;
    padding-bottom: 40px;
}

.aboutMain .block1 .title {
    font-size: 42px;
    font-family: FZLTDHK;
    font-weight: normal;
    color: #333333;
    font-weight: bold;
}

.aboutMain .block1 .dec {
    padding-top: 48px;
}

.aboutMain .block1 .dec p {
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #666666;
    padding-bottom: 18px;
}

.aboutMain .block2 {
    padding-bottom: 140px;
}

.aboutMain .block1 .content {
    width: 43%;
}

.aboutMain .block2 .left {
    padding-top: 40px;
    float: left;
    width: 43%;
}

.aboutMain .block2 .left .item {
    padding-bottom: 16px;
}

.aboutMain .block2 .left .item p {
    zoom: 1;
    overflow: hidden;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #666666;
}

.aboutMain .block2 .left .item p .s1 {
    float: left;
    width: 95px;
}

.aboutMain .block2 .left .item p .s2 span {
    display: block;
    padding-bottom: 15px;
}

.aboutMain .block2 .left .item p .s2 {
    float: left;
    width: calc(100% - 95px);
}

.aboutMain .block2 .right {
    position: relative;
    float: right;
    width: 45%;
    padding-bottom: 20px;
    position: relative;
    z-index: 45;
    margin-top: -235px;
}

.aboutMain .block2 .right .content {
}

.aboutMain .block2 .right .imgbox {
}

.aboutMain .block2 .right .imgbox img {
    width: 100%;
}

.aboutMain .block2 .right .swiper-slide {
    padding: 30px;
    padding-top: 0px;
}

.aboutMain .block2 .right .detail {
    background: #ffffff;
    box-shadow: 0px 0px 35px 0px rgba(210, 210, 210, 0.5);
    padding-top: 50px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 27px;
}

.aboutMain .block2 .right .title {
    font-size: 30px;
    font-family: FZLTCHK;
    font-weight: normal;
    color: #333333;
}

.aboutMain .block2 .right .dec {
    padding-top: 39px;
}

.aboutMain .block2 .right .dec p {
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #666666;
    padding-bottom: 25px;
    line-height: 1.7;
}

.aboutMain .block2 .right .swiper-pagination {
    width: 100%;
    bottom: 0;
    width: 100%;
}

.aboutMain .block2 .right .swiper-pagination * {
    width: 12px;
    height: 12px;
    background: #767676;
    border-radius: 50%;
    margin: 0px 5px;
    opacity: 1;
    border-radius: 10px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.aboutMain .block2 .right .swiper-pagination *.swiper-pagination-bullet-active {
    width: 50px;
    background: #28282b;
}

.aboutMain .block2 .right .swiper-button-next {
    width: 83px;
    height: 42px;
    background: url(../image/r.png) no-repeat center center #ffffff;
    box-shadow: 0px 5px 6px 0px rgba(196, 196, 196, 0.3);
    right: 0;
    opacity: 1;
    margin-top: -76px;
}

.aboutMain .block2 .right .swiper-button-prev {
    width: 83px;
    height: 42px;
    background: url(../image/l.png) no-repeat center center #ffffff;
    box-shadow: 0px 5px 6px 0px rgba(196, 196, 196, 0.3);
    left: 0;
    opacity: 1;
    margin-top: -76px;
}

.aboutMain,
.aboutMain * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.aboutMain2 {
    position: relative;
}

.paddingWrap {
    padding-left: 250px;
}

.aboutMain2 .left {
    position: absolute;
    left: 0;
    top: 77px;
    z-index: 12;
    left: calc((100% - 1609px) / 2);
    padding-top: 30px;
}

.aboutMain2 .left a {
    display: block;
    text-align: center;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #999999;
    margin-bottom: 35px;
    width: 150px;
}

.aboutMain2 .left a:hover,
.aboutMain2 .left a.current {
    color: #224178;
}

.aboutMain2 .right {
    position: relative;
    z-index: 5;
}

.aboutMain2 .right .block1 {
    padding-top: 100px;
    padding-bottom: 171px;
}

.titlemodel2 {
    font-size: 43px;
    font-family: FZLTDHK;
    font-weight: bold;
    color: #333333;
    text-align: center;
}

.aboutMain2 .right .block1 .content {
}

.aboutMain2 .right .block1 .titlemodel2 {
    padding-bottom: 43px;
}

.aboutMain2 .right .block1 .dec {
    padding-bottom: 30px;
}

.aboutMain2 .right .block1 .dec p {
    font-size: 28px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    line-height: 48px;
    padding-bottom: 37px;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    line-height: 36px;
}

.aboutMain2 .right .block1 .imgbox {
}

.aboutMain2 .right .block1 .imgbox img {
    width: 100%;
}

.aboutMain2 .right .block2 {
    background: #eeeeee;
    padding: 100px 0px;
}

.aboutMain2 .right .block2 .content {
}

.aboutMain2 .right .block2 .list {
    margin-top: 80px;
    position: relative;
}

.aboutMain2 .right .block2 .detail {
    padding-right: 43px;
    height: 552px;
    overflow: auto;
    border-right: 1px solid #c7c7c7;
}

.aboutMain2 .right .block2 .time {
    font-size: 38px;
    font-family: FZLTDHK;
    font-weight: normal;
    color: #999999;
    padding-bottom: 20px;
    font-weight: bold;
}

.aboutMain2 .right .block2 .dec2 {
}

.aboutMain2 .right .block2 .dec1 {
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #999999 !important;
    padding-bottom: 118px;
}

.aboutMain2 .right .block2 .dec2 p {
    font-size: 20px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #999999;
    line-height: 37px;
    padding-bottom: 27px;
}

.aboutMain2 .right .block2 .list .swiper-container {
    padding-bottom: 94px;
}

.aboutMain2 .right .block2 .swiper-button-next {
    width: 66px;
    height: 66px;
    box-shadow: 0px 4px 6px 0px rgba(196, 196, 196, 0.2);
    border-radius: 50%;
    margin-top: -33px;
    right: 0px;
    background: url(../image/ri.png) no-repeat center center #fff;
}

.aboutMain2 .right .block2 .swiper-button-prev {
    width: 66px;
    height: 66px;
    box-shadow: 0px 4px 6px 0px rgba(196, 196, 196, 0.2);
    border-radius: 50%;
    margin-top: -33px;
    left: 0px;
    background: url(../image/le.png) no-repeat center center #fff;
}

.aboutMain2 .right .block2 .detail::-webkit-scrollbar {
    width: 2px;
    height: 1px;
}

.aboutMain2 .right .block2 .detail::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #5e5e5e;
}

.aboutMain2 .right .block2 .detail::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #c7c7c7;
}

.aboutMain2 .right .block3 .titlemodel2 {
    color: #fff;
}

.aboutMain2 .right .block3 {
    background: #494949;
    padding-top: 100px;
}

.aboutMain2 .right .block3 .dec {
    font-size: 24px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #ffffff;
    line-height: 48px;
    padding-top: 49px;
    padding-bottom: 85px;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    /* color: #333333; */
    line-height: 36px;
}

.aboutMain2 .right .block3 .list li:nth-child(7n) {
    margin-right: 0px;
}

.aboutMain2 .right .block3 .list {
}

.aboutMain2 .right .block3 .list ul.last {
    display: none;
}

.aboutMain2 .right .block3 .list ul {
    zoom: 1;
    overflow: hidden;
    padding-bottom: 60px;
}

.aboutMain2 .right .block3 .list li {
    float: left;
    position: relative;
    margin-right: 30px;
    margin-bottom: 30px;
    height: 99px;
    background: #69696b;
    width: calc((100% - 180px) / 7);
}

.aboutMain2 .right .block3 .list li img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 95%;
}

.aboutMain2 .right .block3 .list .more {
    width: 165px;
    line-height: 50px;
    background: url(../image/more7.png) no-repeat 90% center #ffffff;
    display: block;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    padding-left: 25px;
    margin-bottom: 100px;
}

.aboutMain2 .right .block4 {
    padding-top: 100px;
    padding-bottom: 116px;
}

.aboutMain2 .right .block4 .dec {
    padding-top: 48px;
    font-size: 24px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    line-height: 48px;
    padding-bottom: 87px;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    /* color: #333333; */
    line-height: 36px;
}

.aboutMain2 .right .block4 .list {
    position: relative;
}

.aboutMain2 .right .block4 .imgbox {
    text-align: center;
}

.aboutMain2 .right .block4 .imgbox img {
    max-width: 94%;
    display: block;
    margin: auto;
}

.aboutMain2 .right .block4 .list .swiper-button-next {
    width: 83px;
    height: 35px;
    background: url(../image/r.png) no-repeat center center #fff;
    box-shadow: 0px 5px 6px 0px rgba(196, 196, 196, 0.3);
    right: auto;
    left: 83px;
}

.aboutMain2 .right .block4 .list .swiper-button-prev {
    width: 83px;
    height: 35px;
    background: url(../image/l.png) no-repeat center center #fff;
    box-shadow: 0px 5px 6px 0px rgba(196, 196, 196, 0.3);
    left: 0px;
}

.aboutMain2 .right .block4 .list .swiper-button-prev,
.aboutMain2 .right .block4 .list .swiper-button-next {
    top: auto;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    bottom: 0px;
}

.aboutMain2 .right .block4 .list {
    padding-bottom: 85px;
}

.aboutMain2 .right .block4 .list .swiper-button-prev:hover,
.aboutMain2 .right .block4 .list .swiper-button-next:hover {
}

.aboutMain2 *:not(.last) {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.aboutMain2 .right .block2 .detail:hover * {
    color: #000;
}

.aboutMain2 .right .block5 {
    background: #eeeeee;
    padding-top: 100px;
    padding-bottom: 100px;
}

.aboutMain2 .right .block5 .dec {
    font-size: 24px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    line-height: 48px;
    padding-top: 43px;
    padding-bottom: 81px;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    /* color: #333333; */
    line-height: 36px;
}

.aboutMain2 .right .block5 .hd {
    padding-top: 50px;
    zoom: 1;
    overflow: hidden;
}

.aboutMain2 .right .block5 .hd a {
    float: left;
    position: relative;
    font-size: 21px;
    font-family: SourceHanSansSC;
    font-weight: 500;
    color: #999999;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-left: 27px;
    margin-right: 27px;
}

.aboutMain2 .right .block5 .hd a:hover,
.aboutMain2 .right .block5 .hd a.current {
    color: #333333;
    border-color: #333333;
}

.aboutMain2 .right .block5 .hd a:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #999999;
    left: 2px;
    transform: skew(-26deg);
    top: 8px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.aboutMain2 .right .block5 .hd a:hover:after,
.aboutMain2 .right .block5 .hd a.current:after {
    background: #333333;
}

.aboutMain2 .right .block5 .bd {
}

.aboutMain2 .right .block5 .model {
}

.aboutMain2 .right .block5 .dec {
}

.aboutMain2 .right .block5 .list {
    position: relative;
    padding-bottom: 85px;
    margin-bottom: 80px;
}

.aboutMain2 .right .block5 .imgbox {
}

.aboutMain2 .right .block5 .imgbox img {
    max-width: 94%;
    display: block;
    margin: auto;
}

.aboutMain2 .right .block5 .swiper-button-prev,
.aboutMain2 .right .block5 .swiper-button-next {
    width: 83px;
    height: 35px;
    background: #ffffff;
    box-shadow: 0px 5px 6px 0px rgba(196, 196, 196, 0.3);
    left: auto;
    right: auto;
    left: 0;
    bottom: 0;
    top: auto;
    margin: 0;
    background: url(../image/l.png) no-repeat center center #fff;
}

.aboutMain2 .right .block5 .swiper-button-next {
    left: 83px;
    background: url(../image/r.png) no-repeat center center #fff;
}

.aboutMain2 .right .block5 .list2 {
    position: relative;
    padding-bottom: 85px;
}

.aboutMain2 .right .block5 .list2 .cont {
    height: 113px;
    background: #ffffff;
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aboutMain2 .right .block5 .list2 .cont p {
    font-size: 16px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    line-height: 32px;
    padding: 0px 30px;
    width: 100%;
}

.aboutMain2 .right .block6 {
    padding-top: 100px;
    padding-bottom: 210px;
}

.aboutMain2 .right .block6 .dec {
    font-size: 24px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #333333;
    line-height: 48px;
    padding-top: 49px;
    padding-bottom: 72px;
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    /* color: #333333; */
    line-height: 36px;
}

.aboutMain2 .right .block6 .list {
    zoom: 1;
    overflow: hidden;
}

.aboutMain2 .right .block6 .item {
    float: left;
    margin-right: 13%;
}

.aboutMain2 .right .block6 .val {
    color: #333333;
    font-size: 24px;
}

.aboutMain2 .right .block6 .val strong {
    font-size: 50px;
}

.aboutMain2 .right .block6 .tit {
    font-size: 18px;
    font-family: SourceHanSansSC;
    font-weight: 400;
    color: #999999;
    padding-top: 19px;
}

.wrap {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.caseInfo {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    background: #f8f8f8;

    height: 350px;
    color: #ffffff;

    z-index: 1;
}

.caseInfo-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column-align: center;
    justify-items: center;
}

.caseInfo .plat {
    width: 25%;
    padding: 0 0 0 20px;
    margin: 20px 0 0 0;
    color: #333333;
    font-size: 16px;
    overflow-y: auto;
    height: 330px;
}

.caseInfo .plat .title {
    padding: 16px 20px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    color: #333333;
}

.caseInfo .plat .title img {
    height: 15px;
    margin-right: 15px;
}

.caseInfo .plat .title:hover {
    color: #224178;
    background: #fff;
}

.caseInfo .plat .active {
    color: #224178;
    background: #fff;
}

.caseInfo .contact-form {
    padding: 30px 45px;
    flex: 1;
    color: #333;
    background: url(../image/form.png) no-repeat center center;
    background-size: cover;
}

.caseInfo .form-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.caseInfo .form-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    border: 1px solid #b7b7b7;
    width: 65%;
    padding: 10px 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.caseInfo .case {
    flex: 1;
    color: #333;
    padding: 40px;
    background: rgb(255, 255, 255, 0.85);
}

.caseInfo .case .detail-title {
    color: #ff6600;
    font-size: 16px;
}

.caseInfo .case .item {
    /*display: flex;*/
    align-items: center;
    flex-wrap: wrap;
    font-size: 15px;
}

.caseInfo .case .item a {
    color: #333
}

.caseInfo .case .item .item-text {
    width: 30%;
    margin-bottom: 30px;
}

.slideType3 .aboutInfo.caseInfo {
    height: initial;
}

.slideType3 .aboutInfoWrap {
    display: flex;
}

.slideType3 .aboutInfo .left {
    flex: 2;
}

.slideType3 .aboutInfo .right {
    padding: 25px 0;
    flex: 1;
}

.slideType3 .about-info-title {
    padding: 30px 0;
    color: #333;
    font-size: 25px;
}

.head .nav li .slideType3 .aboutInfo a {
    color: #333 !important;
    font-size: 15px;
    line-height: initial;
}

.about-info-title {
    font-size: 18px;
    font-weight: bold;
}

.about-info-nav {
    display: flex;
    align-items: center;
}

.about-info-nav .about-nav-item {
    width: 29.33%;
    display: flex;
    font-size: 15px;
    align-items: center;
    justify-content: space-between;
    margin-right: 4%;
    padding: 15px 0;
    border-bottom: 1px solid #d0d0d0;
}

.caseInfo .bottom {
    margin: 0 -40px;
    display: flex;
    flex-direction: column;

    padding: 10px 20px 10px 40px;
    border-top: 1px solid #f4f4f4;
    font-size: 16px;
    color: #aaaaaa;
}

.caseInfo .bottom a {
    color: #ca080d;
    font-size: 19px;
    margin-top: 20px;
}

.productInfo {
    position: absolute;
    left: -1px;
    top: 80px;
    background: rgba(16, 16, 11, 0.95);
    width: 1140px;
    height: 410px;
    color: #ffffff;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column-align: center;
    justify-items: center;
    z-index: 1;
}

.productInfo .plat {
    width: 16%;
    margin: 20px 3% 30px;
}

.productInfo .plat .desc {
    height: 66px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 500;
    color: #ffffff;
    line-height: 24px;
    padding-left: 10px;
    padding-top: 8px;
    margin-top: 14px;
    box-sizing: border-box;
}

.productInfo .plat .desc p {
    font-size: 12px;
    color: #999999;
    line-height: 24px;
}

.productInfo .plat .desc:hover {
    background-color: #265a9b !important;
}

.productInfo .plat .desc:hover p {
    color: #f8f8f8;
}

.productInfo .plat .img {
    width: 443px;
    height: 188px;
    background-image: url(../image/banner1@2x.png);
    background-size: 100% 100%;
    margin-left: -30px;
    margin-top: 84px;
}

.productInfo .title {
    font-size: 18px;
    font-weight: 550;
    color: #ffffff;
    line-height: 25px;
    border-bottom: 1px solid #3b3d41;
    padding-bottom: 12px;
}

.productInfo .production {
    width: 51%;
    margin: 20px 3% 30px;
}

.productInfo .production .detail {
    display: flex;
}

.productInfo .production .detail .item {
    width: 206px;
    height: 300px;
    border-right: 1px dashed #3b3b3b;
    margin-top: 20px;
    margin-right: 24px;
}

.productInfo .production .detail .item .item-text {
    width: 100%;
    height: 82px;
    margin-bottom: 30px;
}

.productInfo .production .detail .item .item-text .item-type {
    font-size: 14px;
    color: #999999;
    line-height: 28px;
    font-weight: 550;
}

.productInfo .production .detail .item .item-text .item-type i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #dd0000;
    display: inline-block;
    margin-bottom: 3px;
    margin-right: 6px;
}

.productInfo .production .detail .item .item-text .item-desc {
    display: block;
    /* height: 66px; */
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 24px;
    padding-left: 10px;
    padding-top: 8px;
    margin-bottom: 6px;
    box-sizing: border-box;
    padding-bottom: 5px;
}

.productInfo .production .detail .item .item-text .item-desc p {
    font-size: 12px;
    color: #999999;
    line-height: 24px;
}

.productInfo .production .detail .item .item-text .item-desc:hover {
    background-color: #265a9b !important;
}

.productInfo .production .detail .item .item-text .item-desc:hover p {
    color: #f8f8f8;
}

.productInfo .production .detail .item:last-child {
    border-right: 0;
    margin-right: 0;
}

.productInfo .hardware {
    width: 178px;
    margin: 20px 3% 30px;
}

.productInfo .hardware .item {
    margin-top: 14px;
}

.productInfo .hardware .item .item-text .item-desc {
    display: block;
    height: 66px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 24px;
    padding-left: 10px;
    padding-top: 8px;
    box-sizing: border-box;
    margin-bottom: 6px;
}

.productInfo .hardware .item .item-text .item-desc p {
    font-size: 12px;
    color: #999999;
    line-height: 24px;
}

.productInfo .hardware .item .item-text .item-desc:hover {
    background-color: #265a9b !important;
}

.productInfo .hardware .item .item-text .item-desc:hover p {
    color: #ededed;
}

.slideType3 {
    display: none;
}

.head .nav li:hover .slideType3 {
    display: block;
}

.head .nav li:hover .slideType4 {
    display: block;
}

.slideType4 {
    position: absolute;
    left: 0px;
    top: 80px;
    width: 200px;
    border-right: 1px solid rgba(216, 216, 216, 0.1);
    box-sizing: border-box;
    background: #222222;
    display: none;
}

.slideType4 a {
    font-size: 14px;
    line-height: 60px;
    padding-left: 25px;
    display: block;
    color: #fff;
}

.slideType4 a:hover {
    background: #265a9b !important;
}

.head,
.head * {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.caseMain {
    padding-top: 4%;
    padding-bottom: 120px;
}

.productMain {
    padding-top: 0;
}

.productMain .bd {
    margin-top: -60px;
}

.caseMain .hd {
    zoom: 1;
    overflow: hidden;
    transform: translateY(-50%);
    position: relative;
    z-index: 100;
    background-color: #224178;
}

.caseMain .hd .hd1 {
    display: flex;
    align-items: center;
}

.caseMain .hd .title {
    width: 350px;
    text-align: center;
    font-size: 18px;
    color: #fff;
}

.caseMain .hd .list {
    flex: 1;
    padding: 20px 10px 0 25px;
    background-color: #fff;
    border-bottom: 1px solid #f3f3f3;
}

.caseMain .hd a:hover,
.caseMain .hd a.current {
    color: #265a9b !important;
}

.caseMain .hd a {
    display: inline-block;
    font-size: 15px;
    color: #333333;
    margin-right: 30px;
    margin-bottom: 20px;
}

.caseMain.ai .bd .list li {
    margin: 10px 20px 10px 0;
    width: calc((100% - 60px) / 4);
}

.caseMain .bd .list li:nth-child(4n) {
    margin-right: 0px;
}

.caseMain .bd .list li {
    float: left;
    margin: 30px 30px 30px 0;
    width: calc((100% - 90px) / 4);
}

.caseMain .bd .list li a {
    display: block;
}

.caseMain .bd .list li a * {
    display: block;
}

.caseMain .bd .list li .imgbox {
    overflow: hidden;
}

.caseMain .bd .list li.imgbox img {
    width: 100%;
}

.caseMain .bd .list li .content {
    background: #fff;
    padding: 20px 5%;
    border: solid 1px rgba(221, 221, 221, 0.5);
}

.caseMain .bd .list li .title {
    color: #333;
    margin-bottom: 3%;
    font-size: 17px;
}

.caseMain .bd .list li .subtitle {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #333;
}

.caseMain .bd .list li .dec {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #666666;
    height: 90px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 0.3rem;
    overflow: hidden;
    margin-bottom: 11%;
}

.caseMain .bd li .line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.caseMain .bd .line .btn {
    width: 110px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}

.caseMain .bd .line .btn1 {
    color: #fff;
    background-color: #224178;
    border: 1px solid #224178;
}

.caseMain .bd .line .btn2 {
    color: #224178;
    background-color: #fff;
    border: 1px solid #224178;
}

.caseMain * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.caseMain .bd .list li a:hover .imgbox img {
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

/*.caseMain .bd .list li a:hover {*/
/*  -webkit-transform: translateY(-10px);*/
/*  transform: translateY(-10px);*/
/*  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);*/
/*}*/

.caseMain .bd .list:after {
    content: '';
    display: table;
    clear: both;
}

.caseMain .productinfo {
    position: relative;
    display: flex;
    z-index: 100;
    margin-top: -180px;
    background-color: #fff;
}

.caseMain .productinfo .img-box {
    width: 456px;
}

.caseMain .productinfo .img-box img {
    width: 100%;
}

.caseMain .productinfo .info-box {
    flex: 1;
    line-height: 2;
    padding: 35px 10% 35px 50px;
}

.caseMain .productinfo .title {
    font-size: 28px;
    margin-bottom: 30px;
}

.caseMain .productinfo .content {
    font-size: 16px;
    line-height: 2;
}

.caseMain .productinfo .btn-box {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 30px;
}

.caseMain .productinfo .btn {
    margin-right: 40px;
    text-align: center;
    width: 150px;
    height: 40px;
    line-height: 38px;
    background-color: #224178;
    border: 1px solid #224178;
    color: #fff;
}

.caseMain .productinfo .btn:last-child {
    background-color: #fff;
    border: 1px solid #224178;
    color: #224178;
}

.caseMain .productcontent .content-item {
    margin: 50px 0;
    color: #333333;
    line-height: 1.6;
}

.caseMain .productcontent .content-item:first-child {
    margin-top: 10px;
}

.caseMain .productcontent .title {
    position: relative;
    font-size: 20px;
    margin-bottom: 35px;
    /* padding: 0 50px; */
}

/* .caseMain .productcontent .title::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #224178;
}
.caseMain .productcontent .title::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(34, 65, 120, 0.3);
} */
.caseMain .productcontent .content {
    font-size: 16px;
    margin: 25px 0;
}

.caseMain .productcontent .subtitle {
    font-size: 17px;
    margin-bottom: 25px;
}

.caseMain .productcontent .content-img img {
    width: 100%;
}

.solutionMain .block1 {
    padding-top: 5%;
    padding-bottom: 5%;
}

.solutionMain .block1 .hd {
    padding-top: 4%;
    text-align: center;
    color: #666666;
    line-height: 1;
    border-bottom: 1px solid #ccc;
    display: block;
    margin-bottom: 3%;
}

.solutionMain .block1 .hd a {
    display: inline-block;
    padding-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #fff;
    font-size: 17px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.solutionMain .block1 .hd a:hover,
.solutionMain .block1 .hd a.current {
    border-color: #265a9b !important;
}

.solutionMain .block1 .bd .swiper-slide:after {
    content: '';
    display: table;
    clear: both;
}

.solutionMain .block1 .bd {
    margin-bottom: 3%;
}

.solutionMain .block1 .bd a:nth-child(4n) {
    margin-right: 0px;
}

.solutionMain .block1 .bd a:hover .text {
    bottom: -50px;
    opacity: 0;
}

.solutionMain .block1 .bd a:hover .center {
    opacity: 1;
}

.solutionMain .block3 .content .right .item a .img img:hover,
.solutionMain .block1 .bd a:hover .imgbox {
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.solutionMain .block1 .bd a {
    float: left;
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 227px;
}

.solutionMain .block1 .bd a * {
    display: block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.solutionMain .block1 .bd a .imgbox {
    height: 100%;
}

.solutionMain .block1 .bd a .text {
    position: absolute;
    width: 100%;
    z-index: 5;
    left: 0;
    bottom: 3%;
    color: #fff;
    font-size: 16px;
    padding-bottom: 3%;
    background: url(../image/jianbianhuiseimgfa1.png) no-repeat center 0;
    background-size: cover;
}

.solutionMain .block1 .bd a .center {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 6;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    height: 100%;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgb(38 90 155 / 0.8);
    opacity: 0;
}

.solutionMain .block1 .bd a .center img {
    height: 37px;
    margin: 0px auto;
    margin-bottom: 3%;
}

.solutionMain .block1 .bd a .center span {
    color: #fff;
    font-size: 16px;
}

.solutionMain .block1 .more {
    display: block;
    margin: auto;
    width: 160px;
    height: 44px;
    border: 1px solid #333333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 14px;
    -webkit-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
    padding-right: 38px;
    background: url(../image/x-ri-jt3.png) no-repeat 90% center;
    background-size: 24px;
}

.solutionMain .block1 .more:hover {
    color: #fff;
    background: url(../image/whitearr.png) no-repeat 90% center #265a9b;
    background-color: #265a9b;
    background-size: 24px;
}

.solutionMain .block2 {
    padding: 5% 0px;
    background-color: #f5f7fa;
}

.titlemodel2 .dec {
    margin-top: 10px;
    font-size: 16px;
    color: #3e3e3e;
    font-weight: normal;
}

.solutionMain .block2 .imgbox {
    padding-top: 4%;
}

.solutionMain .block2 .imgbox img {
    width: 100%;
}

.titlemodel2 .line {
    display: block;
    width: 20px;
    height: 3px;
    background-color: #0059aa;
    margin: 10px auto 16px;
}

.solutionMain .block3 {
    background: #f5f7fa;
}

.solutionMain .block3 .content {
    position: relative;
    margin-top: 4%;
    background: #fff;
    padding-left: 50%;
}

.solutionMain .block3 .content .left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
}

.solutionMain .block3 .content .left a {
    display: block;
    height: 100%;
    padding: 0px 7%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solutionMain .block3 .content .left .tit {
    font-size: 24px;
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.5;
}

.solutionMain .block3 .content .left .text {
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    opacity: 0.5;
    height: 90px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 7%;
}

.solutionMain .block3 .content .left .moreBase {
}

.moreBase:hover {
    background-position: 90% center;
}

.moreBase {
    border-radius: 3px;
    color: #fff;
    padding: 18px 0;
    font-size: 16px;
    width: 180px;
    text-align: center;
    transition: 0.5s all;
    text-align: left;
    background: url(../image/whitearr.png) no-repeat 84% center #0059aa;
    background-size: 30px;
    padding-left: 40px;
    display: block;
}

.solutionMain .block3 .content .right {
    zoom: 1;
    overflow: hidden;
    padding: 5% 7%;
}

.solutionMain .block3 .content .right .item:nth-child(2n) {
    margin-right: 0px;
}

.solutionMain .block3 .content .right .title {
    color: #0059aa;
    font-weight: bold;
    margin-bottom: 25px;
    font-size: 18px;
}

.solutionMain .block3 .content .right .item {
    float: left;
    margin-right: 30px;
    width: calc((100% - 30px) / 2);
    padding-bottom: 30px;
}

.solutionMain .block3 .content .right .item a {
}

.solutionMain .block3 .content .right .item a .img {
    overflow: hidden;
}

.solutionMain .block3 .content .right .item a .img img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.solutionMain .block3 .content .right .item a .font {
}

.solutionMain .block3 .content .right .item a .tit {
    font-size: 16px;
    color: #000;
    padding-top: 16px;
    margin-bottom: 5px;
}

.solutionMain .block3 .content .right .item a .text {
    color: #999999;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.solutionMain .block4 {
    padding: 6% 0px;
    background: #f5f7fa;
}

.solutionMain .block4 .content {
    background: #fff;
    margin-top: 4%;
    padding: 5%;
    zoom: 1;
    overflow: hidden;
}

.solutionMain .block4 .content .left {
    width: 50%;
    float: left;
    padding-right: 14%;
}

.solutionMain .block4 .content .tit {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 24px;
    margin-bottom: 18px;
}

.solutionMain .block4 .content .text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #666666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 13%;
}

.solutionMain .block4 .content .moreBase {
}

.solutionMain .block4 .content .right {
    float: left;
    width: 50%;
    padding-left: 3%;
}

.solutionMain .block4 .content .right .imgbox {
    position: relative;
}

.solutionMain .block4 .content .right .img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
}

.solutionMain .block4 .content .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solutionMain .block4 .content .right .img.on {
    position: relative;
    z-index: 4 !important;
    opacity: 1 !important;
    -webkit-transform: translateY(0) scale(1) !important;
    transform: translateY(0) scale(1) !important;
}

.solutionMain .block4 .content .right .img.on img {
}

.solutionMain .block4 .content .right .imgbox .img:nth-child(2) {
    -webkit-transform: translateY(30px) scale(0.93);
    transform: translateY(30px) scale(0.93);
    opacity: 0.5;
    z-index: 3;
}

@media (max-width: 767px) {
    .solutionMain .block4 .content .right .imgbox .img:nth-child(2) {
        -webkit-transform: translateY(0.6rem) scale(0.93);
        transform: translateY(0.6rem) scale(0.93);
    }
}

.solutionMain .block4 .content .right .imgbox .img:nth-child(3) {
    -webkit-transform: translateY(50px) scale(0.9);
    transform: translateY(50px) scale(0.9);
    opacity: 0.2;
}

@media (max-width: 767px) {
    .solutionMain .block4 .content .right .imgbox .img:nth-child(3) {
        -webkit-transform: translateY(1rem) scale(0.9);
        transform: translateY(1rem) scale(0.9);
    }
}

.solutionMain .block4 .content .right .imgbox .on {
    position: relative;
    z-index: 4 !important;
    opacity: 1 !important;
    -webkit-transform: translateY(0) scale(1) !important;
    transform: translateY(0) scale(1) !important;
}

.solutionMain .block5 {
    text-align: center;
    padding: 5% 0px;
}

.solutionMain .block5 .content {
    padding-top: 4%;
}

.solutionMain .block5 .item {
}

.solutionMain .block5 .item {
    margin-right: 20px;
    width: calc((100% - 40px) / 3);
    float: left;
    padding: 4% 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-overflow: center;
    background: #f5f7fa;
    margin-bottom: 20px;
    border-radius: 10px;
    height: 100%;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
}

.solutionMain .block5 .item:nth-child(3n) {
    margin-right: 0px;
}

.solutionMain .block5 .icon {
}

.solutionMain .block5 .icon img {
    height: 68px;
    overflow: hidden;
    margin-bottom: 40px;
    display: block;
    margin: auto;
    margin-bottom: 40px;
}

.solutionMain .block5 .tit {
    font-size: 24px;
    margin-bottom: 18px;
}

.solutionMain .block5 .cont .dec p {
    line-height: inherit;
}

.solutionMain .block5 .cont .dec {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #666666;
    line-height: 2;
}

.solutionMain .block5 .item:hover {
    background-color: #ffffff;
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
}

.solutionMain .block6 {
    position: relative;
}

.solutionMain .block6 .hd {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(0, 0, 0, 0.35);
    left: calc((100% - 1630px) / 2);
    width: 320px;
    padding: 3% 0;
}

.solutionMain .block6 .hd a.current {
    color: #fff;
    background: #265a9b !important;
}

.solutionMain .block6 .hd a {
    display: block;
    cursor: pointer;
    width: 100%;
    line-height: 0.56rem;
    padding: 0 0.42rem;
    color: #fff;
    font-size: 18px;
    display: block;
    line-height: 60px;
    padding-left: 14%;
}

.solutionMain .block6 .hd a .icon img {
    width: 26px;
}

.solutionMain .block6 .hd a .tit {
    display: inline-block;
    vertical-align: middle;
    padding-left: 7%;
}

.solutionMain .block6 .bd .cont {
    padding-left: calc(320px + 6%);
    padding-top: 6%;
}

.solutionMain .block6 .bd .tit {
    font-size: 30px;
    margin-bottom: 26px;
    color: #fff;
}

.solutionMain .block6 .bd .wrap {
    min-height: 693px;
}

.solutionMain .block6 .bd .dec {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 0.92;
    margin-bottom: 6%;
    width: 800px;
    max-width: 100%;
}

.solutionMain .block6 .bd .moreBase {
}

.solutionMain .block6 .bd .model > * {
    position: relative;
    z-index: 4;
}

.solutionMain .block6 .bd .model:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    background: #000;
    opacity: 0.3;
}

.solutionMain .block7 {
    padding: 5% 0px;
}

.solutionMain .block7 .list {
    margin-top: 4%;
    padding: 0px 40px;
    position: relative;
}

.solutionMain .block7 .list .item {
}

.solutionMain .block7 .list .item a {
    display: block;
}

.solutionMain .block7 .list .img {
    overflow: hidden;
}

.solutionMain .block7 .list .img img {
    display: block;
    width: 100%;
}

.solutionMain .block7 .list a:hover .cont {
    border-color: #fff;
}

.solutionMain .block7 .list .cont {
    padding: 10% 7%;
    border: 1px solid #ddd;
    border-top: none;
    color: #000;
}

.solutionMain .block7 .list .tit {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    margin-bottom: 4%;
    font-size: 24px;
}

.solutionMain .block7 .list .dec {
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #666666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    height: 150px;
    margin-bottom: 8%;
}

.solutionMain .block7 .list .more {
    position: relative;
    zoom: 1;
    overflow: hidden;
    width: 40px;
}

.solutionMain .block7 .list .more img {
    width: 100%;
    float: left;
}

.solutionMain .block7 .list .more img:nth-child(1) {
}

.solutionMain .block7 .list a:hover .more img {
}

.solutionMain .block7 .list a:hover .more img:nth-child(1) {
    opacity: 0;
}

.solutionMain .block7 .list .more img:nth-child(2) {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
}

.solutionMain .block7 .list a:hover .more img:nth-child(2) {
    opacity: 1;
}

.solutionMain .block7 .list a:hover {
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.solutionMain .block7 .list a,
.solutionMain .block7 .list a * {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.solutionMain .block7 .list .swiper-slide {
    padding: 20px;
}

.solutionMain .block8 {
    padding: 90px 0px;
}

.solutionMain .block8 .content {
}

.solutionMain .block8 .content .left {
    float: left;
    font-size: 44px;
    color: #fff;
}

.solutionMain .block8 .content .right {
    float: right;
}

.solutionMain .block8 .content .right a {
    border: 1px solid #fff;
}

.oilfieldMain {
}

.oilfieldMain .block1 {
    padding: 5% 0px;
}

.oilfieldMain .block1 .dec {
    max-width: 1190px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 36px;
    letter-spacing: 0px;
    color: #333333;
    margin-top: 2%;
    margin-bottom: 5%;
}

.oilfieldMain .block1 .imgbox {
}

.oilfieldMain .block1 .imgbox img {
    width: 100%;
}

.solutionMain .block2.type2 {
    background: #fff;
}

.solutionMain .block5.type2 {
    background: #f6f7f9;
}

.solutionMain .block5.type2 .item {
    background: #fff;
}

.oilfieldMain {
}

.oilfieldMain .block2 {
    padding-bottom: 5%;
    padding-top: 5%;
}

.oilfieldMain .block2 .list .swiper-slide {
    padding: 30px;
}

.oilfieldMain .block2 .list {
    padding: 0px 40px;
    position: relative;
    margin-top: 4%;
}

.oilfieldMain .block2 .content {
    background: #fff;
    padding-right: 70%;
    position: relative;
}

.oilfieldMain .block2 .left {
    padding: 20% 10%;
}

.oilfieldMain .block2 .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 24px;
    margin-bottom: 18px;
}

.oilfieldMain .block2 .dec {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #666666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    margin-bottom: 17%;
}

.oilfieldMain .block2 .moreBase {
}

.oilfieldMain .block2 .imgbox {
    position: absolute;
    right: 0;
    top: 0px;
    height: 100%;
    overflow: hidden;
    width: 70%;
}

.oilfieldMain .block2 .imgbox a {
    display: block;
    height: 100%;
}

.oilfieldMain .block2 .content,
.oilfieldMain .block2 .content * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.oilfieldMain .block2 .content:hover {
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.oilfieldMain .block2 .content:hover .imgbox a {
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.oilfieldMain .block3 {
    padding: 5% 0px;
}

.oilfieldMain .block3 ul li a * {
    display: inline-block;
    vertical-align: middle;
    line-height: 64px;
}

.oilfieldMain .block3 ul {
    margin-top: 4%;
}

.oilfieldMain .block3 ul li {
    margin-bottom: 2%;
}

.oilfieldMain .block3 ul li a {
    background: #f5f5f5;
    margin-bottom: 20px;
    zoom: 1;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 2% 4%;
    color: #000;
    font-size: 18px;
}

.oilfieldMain .block3 ul li a .icon {
    /* line-height: 64px; */
    float: left;
}

.oilfieldMain .block3 ul li a .icon img {
    height: 64px;
}

.oilfieldMain .block3 ul li a .title {
    padding-left: 1%;
    float: left;
}

.oilfieldMain .block3 ul li a .download {
    float: right;
    padding-left: 25px;
    background: url(../image/download.png) no-repeat left center;
    background-size: 19px;
}

.itemContent1 {
}

.itemContentDetail {
    padding: 5%;
}

.itemContent1 .titlemodel2 {
    text-align: left;
}

.itemContent1 .dec {
    line-height: 1.8;
    color: #666666;
    font-size: 16px;
    margin-top: 2%;
    margin-bottom: 4%;
}

.itemContent1 .imgbox {
}

.white {
    background: #fff;
    padding: 5% 4%;
}

.itemContent1 .imgbox img {
    width: 100%;
}

.itemContent2 {
}

.itemContentDetail .titlemodel2 {
    text-align: left;
}

.itemContent2 .list {
    padding-top: 3%;
}

.itemContent2 .item {
    position: relative;
    padding-left: 30%;
    margin-bottom: 2%;
}

.itemContent2 .imgbox {
    position: absolute;
    width: 30%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    left: 0;
    top: 0;
}

.itemContent2 .img {
    height: 100%;
}

.itemContent2 .cont {
    padding-left: 4%;
    padding-top: 7%;
    padding-bottom: 7%;
}

.itemContent2 .tit {
    font-size: 24px;
    margin-bottom: 3%;
}

.itemContent2 .dec {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #666666;
}

.itemContent3 {
}

.itemContent3 .list {
    margin-top: 3%;
}

.itemContent3 .list .item {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    padding: 5%;

    background-color: #f6f7f9;

    border-radius: 10px;

    margin-bottom: 2%;
}

.itemContent3 .list .item .icon {
}

.itemContent3 .list .item .icon img {
    width: 70px;
}

.itemContent3 .list .tit {
    font-size: 18px;

    padding-left: 8%;

    width: calc(100% - 70px);

    line-height: 1.7;
}

.solutionMain.type2 {
    background: #fff;
    position: relative;
    z-index: 4;
}

.articleMain {
    padding: 5% 0px;
}

.articleMain .left {
    float: left;

    width: 160px;
}

.articleMain .pubTime span {
    vertical-align: middle;

    display: inline-block;

    padding-left: 11px;
}

.articleMain .pubTime img {
    width: 16px;
    vertical-align: middle;
}

.articleMain .pubTime {
    font-size: 16px;

    color: #666;

    line-height: 1.75;

    padding-bottom: 25px;

    border-bottom: 1px solid #eee;

    margin-bottom: 25px;
}

.articleMain .left .tit {
    font-size: 16px;

    color: #333;

    line-height: 1.75;

    font-weight: bold;

    padding-bottom: 7px;
}

.articleMain .left .link {
}

.articleMain .left .link a {
}

.articleMain .left .link img:hover {
    opacity: 0.7;
}

.articleMain .left .link img {
    width: 30px;
}

.articleMain .right {
    float: right;

    width: calc(100% - 300px);
}

.articleMain .right .contentdetail img {
    width: 100%;
    margin: 4% 0;
}

.articleMain .right .contentdetail * {
    line-height: inherit;
}

.articleMain .right .contentdetail {
    font-size: 16px;

    color: #666;

    line-height: 1.75;

    margin-bottom: 5%;
}

.articleMain .right .prevNext {
    background: #333;

    zoom: 1;

    overflow: hidden;
}

.articleMain .right .prevNext p a:hover {
    color: #fff;
}

.articleMain .right .prevNext p {
    float: left;

    width: 50%;

    display: inline-block;

    height: 100%;

    padding: 30px 30px;

    color: #bbbbbb;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.articleMain .right .prevNext p:nth-child(2n) {
}

.articleMain .right .prevNext p a {
    /* display: block; */

    color: #bbbbbb;

    padding-right: 10%;
}

.articlemain.right.prevnextpa: hover {

}

.recommond .titlemodel2 {
    position: relative;
    text-align: left;
    padding-bottom: 18px;
}

.recommond .titlemodel2:after {
    content: '';
    content: '';
    width: 51px;
    height: 2px;
    background-color: #ffc80a;
    position: absolute;
    bottom: 0;
    left: 0;
}

.recommond {
    background: #f5f5f5;

    padding: 5% 0px;

    padding-bottom: 183px;
}

.recommond .list {
    padding-top: 4%;
}

.recommond .list li {
    float: left;
    width: calc((100% - 75px) / 4);
    margin-right: 25px;
}

.recommond .list li:last-child {
    margin-right: 0px;
}

.recommond .list li a {
    display: block;
}

.recommond .list li a * {
    display: block;
}

.recommond .list li a .imgbox {
    overflow: hidden;
}

.recommond .list li a .imgbox img {
    width: 100%;
}

.recommond .list li a .con {
}

.recommond .list li a .time {
    font-size: 16px;

    color: #666;

    line-height: 1.75;

    padding-top: 13px;
}

.recommond .list li a .title {
    height: 70px;

    overflow: hidden;

    margin-bottom: 13px;

    line-height: 1.75;

    color: #28282b;

    font-size: 18px;
}

.recommond .list li a .more {
    font-size: 17px;

    font-weight: bold;

    color: #000;

    background: url(../image/r.png) no-repeat right center;

    padding-right: 34px;

    display: inline-block;

    background-size: 20px;
}

.cbanner2 {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    padding: 11% 0px;
}

.cbanner2 .imgbox {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.cbanner2 .center {
    z-index: 5;

    position: relative;
}

.cbanner2 .title {
    font-size: 50px;
}

.cbanner2 .dec {
    padding: 1.6% 0 2.5%;

    font-size: 18px;
}

.cbanner2 .more.more0 {
    background: url(../image/download2.png) no-repeat 27px center;

    color: #fff;

    background-size: 20px;

    border: 1px solid #fff;
}

.cbanner2 .more {
    display: inline-block;

    margin: 0px 10px;

    line-height: 50px;

    width: 150px;

    background: url(../image/zixunimgf1-1.png) no-repeat 27px center #265a9b;

    color: #fff;

    text-align: left;

    padding-left: 56px;

    background-size: 20px;

    border: 1px solid #265a9b;
}

.secMenu2 {
    border-bottom: 1px solid #e9e9e9;

    font-size: 16px;

    width: 100%;

    background: #fff;

    z-index: 5;
}

.secMenu2 .left {
    line-height: 80px;

    float: left;

    color: #000;
}

.secMenu2 .left a.on {
    color: #265a9b;
}

.secMenu2 .left a {
    color: inherit;
}

.secMenu2 .right {
    float: right;
}

.secMenu2 .right a {
    float: left;

    line-height: 80px;

    color: #000;

    margin: 0px 20px;
}

.secMenu2 .right a:hover,
.secMenu2 .right a.current {
    border-bottom: 3px solid #265a9b;

    color: #265a9b;
}

.secMenu2 .right a,
.secMenu2 > *,
.recommond .list li a * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.solutionMain .block7 .list .tit:hover,
.caseMain .bd .list li a .subtitle:hover,
.recommond .list li a .title:hover {
    color: #265a9b !important;
}

.solutionMain .block7 .list .img img:hover,
.recommond .list li a .imgbox:hover img {
    -webkit-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

/* cases */
.section.cases {
    background: #ffffff;
}

.section.cases .case-list-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 10%,
            rgb(0, 0, 0) 90%,
            rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 0%,
            rgb(0, 0, 0) 10%,
            rgb(0, 0, 0) 90%,
            rgba(0, 0, 0, 0) 100%
    );
}

.section.cases .case-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 40px;
    width: fit-content;
    animation-play-state: running;
}

.section.cases .first-row {
    animation: moveRightSlideshow 30s linear infinite;
}

.section.cases .second-row {
    animation: moveLeftSlideshow 30s linear infinite;
}

@keyframes moveRightSlideshow {
    100% {
        -webkit-transform: translateX(-2200px);
    }
}

@keyframes moveLeftSlideshow {
    0% {
        -webkit-transform: translateX(-2200px);
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes moveRightSlideshowMobile {
    100% {
        -webkit-transform: translateX(-1540px);
    }
}

@keyframes moveLeftSlideshowMobile {
    0% {
        -webkit-transform: translateX(-1540px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

.section.cases .case-item {
    background-size: cover !important;
    width: 200px;
    height: 90px;
}

.section.cases .case-item:not(:last-child) {
    margin-right: 20px;
}

.section.cases .case-link-wrapper {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: #0f0d15;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.section.cases .case-link-wrapper .button {
    margin-top: 8px;
    background-color: #224178;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    padding: 6px 12px;
}

.section.cases .case-item:hover .case-link-wrapper {
    display: flex;
    border: 1px solid #e8e8ea;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section.cases .case-list:hover {
    animation-play-state: paused;
}

/* solutions */
.section.solutions {
    background: #f7fbfc;
}

.section.solutions .title-block .title {
    color: #0f0d15;
}

.section.solutions .solutions-info {
    padding-top: 80px;
}

.section.solutions .solutions-info-title {
    font-size: 14px;
    line-height: 24px;
    color: #09121a;
}

.section.solutions .solutions-info-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #201c26;
    text-align: center;
}

.section.solutions .solutions-info-item img {
    width: 40px;
    margin-bottom: 10px;
}

.section.solutions .solutions-info-item:hover {
    color: #00a971;
}

.section.solutions .solutions-list {
    padding: 0;
    width: 100%;
    height: 400px;
    background: #ffffff;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.section.solutions .solutions-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 400px;
    width: 10%;
    transition: all 0.5s ease;
}

.section.solutions .solutions-item .content {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    font-size: 32px;
    line-height: 45px;
}

.section.solutions .solutions-item .solutions-item-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    transition: all 0.5s ease;
}

.section.solutions .solutions-item:hover .solutions-item-title {
    margin-bottom: 40px;
}

.section.solutions
.solutions-item:hover
.solutions-item.is-active
.solutions-item-title {
    margin-bottom: 20px;
}

.section.solutions .solutions-item .solutions-item-description,
.section.solutions .solutions-item .solutions-item-subtitle,
.section.solutions .solutions-item .solutions-item-subdescription,
.section.solutions .solutions-item .button {
    color: #ffffff;
    display: none;
}

.section.solutions .solutions-item.is-active .solutions-item-title {
    font-size: 32px;
    line-height: 45px;
    margin-bottom: 10px;
}

.section.solutions .solutions-item.is-active .solutions-item-description {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 20px;
}

.section.solutions .solutions-item.is-active .solutions-item-subtitle {
    display: block;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    margin: 40px 0 10px 0;
    color: #fff;
}

.section.solutions .solutions-item.is-active .solutions-item-subdescription {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 20px;
    color: #fff;
}

.section.solutions .solutions-item .home-button {
    background-color: #224178;
    font-size: 13px;
    width: 130px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    justify-content: center;
}

.section.solutions .solutions-item.is-active .button {
    display: flex;
    border-radius: 0;
    align-items: center;
}

.section.solutions .solutions-item.is-active .button img {
    width: 13px;
    height: 4px;
    margin-left: 10px;
}

.section.solutions .solutions-item-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.section.solutions .solutions-item.is-active {
    width: 58%;
}

.section.solutions .solutions-item.is-active .content {
    padding: 60px;
    align-items: flex-start;
    width: 700px;
}

.section.solutions .solutions-info .column.is-6 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.section.solutions .solutions-info-list-wrapper .columns {
    width: 100%;
    margin: 0;
}

.section.solutions .solutions-info-list-wrapper .column {
    padding: 0;
}

.static-button-icon {
    position: fixed;
    bottom: 30%;
    transform: translateY(50%);
    right: 26px;
    width: 50px;
    line-height: 44px;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
}

.hexagon {
    width: 49px;
    height: 49px;
    text-align: center;
    position: relative;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin-bottom: 30px;
}

.hexagon a {
    position: absolute;
    top: 49px;
    left: 0;
    right: 0;
    background: #007aff;
    color: #fff;
    font-size: 12px;
    padding: 3px 0px;
}

.hexagon::after {
    content: '';
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            50% 50% at 50% 50%,
            transparent,
            rgba(21, 46, 105, 0.2)
    );
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.36s;
    animation: sypt2kuo 2s ease-out infinite;
}

.hexagon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.hexagon:hover {
    background-position: 0 -142px;
}

.static-button-icon:hover .static-group-buttons {
    visibility: visible;
    opacity: 1;
}

.static-button-icon .static-group-buttons:hover {
    opacity: 0;
}

.square {
    margin-top: -24px;
    padding-top: 26px;
    padding-bottom: 12px;
    width: 49px;
}

.square.more {
    margin-top: -6px;
    padding: 0;
}

.static-button-icon .square a {
    background-color: #007aff;
    font-size: 12px;
    width: 49px;
    height: 49px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    font-weight: 500;
    opacity: 1;
}

.static-button-icon .square a img {
    width: 40%;
}

.square-item {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    margin-top: 10px;
}

.square-item:hover p {
    color: #00aa72;
}

.square-item figure.image {
    width: 22px;
    height: 20px;
    margin-bottom: 4px;
}

.fp-viewing-1 .t_sypt2ul {
    animation: ysfadeInUp 0.5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-1 .t_sypt2rg {
    animation: fadeIn 0.5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-2 .t_sypt3ic {
    animation: ysfadeInUp 0.5s ease-in-out both;
    animation-delay: 0.1s;
}

.fp-viewing-2 .t_sypt3shu {
    animation: ysfadeInUp 0.5s ease-in-out both;
    animation-delay: 0.1s;
}

.fp-viewing-2 .t_sypt3li .std_title5 {
    animation: ysfadeInUp 0.5s ease-in-out both;
    animation-delay: 0.2s;
}

.fp-viewing-2 .t_sypt3an {
    animation: ysfadeInUp 0.5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-3 .t_sypt4nr .std_font46 {
    animation: ysfadeInUp 0.5s ease-in-out both;
    animation-delay: 0.3s;
}

.fp-viewing-3 .t_sypt4box {
    animation: ysfadeInUp 0.5s ease-in-out both;
    animation-delay: 0.3s;
}

.t_sypt2dotli {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-973px, -50%);
    transform-origin: center 973px;
    width: 200px;
}

.t_sypt2dots {
    z-index: 999999 !important;
    transform: translateY(-50%) rotate(0);
    transition: all 0.4s;
    width: 1946px;
    height: 1946px;
    position: absolute;
    /* height: 100vh; */
    z-index: 23;
    left: 40px;
    /* width: 200px; */
    top: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}

.t_sypt2dotli_1 {
    top: calc(29.6%);
    left: 54.9%;
}

.t_sypt2dotli {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-973px, -50%);
    transform-origin: center 973px;
    width: 200px;
}

.t_sypt2dotli2 {
    top: calc(57%);
    left: 50.5%;
}

.t_sypt2dotli_3 {
    top: calc(43%);
    left: 50.5%;
}

.t_sypt2dotli3 {
    top: calc(63.9%);
    left: 52.2%;
}

.t_sypt2dotli_2 {
    top: calc(36.1%);
    left: 52.2%;
}

.t_sypt2dotli4 {
    top: calc(70.4%);
    left: 54.9%;
}

.t_sypt2dotli_1 {
    top: calc(29.6%);
    left: 54.9%;
}

.t_sypt2dotli5 {
    top: calc(76.4%);
    left: 58.6%;
}

.t_sypt2dotli6 {
    top: calc(81.7%);
    left: 63.15%;
}

.t_sypt2dotli7 {
    top: calc(86.3%);
    left: 68.5%;
}

.t_sypt2dotli8 {
    top: calc(90%);
    left: 74.5%;
}

.t_sypt2dotli9 {
    top: calc(92.6%);
    left: 81.1%;
}

.t_sypt2dotli10 {
    top: calc(94.3%);
    left: 87.8%;
}

.t_sypt2dotli11 {
    top: calc(94.9%);
    left: 94.8%;
}

.t_sypt2dotli12 {
    top: calc(94.4%);
    left: 101.9%;
}

.t_sypt2lie {
    cursor: pointer;
    pointer-events: all;
}

.t_sypt2dotli.on .t_sypt2lie {
    border: 1px solid #152e69;
    background: #152e69;
}

.t_sypt2dotli.on .t_sypt2lie img:nth-of-type(2) {
    display: inline;
}

.t_sypt2dotli.on .t_sypt2lie img:first-child {
    display: none;
}

.t_sypt2dotli .t_sypt2lie img:nth-of-type(2) {
    display: none;
}

.t_sypt2dotli .t_sypt2lie img:first-child {
    display: inline;
}

/* .t_sypt2lie::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%,transparent,rgba(171,0,0,.2));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all 0.36s;
} */
.t_sypt2dotli.on .t_sypt2lie::before {
    opacity: 1;
    animation: sypt2kuo 2s ease-out infinite;
}

@keyframes sypt2kuo {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    88% {
        width: calc(100% + 44px);
        height: calc(100% + 44px);
        opacity: 1;
    }
    100% {
        width: calc(100% + 50px);
        height: calc(100% + 50px);
        opacity: 0;
    }
}

.t_sypt2dots {
    transform: translateY(-50%) rotate(0);
    transition: all 0.4s;
}

.t_sypt2box {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t_sypt2lie {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.36s;
}

.t_sypt2lie {
    cursor: pointer;
    pointer-events: all;
}

.t_sypt2lie::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            50% 50% at 50% 50%,
            transparent,
            rgba(21, 46, 105, 0.2)
    );
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.36s;
}

.t_sypt2lie .ys_imgbox_cover {
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(54deg);
}

.columns {
    position: relative;
}

.columns::after {
    content: '';
    display: block;
    clear: both;
}

.is-7 {
    width: 58.33%;
    float: left;
    box-sizing: border-box;
}

.is-6 {
    padding: 0 10px;
    width: 50%;
    float: left;
    box-sizing: border-box;
}

.is-5 {
    width: 41.67%;
    float: left;
    box-sizing: border-box;
}

.section6 {
    padding-bottom: 140px;
}

.section6 .left-banner .banner-picture img {
    width: 100%;
    height: 175px;
}

.section6 .left-banner .banner-title {
    padding: 14px 0 10px 0;
    line-height: 2;
}

.section6 .left-banner .banner-title a {
    color: #333;
    font-size: 17px;
}

.section6 .left-banner .datetime {
    color: #999999;
    font-size: 16px;
    margin-bottom: 15px;
}

.section6 .left-banner .banner-content {
    color: #666;
}

.section6 .right-banner .banner-item {
    display: flex;
    align-items: flex-end;
    margin-bottom: 35px;
    color: #333333;
    padding-left: 25px;
}

.section6 .right-banner .banner-item a {
    color: #333333;
}

.section6 .right-banner .banner-content {
    font-size: 15px;
    margin-left: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.section6 .right-banner .date {
    display: flex;
    align-items: flex-end;
    font-size: 30px;
}

.section6 .right-banner .date span {
    font-size: 14px;
}

.contactbox {
    display: flex;
}

.contact {
    flex: 1;
}

.contact .contact-title {
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
}

.contact .contact-info > div {
    color: #999999;
    font-size: 16px;
    margin: 15px 0;
}

.programme-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0 60px 0;
}

.programme-box .programme-wrap {
    width: 25%;
    padding: 0 15px;
    text-align: center;
    margin: 20px 0;
}

.programme-box .img-box {
    width: 220px;
    height: 220px;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.programme-box .img-box img {
    width: 100%;
}

.programme-box .name {
    font-size: 17px;
    margin: 20px 0;
}

.programme-box .content {
    font-size: 14px;
    line-height: 2;
}

.characteristic-list {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid #dddddd;
}

.characteristic-list .characteristic-item {
    width: 33.33%;
    border-right: 1px solid #dddddd;
    padding: 30px;
    transition: all 0.3s;
    text-align: center;
}

.characteristic-list .characteristic-item:hover {
    box-shadow: 0 4px 8px 4px #f4f4f4;
}

.characteristic-list .characteristic-item:nth-child(1),
.characteristic-list .characteristic-item:nth-child(2),
.characteristic-list .characteristic-item:nth-child(3) {
    border-bottom: 1px solid #dddddd;
}

.characteristic-list img {
    height: 80px;
    margin: auto;
}

.characteristic-list .name {
    font-size: 20px;
    margin: 25px 0;
}

.characteristic-list .content {
    line-height: 2;
    font-size: 14px;
}

.flight-control {
    display: flex;
    margin-top: 40px;
    padding-bottom: 100px;
}

.flight-control .left {
    padding: 20px 0;
    width: 510px;
    background-color: #f0f7fe;
    display: flex;
    flex-wrap: wrap;
}

.flight-control .flight-control-item {
    width: 50%;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flight-control .flight-control-item img {
    height: 60px;
    margin-bottom: 15px;
}

.flight-control .flight-control-item .name {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.flight-control .right {
    flex: 1;
    overflow: hidden;
}

.flight-control .right img {
    width: 100%;
}

.flight-control-list {
    padding: 25px 0;
    position: relative;
    transform: translateY(-50%);
    display: flex;
    z-index: 55;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 6px 6px 2px #e4e4e4;
}

.flight-control-list .flight-control-item {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.flight-control-list img {
    height: 50px;
    margin-bottom: 25px;
}

.flightControl-box .section1.section10:last-child .title {
    line-height: 1.6;
}

.gc {
    margin-top: 40px;
    display: flex;
    background-color: #f5f7f9;
}

.gc .left {
    padding: 35px 30px;
    flex: 1;
}

.gc .left img {
    width: 100%;
}

.gc .right {
    width: 400px;
    padding: 30px;
    background-color: #f1f3f6;
}

.gc .right .name {
    font-size: 19px;
    margin-bottom: 20px;
}

.gc .right .content {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
}

.internetThings-box {
    display: flex;
    background: #f5f7f9;
}

.internetThings-box .left {
    flex: 2;
}

.internetThings-box .left .img-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 60px 40px 40px 40px;
}

.internetThings-box .left .img-box img {
    height: 100px;
    display: block;
    margin: auto;
}

.internetThings-box .left .img-box span {
    font-size: 40px;
    color: #467ff7;
}

.internetThings-box .left .img-box p {
    font-size: 22px;
    margin-top: 15px;
}

.internetThings-box .left .p {
    color: #999;
    font-size: 17px;
    text-align: center;
}

.internetThings-box .left .btn {
    background-color: #edf2fe;
    border-radius: 40px;
    height: 40px;
    width: 150px;
    line-height: 40px;
    text-align: center;
    font-size: 17px;
    display: block;
    margin: 30px auto;
    color: #5287f7;
}

.internetThings-box .right {
    flex: 1;
    background: #f1f3f6;
    padding: 20px 45px 20px 60px;
}

.internetThings-box .right .internetThings-item {
    padding: 30px 0;
    border-bottom: 1px solid #d8dadd;
}

.internetThings-box .right .internetThings-item:last-of-type {
    border-bottom: 0;
}

.internetThings-box .right .internetThings-name {
    font-size: 17px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.internetThings-box .right .internetThings-name span {
    width: 24px;
    height: 24px;
    position: relative;
    background: #d8dadd;
    margin-right: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.internetThings-box .right .internetThings-name span::after {
    content: '';
    height: 5px;
    width: 5px;
    transform: rotate(135deg) translateX(1px);
    border-left: 2px solid #666;
    border-top: 2px solid #666;
}

.internetThings-box .right .internetThings-content {
    line-height: 2;
    font-size: 14px;
}

.internetThings-list {
    display: flex;
    flex-wrap: wrap;
    margin: 50px -10px 20px -10px;
}

.internetThings-list .internetThings-wrap {
    width: 33.33%;
    padding: 10px;
}

.internetThings-list .internetThings-wrap .internetThings-item {
    border: 1px solid #e7f0ff;
}

.internetThings-list .internetThings-wrap .name {
    background: #f4f8ff;
    text-align: center;
    line-height: 55px;
    font-size: 17px;
}

.internetThings-list .internetThings-wrap .icon-box {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f7fe;
    margin: 30px auto;
}

.internetThings-list .internetThings-wrap .icon-box img {
    height: 60px;
}

.internetThings-list .internetThings-wrap .content {
    padding: 0 30px 60px 30px;
    text-align: center;
    line-height: 2;
}

.internetThings-home .section1.section10 .gis-box .title {
    text-align: left;
}

.xn-box {
    display: flex;
    flex-wrap: wrap;
}

.xn-box .xn-wrap {
    width: 50%;
    padding: 10px;
}

.xn-box .xn-wrap .xn-item {
    background-color: #f0f7fe;
    padding: 20px 75px;
}

.xn-box .xn-wrap .xn-item p {
    color: #0059aa;
}

.xn-box .xn-wrap .xn-item .name {
    font-size: 26px;
    margin: 12px 0;
}

.xn-box .xn-wrap .xn-item .content {
    color: #999;
    line-height: 2;
    font-size: 14px;
}

.cb-box {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.cb-box .left {
    flex: 1;
    padding-right: 50px;
}

.cb-box .right {
    width: 32%;
}

.cb-box .right .cb-item {
    line-height: 2;
    font-size: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #e6e6e6;
}

.cb-box .right .cb-item:last-child {
    border-bottom: 0;
}

.internetThings-home .ptjg {
    margin-top: 50px;
    padding-bottom: 100px;
}

.productx-box {
    display: flex;
    margin: 50px -10px 0 -10px;
    flex-wrap: wrap;
}

.productx-box .item-wrap {
    width: 25%;
    padding: 10px;
}

.productx-box .productx-item {
    border: 1px solid #e8e8e8;
    padding: 10px;
}

.productx-box .productx-item img {
    width: 100%;
}

.productx-box .productx-item .name {
    font-size: 17px;
    margin: 14px 0;
    color: #000000;
}

.productx-box .productx-item .content {
    font-size: 14px;
    line-height: 2;
    color: #999;
    padding-bottom: 14px;
}

.product-box .section1.section10:last-child {
    padding-bottom: 100px;
}

.product-box .jg {
    margin-top: 50px;
}

.product-box .zp {
    position: relative;
    margin-top: 190px;
    margin-bottom: 70px;
}

.product-box .zp-box {
    position: absolute;
    left: 10%;
    right: 10%;
    top: -15%;
    bottom: -15%;
    border: 1px solid #e0eafd;
    border-radius: 50%;
}

.product-box .zp-box .icon-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -80px;
    font-size: 17px;
    text-align: center;
}

.product-box .zp-box .icon-box:nth-child(2) {
    position: absolute;
    left: 90%;
    top: 0;
}

.product-box .zp-box .icon-box:nth-child(3) {
    position: absolute;
    left: 90%;
    top: 285px;
}

.product-box .zp-box .icon-box:nth-child(4) {
    position: absolute;
    left: 10%;
    top: 0;
}

.product-box .zp-box .icon-box:nth-child(5) {
    position: absolute;
    left: 10%;
    top: 270px;
}

.product-box .zp-box .icon-box:nth-child(6) {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: initial;
    bottom: -70px;
}

.product-box .zp-box .icon-box img {
    height: 100px;
    display: block;
    margin: 0 auto 14px auto;
}

.j2, .j3, .j4, .j6, .j5 {
    display: none
}
.datetime-wrapper .banner-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content p, .content h3 {
    line-height: 3rem;
}
