@font-face {
    font-family: 'SourceHanSansCN-Regular';
    src: url('../fonts/SourceHanSansCN-Regular.otf');
}

@font-face {
    font-family: 'SourceHanSansCN-Bold';
    src: url('../fonts/SourceHanSansSC-Bold-2.otf');
}

@font-face {
    font-family: 'SourceHanSansCN-Light';
    src: url('../fonts/SourceHanSansSC-Light-2.otf');
}

@font-face {
    font-family: 'SourceHanSansCN-Normal';
    src: url('../fonts/SourceHanSansSC-Normal-2.otf');
}

@font-face {
    font-family: 'SourceHanSansCN-Medium';
    src: url('../fonts/SourceHanSansSC-Medium-2.otf');
}

@font-face {
    font-family: 'Oswald-Medium';
    src: url('../fonts/Oswald-Medium.ttf');
}


body {
    overflow: hidden;
    font-family: 'SourceHanSansCN-Medium';
}


/* top */
.header {
    /* background: #fff; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 10;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, .1); */
}

.header .logo {
    max-width: 200px;
    padding: 12px 0;
}
.header-hd{display: none !important;}
.header .logo img:nth-of-type(1){display: block;}
.header .logo img:nth-of-type(2){display: none;}
.header.opw .logo img:nth-of-type(1){display: none;}
.header.opw .logo img:nth-of-type(2){display: block;}
/* .header .logo img{ min-height:42px;} */
.header .top_r {
    position: relative;
    z-index: 5;
    width: 65%;
}

.header .top_search .icon {
    cursor: pointer;
    background: url(../images/search.png) no-repeat center;
    filter: invert(100%) sepia(247%) saturate(0%) hue-rotate( 0) brightness(500%) contrast(100%);
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-size: 18px;
}

.header .top_search .icon.on {
    background: url(../images/close.png) no-repeat center;
    background-size: 18px;
}

.header .top_search .search_box {
    position: absolute;
    margin-top: 20px;
    background: rgba(255, 255, 255, .8);
    right: 0;
    border-radius: 5px;
    overflow: hidden;
    display: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.header .top_search .search_box input {
    min-height: 35px;
    display: block;
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    outline: none;
    padding-left: 10px;
    font-size: 14px;
}

.header .top_search .search_box .but {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url(../images/search.png) no-repeat center;
    background-size: 18px;
}

.header .top_language {
    margin-left: 20px;
    position: relative;
}
.header.opw{
    background: #fff;
}
.header .top_language .icon {
    cursor: pointer;
    background:url(../images/language.svg) no-repeat center;
    filter: invert(100%) sepia(247%) saturate(0%) hue-rotate( 0) brightness(500%) contrast(100%);
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-size: 18px;
}
.header .top_language .langList{
    position: absolute;
    width: 40px;
    top: 100%;
    left: 50%;
    margin-left:-20px;
    padding:5px;
    background:#fff;
    transition:.3s;
    display: none;
}
.header .top_language .langList a{
    display: block;
    line-height:26px;
    text-align: center;
    font-size:14px;
}
.header .top_language .langList a:hover{
    color: #205ba9;
}
.header .top_language:hover .langList{
    display: block;
}

.header .nav_top li {
    margin: 0 20px;
    position: relative;
}

.header .nav_top li>a {
    position: relative;
    display: block;
    padding: 20px 0;
    color: #fff;
}

.header .nav_top dl {
    width: max-content;
    min-width: 150%;
    position: absolute;
    left: 50%;
    top: 110%;
    transform: translateX(-50%);
    visibility: hidden;
    transition: all .5s;
    opacity: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}

.header .nav_top dl dd {
    font-size: 14px;
    width: 100%;
    text-align: center;
    font-family: 'SourceHanSansCN-Regular';
    /*  border-bottom:solid 1px #ccc; */
}

.header .nav_top dl dd a {
    display: block;
    padding: 10px 20px;
}

.header .nav_top dl dd:last-child {
    border-bottom: none;
}

.header .nav_top li>a:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    margin: 0 auto;
    height: 4px;
    width: 0;
    /* background-color: #205ba9; */
    background-color: #fff;
    z-index: 3;
    transition: 0.6s ease;
}

.header .nav_top li:hover>a,
.header .nav_top li.active>a {
    /* color: #205ba9; */
    color: #fff;
}

.header .nav_top li:hover>a:after,
.header .nav_top li.active>a:after {
    width: 100%;
}

.header .nav_top li:hover dl {
    top: 100%;
    visibility: initial;
    opacity: 1;
}

.header .nav_top li dd a:hover {
    color: #205ba9;
}

.header .nav_top dl.d-flex {
    padding: 10px;
}

.header .nav_top dl.d-flex .item {
    padding: 0 10px;
}

.header .nav_top dl.d-flex .item .name {
    font-size: 15px;
    color: #000;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.header .top_other {
    position: relative;
    z-index: 3;
}

.header .icon-menu {
    margin-left: 20px;
    cursor: pointer;
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    z-index: 10;
}

.header .icon-menu span {
    display: block;
    position: relative;
    margin: 0 auto;
}

.header .icon-menu span i {
    height: 2px;
    width: 60%;
    background: #333333;
    display: block;
    margin: 6px auto;
    transition: all .5s;
}

.header .icon-menu i {
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    display: inline-block;
    height: 2px;
    background: #333333;
    margin: 3px 2.5px;
    border-radius: 5px;
}

.header .icon-menu i:nth-of-type(1),
.header .icon-menu i:nth-of-type(3) {
    width: 25px;
}

.header .icon-menu i:nth-of-type(2) {
    width: 25px;
}

.header .icon-menu.active i {
    background: #333333;
}

.header .icon-menu.active i:nth-of-type(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header .icon-menu.active i:nth-of-type(2) {
    opacity: 0;
}

.header .icon-menu.active i:nth-of-type(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header.opw .nav_top li a {
    color: #333;
}
.header.opw .top_other span.icon {
    filter: none;
}
@media(max-width:1200px) {
    .header .top_r {
        width: calc(95% - 275px);
    }

    .header .nav_top li {
        margin: 0 10px;
    }
}

@media(max-width:975px) {
    .header .nav_top {
        position: fixed;
        top: 0;
        right: -50%;
        background: #fff;
        width: 30%;
        text-align: center;
        height: 100vh;
        transition: all .5s;
        -webkit-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
    }

    .nav_back {
        content: '';
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5);
        z-index: 8;
        display: none;
    }

    .header .top_language .icon {
        width: 30px;
    }

    .header .nav_top .ul {
        overflow: auto;
        height: 100%;
        align-content: flex-start;
        box-shadow: -5px 5px 10px rgba(0, 0, 0, .1);
    }

    .header .nav_top li {
        width: 100%;
    }

    .header .nav_top li>a {
        border-bottom: solid 1px #ededed;
    }

    .header .nav_top li>a.pulldow {
        position: relative;
    }

    .header .nav_top li>a.pulldow::after {
        position: absolute;
        right: 0;
        top: 22px;
        content: '';
        display: block;
        width: 13px;
        height: 13px;
        background: url(../images/arrow3.png) no-repeat center;
        transition: all .5s;
        margin: 0;
        left: auto;
    }

    .header .nav_top li>a.on.pulldow::after {
        transform: rotate(90deg);
    }

    .header .nav_top.active {
        right: 0;
    }

    .header .top_r {
        width: auto;
    }

    .header .icon-menu {
        display: block;
    }

    .header .nav_top dl {
        min-width: 100%;
        width:100%;
        border-bottom: solid 1px #ededed;
    }

    .header .nav_top li>a {
        padding: 15px 0;
    }

    .header .nav_top dl {
        display: none;
        visibility: initial;
        opacity: 1;
        position: relative;
        transition: inherit;
    }
}

@media(max-width:640px) {
    .header .logo {
        max-width: 165px;
    }

    .header .logo img {
        min-height: 25px;
    }

    .header .nav_top {
        width: 50%;
        right: -70%;
    }
}


/* banner */
.hoem-banner .img_tu {
    position: relative;
    z-index: 1;
}

.hoem-banner .img_tu img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hoem-banner .text {
    position: absolute;
    left: 0;
    top: 30%;
    width: 100%;
    color: #fff;
    z-index: 2;
}

.hoem-banner .text .txt_con {
    max-width: 600px;
}

.hoem-banner .text .txt_con .tit {
    margin-bottom: 30px;
    font-size: 46px;
    font-family: 'SourceHanSansCN-Bold';
}

.hoem-banner .text .txt_con .tit:last-child {
    margin-bottom: 0;
}

.hoem-banner .text .txt_con .txt {
    line-height: 1.8;
    font-family: 'SourceHanSansCN-Regular';
}

.hoem-banner .swiper-slide .txt_con {
    transform: translateY(50px);
    opacity: 0;
    transition: all 2s;
}

.hoem-banner .ani-slide .txt_con {
    transform: translateY(0);
    opacity: 1;
}

.hoem-banner .swiper-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 5px;
    background: rgba(255, 255, 255, .3);
    opacity: 1;
    border-radius: inherit;
    position: relative;
}

.hoem-banner .swiper-pagination .swiper-pagination-bullet::after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #fff;
}

.hoem-banner .swiper-pagination .swiper-pagination-bullet-active::after {
    animation: move 5s linear forwards;
    -webkit-animation: move 5s linear forwards;
}

@keyframes move {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.hoem-banner .swiper-slide-active .img_tu img {
    animation: slowScale 8s forwards;
    -webkit-animation: slowScale 8s forwards;
}

@keyframes slowScale {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes slowScale {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@media(max-width:975px) {
    .hoem-banner .text .txt_con .tit {
        font-size: 30px;
        margin-bottom: 10px;
    }
}

@media(max-width:768px) {
    .hoem-banner .text .txt_con {
        max-width: 100%;
    }
}

@media(max-width:640px) {
    .hoem-banner .text {
        top: 20%;
    }

    .hoem-banner .text .txt_con {
        max-width: 100%;
        font-size: 12px;
    }

    .hoem-banner .text .txt_con .tit {
        margin-bottom: 5px;
        font-size: 18px;
    }
}



/* 首页 */
.index_tit {
    text-align: center;
    font-size: 40px;
}

.index-one {
    padding: 100px 0 80px;
    overflow: hidden;
}

.index-one .list {
    margin-top: 20px;
}

.index-one .list .item {
    margin: 20px 0;
    padding: 20px 50px;
    text-align: center;
    width: 33.33%;
    transition: all .5s;
}

.index-one .list .item .icon {
    margin: 0 auto;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background-image: url(../images/ellipse.png);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 100%;
}

.index-one .list .item .icon img {
    vertical-align: middle;
}

.index-one .list .item .tit {
    margin: 8px 0;
    font-size: 24px;
}

.index-one .list .item .introd {
    font-family: 'SourceHanSansCN-Light';
    color: #666666;
    line-height: 1.8;
}

.index-one .list .item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.index-two {
    padding: 100px 0;
    background: #eef2f8;
    overflow: hidden;
}

.index-two .list {
    margin-top: 60px;
}

.index-two .item {
    width: 16.3333%;
    overflow: hidden;
    transition: all .5s;
    border-right: solid 1px #fff;
}

.index-two .item:last-child {
    border-right: none;
}

.index-two .item .pic {
    width: 416px;
    position: relative;
}

.index-two .item .pic img {
    transition: all .5s;
    width: 100%;
}

.index-two .item .pic .xs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.index-two .item .text {
    width: 416px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    padding: 50px 20px 0;
    transition: all .5s;
}

.index-two .item .text a {
    color: #fff;
}

.index-two .item .text .special {
    margin-bottom: 15px;
    padding: 2px;
    min-width: 65px;
    text-align: center;
    border: solid 1px #ccc;
    font-size: 14px;
    font-family: 'SourceHanSansCN-Light';
    transition: all .5s;
}

.index-two .item .text .tit_box {
    position: relative;
}

.index-two .item .text .tit_box::before {
    background: url(../images/line.png) no-repeat;
    content: '';
    display: block;
    width: 8px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -20px;
    transition: all .5s;
    opacity: 0;
}

.index-two .item .text .tit {
    line-height: 1.2;
    transition: all .5s;
    font-size: 20px;
    width: 100%;
    font-family: 'SourceHanSansCN-Normal';
}

.index-two .item .text .ul {
    margin-top: 40px;
    opacity: 0;
    transition: all .5s;
}

.index-two .item .text li {
    margin: 8px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-family: 'SourceHanSansCN-Normal';
}

.index-two .item .text li span {
    transition: all .5s;
}

.index-two .item .text li i {
    display: block;
    width: 25px;
    height: 6px;
    margin-left: 10px;
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .5;
    transition: all .5s;
}

.index-two .item .text li:hover span {
    color: #205ba9;
}

.index-two .item .text li:hover i {
    opacity: 1;
}

.index-two .item.active {
    width: 34.6666%;
}

.index-two .item.active .xs {
    opacity: 1;
}

.index-two .item.active .text {
    width: 100%;
    padding-left: 50px;
}

.index-two .item.active .text .ul {
    opacity: 1;
}

.index-two .item.active .text .tit {
    font-size: 24px;
}

.index-two .item.active .text .special {
    border-color: #205ba9;
    min-width: 100px;
    font-size: 18px;
}

.index-two .item.active .text .tit_box::before {
    left: -50px;
    opacity: 1;
}

.index-three {
    padding: 100px 0;
    overflow: hidden;
}

.index-three .swiper-button-prev,
.index-three .swiper-button-next {
    display: none;
}

.index-three .list {
    margin-top: 60px;
}

.index-three .list .tab-box .swiper {
    width: 100%;
    padding: 5px 0 0;
    position: relative;
}

.index-three .list .tab-box .swiper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    display: block;
    background: #2a72b9;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    z-index: 5;
}

.index-three .list .tab-box .item {
    position: relative;
    padding: 20px 0;
    font-size: 18px;
    text-align: center;
    border-top: solid 2px #dde3eb;
}

.index-three .list .tab-box .item::before {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    display: block;
    background: #2a72b9;
    width: 6px;
    height: 6px;
    border-radius: 100%;
}

.index-three .list .swiper .swiper-slide-thumb-active .item {
    border-top-color: #2a72b9;
}

.index-three .list .tab-con {
    margin-top: 30px;
}

.index-three .list .tab-con .item .pic {
    width: 69.167%;
    overflow: hidden;
}

.index-three .list .tab-con .item .pic img {
    transition: all .5s;
}

.index-three .list .tab-con .item .txt {
    width: 30.8%;
    z-index: 5;
}

.index-three .list .tab-con .item .txt .Juz {
    padding: 50px;
    background: #fff;
    width: 127.167%;
    float: right;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, .1);
}

.index-three .list .tab-con .item .txt .tit {
    font-size: 30px;
    color: #000000;
    font-family: 'SourceHanSansCN-Bold';
}

.index-three .list .tab-con .item .txt .des {
    margin: 20px 0 0;
    font-family: 'SourceHanSansCN-Light';
}

.index-three .list .tab-con .item .txt .but {
    margin-top: 50px;
}

.index-three .list .tab-con .item .txt .but a {
    display: inline-block;
    vertical-align: middle;
    padding: 8px 30px;
    background: #e9f1f8;
    color: #3176bb;
    font-family: 'SourceHanSansCN-Normal';
    border-radius: 50px;
    transition: all .5s;
}

.index-three .list .tab-con .item .txt .but a:hover {
    background: #3176bb;
    color: #fff;
}

.index-three .list .tab-con .item .txt .wz {
    position: relative;
}

.index-three .list .tab-con .item .txt .wz::before {
    background: url(../images/line.png) no-repeat;
    content: '';
    display: block;
    width: 8px;
    height: 100%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: -50px;
    transition: all .5s;
}

.index-three .list .tab-con .item:hover .pic img {
    transform: scale(1.1);
}

.index-four {
    padding: 100px 0;
    background: #eef2f8;
    overflow: hidden;
}

.index-four .list {
    margin-top: 60px;
}

.index-four .item .text {
    font-size: 18px;
    padding: 20px 25px;
    font-family: 'SourceHanSansCN-Normal';
}

.index-four .item .tiem {
    margin-bottom: 10px;
    color: #999;
    font-size: 16px;
}

.index-four .fl-box {
    width: 66.667%;
}

.index-four .fl-box .swiper {
    padding: 5px;
    height: 100%;
}

.index-four .fl-box .swiper .swiper-slide {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.index-four .fl-box .swiper .item .pic {
    overflow: hidden;
}

.index-four .fl-box .swiper .item .pic img {
    overflow: hidden;
    transition: all .5s;
}

.index-four .fl-box .swiper .item:hover .pic img {
    transform: scale(1.1);
}

.index-four .fr-box {
    width: calc(33.3333% - 20px);
    padding: 5px 0;
}

.index-four .fr-box .back_bg {
    padding: 20px 0;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.index-four .fr-box .item .text {
    padding: 15px 25px;
}

.index-four .fr-box .item:hover .tit,
.index-four .fl-box .item:hover .des {
    color: #2a72b9;
}

.index-four .more {
    margin-top: 50px;
}

.index-four .more a {
    display: inline-block;
    vertical-align: middle;
    padding: 8px 30px;
    background: #ffffff;
    color: #3176bb;
    font-family: 'SourceHanSansCN-Normal';
    border-radius: 50px;
    transition: all .5s;
}

.index-four .more a:hover {
    background: #3176bb;
    color: #fff;
}

.index-five {
    padding: 100px 0;
    overflow: hidden;
}

.index-five .list {
    margin-top: 60px;
}

.index-five .list a {
    color: #fff;
}

.index-five .list .pic {
    overflow: hidden;
}

.index-five .list .pic img {
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

.index-five .list .one_yi {
    width: 40%;
    overflow: hidden;
}

.index-five .list .ol_shell {
    width: 59.167%;
}

.index-five .list .txt {
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px;
    width: 100%;
}

.index-five .list img {
    margin: 0;
    display: block;
    width: 100%;
}

.index-five .list .ol_shell .item {
    width: 100%;
    overflow: hidden;
}

.index-five .list .ol_shell .one_yi {
    display: none;
}

.index-five .list .ol_shell .item:nth-child(3),
.index-five .list .ol_shell .item:nth-child(4) {
    width: 49.296%;
}

.index-five .list a:hover .pic img {
    transform: scale(1.1);
}

.index-six {
    padding: 100px 0;
    background: #eef2f8;
}

.index-six .list_ox .item {
    width: 18.667%;
    margin-right: 1.666666%;
    margin-bottom: 1.666666%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(32, 91, 168, .3);
}

.index-six .list_ox .item figure {
    display: block;
    width: 100%;
    padding-bottom: 39.288%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .5s;
}

.index-six .list_ox .item:nth-child(5n) {
    margin-right: 0;
}

.index-six .list_ox .item:hover figure {
    transform: scale(1.1);
}

.index-six .Tab_muenu {
    margin: 50px 0;
}

.index-six .Tab_muenu .item {
    cursor: pointer;
    margin: 0 15px;
    padding: 8px 25px;
    border: solid 1px #d7d9db;
    border-radius: 50px;
    font-family: 'SourceHanSansCN-Normal';
}

.index-six .Tab_muenu .item.active {
    background: #205ba9;
    color: #ffffff;
}

.index-six .list_ox {
    display: none;
}

.index-six .more {
    margin-top: 50px;
}

.index-six .more a {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    padding: 7px 20px;
    background: #ffffff;
    color: #3176bb;
    font-family: 'SourceHanSansCN-Normal';
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(32, 91, 168, .1);
    transition: all .5s;
}

.index-six .more a:hover {
    background: #3176bb;
    color: #fff;
}


@media(max-width:1024px) {
    .index-one .list .item {
        padding: 0 10px;
    }

    .index-two .item .pic {
        width: 320px;
    }

    .index-two .item .text .tit {
        font-size: 18px;
    }

    .index-two .item .text .ul {
        margin-top: 20px;
    }

    .index-two .item .text li {
        margin: 10px 0;
        font-size: 16px;
    }

    .index-two .item.active .text .tit {
        font-size: 20px;
    }

    .index-three .list .tab-con .item .txt .Juz {
        padding: 30px;
    }

    .index-three .list .tab-con .item .txt .but {
        margin-top: 30px;
    }
}

@media(max-width:768px) {
    .index-one {
        padding: 50px 0;
    }

    .index-one .list .item .tit {
        font-size: 18px;
    }

    .index-one .list .item .icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .index-one .list .item .icon img {
        width: 50%;
    }

    .index-two {
        padding: 50px 0;
    }

    .index-two .list {
        margin-top: 30px;
    }

    .index-two .item .text li {
        margin: 5px 0;
    }

    .index-two .item.active .text {
        padding-left: 30px;
    }

    .index-two .item.active .text .tit_box::before {
        left: -30px;
    }

    .index-three {
        padding: 50px 0;
    }

    .index-three .list .tab-con .item .pic {
        width: 70%;
    }

    .index-three .list .tab-con .item .txt {
        width: 30%;
    }

    .index-three .list .tab-con .item .txt .wz::before {
        left: -30px;
    }

    .index-three .list .tab-con .item .txt .tit {
        font-size: 22px;
    }

    .index-three .list .tab-con .item .txt .des {
        margin-top: 10px;
    }

    .index-three .list .tab-con .item .txt .Juz {
        padding: 20px 30px;
        width: 200%;
    }

    .index-four {
        padding: 50px 0;
    }

    .index-four .fl-box {
        width: 100%;
    }

    .index-four .fl-box .swiper {
        padding: 5px 0;
    }

    .index-four .fr-box {
        width: 100%;
    }

    .index-four .more {
        margin-top: 30px;
    }

    .index-five {
        padding: 50px 0;
    }

    .index-six {
        padding: 50px 0;
    }

    .index-six .more {
        margin-top: 30px;
    }

    .index-six .Tab_muenu {
        margin: 20px 0;
    }

    .index-six .list_ox .item:nth-child(5n),
    .index-six .list_ox .item {
        width: 32%;
        margin-right: 2%;
        margin-bottom: 2%;
    }

    .index-six .list_ox .item:nth-child(3n) {
        margin-right: 0;
    }
}

@media(max-width:640px) {
    .index_tit {
        font-size: 26px;
    }

    .index-one .list .item {
        width: 50%;
        margin: 5px 0;
    }

    .index-two .item.active,
    .index-two .item {
        width: 100%;
        margin-bottom: 10px;
    }

    .index-two .item .pic {
        width: 100%;
    }

    .index-two .item .text {
        width: 100%;
    }

    .index-two .item .text .ul {
        opacity: 1;
    }

    .index-two .item.active .text .tit_box::before {
        width: 4px;
    }

    .index-three .list {
        margin-top: 20px;
    }

    .index-three .list .tab-box .item {
        font-size: 16px;
        padding: 10px 0;
        width: 98%;
    }

    .index-three .list .tab-box .item::before {
        left: -8px;
    }

    .index-three .list .tab-con {
        margin-top: 10px;
    }

    .index-three .list .tab-con .item {
        padding: 10px;
    }

    .index-three .list .tab-con .item .pic {
        width: 100%;
    }

    .index-three .list .tab-con .item .txt {
        margin-top: 10px;
        width: 100%;
    }

    .index-three .list .tab-con .item .txt .wz::before {
        width: 4px;
    }

    .index-three .list .tab-con .item .txt .des {
        font-size: 14px;
    }

    .index-three .list .tab-con .item .txt .Juz {
        width: 100%;
        box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    }

    .index-three .list .tab-con .item .txt .but {
        margin-top: 10px;
    }

    .index-three .list .tab-con .item .txt .but a {
        font-size: 14px;
    }

    .index-three .swiper-button-prev,
    .index-three .swiper-button-next {
        background: #fff;
        display: block;
        width: 30px;
        height: 30px;
        line-height: 24px;
        text-align: center;
        border: solid 1px #205ba9;
        border: solid 1px #205ba9;
        border-radius: 100%;
        top: 13px;
        z-index: 10;
    }

    .index-three .swiper-button-prev {
        left: 0;
    }

    .index-three .swiper-button-next {
        right: 0;
    }

    .index-three .swiper-button-next:after,
    .index-three .swiper-button-prev:after {
        font-size: 14px;
        font-weight: bold;
    }

    .index-five .list {
        margin-top: 30px;
    }

    .index-five .list .pic {
        position: relative;
    }

    .index-five .list>.one_yi {
        display: none;
    }

    .index-five .list .ol_shell {
        width: 100%;
    }

    .index-five .list .ol_shell .one_yi {
        width: 49.2%;
        display: block;
        height: 112px;
        margin-bottom: 2%;
    }

    .index-five .list .ol_shell .one_yi img {
        width: 100%;
        height: 112px;
        object-fit: cover;
    }

    .index-five .list .ol_shell .item {
        width: 49.2%;
        margin-bottom: 2%;
    }

    .index-five .list .ol_shell .item img {
        width: 100%;
        height: 112px;
        object-fit: cover;
    }
}


/* 悬浮 */
.suspend-box {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9;
    display: none;
}

.suspend-box .item {
    position: relative;
}

.suspend-box .item:nth-child(1) {
    background-image: url(../images/suspend-back1.jpg);
    border-radius: 20px 0 0 0;
}

.suspend-box .item:nth-child(2) {
    background-image: url(../images/suspend-back2.jpg);
}

.suspend-box .item:nth-child(3) {
    background-image: url(../images/suspend-back3.jpg);
    border-radius: 0 0 0 20px;
}

.suspend-box .icon {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    background: url(../images/xian.png) no-repeat;
}

.suspend-box .icon::after {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
}

.suspend-box .weix::after {
    background-image: url(../images/weixin.svg);
}

.suspend-box .Tel::after {
    background-image: url(../images/tel.svg);
}

.suspend-box .Email::after {
    background-image: url(../images/Email.svg);
}

.suspend-box .item span {
    display: none;
    padding: 10px;
    background: #fff;
    width: max-content;
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.suspend-box .item:hover span {
    display: block;
}

@media(max-width:640px) {
    .suspend-box {
        display: none;
    }
}



/* 底部 */
.footer {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    font-family: 'SourceHanSansCN-Light';
}

.footer .footer-one {
    padding: 70px 0;
}

.footer .footer-contact {
    width: 275px;
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    line-height: 2;
}

.footer .footer-logo {
    margin-bottom: 20px;
}

.footer .footer-nav {
    width: calc(95% - 275px);
}

.footer .footer-nav dt {
    color: #fff;
    margin-bottom: 20px;
}

.footer .footer-nav dd {
    font-size: 14px;
    line-height: 2.5;
}

.footer .footer-nav dd a {
    color: rgba(255, 255, 255, .4);
}

.footer .footer-nav dd a:hover {
    color: #fff;
}

.footer .liaxix .tel {
    color: #fff;
    font-size: 30px;
    font-family: 'SourceHanSansCN-Medium';
}

.footer .QRcode {
    margin-top: 25px;
}

.footer .QRcode .txt {
    margin-left: 20px;
}

.footer .footer-two {
    font-size: 14px;
    padding: 20px 0;
    border-top: solid 1px rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
}

.footer .footer-two a {
    color: rgba(255, 255, 255, .4);
}

.footer .share_box .icon {
  margin-right: 10px;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
}

.footer .share_box .icon figure{display: none;width: 130px; position: absolute; right: 0;bottom: 100%; margin-bottom: 10px;background: #fff;padding: 5px;}
.footer .share_box .icon figure:after{position: absolute; content: ''; border: 5px solid transparent; border-top-color: #fff; right: 16px; top:100%;}


.footer .share_box .icon.weib {
    background: rgba(153, 153, 153, .1) url(../images/weib.png) no-repeat center;
}

.footer .share_box .icon.weix {
    background: rgba(153, 153, 153, .1) url(../images/weixin.png) no-repeat center;
}

.footer .share_box .icon.qq {
    background: rgba(153, 153, 153, .1) url(../images/QQ.png) no-repeat center;
}

.footer .share_box .icon:last-child {
    margin-right: 0;
}

@media(max-width:1024px) {
    .footer .footer-nav {
        width: calc(95% - 275px);
    }
}

@media(max-width:768px) {
    .footer .footer-one {
        padding: 50px 0;
    }

    .footer .footer-nav {
        width: 100%;
    }

    .footer .footer-contact {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer .footer-contact .liaxix {
        display: flex;
        justify-content: space-between;
    }
}

@media(max-width:640px) {
    .footer .footer-one {
        padding: 50px 0;
    }

    .footer .footer-nav {
        display: none;
        width: 100%;
    }

    .footer .footer-contact {
        width: 100%;
        margin-bottom: 0;
    }

    .footer .footer-contact .liaxix {
        display: block;
    }

    .footer .share_box {
        margin-top: 10px;
    }
}



/* 内页banner */
.Inside-ban {
    position: relative;
    z-index: 5;
}

.Inside-ban .pic {
    background-size: cover;
}

.Inside-ban .pic img {
    width: 100%;
}

.Inside-ban .text {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.Inside-ban .text .tit {
    margin-bottom: 30px;
    color: #fff;
    font-size: 46px;
    font-family: 'SourceHanSansCN-Bold';
}

.Inside-ban .text .introd {
    line-height: 1.8;
    color: #ffffff;
    font-size: 16px;
    max-width: 600px;
    font-family: 'SourceHanSansCN-Regular';
}

.Inside-ban .text .more {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.Inside-ban .text .more a {
    font-size: 16px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    padding: 7px 30px;
    color: #fff;
    font-family: 'SourceHanSansCN-Normal';
    border: solid 1px #fff;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(32, 91, 168, .1);
    transition: all .5s;
}

.Inside-ban .text .more a span {
    display: block;
}

.Inside-ban .text .more a::after {
    margin-left: 10px;
    margin-top: 2px;
    content: '';
    width: 8px;
    height: 13px;
    display: block;
    background: url(../images/arrow1.png) no-repeat center;
    transition: all .5s;
}

.Inside-ban .text .more a:hover {
    background: #fff;
    color: #205ba9;
}

.Inside-ban .text .more a:hover::after {
    background: url(../images/arrow3.png) no-repeat center;
}

@media(max-width:1024px) {
    .Inside-ban .text .tit {
        font-size: 36px;
    }

    .Inside-ban .pic {
        padding-bottom: 50%;
        background-size: cover !important;
        background-position: center !important;
    }

    .Inside-ban .pic img {
        display: none;
    }
}

@media(max-width:768px) {
    .Inside-ban .pic {
        padding-bottom: 50%;
        background-size: cover !important;
    }
}

@media(max-width:640px) {
    .Inside-ban .text .tit {
        font-size: 22px;
    }

    .Inside-ban .text .introd {
        font-size: 12px;
    }

    .Inside-ban .text .more a {
        font-size: 12px;
    }

    .Inside-ban .pic {
        padding-bottom: 80%;
        background-size: cover !important;
    }
}

/* 内页菜单 */
.Inside-menu {
    padding: 60px 0;
}

.Inside-menu .item {
    margin: 0 25px;
}

.Inside-menu .item a {
    display: block;
    margin-bottom: 5px;
    font-family: 'SourceHanSansCN-Light';
}

.Inside-menu .item::after {
    margin: 0 auto;
    content: '';
    display: block;
    width: 70%;
    height: 4px;
    border-radius: 20px;
    background: #205ba9;
    opacity: 0;
}

.Inside-menu .item.active a {
    font-family: 'SourceHanSansCN-Regular';
    color: #205ba9;
}

.Inside-menu .item.active::after {
    opacity: 1;
}

.TractionMenu-box {
    margin: 0;
}

.TractionMenu-box .Inside-menu {
    margin: 0;
    padding: 60px 0 0;
}

.TractionMenu-box.onFixed {
    position: fixed;
    z-index: 8;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.TractionMenu-box.onFixed .Inside-menu {
    padding: 20px 0;
}

@media(max-width:768px) {
    .Inside-menu {
        padding: 40px 0;
    }
}

@media(max-width:640px) {
    .Inside-menu {
        padding: 20px 0;
    }

    .Inside-menu .item {
        margin: 0 5px;
    }

    .TractionMenu-box .Inside-menu {
        padding-top: 30px;
        font-size: 14px;
    }

    .TractionMenu-box.onFixed {
        z-index: 10;
    }
}




/* 经典案例 */
.Inside-tit {
    font-size: 30px;
    text-align: center;
    font-family: 'SourceHanSansCN-Bold';
}

@media(max-width:640px) {
    .Inside-tit {
        font-size: 22px;
    }
}

.case-one {
    padding: 80px 0;
    overflow: hidden;
}

.case-one .case-con {
    margin-top: 40px;
}

.case-one .case-con .des {
    width: 50%;
    padding-right: 80px;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.case-one .case-video {
    width: 50%;
    position: relative;
}

.case-one .case-video .video-but {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 61px;
    height: 61px;
    background-image: url(../images/video_but.png);
    border-radius: 100%;
    overflow: hidden;
    margin-top: -31px;
    margin-left: -31px;
    z-index: 9;
}

.case-one .case-video video {
    display: block;
    width: 100%;
}

.case-one .case-video .video-but.play {
    display: none;
}

.case-two {
    padding: 100px 0;
    background: #f5f7fa url(../images/case_back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.case-two .des {
    margin: 30px 0;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.case-two .list .item {
    background: #fff;
    padding: 25px;
    width: 31.6667%;
    margin-right: 2.488888%;
    margin-bottom: 2.488888%;
    transition: all .5s;
    cursor: pointer;
}

.case-two .list .item .txt .tit {
    margin: 20px 0;
    text-align: center;
    font-size: 22px;
    font-family: 'SourceHanSansCN-Bold';
}

.case-two .list .item .icon span {
    font-size: 0;
    display: block;
    background: #f0f5fb;
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    transition: all .5s;
    border-radius: 100%;
}

.case-two .list .item .icon span img {
    vertical-align: middle;
    transition: all .5s;
}

.case-two .list .item .icon span .xis {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.case-two .list .item .introd {
    min-height: 300px;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.case-two .list .item:nth-child(3n) {
    margin-right: 0;
}

.case-two .list .item:hover {
    box-shadow: 0 0 30px rgba(32, 91, 168, .1);
}

.case-two .list .item:hover span {
    background: #205ba9;
}

.case-two .list .item:hover .icon span .xis {
    opacity: 1;
}

@media(max-width:768px) {
    .case-one .case-con .des {
        width: 100%;
        padding-right: 0;
    }

    .case-one .case-video {
        margin-top: 30px;
        width: 100%;
    }

    .case-two .list .item {
        width: 100%;
        margin-right: 0;
    }

    .case-two .list .item .introd {
        min-height: 0;
    }

    .case-two .list .item .txt {
        font-size: 14px;
    }

    .case-two .list .item .txt .tit {
        font-size: 18px;
    }
}



/* 产品中心 */
.pro-one {
    padding: 70px 0 80px;
    overflow: hidden;
}

.pro-one .pro-con {
    margin-top: 40px;
}

.pro-one .pro-con .des {
    width: 50%;
    padding-right: 80px;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.pro-one .pro-img {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.pro-one .pro-img img {
    overflow: hidden;
    transition: all .5s;
}

.pro-one .pro-con:hover .pro-img img {
    transform: scale(1.1);
}

.pro-two {
    padding: 100px 0;
    background: center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.pro-two .list {
    margin-top: 40px;
}

.pro-two .list .item {
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 33.333%;
    background: #f7f8fa;
    padding: 40px 50px;
    transition: all .5s;
}

.pro-two .list .item .icon span {
    font-size: 0;
    display: block;
    background: rgba(0, 90, 192, .1);
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    transition: all .5s;
    border-radius: 100%;
}

.pro-two .list .item .icon span img {
    vertical-align: middle;
    transition: all .5s;
}

.pro-two .list .item .icon span .xis {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.pro-two .list .item .txt .tit {
    margin: 20px 0;
    text-align: center;
    font-size: 22px;
    font-family: 'SourceHanSansCN-Medium';
}

.pro-two .list .item .des {
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.pro-two .list .item:nth-child(2n) {
    background: #fff;
}

.pro-two .list .item:hover {
    box-shadow: 0 0 20px rgba(32, 91, 168, .2);
    z-index: 3;
}

.pro-two .list .item:hover .icon span {
    background: #205ba9;
}

.pro-two .list .item:hover .icon span .xis {
    opacity: 1;
}

.pro-three {
    padding: 100px 0;
    overflow: hidden;
}

.pro-three .list-box {
    margin-top: 40px;
}

.pro-three .list-box .item {
    margin-bottom: 30px;
}

.pro-three .list-box .item:last-child {
    margin-bottom: 0;
}

.pro-four {
    overflow: hidden;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.pro-four .list-box {
    margin-top: 40px;
}

.pro-four .item {
    border-top: solid 2px #205ba9;
    position: relative;
    padding: 35px 35px 60px;
    background: #fff;
    width: 48.5%;
}

.pro-four .item .tit {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.pro-four .item .icon {
    position: absolute;
    bottom: 25px;
    right: 10%;
}

.pro-four .item .des {
    position: relative;
    z-index: 5;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.pro-five {
    padding: 100px 0;
    overflow: hidden;
}

.pro-five .pro-con {
    direction: rtl;
    margin-top: 40px;
}

.pro-five .pro-con .pro-img {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.pro-five .pro-con .pro-img img {
    transition: all .5s;
}

.pro-five .pro-con .introd {
    direction: ltr;
    width: 50%;
    padding-left: 80px;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.pro-five .pro-con .tit {
    margin-bottom: 10px;
    font-size: 22px;
    font-family: 'SourceHanSansCN-Bold';
}

.pro-five .pro-con .more {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.pro-five .pro-con .more a {
    font-size: 16px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    padding: 5px 30px;
    border: solid 1px #2f66af;
    color: #3176bb;
    font-family: 'SourceHanSansCN-Normal';
    border-radius: 50px;
    transition: all .5s;
}

.pro-five .pro-con .more a span {
    display: block;
}

.pro-five .pro-con .more a::after {
    margin-left: 10px;
    margin-top: 2px;
    content: '';
    width: 8px;
    height: 13px;
    display: block;
    background: url(../images/arrow3.png) no-repeat center;
}

.pro-five .pro-con:hover .pro-img img {
    transform: scale(1.1);
}

.pro-five .pro-con .more a:hover {
    background: #3176bb;
    color: #fff;
    border-color: #3176bb;
}

.pro-five .pro-con .more a:hover::after {
    background: url(../images/arrow1.png) no-repeat center;
}

@media(max-width:768px) {
    .pro-one .pro-con .des {
        width: 100%;
        padding-right: 0;
    }

    .pro-one .pro-img {
        text-align: center;
        margin-top: 15px;
        width: 100%;
    }

    .pro-two {
        padding: 50px 0;
    }

    .pro-two .list .item {
        padding: 20px 10px;
    }

    .pro-two .list .item .txt .tit {
        font-size: 18px;
    }

    .pro-two .list .item .des {
        font-size: 14px;
    }

    .pro-three {
        padding: 50px 0;
    }

    .pro-four {
        padding: 50px 0;
    }

    .pro-four .item {
        width: 100%;
        margin-bottom: 30px;
    }

    .pro-four .item .tit {
        font-size: 18px;
    }

    .pro-five {
        padding: 50px 0;
    }

    .pro-five .pro-con .introd {
        width: 100%;
        padding-left: 0;
    }

    .pro-five .pro-con .pro-img {
        text-align: center;
        width: 100%;
        margin-top: 30px;
    }
}

@media(max-width:640px) {
    .pro-two .list .item {
        padding: 30px;
        width: 100%;
        margin-bottom: 30px;
    }
}



/* 咨询服务 */
.service-one {
    padding: 100px 0;
}

.service-one .item {
    width: 23%;
    margin-right: 2.666666%;
    transition: all .5s;
    box-shadow: 0 0 20px rgba(32, 91, 168, .1);
}

.service-one .item .pic {
    overflow: hidden;
}

.service-one .item .pic figure {
    display: block;
    padding-bottom: 83.333333%;
    background-size: cover;
    transition: all .5s;
}

.service-one .item .text {
    padding: 0 25px;
    background: url(../images/service_back.png) no-repeat;
    background-size: cover;
}

.service-one .item .text .tit {
    font-size: 22px;
    color: #000000;
    padding: 15px 0;
    border-bottom: solid 1px #d7dbe0;
    font-family: 'SourceHanSansCN-Medium';
    transition: all .5s;
}

.service-one .item .text ul {
    padding: 20px 0;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.service-one .item:nth-child(4n) {
    margin-right: 0;
}

.service-one .item:hover {
    box-shadow: 0 0 20px rgba(32, 91, 168, .3);
}

.service-one .item:hover .pic figure {
    transform: scale(1.1);
}

.service-one .introd-box {
    text-align: center;
}

.service-one .introd-box .introd {
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.service-one .list {
    margin-top: 50px;
}

.service-one .list li {
    display: flex;
    justify-content: space-between;
}

.service-one .list li i {
    display: block;
    margin-top: 12px;
}

.service-one .list li i img {
    display: block;
}

.service-one .list li span {
    width: calc(100% - 20px);
    display: block;
}

.service-one .item:hover .text .tit {
    color: #205ba9;
}

.service-contact {
    margin-top: 70px;
    padding: 68px 60px;
    background: no-repeat right center;
    background-size: cover;
    box-shadow: 5px 5px 20px rgba(32, 91, 168, .1);
}

.service-contact .oli {
    margin-right: 40px;
}

.service-contact .oli .icon {
    margin-right: 20px;
    background: #205ba9;
    border-radius: 100%;
    overflow: hidden;
}

.service-contact .oli .tit {
    font-family: 'SourceHanSansCN-Light';
}

.service-contact .oli .wz {
    font-size: 20px;
}

.service-contact .oli:last-child {
    margin-right: 0;
}

@media(max-width:1024px) {
    .service-one .item {
        width: 48%;
        margin-bottom: 3%;
    }

    .service-one .item:nth-child(2n) {
        margin-right: 0;
    }
}

@media(max-width:768px) {
    .service-one {
        padding: 50px 0;
    }

    .service-one .list {
        margin-top: 30px;
    }
}

@media(max-width:640px) {
    .service-one .item {
        width: 100%;
    }

    .service-contact {
        margin-top: 50px;
        padding: 20px;
    }

    .service-contact .oli {
        margin-bottom: 20px;
        width: 100%;
    }

    .service-contact .oli .icon {
        width: 40px;
    }

    .service-contact .oli:last-child {
        margin-bottom: 0;
    }
}


/* 项目实施与维护响应 */
.Project-one {
    text-align: center;
    padding: 80px 0 100px;
}

.Project-one .list {
    margin-top: 40px;
}

.Project-one .item {
    padding: 25px 25px 50px;
    padding-right: 30px;
    width: 20%;
    background: url(../images/project-back2.png);
    background-size: 100% 100% !important;
    font-family: 'SourceHanSansCN-Light';
    position: relative;
    overflow: hidden;
}

.Project-one .item .tit {
    font-size: 22px;
    margin: 20px 0;
    font-family: 'SourceHanSansCN-Medium';
}

.Project-one .item .arrow {
    margin: 4px 0;
    font-size: 0;
}

.Project-one .item:first-child {
    padding-right: 25px;
    background: url(../images/project-back.png);
}

.Project-one .item:last-child {
    padding-right: 25px;
    background: url(../images/project-back3.png);
}

.Project-one .item .suz {
    font-family: 'Oswald-Medium';
    font-size: 64px;
    color: #205ba9;
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 100%;
    text-align: center;
    opacity: .06;
    line-height: 1;
}

.Project-two {
    padding: 100px 0;
    background: url(../images/Project-back4.png);
}

.Project-two .Project-con {
    margin-top: 45px;
}

@media(max-width:768px) {
    .Project-one .item {
        font-size: 14px;
        padding: 20px 10px;
        padding-right: 20px;
    }

    .Project-one .item .pic img {
        max-width: 25px;
    }

    .Project-one .item .tit {
        font-size: 16px;
    }

    .Project-one .item .suz {
        font-size: 40px;
        bottom: -10px;
    }
}

@media(max-width:640px) {
    .Project-one .item {
        background: url(../images/project-back3.png);
        width: 100%;
        margin-bottom: 20px;
    }

    .Project-two {
        padding: 50px 0;
    }

    .Project-two .Project-con {
        margin-top: 30px;
    }
}



/* 解决方案 */
.solution-one {
    padding: 60px 0 100px;
}

.solution-one .solution-video {
    margin-top: 40px;
}

.solution-one .video_box {
    width: 78%;
    position: relative;
}

.solution-one .video_box .video-but {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 61px;
    height: 61px;
    background-image: url(../images/video_but.png);
    border-radius: 100%;
    overflow: hidden;
    margin-top: -31px;
    margin-left: -31px;
    z-index: 9;
}

.solution-one .video_box video {
    display: block;
    width: 100%;
}

.solution-one .video_box .video-but.play {
    display: none;
}

.solution-two {
    padding: 100px 0;
    background: url(../images/solution-back2.png) center no-repeat;
    background-size: cover;
    overflow: hidden;
}

.solution-two .list {
    margin-top: 40px;
}

.solution-two .list .item {
    cursor: pointer;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 33.333%;
    background: #f7f8fa;
    padding: 40px 50px;
    transition: all .5s;
}

.solution-two .list .item .icon span {
    font-size: 0;
    display: block;
    background: rgba(0, 90, 192, .1);
    width: 66px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    transition: all .5s;
    border-radius: 100%;
}

.solution-two .list .item .icon span img {
    vertical-align: middle;
    transition: all .5s;
}

.solution-two .list .item .icon span .xis {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.solution-two .list .item .txt .tit {
    margin: 20px 0;
    text-align: center;
    font-size: 22px;
    font-family: 'SourceHanSansCN-Medium';
}

.solution-two .list .item .des {
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.solution-two .list .item:nth-child(2n) {
    background: #fff;
}

.solution-two .list .item:hover {
    box-shadow: 0 0 20px rgba(32, 91, 168, .2);
    z-index: 3;
}

.solution-two .list .item:hover .icon span {
    background: #205ba9;
}

.solution-two .list .item:hover .icon span .xis {
    opacity: 1;
}

.solution-three {
    padding: 100px 0;
    overflow: hidden;
}

.solution-three .solution-tab {
    margin: 35px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 100px;
    overflow: hidden;
}

.solution-three .solution-tab .item {
    cursor: pointer;
    padding: 15px 0;
    font-size: 18px;
    text-align: center;
    width: 33.666%;
}

.solution-three .solution-tab .item.active {
    color: #fff;
    background: url(../images/solution-back.jpg);
    background-size: 100% 100%;
}

.solution-three .data-shell {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: solid 1px #e5e5e5;
}

.solution-three .data-shell .ixa {
    width: 16.6666%;
    text-align: center;
}

.solution-three .data-shell .ixa .alw {
    color: #2a72b9;
    margin-bottom: 5px;
}

.solution-three .data-shell .ixa span {
    font-size: 30px;
}

.solution-three .data-shell .ixa i {
    margin-left: 5px;
    font-style: normal;
    font-family: 'SourceHanSansCN-Light';
}

.solution-three .data-shell .ixa .wxz {
    font-family: 'SourceHanSansCN-Light';
}

.solution-three .tab-con {
    display: none;
    min-height: 100px;
    padding: 0 45px;
}

.solution-three .tab-con li {
    text-align: center;
    width: 28%;
    margin-right: 8%;
    line-height: 1.8;
    font-family: 'SourceHanSansCN-Light';
}

.solution-three .tab-con li .tit {
    margin: 20px 0 10px;
    font-size: 20px;
    color: #000000;
    font-family: 'SourceHanSansCN-Medium';
}

.solution-three .tab-con li:nth-child(3n) {
    margin-right: 0;
}

.solution-four {
    background: #f2f6fa;
    padding: 100px 0;
    overflow: hidden;
}

.solution-four .list-box {
    margin-top: 40px;
}

.solution-four .list-box .item {
    margin-bottom: 30px;
}

.solution-four .list-box .item:last-child {
    margin-bottom: 0;
}

.solution-five {
    padding: 100px 0;
    overflow: hidden;
}

.solution-five .pro-con {
    direction: rtl;
    margin-top: 40px;
}

.solution-five .pro-con .pro-img {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.solution-five .pro-con .pro-img img {
    transition: all .5s;
}

.solution-five .pro-con .introd {
    direction: ltr;
    width: 50%;
    padding-left: 80px;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.solution-five .pro-con .tit {
    margin-bottom: 10px;
    font-size: 22px;
    font-family: 'SourceHanSansCN-Bold';
}

.solution-five .pro-con .more {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.solution-five .pro-con .more a {
    font-size: 16px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    padding: 5px 30px;
    border: solid 1px #2f66af;
    color: #3176bb;
    font-family: 'SourceHanSansCN-Normal';
    border-radius: 50px;
}

.solution-five .pro-con .more a span {
    display: block;
}

.solution-five .pro-con .more a::after {
    margin-left: 10px;
    margin-top: 2px;
    content: '';
    width: 8px;
    height: 13px;
    display: block;
    background: url(../images/arrow3.png) no-repeat center;
}

.solution-five .pro-con:hover .pro-img img {
    transform: scale(1.1);
}

@media(max-width:768px) {
    .solution-two {
        padding: 50px 0;
    }

    .solution-two .list .item {
        padding: 20px 10px;
    }

    .solution-two .list .item .txt .tit {
        font-size: 18px;
    }

    .solution-two .list .item .des {
        font-size: 14px;
    }

    .solution-three {
        padding: 50px 0;
    }

    .solution-four {
        padding: 50px 0;
    }

    .solution-four .item {
        width: 100%;
        margin-bottom: 30px;
    }

    .solution-four .item .tit {
        font-size: 18px;
    }

    .solution-five {
        padding: 50px 0;
    }

    .solution-five .pro-con .introd {
        width: 100%;
        padding-left: 0;
    }

    .solution-five .pro-con .pro-img {
        text-align: center;
        width: 100%;
        margin-top: 30px;
    }
}

@media(max-width:768px) {
    .solution-three .tab-con {
        padding: 0;
    }
}

@media(max-width:640px) {
    .solution-one {
        padding-bottom: 50px;
    }

    .solution-two .list .item {
        width: 100%;
        margin-bottom: 20px;
        padding: 20px;
    }

    .solution-three .solution-tab {
        flex-wrap: wrap;
        border-radius: 10px;
        overflow: hidden;
    }

    .solution-three .solution-tab .item {
        width: 100%;
    }

    .solution-three .data-shell .ixa {
        width: 50%;
        margin-bottom: 10px;
    }

    .solution-three .tab-con li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .solution-one .video_box {
        width: 100%;
    }
}



/* 关于我们-公司介绍 */
.About-one {
    padding: 100px 0;
}

.About-one .pic {
    width: 40%;
    overflow: hidden;
}

.About-one .pic img {
    transition: all .5s;
}

.About-one .text {
    width: 53%;
}

.About-one .text .tit {
    margin-top: 40px;
    font-family: 'SourceHanSansCN-Bold';
    font-size: 36px;
    color: #000000;
}

.About-one .text .des {
    margin: 15px 0;
    font-size: 18px;
    color: #000000;
}

.About-one .text .introd {
    margin-bottom: 60px;
    font-size: 16px;
    color: #333333;
    font-family: 'SourceHanSansCN-Light';
    line-height: 2;
}

.About-one .more {
    font-size: 0;
    display: flex;
}

.About-one .more a {
    display: flex;
    align-items: center;
    transition: all .5s;
}

.About-one .more span {
    margin-left: -40px;
    font-size: 16px;
    color: #205ba9;
    font-family: 'SourceHanSansCN-Light';
}

.About-one .more a::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background: #daeaf7;
    border-radius: 100%;
    transition: all .5s;
}

.About-one .more a::after {
    margin-left: 10px;
    content: '';
    display: block;
    width: 36px;
    height: 9px;
    background: url(../images/arrow2.svg) no-repeat center right;
}

.About-one .more a:hover {
    transform: translateY(-10%);
}

.About-one .more a:hover::before {
    box-shadow: 0 0 20px rgba(0, 90, 192, .4);
}

.About-one .pic:hover img {
    transform: scale(1.1);
}

.About-two {
    padding: 70px 0;
    background: url(../images/about-back1.png) no-repeat;
    background-size: 100% 100%;
}

.About-two .item {
    line-height: 1;
    width: 33.333%;
    border-left: solid 3px #dadce0;
    padding-left: 25px;
}

.About-two .item .digit {
    margin-bottom: 15px;
    line-height: 1;
    color: #205ba9;
}

.About-two .item .digit span {
    font-family: 'Oswald-Medium';
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 50px;
}

.About-two .item .digit i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    line-height: 1;
    font-style: normal;
    font-size: 32px;
}

.About-two .item .txt {
    line-height: 1.5;
    font-size: 18px;
    color: #333333;
    font-family: 'SourceHanSansCN-Light';
}

.About-three {
    line-height: 2;
    padding: 110px 0;
    font-family: 'SourceHanSansCN-Light';
}

.About-three .pic {
    float: left;
    margin-right: 50px;
    margin-bottom: 20px;
}

@media(max-width:640px) {
    .About-one {
        padding: 50px 0;
    }

    .About-one .text {
        width: 100%;
    }

    .About-one .text .introd {
        margin-bottom: 20px;
    }

    .About-one .text .tit {
        font-size: 26px;
        margin-top: 0;
    }

    .About-one .more {
        margin-bottom: 20px;
    }

    .About-one .pic {
        width: 100%;
    }

    .About-two .item {
        margin-bottom: 25px;
        width: 33.333%;
        border-left: none;
        padding-left: 0;
    }

    .About-two .item .digit span {
        font-size: 36px;
    }

    .About-two .item .digit i {
        font-size: 22px;
    }

    .About-two .item .txt {
        font-size: 14px;
    }

    .About-three .pic {
        margin-right: 0;
    }
}



/* 关于我们-公司直播 */
.sort-tiem {
    margin: 40px 0;
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 5;
}

.sort-tiem .back-select {
    width: 260px;
    position: relative;
    ;
}

.sort-tiem .back-select .select-txt {
    display: block;
    outline: none;
    width: 100%;
    background: #f7f8fa;
    padding: 0 20px;
    font-size: 16px;
    border: none;
    margin: 0;
    cursor: pointer;
    height: 45px;
    line-height: 45px;
    position: relative;
}

.sort-tiem .back-select .select-txt::after {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -4px;
    content: '';
    display: block;
    width: 13px;
    height: 8px;
    background: url(../images/arrow5.png);
}

.sort-tiem .back-select .option_box {
    display: none;
    padding: 10px 20px;
    background: #fff;
    border: solid 1px #f7f8fa;
    border-top: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
}

.sort-tiem .back-select .option_box li {
    line-height: 2;
}

.sort-tiem .back-select .option_box li a {
    display: block;
}

.sort-tiem .back-select .option_box li a:hover {
    color: #2a72b9;
}

.sort-tiem .sort-search {
    margin-left: 15px;
    background: #f7f8fa;
}

.sort-tiem .sort-search input {
    width: calc(100% - 45px);
    display: block;
    height: 45px;
    line-height: 45px;
    background: none;
    outline: none;
    border: none;
    padding: 0 20px;
    font-family: 'SourceHanSansCN-Light';
}

.sort-tiem .sort-search .but {
    cursor: pointer;
    background: #205ba9 url(../images/search-icon.png) no-repeat center;
    padding: 0;
    width: 45px;
    height: 45px;
}


.broadcast-list {
    padding-bottom: 100px;
}

.broadcast-list li {
    margin-bottom: 45px;
}

.broadcast-list li .pic {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.broadcast-list li .pic span {
    font-size: 16px;
    position: absolute;
    padding: 10px 30px;
    background: #999999;
    color: #fff;
    font-family: 'SourceHanSansCN-Normal';
    top: 0;
    left: 0;
    border-radius: 0 0 20px 0;
    overflow: hidden;
}

.broadcast-list li .pic span.color1 {
    background: #ff711d;
}

.broadcast-list li .pic figure {
    padding-bottom: 62.5%;
    transition: all .5s;
}

.broadcast-list li .text {
    background: #f5f7fa;
    padding: 50px 60px;
    width: 50%;
    font-family: 'SourceHanSansCN-Light';
}

.broadcast-list li .text .tit {
    font-size: 24px;
    font-family: 'SourceHanSansCN-Bold';
}

.broadcast-list li .text .tiem {
    margin: 15px 0;
    font-size: 16px;
    color: #999999;
    font-family: 'SourceHanSansCN-Normal';
}

.broadcast-list li .text .introd {
    line-height: 1.8;
}

.broadcast-list li .text .arrow {
    margin-top: 45px;
}

.broadcast-list li .text .arrow span {
    position: relative;
    display: flex;
    align-items: center;
}

.broadcast-list li .text .arrow span::before {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    background: #e9f1f8;
    border-radius: 100%;
    transition: all .5s;
}

.broadcast-list li .text .arrow span::after {
    content: '';
    display: block;
    width: 36px;
    height: 36px;
    background: url(../images/arrow2.svg) no-repeat center;
    margin-left: -20px;
    transition: all .5s;
}

.broadcast-list li:nth-child(2n) {
    direction: rtl;
}

.broadcast-list li:nth-child(2n) .text {
    direction: ltr;
}

.broadcast-list li:nth-child(2n) .pic {
    direction: ltr;
}

.broadcast-list li:hover .pic figure {
    transform: scale(1.1);
}

.broadcast-list li:hover .text .arrow span::before {
    box-shadow: 0 0 15px rgba(0, 90, 192, .2);
}

.broadcast-list li:hover .text .arrow span::after {
    margin-left: 5px;
}

@media(max-width:640px) {
    .sort-tiem .back-select {
        width: 100%;
    }

    .sort-tiem .sort-search {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .broadcast-list li .pic {
        width: 100%;
    }

    .broadcast-list li .text {
        width: 100%;
        padding: 20px 10px;
    }

    .broadcast-list li .text .tit {
        font-size: 18px;
    }

    .broadcast-list li .text .arrow {
        margin-top: 20px;
    }
}

/*分页*/
.Page001913 {
    margin-top: 80px;
    text-align: center;
    color: #333;
    font-family: 'SourceHanSansCN-Light';
}

.Page001913 * {
    vertical-align: middle;
}

.Page001913 .Pages .p_cur,
.Page001913 .Pages .p_count,
.Page001913 .Pages .p_total,
.Page001913 .Pages .a_first,
.Page001913 .Pages .a_end {
    display: none;
}

.Page001913 .Pages a {
    margin: 0 5px;
    border: 1px solid #ceced5;
    display: inline-block;
    width: 45px;
    line-height: 45px;
    color: #333;
}

.Page001913 .Pages a:hover,
.Page001913 .Pages a.a_cur {
    color: #fff;
    background-color: #184c95;
}

.Page001913 .Pages .a_prev,
.Page001913 .Pages .a_next {
    font-family: '宋体';
    font-weight: bold;
}

.Page001913 .Pages em {
    margin: 0 5px;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
}

.Page001913 .Pages .i_text {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    outline: none;
    border: 1px solid #ceced5;
}

.Page001913 .Pages .i_button {
    cursor: pointer;
    background: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #184c95;
    color: #fff;
    border: 1px solid #184c95;
}

.Page001913 .Pages .p_jump b {
    font-weight: normal;
    margin: 0 10px;
}

@media(max-width:1000px) {
    .Page001913 .Pages em {
        display: none;
    }
}

@media(max-width:640px) {
    .Page001913 {
        margin-top: 60px;
    }

    .Page001913 .Pages a.a_first,
    .Page001913 .Pages a.a_end {
        display: none;
    }

    .Page001913 .Pages a {
        padding: 0 10px;
    }
}



/* 关于我们-发展历程 */
.history-box {
    margin: 110px 0;
    position: relative;
}

.history-box .swiper {
    width: 100%;
    position: relative;
}

.history-box #gallery .swiper-slide {
    padding: 40px 50px;
}

.history-box #gallery .item {
    position: relative;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.history-box #gallery .item .pic {
    width: 36.364%;
    overflow: hidden;
}

.history-box #gallery .item .pic img {
    transition: all .5s;
}

.history-box #gallery .item .txt {
    padding: 30px 50px;
    width: 63.6%;
    position: relative;
    z-index: 1;
}

.history-box #gallery .item .ul li {
    margin: 8px 0;
    position: relative;
    padding-left: 20px;
    font-size: 18px;
    font-family: 'SourceHanSansCN-Light';
}

.history-box #gallery .item .ul li i {
    position: absolute;
    left: 0;
    font-style: normal;
}

.history-box #gallery .item::after {
    content: '';
    display: block;
    background: url(../images/history-back.png) no-repeat center;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.history-box #gallery .item:hover .pic img {
    transform: scale(1.1);
}

.history-box #thumbs::after {
    position: absolute;
    top: 50%;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #d4dbe5;
}

.history-box #thumbs .itme {
    position: relative;
    padding: 80px 0;
    text-align: center;
    font-size: 22px;
    font-family: 'SourceHanSansCN-Light';
}

.history-box #thumbs .itme span {
    cursor: pointer;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 35px 0;
    background-image: url('../images/history-icon.png');
    background-repeat: no-repeat;
    background-position-x: -100%;
    background-position-y: bottom;
}

.history-box #thumbs .itme::after {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #2a72b9;
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    margin-top: -3px;
    border-radius: 100%;
    overflow: hidden;
    z-index: 5;
}

.history-box #thumbs .itme::before {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -8px;
    margin-top: -8px;
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: rgba(32, 91, 168, .3);
    border-radius: 100%;
    opacity: 0;
    transition: all .5s;
}

.history-box #thumbs .swiper-slide-thumb-active .itme span {
    color: #2a72b9;
    top: -23px;
    bottom: auto;
    font-family: 'SourceHanSansCN-Bold';
    background-position-x: center;
    transition: all .5s;
}

.history-box #thumbs .swiper-slide-thumb-active .itme::before {
    opacity: 1;
}

.history-box .aniu-but {
    position: absolute;
    left: 0;
    top: 78px;
    width: 100%;
}

.history-box .aniu-but .swiper-button-prev,
.history-box .aniu-but .swiper-button-next {
    background: #2a72b9;
    width: 50px;
    height: 50px;
    overflow: hidden;
    opacity: 1;
    border-radius: 100%;
}

.history-box .aniu-but .swiper-button-prev {
    left: -50px;
}

.history-box .aniu-but .swiper-button-next {
    right: -50px;
}

.history-box .aniu-but .swiper-button-prev:after,
.history-box .aniu-but .swiper-button-next:after {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.history-box .aniu-but .swiper-button-disabled {
    background: #ffff;
}

.history-box .aniu-but .swiper-button-disabled:after {
    color: #666666;
}

@media(max-width:1024px) {
    .history-box .aniu-but .swiper-button-prev {
        left: -25px;
    }

    .history-box .aniu-but .swiper-button-next {
        right: -25px;
    }
}

@media(max-width:640px) {
    .history-box {
        margin: 50px 0;
    }

    .history-box #gallery .swiper-slide {
        padding: 30px 10px;
    }

    .history-box #gallery .item .pic {
        width: 100%;
    }

    .history-box #gallery .item .txt {
        width: 100%;
        padding: 15px;
    }

    .history-box #gallery .item .ul li {
        font-size: 16px;
    }

    .history-box .aniu-but .swiper-button-prev {
        left: -10px;
    }

    .history-box .aniu-but .swiper-button-next {
        right: -10px;
    }
}


/* 招贤纳士 */
.recruit-box {
    padding: 20px 0 100px;
}

.recruit-list .item {
    padding: 35px;
    font-size: 15px;
    font-family: 'SourceHanSansCN-Normal';
    background: #f7f8fa;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.recruit-list .item::after {
    position: absolute;
    right: 130px;
    top: 0;
    content: '';
    display: block;
    width: 332px;
    height: 156px;
    background: url(../images/recruit-back.png);
}

.recruit-list .item .tit-box {
    position: relative;
    z-index: 5;
    margin-bottom: 10px;
    cursor: pointer;
}

.recruit-list .item .recruit-con {
    position: relative;
    z-index: 5;
    line-height: 2;
    font-family: 'SourceHanSansCN-Light';
}

.recruit-list .item .recruit-con .misu {
    font-family: 'SourceHanSansCN-Normal';
}

.recruit-list .item .name {
    font-family: 'SourceHanSansCN-Bold';
    font-size: 22px;
}

.recruit-list .item .txt {
    margin-left: 40px;
}

.recruit-list .item .txt em {
    margin: 0 15px;
    font-style: normal;
}

.recruit-list .item .recruit-con p {
    margin: 0;
}

.recruit-list .item .recruit-con .des-con {
    display: none;
}

.recruit-list .item .recruit-con .des-xis {
    display: block;
}

.recruit-list .item .recruit-con .wol span {
    margin-right: 5px;
}

.recruit-list .item .recruit-con .wol a {
    color: #205ba9;
}

.recruit-list .item .aniu {
    display: flex;
    align-items: center;
}

.recruit-list .item .aniu::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(../images/arrow6.png) no-repeat center;
    transition: all .5s;
}

.recruit-list .item .aniu span {
    color: #555555;
    margin-right: 5px;
}

.recruit-list .item.active .aniu span {
    color: #2a72b9;
}

.recruit-list .item.active .aniu::after {
    background: url(../images/arrow7.png) no-repeat center;
    transform: rotate(-180deg);
}

.recruit-list .item.active .tit-box {
    color: #2a72b9;
}

@media(max-width:768px) {
    .recruit-list .item .oiw {
        flex-wrap: wrap;
    }

    .recruit-list .item .name {
        padding-right: 60px;
        width: 100%;
    }

    .recruit-list .item .txt {
        margin-top: 5px;
        margin-left: 0;
        width: 100%;
    }

    .recruit-list .item .aniu {
        position: absolute;
        right: 0;
        top: 8px;
    }
}

@media(max-width:640px) {
    .recruit-list .item .name {
        font-size: 18px;
    }

    .recruit-list .item .aniu {
        top: 4px;
    }
}


/* 关于我们-哪吒新闻 */
.news-box {
    padding: 100px 0;
}

.news-top {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.news-top .item .pic {
    width: 50%;
    overflow: hidden;
}

.news-top .item .pic figure {
    height: 100%;
    transition: all .5s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-top .item .text {
    background: #f5f7fa;
    padding: 50px 50px 80px;
    width: 50%;
}

.news-top .item .text .tiem {
    margin-bottom: 20px;
    font-family: 'SourceHanSansCN-Normal';
    font-size: 18px;
    color: #666666;
}

.news-top .item .text .tit {
    font-family: 'SourceHanSansCN-Bold';
    margin-bottom: 20px;
    font-size: 24px;
    color: #000000;
}

.news-top .item .text .introd {
    min-height: 130px;
    margin-bottom: 20px;
    line-height: 2;
    font-family: 'SourceHanSansCN-Light';
    color: #666666;
}

.news-top .item:hover .pic figure {
    transform: scale(1.1);
}

.news-top .swiper-pagination {
    bottom: 50px;
    width: calc(50% - 50px);
    text-align: left;
    right: 0;
    left: auto;
}

.news-top .swiper-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    border-radius: 0;
}

.news-list {
    padding: 60px 0;
}

.news-list li {
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.news-list li .pic {
    width: 27.5%;
    overflow: hidden;
}

.news-list li .pic figure {
    padding-bottom: 70%;
    background-size: cover;
    transition: all .5s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-list li .text {
    width: 72.4%;
    padding: 10px 0;
    padding-left: 50px;
    padding-right: 100px;
}

.news-list li .text .tit {
    font-size: 22px;
    transition: all .5s;
}

.news-list li .text .tiem {
    margin: 10px 0;
    font-family: 'SourceHanSansCN-Normal';
}

.news-list li .text .introd {
    line-height: 1.7;
    font-family: 'SourceHanSansCN-Light';
}

.news-list li:hover .pic figure {
    transform: scale(1.1);
}

.news-list li:hover .text .tit {
    color: #205ba9;
}

@media(max-width:768px) {
    .news-top .swiper-pagination {
        bottom: 10px;
    }
}

@media(max-width:640px) {
    .news-box {
        padding: 50px 0;
    }

    .news-top .item {
        flex-wrap: wrap;
    }

    .news-top .item .pic {
        width: 100%;
    }

    .news-top .item .pic figure {
        padding-bottom: 70%;
    }

    .news-top .item .text {
        padding: 20px;
        width: 100%;
    }

    .news-top .item .text .tiem {
        margin-bottom: 10px;
    }

    .news-top .item .text .tit {
        margin-bottom: 10px;
    }

    .news-top .swiper-pagination {
        width: 100%;
        text-align: center;
    }

    .news-list li .pic {
        width: 100%;
    }

    .news-list li .text {
        width: 100%;
        padding: 20px;
    }
}



/* 新闻详情 */
.news-info {
    padding: 100px 0;
}

.news-info .news-info-shell {
    width: 78%;
}

.news-info .news-info-shell .title-box {
    border-bottom: solid 1px #e8e8e8;
    padding-bottom: 35px;
}

.news-info .news-info-shell .title-box .title {
    font-family: 'SourceHanSansCN-Bold';
    font-size: 30px;
    color: #000000;
}

.news-info .news-info-shell .title-box .tiem {
    margin-top: 15px;
    color: #666666;
    font-family: 'SourceHanSansCN-Light';
}

.news-info .news-info-con {
    font-size: 15px;
    line-height: 1.8;
    font-family: 'SourceHanSansCN-Light';
}

.news-info .news-info-con p {
    margin: 0;
}

.news-info .back-box {
    line-height: 2;
    font-family: 'SourceHanSansCN-Normal';
    padding-top: 50px;
    border-top: solid 1px #e8e8e8;
}

.news-info .back-box dl {
    display: block;
    width: calc(100% - 100px);
}

.news-info .back-box a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news-info .back-box a:hover {
    color: #205ba9;
}

.news-info .back-box .back {
    width: 100px;
}

.news-info .back-box .back a {
    padding-left: 25px;
    background: url(../images/return.png) no-repeat left center;
}

.news-info .sher-shell {
    width: 60px;
    margin-top: 120px;
}

.news-info .sher-shell .item a {
    margin-bottom: 1px;
    background-color: #f5f5f5;
    width: 60px;
    height: 60px;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .5s;
}

.news-info .sher-shell .weix a {
    background-image: url(../images/weixin2.png);
}

.news-info .sher-shell .weib a {
    background-image: url(../images/weibo2.png);
}

.news-info .sher-shell .qq a {
    background-image: url(../images/qq2.png);
}

.news-info .sher-shell .weix:hover a {
    background-image: url(../images/weixin3.png);
}

.news-info .sher-shell .weib:hover a {
    background-image: url(../images/weibo3.png);
}

.news-info .sher-shell .qq:hover a {
    background-image: url(../images/qq3.png);
}

.news-info .sher-shell .item:hover a {
    background-color: #205ba9;
}

@media(max-width:640px) {
    .news-info {
        padding: 50px 0;
    }

    .news-info .news-info-shell .title-box .title {
        font-size: 18px;
    }

    .news-info .sher-shell {
        display: none;
    }

    .news-info .news-info-shell {
        width: 100%;
    }

    .news-info .back-box {
        padding-top: 30px;
        margin-top: 30px;
    }

    .news-info .back-box dl {
        width: 100%;
    }
}



/* 信息发布 */
.release-box {
    padding: 55px 0 80px;
}

.release-box .sort-tiem {
    margin: 0 0 40px;
}

.release-top {
    margin-bottom: 40px;
}

.release-top .item {
    background: #f7f8fa;
}

.release-top .item .pic {
    width: 240px;
    overflow: hidden;
}

.release-top .item .pic img {
    transition: all .5s;
}

.release-top .item .text {
    padding: 50px 40px;
    width: calc(100% - 240px);
}

.release-top .item .text .tit {
    font-size: 22px;
    color: #000000;
}

.release-top .item .text .tiem {
    font-size: 16px;
    color: #999999;
    font-family: 'SourceHanSansCN-Regular';
}

.release-top .item:hover .pic img {
    transform: scale(1.1);
}

.release-list li {
    margin-bottom: 20px;
}

.release-list li a {
    padding: 35px;
    background: #f7f8fa;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.release-list li .tit {
    width: calc(100% - 120px);
    padding-left: 15px;
    position: relative;
    display: block;
    font-size: 18px;
    color: #000000;
}

.release-list li .tit::before {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: #205ba9;
}

.release-list li .tiem {
    text-align: right;
    width: 90px;
    color: #999999;
    font-family: 'SourceHanSansCN-Normal';
}

.release-list li:hover a .tit {
    color: #205ba9;
}

@media(max-width:640px) {
    .release-top .item .pic {
        width: 100%;
    }

    .release-top .item .pic img {
        width: 100%;
    }

    .release-top .item .text {
        width: 100%;
        padding: 20px;
    }

    .release-top .item .text .tit {
        font-size: 18px;
    }

    .release-top .item .text .tiem {
        margin-top: 5px;
        font-size: 14px;
    }

    .release-list li a {
        padding: 15px 10px;
    }

    .release-list li .tit {
        width: calc(100% - 75px);
        font-size: 14px;
    }

    .release-list li .tiem {
        font-size: 12px;
        width: 70px;
    }
}




/* 联系我们 */
.contact-box {}

.contact-one {
    padding: 100px 0;
    overflow: hidden;
}

.contact-one .auto-inner {
    direction: rtl;
}

.contact-one .map-box {
    width: 47.5%;
}

.contact-one .text {
    direction: ltr;
    width: 42.5%;
}

.contact-one .text-wan .tit {
    margin-bottom: 35px;
    font-size: 30px;
    font-family: 'SourceHanSansCN-Bold';
}

.contact-one .text-wan dl dd {
    margin-bottom: 15px;
}

.contact-one .text-wan dl dd .name {
    font-family: 'SourceHanSansCN-Light';
}

.contact-one .text-wan dl dd .name i {
    text-align: center;
    margin-right: 10px;
    width: 20px;
    font-size: 0;
    display: block;
}

.contact-one .text-wan dl dd .name i img {
    vertical-align: middle;
}

.contact-one .text-wan dl dd .wz {
    font-family: 'SourceHanSansCN-Normal';
    margin-top: 5px;
    padding-left: 30px;
}

.contact-one .contact-code {
    padding-top: 35px;
    margin-top: 35px;
    font-family: 'SourceHanSansCN-Light';
    border-top: solid 1px #e5e5e5;
}

.contact-one .contact-code .txt {
    margin-left: 15px;
}

.contact-two {
    padding: 100px 0;
    background: #f2f6fa;
    overflow: hidden;
}

.contact-two .contact-tit {
    text-align: center;
}

.contact-two .contact-tit .tit {
    font-family: 'SourceHanSansCN-Bold';
    font-size: 30px;
    color: #000000;
}

.contact-two .contact-tit .introd {
    text-align: center;
    font-family: 'SourceHanSansCN-Light';
}

.contact-form {
    margin-top: 40px;
    padding: 50px 60px 0;
    background: url(../images/contact-back.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    box-shadow: 0 0 20px rgba(0, 90, 192, .1);
}

.contact-form form {
    width: 100%;
}

.contact-form .item {
    margin-bottom: 30px;
}

.contact-form .input_box {
    width: 31.6%;
    border: solid 1px #c4ccd9;
}

.contact-form .input_box input {
    width: 100%;
    display: block;
    background: none;
    border: none;
    margin: 0;
    padding: 15px;
    outline: none;
}

.contact-form .textarea_box {
    width: 100%;
    border: solid 1px #c4ccd9;
    padding: 15px;
}

.contact-form .textarea_box textarea {
    min-height: 120px;
    width: 100%;
    display: block;
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    outline: none;
}

.contact-form .more {
    width: 100%;
    transform: translateY(50%);
}

.contact-form .more a {
    padding: 15px 60px;
    background: #205ba9;
    border: solid 1px #205ba9;
    color: #fff;
    border-radius: 100px;
    transition: all .5s;
}

.contact-form .more a:hover {
    background: #fff;
    color: #205ba9;
}

@media(max-width:1024px) {
    .contact-one .text {
        width: 48%;
    }

    .contact-one .text-wan .tit {
        font-size: 26px;
    }
}

@media(max-width:768px) {
    .contact-one .map-box {
        text-align: center;
        margin-top: 20px;
        width: 100%;
    }

    .contact-one .text {
        width: 100%;
    }
}

@media(max-width:640px) {
    .contact-one {
        padding: 50px 0;
    }

    .contact-one .text-wan .tit {
        font-size: 22px;
    }

    .contact-form {
        padding: 30px 20px 0;
    }

    .contact-form .input_box {
        width: 100%;
        margin-bottom: 10px;
    }

    .contact-form .textarea_box {
        margin-bottom: 0;
    }

    .contact-two {
        padding: 50px 0 100px;
    }
}




/* 单篇 */
.single-box {
    padding: 100px 0;
}

@media(max-width:640px) {
    .single-box {
        padding: 50px 0;
    }
}


/* 爱番番 */
#newBridge .icon-right-center {
    bottom: 25% !important;
    top: auto !important;
}

#newBridge .nb-icon-base-3 .nb-icon-inner-wrap {
    background-image: url(../images/zixun.png) !important;
    height: 95px !important;
}
/* #newBridge .newicon-left-center, #newBridge .newicon-right-center{
    transform: translateY(-400%) !important;
} */