@charset "utf-8";
.w1400 {
    width: 1400px;
    margin: 0 auto;
}

.w1642 {
    width: 85.5208333%;
    margin: 0 auto;
}

.phone {
    display: none;
}

.md {
    position: relative;
    top: -120px;
}

html::-webkit-scrollbar {
    display: none;
}

a:hover, a:visited, a:link, a:active, a:focus {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*解决手机版点击背景问题*/
    outline: none;

}

.bx {
    transition: all .5s;
}

.bx:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2)
}

.content img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.more {
    -webkit-transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    position: relative;
    z-index: 2;
}

.more::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #0068b7;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.more:hover {
    color: #fff;
    background: transparent;
}

.more:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.jzdh {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999999999999;
}

.jzdh .box img {
    width: 300px;
    margin-bottom: 20px;
}

.pageload-overlay {
    position: relative;
    height: 20px;
}

.pageload-overlay::after, .pageload-overlay::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border-radius: 50%;
    z-index: 1000;
    content: '';
}

.pageload-overlay::after {
    background: #0068b7;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-animation: moveRight 0.6s linear infinite alternate;
    animation: moveRight 0.6s linear infinite alternate;
}

.pageload-overlay::before {
    background: #e6e6e6;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-animation: moveLeft 0.6s linear infinite alternate;
    animation: moveLeft 0.6s linear infinite alternate;
}

.cooperation-case-nav {
    display: flex;
    justify-content: space-between;
    margin: 0 50px;
}

.cooperation-case-nav:nth-last-child(1) {
    margin: 0 150px;
}

.cooperation-case-nav a {
    border: 1px #0068b7 solid;
    width: 120px;
    padding: 10px 0;
    text-align: center;
    margin: 20px 0;
}

.cooperation-case-nav a:hover {
    background: #0068b7;
    color: #FFFFFF;
}

@-webkit-keyframes moveRight {
    to {
        -webkit-transform: translateX(20px);
    }
}

@keyframes moveRight {
    to {
        transform: translateX(20px);
    }
}

@-webkit-keyframes moveLeft {
    to {
        -webkit-transform: translateX(-20px);
    }
}

@keyframes moveLeft {
    to {
        transform: translateX(-20px);
    }
}


/*边框效果*/
.biank {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: none;
    background: rgba(21, 30, 73, .7);
    transition: all .5s;
}

.biank .line {
    position: absolute;
    background: #fff;
    transition: all 1s;
}

.biank .line.line1 {
    left: 30px;
    top: 30px;
    width: 0;
    height: 2px;
}

.biank .line.line2 {
    right: 30px;
    top: 30px;
    width: 2px;
    height: 0;
}

.biank .line.line3 {
    right: 30px;
    bottom: 30px;
    width: 0;
    height: 2px;
}

.biank .line.line4 {
    left: 30px;
    bottom: 30px;
    width: 2px;
    height: 0;
}

.biank:hover .line.line1 {
    width: calc(100% - 60px);
}

.biank:hover .line.line2 {
    height: calc(100% - 60px);
}

.biank:hover .line.line3 {
    width: calc(100% - 60px);
}

.biank:hover .line.line4 {
    height: calc(100% - 60px);
}

/*放大图片*/
.bigimg {
    overflow: hidden;
}

.bigimg img {
    display: block;
    transition: all .5s;
}

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


/*头部*/
.header {
    position: fixed;
    width: 100%;
    z-index: 99999;
    background: #fff;
    transition: all .5s;
}

.header .dj1 {
    background: #fff;
}

.header .head-mn {
    position: relative;
    height: 95px;
    transition: all .5s;
}

.header .logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.header .logo img {
    display: block;
    width: 205px;
}

.header .logo .img1 {
    display: none;
}

.header .r {
    position: relative;
    display: flex;
    align-items: center;
}

.header ul {
    display: flex;
}

.header .bottomLine {
    /*position: absolute;*/
    /*bottom: 0;*/
    /*height: 2px;*/
    /*background: #0068b7;*/
    /*transition: all 0.3s ease;*/
}

.header ul li {
    position: relative;
    margin: 0 24px;
}

.header ul li .inav {
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
    line-height: 1em;
    text-align: center;
    color: #333;
}

.header ul li .inav span {
    font-size: 10px;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
}

.header ul li.on:after {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #0068b7;
    content: "";
}

.header ul li .xl {
    position: absolute;
    left: -10px;
    display: none;
    width: 120px;
    opacity: 0;
    transition: all .5s;
}

/*.header ul li .xl a{float: left;padding: 15px; font-size: 16px;line-height: 30px;color: #fff;}
*/
.header ul li .xl .l {
    width: 295px;
    box-sizing: border-box;
    padding: 65px 0 0 24px;
    height: 100%;
    background: #0068b7;
    display: none;
}

.header ul li .xl .l .tit {
    font-size: 25px;
    line-height: 25px;
    color: #fff;
}

.header ul li .xl .l .line {
    margin: 36px 0 39px;
    width: 26px;
    height: 1px;
    background: #fff;
}

.header ul li .xl .l .sum {
    max-height: 225px;
    padding-right: 24px;
    overflow: hidden;
}

.header ul li .xl .l .sum p {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
}

.header ul li .xl .mr {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-top: 10px;
    border-bottom: 10px solid #0068b7;
    background: rgba(255, 255, 255, .9);
}

.header ul li .xl .mr a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    color: #000;
}

.header ul li .xl .mr a:hover {
    color: #0068b7;
}

/*.header ul li:last-child .xl{left: -300px;}
*/
.header ul li:hover .xl {
    display: block;
    opacity: 1;
}

.header .lang {
    margin-left: 36px;
    width: 27px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #0068b7;
    transition: all .5s;
}

.header .lang:hover {
    background: #0068b7;
}

.header .lang a {
    line-height: 20px;
    font-size: 16px;
    text-align: center;
    color: #0068b7;
}

.header .lang:hover a {
    color: #fff;
}

.header.index {
    background: none;
}

.header.index ul li .inav {
    color: #fff;
}

.header.index .logo .img1 {
    display: block;
}

.header.index .logo .img2 {
    display: none;
}

.header.index .lang {
    border-color: #fff;
}

.header.index .lang:hover {
    background: #fff;
}

.header.index .lang a {
    color: #fff;
}

.header.index .lang:hover a {
    color: #0068b7;
}

.header.header-small {
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, .1);
}

.header.header-small .head-mn {
    height: 77px;
}

.head-box {
    height: 95px;
}

.header .phone-nav {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: none;
    z-index: 9999999;
    cursor: pointer;
}

.header .phone-nav .line {
    position: relative;
    top: 0;
    border-radius: 3px;
    width: 30px;
    display: block;
    height: 2px;
    transition: all .3s;
    background: #0068b7;
    transform-origin: center center;
}

.header.index .phone-nav .line {
    background: #fff;
}

.header .phone-nav.active .line:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.header .phone-nav .line:nth-child(2) {
    margin: 8px 0;
}

.header .phone-nav.active .line:nth-child(2) {
    opacity: 0;
}

.header .phone-nav.active .line:nth-child(3) {
    top: -10px;
    transform: rotate(-45deg);
}

.header .phone-nav-mn {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    padding: 100px 0;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .3);
    background-color: #fff;
    z-index: 99;
    overflow: scroll;
}

.header .phone-nav-mn ul {
    flex-wrap: wrap;
}

.header .phone-nav-mn li {
    width: 94%;
    margin: 0 auto;
}

.header .phone-nav-mn li:first-child {
    border-top: 1px solid #f7f7f7;
}

.header .phone-nav-mn li .navs {
    padding: 10px 0;
    border-bottom: 1px solid #f7f7f7;
}

.header .phone-nav-mn li .navs p {
    font-size: 16px;
    line-height: 30px;
    color: #333;
}

.header .phone-nav-mn li .jia {
    display: flex;
    height: 40px;
    align-items: center;
}

.header .phone-nav-mn li .img {
    display: block;
    transform: rotate(-90deg);
    transition: all .5s;
}

.header .phone-nav-mn li .img.imgo {
    transform: rotate(90deg);
}

.header .phone-nav-mn li .img.xz {
    transform: rotate(90deg);
}

.header .phone-nav-mn li dl {
    padding: 10px 0;
}

.header .phone-nav-mn li dd a {
    font-size: 16px;
    line-height: 30px;
    color: #666;
    display: block;
    padding-left: 30px;
}

.header .phone-nav-mn::-webkit-scrollbar {
    width: 0 !important
}

.header .head-mn.dj {
    position: relative;
    z-index: 22222;
}

.header .head-mn.dj .img2 {
    display: block;
}

.header .head-mn.dj .img1 {
    display: none;
}

.header .head-mn.dj .phone-nav {
    right: 0;
}

.header .head-mn.dj .phone-nav .line {
    background: #0068b7;
}


.i-banner {
    position: relative;
    height: 100vh;
}

.i-banner .line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, .3);
    z-index: 2;
    transition: all 2s;
}

.i-banner .swiper-slide-active .line {
    width: 100%;
}

.i-banner .swiper-container {
    height: 100%;
}

.i-banner .swiper-slide .xx {
    position: absolute;
    left: 404px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 792px;
    color: #fff;
}

.i-banner .swiper-slide .xx .tit {
    margin-bottom: 68px;
    line-height: 60px;
    letter-spacing: 5px;
    font-size: 60px;
    font-weight: bold;
}

.i-banner .swiper-slide .xx .sum {
    font-size: 18px;
    line-height: 36px;
    text-align: justify;
}

.i-banner .page {
    position: absolute;
    top: 50%;
    margin-top: -.5px;
    width: 140px;
    height: 1px;
    z-index: 2;
    cursor: pointer;
    outline: none;
}

.i-banner .page:before {
    position: absolute;
    width: 0;
    height: 100%;
    background: #fff;
    content: "";
}

.i-banner .page:after {
    position: absolute;
    bottom: 0;
    padding-bottom: 11px;
    font-size: 18px;
    line-height: 14px;
    color: #fff;
    content: "";
}

.i-banner .page.page-l {
    left: 0;
}

.i-banner .page.page-l:hover:before {
    animation: widthl 2s linear infinite;
}

.i-banner .page.page-l:after {
    right: 0;
    content: "PREV";
}

.i-banner .page.page-r {
    right: 0;
}

.i-banner .page.page-r:before {
    right: 0;
}

.i-banner .page.page-r:hover:before {
    animation: widthr 2s linear infinite;
}

.i-banner .page.page-r:after {
    left: 0;
    content: "NEXT";
}

@keyframes widthl {
    0% {
        width: 0;
        right: 0;
    }
    25% {
        width: 100%;
    }
    50% {
        right: auto;
        left: 0;
    }
    100% {
        width: 0;
    }
}

@keyframes widthr {
    0% {
        width: 0;
        left: 0;
        right: auto;
    }
    25% {
        width: 100%;
    }
    50% {
        left: auto;
        right: 0;
    }
    100% {
        width: 0;
    }
}

.i-banner .qiu {
    position: absolute;
    left: 169px;
    top: 50%;
    transform: translateY(-50%);
    width: 204px;
    height: 204px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.i-banner .qiu p {
    font-size: 20px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.qiu > span {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.qiu .qiu-left {
    left: 0;
    display: none;
}

.qiu .qiu-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .3);
    box-sizing: border-box;
}

.qiu .qiu-left .qiu-bar {
    left: 100%;
    border-top-right-radius: 102px;
    border-bottom-right-radius: 102px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.qiu .qiu-right {
    right: 0;
    display: none;
}

.qiu .qiu-right .qiu-bar {
    left: -100%;
    border-top-left-radius: 102px;
    border-bottom-left-radius: 102px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    animation: loading-1 2s linear forwards;
}

.qiu .qiu-left .qiu-bar {
    animation: loading-2 2s linear forwards 2s;
}

.i-banner .swiper-slide-active .qiu .qiu-left, .i-banner .swiper-slide-active .qiu .qiu-right {
    display: block;
}


@keyframes loading-1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes loading-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}


.ibt .titn {
    margin-bottom: 26px;
    font-size: 44px;
    line-height: 33px;
    font-weight: bold;
    color: #333;
}

.ibt .sumn {
    font-size: 34px;
    line-height: 32px;
    color: #333;
}

.i-about {
    position: relative;
    padding: 183px 0 130px;
}

.i-about .bg {
    position: absolute;
    left: 0;
    top: 113px;
}

.i-about .main {
    position: relative;
    z-index: 2;
}

.i-about .main .ibt {
    margin-bottom: 72px;
}

.i-about .main .mn {
    width: 100%;
}

.i-about .main .l {
    width: 532px;
}

.i-about .main .sj {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 520px;
    margin-bottom: 14px;
    color: #333;
}

.i-about .main .sj.phone {
    display: none;
}

.i-about .main .sj .sum {
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 18px;
}

.i-about .main .sj .sum span {
    display: inline-block;
    font-size: 32px;
    line-height: 26px;
    color: #0068b7;
}

.i-about .main .nr { /*margin-bottom: 102px;*/
}

.i-about .main .nr p {
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
}

.i-about .main .more {
    width: 174px;
    height: 47px;
    box-sizing: border-box;
    border: 1px solid #0068b7;
    text-align: center;
    font-size: 16px;
    line-height: 47px;
    text-transform: uppercase;
    color: #0068b7;
}

.i-about .main .more:hover {
    color: #fff;
}

.i-about .main .r {
    position: relative;
    width: 700px;
    padding-top: 60px;
}

.i-about .main .r .dbt {
    display: block;
    width: 100%;
    height: auto;
}

.i-about .main .r .img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    cursor: pointer;
    transition: all .5s;
}

.i-about .main .r:hover .img {
    opacity: 1;
}

.videos {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 9999999;
}

.videos video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 70%;
    max-width: 80%;
}

.videos .icon {
    position: absolute;
    right: 5%;
    top: 5%;
    cursor: pointer;
}

.i-news {
    position: relative;
    padding: 110px 0 120px;
    background: #fcfcfc;
}

.i-news .ibt {
    margin-bottom: 58px;
}

.i-news .mpage {
    position: absolute;
    right: 0;
    top: 164px;
    display: flex;
    width: 670px;
}

.i-news .mpage:before {
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: #b5b5b5;
}

.i-news .mpage li {
    position: relative;
    height: 38px;
    margin-right: 38px;
    padding: 0 4px;
    cursor: pointer;
}

.i-news .mpage li:after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 3px;
    background: #0068b7;
    content: "";
    transition: all .5s;
}

.i-news .mpage li.on:after {
    width: 100%;
}

.i-news .mpage li:hover:after {
    width: 100%;
}

.i-news .mpage li a {
    font-size: 18px;
    line-height: 17px;
    color: #666;
}

.i-news .swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.i-news .swiper-slide .tit {
    height: 26px;
    font-size: 22px;
    line-height: 26px;
    color: #333;
}

.i-news .swiper-slide .tit a {
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.i-news .swiper-slide .sum {
    height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    line-height: 24px;
}

.i-news .swiper-slide .sum a {
    color: #666;
    text-overflow: ellipsis;
    overflow: hidden;
}

.i-news .swiper-slide .l {
    width: 591px;
    background: #fff;
    transition: all .5s;
}

.i-news .swiper-slide .l .xx {
    padding: 30px 30px 24px 24px;
    overflow: hidden;
}

.i-news .swiper-slide .l .xx .tit {
    margin-bottom: 16px;
}

.i-news .swiper-slide .l .xx .sum {
    margin-bottom: 24px;
}

.i-news .swiper-slide .l .xx .b {
    display: flex;
    justify-content: space-between;
}

.i-news .swiper-slide .l .xx .time {
    font-size: 16px;
    line-height: 14px;
    color: #666;
}

.i-news .swiper-slide .l .xx .i-more {
    font-size: 16px;
    line-height: 14px;
    text-transform: uppercase;
    color: #666;
}

.i-news .swiper-slide .l .xx:hover .i-more {
    color: #0068b7;
}

.i-news .swiper-slide .r {
    width: 700px;
}

.i-news .swiper-slide .r li {
    border-top: 1px solid #d9d8d7;
    padding: 39px 0 28px;
    transition: all .5s;
}

.i-news .swiper-slide .r li:last-child {
    border-bottom: 1px solid #d9d8d7;
}

.i-news .swiper-slide .r li .tit {
    margin-bottom: 20px;
    color: #010101;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.i-news .swiper-slide .r li .sum {
    max-width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.i-news .swiper-slide .r li .b {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.i-news .swiper-slide .r li .time {
    font-size: 14px;
    line-height: 10px;
}

.i-news .swiper-slide .r li:hover {
    padding-left: 15px;
}

.i-news .swiper-slide .r li:hover .tit {
    color: #0068b7;
}

.i-ser {
    position: relative;
}

.i-ser .ibt {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 85px;
    color: #fff;
    z-index: 2;
}

.i-ser .ibt .titn, .i-ser .ibt .sumn {
    color: #fff;
}

.i-ser .main {
}

.i-ser .main .xx {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 125px;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    text-align: right;
    z-index: 2;
}

.i-ser .main .xx p {
    font-size: 26px;
    line-height: 40px;
    color: #fff;
}

.i-ser .main .xx .line {
    width: 295px;
    height: 3px;
    margin: 13px 0 19px;
    background: #fff;
}

.i-ser .main .xx .b {
    display: flex;
    margin-bottom: 36px;
    max-width: 33%;
    text-align: right;
}

.i-ser .main .xx .b span {
    display: block;
    margin-left: 30px;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

.i-ser .main .xx .ser-more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    transition: all .5s;
}

.i-ser .main .xx .ser-more img {
    display: block;
}

.i-ser .main .xx .ser-more:hover {
    background: #0068b7;
    border-color: #0068b7;
}

.i-ser .main .swiper-slide {
    overflow: hidden;
}

.i-ser .main .swiper-slide .img {
    display: block;
    width: 100%;
    transition: 1s linear 6s;
    transform: scale(1.1);
}

.i-ser .main .swiper-slide-active .img {
    transition: 6s linear;
    transform: scale(1);
}

.i-ser .mpage3 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 220px;
    width: 508px;
    height: 508px;
    border-radius: 50%;
    border: 1px solid #fff;
    box-sizing: border-box;
    z-index: 22;
}

.i-ser .mpage3 .dian {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transition: all .5s;
    overflow: hidden;
    z-index: 22;
}

.i-ser .mpage3 .dian img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    opacity: 0;
    transition: all 1s;
}

.i-ser .mpage3 .dian1 {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.i-ser .mpage3 .dian2 {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.i-ser .mpage3 .dian3 {
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.i-ser .mpage3 .dian4 {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.i-ser .mpage3 .dian1:hover {
    left: -15px;
}

.i-ser .mpage3 .dian2:hover {
    top: -15px;
}

.i-ser .mpage3 .dian3:hover {
    right: -15px;
}

.i-ser .mpage3 .dian4:hover {
    bottom: -15px;
}

.i-ser .mpage3 .dian:hover {
    width: 30px;
    height: 30px;
}

.i-ser .mpage3 .dian:hover img {
    opacity: 1;
}

.i-ser .mpage3 .dian.on {
    width: 30px;
    height: 30px;
}

.i-ser .mpage3 .dian1.on {
    left: -15px;
}

.i-ser .mpage3 .dian2.on {
    top: -15px;
}

.i-ser .mpage3 .dian3.on {
    right: -15px;
}

.i-ser .mpage3 .dian4.on {
    bottom: -15px;
}

.i-ser .mpage3 .dian.on img {
    opacity: 1;
}


.i-ser .mpage3 .mn {
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 254px 0 0 0;
    background: rgba(49, 49, 49, .3);
    cursor: pointer;
    transition: all .5s;
    z-index: 2;
    overflow: hidden;
}

.i-ser .mpage3 .mn.on {
    background: none
}

.i-ser .mpage3 .mn.two {
    left: 50%;
    top: 0;
    border-radius: 0 254px 0 0;
}

.i-ser .mpage3 .mn.three {
    right: 0;
    top: 50%;
    border-radius: 0 0 254px 0;
}

.i-ser .mpage3 .mn.four {
    left: 0;
    top: 50%;
    border-radius: 0 0 0 254px;
}

.i-ser .mpage3 .mn .tit {
    position: absolute;
    font-size: 24px;
    color: #fff;
    opacity: .7;
    transition: all .2s;
}

.i-ser .mpage3 .mn.one .tit {
    bottom: 78px;
    right: 56px;
}

.i-ser .mpage3 .mn.two .tit {
    bottom: 78px;
    left: 56px;
}

.i-ser .mpage3 .mn.three .tit {
    top: 78px;
    left: 56px;
}

.i-ser .mpage3 .mn.four .tit {
    top: 78px;
    right: 56px;
}

.i-ser .mpage3 .mn.four {
    z-index: 1;
}


.i-ser .mpage3 .mn.on .tit {
    font-size: 30px;
    font-weight: bold;
    opacity: 1;
}

.progress {
    position: absolute;
    box-sizing: border-box;
    width: 508px;
    height: 508px;
}

.progress > span {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.progress .progress-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #fff;
    box-sizing: border-box;
}

.progress .progress-right {
    right: 0;
    display: none;
}

.progress .progress-right .progress-bar {
    left: -100%;
    border-top-left-radius: 254px;
    border-bottom-left-radius: 254px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.i-ser .mpage3 .mn.on .progress .progress-left, .i-ser .mpage3 .mn.on .progress .progress-right {
    display: block;
}

.i-ser .mpage3 .mn.one .progress {
    transform: rotate(-90deg);
}

.i-ser .mpage3 .mn.one .progress .progress-right .progress-bar {
    animation: loading-1 7.6s linear forwards;
}

.i-ser .mpage3 .mn.two .progress {
    right: 0;
    transform: rotate(0deg);
}

.i-ser .mpage3 .mn.two .progress .progress-right .progress-bar {
    animation: loading-1 7.6s linear forwards;
}

.i-ser .mpage3 .mn.three .progress {
    right: 0;
    bottom: 0;
    transform: rotate(90deg);
}

.i-ser .mpage3 .mn.three .progress .progress-right .progress-bar {
    animation: loading-1 7.6s linear forwards;
}

.i-ser .mpage3 .mn.four .progress {
    left: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.i-ser .mpage3 .mn.four .progress .progress-right .progress-bar {
    animation: loading-1 7.6s linear forwards;
}

.i-ser .zz {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, .3);
    z-index: 0;
}

.i-ser .zz .dian {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
}

.i-ser .zz .zz-m {
    position: absolute;
    transition: all .5s;
}

.i-ser .zz .sz {
    top: 50%;
    transform: translateY(-50%);
    left: -12px;
}

.i-ser .zz .fz {
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -217px;
    width: 434px;
    height: 434px;
    transition: all 1s;
}

.i-ser .zz .fz img {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.i-ser .zz .fz.xz1 {
    transform: translateX(-50%) rotate(270deg);
}

.i-ser .zz .fz.xz2 {
    transform: translateX(-50%) rotate(0deg);
}

.i-ser .zz .fz.xz3 {
    transform: translateX(-50%) rotate(90deg);
}

.i-ser .zz .fz.xz4 {
    transform: translateX(-50%) rotate(180deg);
}

.i-ser .bimg {
    display: none;
}

.footer {
    background: #0068b7;
}

.footer .top {
    padding: 84px 0 50px;
    display: flex;
    justify-content: space-between;
}

.footer .top a:hover {
    color: #0068b7;
}

.footer .top .fl .img {
    display: block;
    width: 178px;
    margin-bottom: 22px;
}

.footer .top .fl p {
    font-size: 16px;
    line-height: 32px;
    color: #fff;
}

.footer .top .fl .dh a {
    display: inline-block;
    color: #fff;
}

.footer .top .fr .ewm {
    padding-top: 20px;
    margin-bottom: 10px;
    display: block;
}

.footer .top .fr p {
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.footer .top .fc {
    display: flex;
    padding: 20px 0 0 2px;
}

.footer .top .fc dl {
    margin-right: 80px;
}

.footer .top .fc dl:last-child {
    margin-right: 0;
}

.footer .top .fc dt {
    margin-bottom: 27px;
    line-height: 1em;
    font-size: 20px;
    color: #fff;
}

.footer .top .fc dt a {
    color: #fff;
}

.footer .top .fc dd a {
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

.footer .top .fc dd a:hover {
    color: #0068b7;
}

.footer .bottom {
    border-top: 1px solid rgba(140, 140, 140, .2);
}

.footer .bottom .xx {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .bottom .xx p {
    font-size: 12px;
    line-height: 22px;
    color: #fff;
}

.footer .bottom .xx p a {
    display: inline-block;
    color: #fff;
}

.fh-top {
    position: fixed;
    bottom: 182px;
    right: 25px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #0068b7;
    display: none;
    z-index: 9;
}

.fh-top .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.fh-top:hover {
    background: #0068b7;
}

.fh-top:hover .icon path {
    fill: #fff;
}

/*.fh-top .line{position: absolute;left: 50%;transform: translateX(-50%);top: -92px; width: 1px;height: 80px;background: #fff;animation: td2 2s linear infinite;}
.fh-top p{width: 14px;line-height: 20px; font-size: 14px;color: #f5f5f5;}
@keyframes td2{
0%{ top: -92px;}
50%{ top: -100px;}
100%{top: -92px;}
}*/

/*二级导航*/
.localNav_area {
    height: 48px;
    background: #fcfcfc;
}

.localNav_area .localNav {
    height: 100%;
}

.localNav_area .home {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.localNav_area .home .img1 {
    margin: 0 16px;
}

.localNav_area .home .img2 {
    margin: 0 20px 0 16px;
}

.localNav_area .home p {
    font-size: 16px;
    line-height: 30px;
    color: #333;
}

.localNav_area .home p a {
    color: #333;
}

.localNav_area .home .dq {
    color: #0068b7;
}

.menuLink {
    position: relative;
}

.menuLink .menu {
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
}

.menuLink .menu li {
    position: relative;
    padding-left: 36px;
}

.menuLink .menu li:after {
    position: absolute;
    right: -20px;
    top: 6px;
    width: 1px;
    height: 18px;
    background: #b1b1b1;
    content: "";
}

.menuLink .menu li:last-child:after {
    display: none;
}

.menuLink .menu a {
    font-size: 18px;
    line-height: 30px;
    color: #333;
}

.menuLink .menu a:hover {
    color: #0068b7;
}

.menuLink .menu li.on a {
    color: #0068b7;
}

.enav {
    display: none;
}

/*公共banner*/
.banner-g {
    position: relative;
    height: 334px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
/*公共banner*/
.banner-g2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.banner-g .yuan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-g .tit {
    position: relative;
    font-size: 42px;
    color: #fff;
    z-index: 2;
}

.n-title .tit {
    margin-bottom: 50px;
    font-size: 36px;
    text-align: center;
    line-height: 34px;
    color: #333;
}

.n-title .line {
    position: relative;
    width: 100%;
    height: 1px;
    background: #959595;
}

.n-title .line:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 27px;
    height: 1px;
    content: "";
    background: #1b1b1b;
}

.n-title .line:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 27px;
    height: 1px;
    content: "";
    background: #1b1b1b;
}

.n-title .line .line-m {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -1.5px 0 0 -207px;
    width: 414px;
    height: 3px;
    background: #0068b7;
}

/*企业简介*/
.about {
    padding: 110px 0 0;
}

.qyjj .n-title {
    margin-bottom: 61px;
}

.qyjj .main {
    position: relative;
}

.qyjj .bg {
}

.qyjj .bg .bgpic {
    display: block;
    width: 100%;
    height: auto;
}

.qyjj .top {
    position: relative;
    width: calc(100% - 80px);
    margin: -68px auto 0;
    z-index: 2;
}

.qyjj .top .sj {
    display: flex;
    padding: 36px 0;
    box-shadow: 5px 5px 5px 0 rgba(194, 194, 194, .35);
    margin: 0 auto 60px;
    background: #fcfcfc;
}

.qyjj .top .sj.phone {
    display: none;
}

.qyjj .top .sj .mn {
    position: relative;
    width: 25%;
    box-sizing: border-box;
}

.qyjj .top .sj .mn .s {
    margin-bottom: 10px;
    font-size: 50px;
    line-height: 38px;
    font-weight: bold;
    text-align: center;
    color: #0068b7;
}

.qyjj .top .sj .mn .s span {
    display: inline-block;
    line-height: 38px;
}

.qyjj .top .sj .mn .s .jia {
    position: relative;
    top: 4px;
}

.qyjj .top .sj .mn .t {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.qyjj .top .b {
    border-bottom: 1px dashed #e5e5e5;
    background: #fff;
}

.qyjj .top .xx {
    padding: 42px 0 102px;
}

.qyjj .top .xx p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 32px;
    color: #555;
    text-align: justify;
}

/*企业文化*/
.qywh .tu {
    display: block;
    margin-bottom: 119px;
    padding-top: 34px;
}

.qywh .tu.phone {
    display: none;
}

.qywh .nr {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 129px;
}

.qywh .nr .nr-c {
    margin: 0 114px;
}

.qywh .nr li {
    margin-bottom: 36px;
    padding-left: 17px;
    box-sizing: border-box;
    border-left: 3px solid #0068b7;
}

.qywh .nr li .tit {
    margin-bottom: 23px;
    line-height: 28px;
    font-size: 30px;
    font-weight: bold;
    color: #333;
}

.qywh .nr li .sum {
    font-size: 16px;
    color: #555;
}

.qywh .nr .nr-l li {
    border-right: 3px solid #0068b7;
    padding: 0 17px 0 0;
    text-align: right;
    border-left: none;
}

.qywh .wh {
    display: flex;
    justify-content: space-between;
    padding-bottom: 140px;
}

.qywh .wh .mn {
    display: flex;
    align-items: center;
}

.qywh .wh .l img {
    display: block;
}

.qywh .wh .r {
    margin-left: 33px;
}

.qywh .wh .r .tit {
    margin-bottom: 20px;
    line-height: 27px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.qywh .wh .r .tit.jj {
    width: 78px;
    margin: 0 auto 20px;
    text-align-last: justify;
}

.qywh .wh .r .sum {
    font-size: 18px;
    line-height: 17px;
    color: #555;
}

.qywh .nr .nr-c.phone {
    display: none;
}

/*发展历程*/
.fzlc .n-title {
    margin-bottom: 71px;
}

.fzlc .swiper-slide {
    padding: 106px 109px 85px 255px;
    margin-bottom: 92px;
    box-sizing: border-box;
}

.fzlc .swiper-slide .xx {
    height: 306px; /*overflow-y: scroll;*/
    padding-right: 146px;
}

/*.fzlc .swiper-slide .xx::-webkit-scrollbar { width: 2px;background-color: #c4c4c4;}
.fzlc .swiper-slide .xx::-webkit-scrollbar-thumb { background-color: #0068b7;}
.fzlc .swiper-slide .xx::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 4px #c4c4c4;background-color: #c4c4c4; }*/
.fzlc .swiper-slide .xx .tit {
    margin-bottom: 28px;
    font-size: 88px;
    line-height: 67px;
    font-weight: bold;
    color: #333;
}

.fzlc .swiper-slide .xx .line {
    margin-bottom: 32px;
    position: relative;
    width: 100%;
    height: 1px;
    background: #c4c4c4;
}

.fzlc .swiper-slide .xx .line:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 169px;
    height: 7px;
    background: #0068b7;
    content: "";
}

.fzlc .swiper-slide .xx .sum {
    font-size: 18px;
    line-height: 36px;
    text-align: justify;
    color: #555;
}

.fzlc .mpage1 {
    position: relative;
    margin-bottom: 130px;
}

.fzlc .mpage1 .line {
    position: absolute;
    top: 50%;
    margin-top: -0.5px;
    width: 100%;
    border-bottom: 1px dashed #ccc;
}

.fzlc .mpage1 ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 2;
}

.fzlc .mpage1 li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 127px;
    height: 39px;
    background: #0068b7;
    cursor: pointer;
}

.fzlc .mpage1 li p {
    font-size: 18px;
    color: #fff;
}

.fzlc .box {
    padding-bottom: 130px;
}

.fzlc .box li .line {
    position: absolute;
    top: 0;
    left: 133px;
    width: 1px;
    height: 100%;
    background: #ccc;
}

.fzlc .box li .main {
    position: relative;
    display: flex;
    padding: 60px 0 40px;
    box-sizing: border-box;
}

.fzlc .box li .time {
    width: 105px;
    height: 35px;
    background: #0068b7;
}

.fzlc .box li .time p {
    font-size: 18px;
    line-height: 35px;
    text-align: center;
    color: #fff;
}

.fzlc .box li .dian {
    position: relative;
    margin: 9.5px 50px 0 20px;
    z-index: 2;
}

.fzlc .box li .dian img {
    display: block;
}

.fzlc .box li .xxmain {
    width: calc(100% - 200px);
    box-sizing: border-box;
}

.fzlc .box li .xxmain p {
    padding-left: 26px;
    font-size: 14px;
    line-height: 35px;
    background: url(/static/img/x2.png) no-repeat 4px 12px;
}

.fzlc .box li:hover {
    background: url(/upload/image/2020/12/1606908374_2843.jpg) no-repeat bottom/cover;
}

/*资质荣誉*/
.zzry {
    padding-bottom: 140px;
}

.zzry .n-title {
    margin-bottom: 92px;
}

.zzry .main {
    position: relative;
    padding-bottom: 18px;
}

.zzry .jz-more {
    position: absolute;
    bottom: 0;
    left: 56px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #0068b7;
    cursor: pointer;
}

.zzry .jz-more img {
    display: block;
}

.zzry li {
}

.zzry li .top {
    background: #f4f4f4;
}

.zzry li .top .tit {
    padding-left: 46px;
    line-height: 67px;
    font-weight: bold;
    font-size: 30px;
    color: #0068b7;
}

.zzry li .bottom {
    padding-left: 69px;
    position: relative;
    padding: 52px 0 39px 69px;
}

.zzry li .bottom:before {
    position: absolute;
    left: 75px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #e5e5e5;
    content: "";
}

.zzry li .bottom dd {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

.zzry li .bottom dd .dian {
    position: relative;
    box-sizing: border-box;
    border-radius: 50%;
    margin-top: 10px;
    width: 14px;
    height: 14px;
    background: #e3e3e3;
}

.zzry li .bottom dd .dian:before {
    position: absolute;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background: #959595;
    content: "";
}

.zzry li .bottom dd img {
    display: block;
    margin: 10px 22px 0 18px;
}

.zzry li .bottom dd .sum {
    font-size: 16px;
    line-height: 36px;
    color: #555;
}

/*住宅服务*/
.fwcp {
    padding-top: 50px;
}

.fwcp .nr-jj {
    padding-bottom: 100px;
}

.fwcp .nr-jj p {
    font-size: 16px;
    line-height: 36px;
    text-align: center;
    color: #555;
}

.fwcp .n-title {
    margin-bottom: 61px;
}

.zzfw .main {
    padding: 80px 0 96px;
    background: #fafafa;
}

.zzfw .main .box {
    width: 50%;
    box-sizing: border-box;
}

.zzfw .main li {
    position: relative;
    margin-bottom: 44px;
}

.zzfw .main li .xx {
    position: absolute;
    left: 0;
    padding: 62px 55px 0 50px;
    height: 100%;
    background: #fff;
}

.zzfw .main li:nth-child(2n) .xx {
    left: auto;
    right: 0;
}

.zzfw .main li .xx .t {
    display: flex;
    align-items: flex-end;
    padding-bottom: 18px;
    border-bottom: 1px solid #0068b7;
}

.zzfw .main li .xx .t img {
    display: block;
    width: 30px;
}

.zzfw .main li .xx .t .tit {
    padding-left: 23px;
    font-size: 28px;
    color: #333;
}

.zzfw .main li .xx .b .sum {
    padding-top: 33px;
    font-size: 16px;
    line-height: 30px;
    color: #555;
}

.zzfw .main .bigimg img {
    display: block;
    width: 100%;
}

/*非住宅服务*/
.fzzfw .main {
    padding: 80px 0 96px;
    background: #fafafa;
}

.fzzfw .main .mn {
    position: relative;
    margin-bottom: 44px;
}

.fzzfw .main .mn .l {
    position: relative;
    float: left;
    width: 59.5%;
}

.fzzfw .main .mn .l .tit {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 320px;
    height: 60px;
    background: rgba(51, 51, 51, .4);
    z-index: 2;
}

.fzzfw .main .mn .l .tit h4 {
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.fzzfw .main .swiper-slide {
    overflow: hidden;
}

.fzzfw .main .swiper-slide img {
    display: block;
    width: 100%;
    transition: 1s linear 6s;
    transform: scale(1.1);
}

.fzzfw .main .swiper-slide-active img {
    transition: 6s linear;
    transform: scale(1);
}

.fzzfw .main .mn .l .swiper-pagination {
    bottom: 23px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
    padding-right: 20px;
}

.fzzfw .main .mn .l .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    opacity: 1;
    background: #fff;
}

.fzzfw .main .mn .l .swiper-pagination-bullet-active {
    position: relative;
    width: 16px;
    height: 16px;
    background: #0068b7;
}

.fzzfw .main .mn .l .swiper-pagination-bullet-active:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #0068b7;
    content: "";
}

.fzzfw .main .mn .r {
    position: absolute;
    right: 0;
    top: 0;
    padding: 40px 48px 0;
    box-sizing: border-box;
    height: 100%;
    width: 40.5%;
    background: #fff;
}

.fzzfw .main .mn .t {
    display: flex;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #0068b7;
}

.fzzfw .main .mn .t .tb {
    width: 55px;
    height: 55px;
    margin: 0 28px 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid #0068b7;
    border-radius: 50%;
}

.fzzfw .main .mn .t .tb img {
    width: 30px;
}

.fzzfw .main .mn .t .tit {
    font-size: 28px;
    color: #333;
}

.fzzfw .main .mn .c .sum {
    padding-top: 33px;
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
    color: #555;
}

.fzzfw .main .mn .b {
    position: absolute;
    bottom: 30px;
    display: flex;
    align-items: center;
}

.fzzfw .main .mn .b li {
    position: relative;
    padding: 0 10px;
    margin-right: 8px;
    cursor: pointer;
    overflow: hidden;
}

.fzzfw .main .mn .b li:before {
    position: absolute;
    left: 0;
    top: 20px;
    width: 3px;
    height: 20px;
    background: #0068b7;
    content: "";
    opacity: 0;
    transition: all .5s;
}

.fzzfw .main .mn .b li.on:before {
    top: 0;
    opacity: 1;
}

.fzzfw .main .mn .b li.on p {
    color: #0068b7;
}

.fzzfw .main .mn .b p {
    font-size: 20px;
    line-height: 20px;
    color: #333;
}

.fzzfw .main .mn:nth-child(2) .l {
    float: right;
}

.fzzfw .main .mn:nth-child(2) .l .tit {
    left: auto;
    right: 0;
}

.fzzfw .main .mn:nth-child(2) .l .swiper-pagination {
    padding-right: 0;
    padding-left: 20px;
    justify-content: flex-start;
}

.fzzfw .main .mn:nth-child(2) .r {
    left: 0;
    right: auto;
}

/*增值服务*/
.sqzz {
    padding-bottom: 120px;
}

.zfwt .tit {
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    color: #333;
}

.zfwt .line {
    width: 76px;
    height: 3px;
    margin: 0 auto 50px;
    background: #0068b7;
}

.sqzz .main {
    display: flex;
    justify-content: space-between;
}

.sqzz .main li {
    width: 432px;
}

.sqzz .main li .t {
    position: relative;
    padding: 45px 58px 40px 58px;;
    box-shadow: 0px 0px 10px 0px rgba(191, 191, 191, .38);
}

.sqzz .main li .t:before {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 10px solid #fff;
    content: "";
}

.sqzz .main li .t .xx {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.sqzz .main li .t .bt {
    height: 67px;
    display: flex;
    flex-flow: column;
    align-items: end;
    justify-content: center;
}

.sqzz .main li .t .tit {
    margin-bottom: 6px;
    line-height: 30px;
    font-size: 24px;
    color: #333;
}

.sqzz .main li .t .en {
    font-size: 16px;
    line-height: 14px;
    text-transform: uppercase;
    color: #888;
}

.sqzz .main li .t img {
    display: block;
    margin-right: 28px;
}

.sqzz .main li .t .zjt {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
}

.sqzz .main li .b {
    padding: 41px 60px 0 50px;
    min-height: 357px;
    box-sizing: border-box;
    background: #cca468;
}

.sqzz .main li .b p {
    font-size: 16px;
    line-height: 30px;
    text-align: justify;
    color: #fff;
}

.sqzz .phone {
    display: none;
}

.zfw-warp2 {
    padding: 80px 0 130px;
    background: #f7f7f7;
}

.zfw-warp2 .fftit {
    margin: 30px 0 50px;
    font-size: 24px;
    text-align: center;
    line-height: 24px;
    color: #333;
}

.zfw-warp2 .line {
    margin-bottom: 74px;
}

.zfw-warp2 .tb {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 106px;
}

.zfw-warp2 .tb .yuan {
    width: 124px;
    height: 124px;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #0068b7;
}

.zfw-warp2 .tb .yuan img {
    display: block;
    transition: all .5s;
}

.zfw-warp2 .tb .yuan:hover img {
    transform: rotateY(180deg);
}

.zfw-warp2 .tb .t {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: #333;
}

.zfw-warp2 .pic {
    position: relative;
}

.zfw-warp2 .pic1 {
    margin-bottom: 50px;
}

.zfw-warp2 .pic .swiper-container {
    width: 100%;
}

.zfw-warp2 .pic .swiper-slide {
    overflow: hidden;
}

.zfw-warp2 .pic .swiper-slide .xx {
    position: absolute;
    top: calc(100% - 40px);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: column;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    transition: all .5s;
}

.zfw-warp2 .pic .swiper-slide .xx.jz {
    top: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zfw-warp2 .pic .swiper-slide .xx.jz .xtit {
    margin-bottom: 0;
}

.zfw-warp2 .pic .swiper-slide .xx .xtit {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 40px;
}

.zfw-warp2 .pic .swiper-slide .xx .sum {
    font-size: 16px;
    line-height: 30px;
}

.zfw-warp2 .pic .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.zfw-warp2 .pic .swiper-slide:hover .xx {
    top: 0;
    padding: 20px;
}

.zfw-warp2 .pic img {
    display: block;
    transition: all .5s;
}

.zfw-warp2 .pic .fy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    cursor: pointer;
    transition: all .5s;
    outline: none;
}

.zfw-warp2 .pic .fy .img2 {
    display: none;
}

.zfw-warp2 .pic .fy:hover {
    background: #0068b7;
}

.zfw-warp2 .pic .fy:hover .img1 {
    display: none;
}

.zfw-warp2 .pic .fy:hover .img2 {
    display: block;
}

.zfw-warp2 .pic .fy-l {
    left: 0;
}

.zfw-warp2 .pic .fy-r {
    right: 0;
}

.zfw-warp2 .pic .fy-l img {
    transform: rotate(180deg);
}

/*城市服务*/
.csfw .n-title {
    margin-bottom: 81px;
}

.csfw .cs-tit {
    margin-bottom: 50px;
}

.csfw .cs-tit .tit {
    margin-bottom: 30px;
    line-height: 35px;
    text-align: center;
    font-size: 28px;
    color: #333;
}

.csfw .cs-tit .csl {
    margin: 0 auto;
    width: 76px;
    height: 3px;
    background: #0068b7;
}

.cs-warp1 {
    margin-bottom: 82px;
    overflow: hidden;
}

.cs-warp1 .n-title {
    margin-bottom: 81px;
}

.cs-warp1 .xx {
    width: 674px;
    box-sizing: border-box;
    padding: 15px 0 0 40px;
}

.cs-warp1 .xx .tit {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 36px;
    color: #333;
}

.cs-warp1 .xx .sum p {
    margin-bottom: 36px;
    text-align: justify;
    font-size: 16px;
    line-height: 36px;
    color: #555;
}

.cs-warp1 .r {
    position: relative;
    padding-bottom: 18px;
}

.cs-warp1 .r .bigimg {
    position: relative;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .1);
    z-index: 2;
}

.cs-warp1 .r .img2 {
    position: absolute;
    bottom: 0;
    left: -18px;
}

.cs-warp2 {
    padding-bottom: 118px; /*overflow: hidden;*/
}

.cs-warp2 .main {
    display: flex;
    justify-content: space-between;
}

.cs-warp2 .main li {
    width: 436px;
    transition: all .5s;
}

.cs-warp2 .main li .bigimg img {
    width: 100%;
    height: auto;
}

.cs-warp2 .main li .xx {
    position: relative;
    padding: 28px 30px 0 20px;
    box-sizing: border-box;
    transition: all .5s;
}

.cs-warp2 .main li .xx:before {
    position: absolute;
    left: 5px;
    top: 74px;
    width: calc(100% - 10px);
    border-bottom: 1px dashed #e8e8e8;
    content: "";
}

.cs-warp2 .main li .tit {
    margin-bottom: 31px;
    height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 22px;
    line-height: 22px;
}

.cs-warp2 .main li .tit a {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #333;
}

.cs-warp2 .main li .sum {
    height: 60px;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
}

.cs-warp2 .main li .sum a {
    color: #555;
}

.cs-warp2 .main li:hover {
    box-shadow: 4px 6px 5px rgba(0, 0, 0, .1);
    margin-top: -5px;
}

.cs-warp2 .phone {
    display: none;
    padding: 12px 12px 40px;
}

.cs-warp2 .fy {
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    cursor: pointer;
    transition: all .5s;
    outline: none;
}

.cs-warp2 .fy .img2 {
    display: none;
}

.cs-warp2 .fy:hover {
    background: #0068b7;
}

.cs-warp2 .fy:hover .img1 {
    display: none;
}

.cs-warp2 .fy:hover .img2 {
    display: block;
}

.cs-warp2 .fy-l {
    left: 0;
}

.cs-warp2 .fy-r {
    right: 0;
}

.cs-warp2 .fy-l img {
    transform: rotate(180deg);
}

.cs-warp2 .more {
    width: 174px;
    height: 47px;
    box-sizing: border-box;
    border: 1px solid #0068b7;
    margin: 30px auto 0;
    text-align: center;
    font-size: 16px;
    line-height: 47px;
    text-transform: uppercase;
    color: #0068b7;
}

.cs-warp2 .more:hover {
    color: #fff;
}

/*.cs-warp2 .main li:hover .xx{padding-left: 35px;}*/
.cs-warp3 {
    margin-bottom: 120px;
}

.cs-warp3 .main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cs-warp3 .main li {
    width: 330px;
    border-radius: 5px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.cs-warp3 .main .t {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 36px 10px 0 20px;
    height: 112px;
    border-bottom: 1px dashed #e8e8e8;
    background: #f9f9f9;
}

.cs-warp3 .main .t img {
    display: block;
    margin-right: 14px;
}

.cs-warp3 .main .bt .tit {
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 26px;
    font-weight: bold;
    color: #333;
}

.cs-warp3 .main .bt .en {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 30px;
    color: #888;
}

.cs-warp3 .main .b {
    box-sizing: border-box;
    min-height: 306px;
    padding: 25px 30px 0 26px;
}

.cs-warp3 .main .b p {
    font-size: 16px;
    line-height: 30px;
    color: #555;
}

.cs-warp3 .phone {
    display: none;
}

.cs-warp4 {
    padding-bottom: 140px;
}

.cs-warp4 .cs-tit {
    margin-bottom: 84px;
}

.cs-warp4 .xx {
    width: 45.8571429%;
}

.cs-warp4 .xx .tit {
    font-size: 28px;
    line-height: 34px;
    color: #333;
}

.cs-warp4 .xx .line {
    margin: 24px 0 29px;
    height: 2px;
    background: #f5f5f5;
}

.cs-warp4 .xx p {
    padding-right: 28px;
    text-align: justify;
    font-size: 16px;
    line-height: 32px;
    color: #666;
}

.cs-warp4 .bigimg {
    width: 50%;
}

.cs-warp4 .bigimg img {
    width: 100%;
    height: auto;
}

/*携手宋都*/
.xs {
}

.xs .nr-jj {
    padding-bottom: 70px;
}

.xs .main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 140px;
}

.xs .main .mn {
    width: 434px;
    border-radius: 5px;
}

.xs .main .mn .t {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 93px;
    padding: 0 40px;
    box-sizing: border-box;
    background: url(/static/img/xs4.png) no-repeat center/cover;
}

.xs .main .mn .t img {
    display: block;
}

.xs .main .mn .t .tit {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 2px;
    color: #fff;
}

.xs .main .mn .b {
    min-height: 187px;
    padding: 32px 52px 0 40px;
    box-sizing: border-box;
    background: #eaeaea;
}

.xs .main .mn .b p {
    font-size: 16px;
    line-height: 30px;
}

.xs-main {
    padding: 66px 0 40px;
    background: url(/static/img/mbg.jpg) repeat center;
}

.xs-main .main {
    display: flex;
    align-items: flex-start;
}

.xs-main .bt {
    display: flex;
    align-items: center;
    margin-right: 110px;
}

.xs-main .bt .tit {
    font-size: 28px;
    line-height: 48px;
    color: #333;
}

.xs-main .bt .line {
    width: 5px;
    height: 30px;
    margin-right: 16px;
    background: #0068b7;
}

.xs-main .xx .mn {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.xs-main .xx .mn img {
    display: block;
    margin-right: 15px;
}

.xs-main .xx .mn p {
    font-size: 20px;
    line-height: 30px;
    color: #555;
}

.xs-main .xx .mn a {
    display: inline-block;
    font-size: 30px;
    line-height: 26px;
    font-weight: bold;
    color: #000;
}

/*新闻中心*/
.news .n-title {
    padding-top: 110px;
}

.news .main {
    padding-bottom: 110px;
}

.news .main li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 34px 0 34px 47px;
    border-bottom: 1px solid #cbcccc;
    transition: all .5s;
}

.news .main li .xx {
    margin-left: 86px;
    width: 750px;
}

.news .main li .xx .tit {
    height: 26px;
    margin-bottom: 24px;
    font-weight: bold;
    font-size: 24px;
    line-height: 26px;
}

.news .main li .xx .tit a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #3f3e55;
}

.news .main li .xx .sum {
    margin-bottom: 50px;
    height: 60px;
    overflow: hidden;
    font-size: 16px;
    line-height: 30px;
}

.news .main li .xx .sum a {
    color: #4c565d;
}

.news .main li .xx .b {
    display: flex;
    align-items: center;
}

.news .main li .xx .b .time {
    margin-left: 9px;
    font-size: 18px;
    line-height: 18px;
    color: #555;
}

.news .main li .tb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    transition: all .5s;
}

.news .main li .tb img {
    display: block;
    transition: all .5s;
}

.news .main li .tb .img2 {
    display: none;
}

.news .main li:hover {
    padding-left: 58px;
}

/*.news .main li:hover .tb{right: 80px;}
*/
.news .main li:hover .tb .img1 {
    display: none;
}

.news .main li:hover .tb .img2 {
    display: block;
}

.news .main li:hover .tit a {
    color: #0068b7;
}

.news .more {
    width: 174px;
    height: 47px;
    margin: 0 auto 130px;
    box-sizing: border-box;
    border: 1px solid #0068b7;
    text-align: center;
    font-size: 16px;
    line-height: 47px;
    text-transform: uppercase;
    color: #0068b7;
}

.news .more:hover {
    color: #fff;
}

/*新闻详情*/
.viewpage {
    position: relative;
}

.viewpage-box {
    padding-bottom: 160px;
}

.viewpage-box .ml {
    width: 70%;
}

.viewpage .mr {
    position: absolute;
    right: 0;
    top: 70px;
    width: 32%;
    height: 595px;
    box-sizing: border-box;
    padding-top: 50px;
    text-align: right;
    transition: all .5s;
}

.viewpage .mr .t {
    padding: 50px 40px 0 10px;
    width: 360px;
    height: 340px;
    box-sizing: border-box;
    margin-bottom: 20px;
    background: rgba(176, 137, 78, .3);
}

.viewpage .mr .t .img {
    width: 200px;
    margin-bottom: 20px;
}

.viewpage .mr .t .sum {
    margin-bottom: 30px;
}

.viewpage .mr p.tit {
    padding-bottom: 5px;
    font-size: 18px;
    line-height: 24px;
    color: #2a283b;
}

.viewpage .mr p.sum {
    font-size: 14px;
    line-height: 19px;
    color: #44434b;
}

.viewpage .mr p a {
    display: inline-block;
    color: #2a283b;
}

.viewpage .mr p.dh, .viewpage .mr p.dz {
    padding-bottom: 5px;
    font-size: 13px;
    line-height: 17px;
    color: #2a283b;
}

.viewpage .mr .b {
    padding: 0 30px;
    height: 185px;
    width: 360px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(176, 137, 78, .3);
}

.viewpage .mr .b p {
    font-size: 18px;
}

.viewpage .mr .b img {
    display: block;
}

.viewpage .mr.fix {
    position: fixed;
    top: 40px;
}

.viewpage .mr.fix1 {
    top: auto;
    bottom: 530px;
}

.viewpage-box .n-title {
    padding-top: 110px;
    margin-bottom: 10px;
}

.viewpage-box .n-title .tit {
    margin-bottom: 15px;
    line-height: 30px;
    font-size: 24px;
    text-align: left;
    color: #0068b7;
}

.viewpage-box .n-title .time {
    margin-bottom: 10px;
    line-height: 40px;
    font-size: 30px;
    color: #555;
}

.viewpage-box .n-title .b {
    display: flex;
    justify-content: space-between;
}

.viewpage-box .n-title .b p {
    font-size: 16px;
    line-height: 30px;
    color: #666;
}

.viewpage-box .n-title .b .share {
    display: flex;
    align-items: center;
}

.viewpage-box .n-title .b .share p {
    margin-right: 15px;
}

/*.viewpage-box .n-title .b .share a{width: 20px;height: 20px;border-radius: 50%;background-size:cover; }
*/
.viewpage-body {
    margin-bottom: 24px;
    padding: 30px;
    border-bottom: 3px solid #0068b7;
    border-top: 3px solid #0068b7;
    min-height: 300px;
}

.viewpage-body p {
    font-size: 16px;
    line-height: 32px;
    text-indent: 32px;
    text-align: justify;
}

.viewpage-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.viewpage-body iframe {
    width: 100%;
}

.viewpage-link ul {
    display: flex;
    justify-content: space-between;
}

.viewpage-link ul .viewpage-return {
    width: 80px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0068b7;
}

.viewpage-link ul .viewpage-return img {
    display: block;
}

.viewpage-link ul li {
    width: calc((100% - 100px) / 2);
    height: 60px;
    background: #e8e8e8;
    transition: all .5s;
}

.viewpage-link ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.viewpage-link ul li a p {
    padding: 0 60px 0 80px;
    height: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    line-height: 60px;
    color: #333;
    transition: all .5s;
}

.viewpage-link ul li img {
    position: absolute;
    top: 16px;
}

.viewpage-link ul li.l img {
    left: 40px;
}

.viewpage-link ul li.r img {
    right: 40px;
    transform: rotate(180deg);
}

.viewpage-link ul li img.img2 {
    display: none;
}

.viewpage-link ul li:hover {
    background: #0068b7;
}

.viewpage-link ul li:hover img.img2 {
    display: block;
}

.viewpage-link ul li:hover img.img1 {
    display: none;
}

.viewpage-link ul li:hover a p {
    color: #fff;
}

.viewpage-link ul li.l {
    text-align: right;
}

.viewpage-link ul li.r a p {
    padding: 0 80px 0 60px;
}

/*加入宋都*/
.join {
    padding-bottom: 40px;
}

.join .nr-jj {
    padding-bottom: 81px;
}

.join .main {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.join .main .mn {
    position: relative;
    top: 0;
    width: 640px;
    height: 270px;
    border-radius: 10px;
    box-shadow: 3px 0px 10px 0px rgba(242, 205, 112, .35);
    background: #f3cf72;
    transition: all 1s;
    overflow: hidden;
}

.join .main .mn img {
    position: absolute;
    display: block;
}

.join .main .mn .img {
    left: 0;
    bottom: 18px;
}

.join .main .mn .tit {
    position: absolute;
    top: 57px;
    right: 26px;
    font-size: 32px;
    line-height: 30px;
    color: #fff;
}

.join .main .mn .jt {
    top: 112px;
    right: 100px;
    opacity: 0;
    transition: all 1s;
}

.join .main .mn .num {
    position: absolute;
    bottom: 18px;
    right: 4px;
    font-size: 130px;
    font-weight: bold;
    line-height: 96px;
    color: rgba(255, 235, 183, .5);
    transition: all 1s;
}

.join .main .mn:hover .jt {
    opacity: 1;
    right: 85px;
}

.join .main .mn:hover {
    top: -10px;
    box-shadow: 3px 0px 10px 0px rgba(242, 205, 112, 1);
}

.join .main .mn:hover .num {
    color: rgba(255, 235, 183, 1);
}

.join .main .mn.pink {
    background: #c16cad;
    box-shadow: 3px 0px 10px 0px rgba(222, 222, 222, .35);
}

.join .main .mn.pink .img {
    bottom: 0;
}

.join .main .mn.pink .num {
    right: 20px;
    color: rgba(242, 149, 220, .3);
}

.join .main .mn.pink:hover {
    box-shadow: 3px 0px 10px 0px rgba(222, 222, 222, 1);
}

.join .main .mn.pink:hover .num {
    color: rgba(242, 149, 220, 1);
}

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

/*投资者关系*/
.tz {
    padding-bottom: 140px;
}

.tz .n-title {
    margin-bottom: 42px;
}

.tz .nr {
    display: flex;
    margin-bottom: 92px;
}

.tz .nr .tit {
    position: relative;
    margin-top: 9px;
    width: 165px;
    box-sizing: border-box;
    padding-left: 20px;
    font-size: 24px;
    line-height: 22px;
    color: #000;
}

.tz .nr .tit:before {
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0068b7;
    content: "";
}

.tz .nr p {
    width: calc(100% - 165px);
    font-size: 18px;
    line-height: 36px;
    text-align: justify;
}

.tz .tz-main {
    display: flex;
}

.tz .tz-main.phone {
    display: none;
}

.tz .tz-main .mn {
    width: 25%;
}

.tz .tz-main .mn .xx {
    padding: 55px 0 42px;
    text-align: center;
    background: #fbfbfb;
}

.tz .tz-main .mn .xx .tit {
    margin-bottom: 11px;
    font-size: 30px;
    line-height: 29px;
    color: #333;
}

.tz .tz-main .mn .xx .en {
    margin-bottom: 31px;
    font-size: 16px;
    line-height: 13px;
    color: #888;
}

.tz .tz-main .mn .xx .more {
    width: 110px;
    height: 32px;
    margin: 0 auto;
    box-sizing: border-box;
    border: 1px solid #0068b7;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    text-transform: uppercase;
    color: #0068b7;
}

.tz .tz-main .mn .xx .more:hover {
    color: #fff;
}

.t-mn {
    padding: 110px 0 140px;
}

.t-mn .l {
    padding-left: 18px;
    width: 200px;
    box-sizing: border-box;
    border-top: 1px solid #d9d9d9;
}

.t-mn .l li {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px solid #d9d9d9;
}

.t-mn .l li a {
    line-height: 16px;
    font-size: 16px;
    color: #666;
}

.t-mn .l li .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
    opacity: 0;
    transition: all .5s;
}

.t-mn .l li.on .icon {
    opacity: 1;
}

.t-mn .l li:hover .icon {
    opacity: 1;
}

.t-mn .right {
    width: calc(100% - 300px);
}

.t-mn .right .t {
    padding: 0 14px;
    display: inline-block;
    margin-bottom: 16px;
    border-radius: 0px 20px 20px 0;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    color: #fff;
    background: #0068b7;
}

.t-mn .r ul {
    margin-bottom: 50px;
}

.t-mn .r li {
    position: relative;
    padding: 30px 8px 10px;
    border-bottom: 1px solid #ccc;
}

.t-mn .r li .top, .t-mn .r li .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t-mn .r li .top p {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    color: #333;
}

.t-mn .r li .bottom .tit {
    margin: 5px 0;
    max-width: calc(100% - 100px);
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

.t-mn .r li .line {
    width: 1px;
    height: 38px;
    margin-right: 16px;
    background: #e6e6e6;
}

.t-mn .r li .down .icon {
    transition: all .5s;
}

.t-mn .r li .down:hover .icon {
    width: 28px;
    height: 28px;
}

/*.t-mn .r li .tit{font-size: 16px;line-height: 38px;}*/
/*.t-mn .r li .down{position: absolute;top: 50%;right: 14px;transform: translateY(-50%);border-radius: 6px;padding:8px;
font-size: 14px;color: #b1b1b1; background: #efefef;transition: all .5s;}*/
/*.t-mn .r li .down:hover{background: #0068b7;color: #fff;}*/
.t-mn .r .fy {
    display: flex;
    justify-content: center;
}

.t-mn .r .fy .current, .t-mn .r .fy .p1 {
    display: block;
    width: 74px;
    border: 1px solid #e2e2e2;
    box-sizing: border-box;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #333;
}

.p6 {
    display: block;
    width: 40px;
    border: 1px solid #e2e2e2;
    box-sizing: border-box;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #333;
    cursor: pointer;

}

.t-mn .r .fy .current.disabled {
    cursor: not-allowed;
    opacity: .7;
}

.t-mn .r .fy .num {
    display: flex;
}

.t-mn .r .fy .num a {
    width: 40px;
    border: 1px solid #e2e2e2;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #333;
    transition: all .5s;
}

.t-mn .r .fy .num a:hover {
    background: #0068b7;
    color: #fff;
}

.t-mn .r .fy .num .now {
    width: 40px;
    border: 1px solid #e2e2e2;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #fff;
    background: #0068b7;
    cursor: pointer;
}

.qygz .mpage4 {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #0068b7;
    margin-bottom: 34px;
}

.qygz .mpage4 .mn {
    padding: 0 14px;
    margin-left: 14px;
    cursor: pointer;
    background: #f5f5f5;
}

.qygz .mpage4 .mn p {
    font-size: 16px;
    line-height: 40px;
    color: #797979;
    transition: all .5s;
}

.qygz .mpage4 .mn.on {
    position: relative;
    bottom: -1px;
    border: 1px solid #0068b7;
    border-bottom-color: #fff;
    background: #fff;
    color: #0068b7;
}

.qygz .mpage4 .mn:hover p {
    color: #0068b7;
}

.qygz .swiper-slide .mn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 5em 0 0 5em;
    margin-bottom: 15px;
    overflow: hidden;
}

.qygz .swiper-slide .mn .tit {
    position: absolute;
    left: 0;
    height: 100%;
    width: 26.66666667%;
    color: #fff;
    background: #0068b7;
}

.qygz .swiper-slide .mn .sum {
    width: 73.33333334%;
    color: #a7a0a0;
    background: #f5f5f5;
}

.qygz .swiper-slide .mn .tit, .qygz .swiper-slide .mn .sum {
    min-height: 50px;
    box-sizing: border-box;
    padding-left: 28px;
    padding-right: 5px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
}

.zgwj .top {
    margin-bottom: 58px;
}

.zgwj .top .mn {
    position: relative;
    display: flex;
    background: #fcfcfc;
}

.zgwj .top .mn:before {
    position: absolute;
    left: 50%;
    top: 5%;
    width: 1px;
    height: 90%;
    background: #e6e6e6;
    content: "";
}

.zgwj .top .mn .box {
    width: 50%;
    text-align: center;
    padding: 70px 20px;
}

.zgwj .top .mn .box .tit {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 20px;
    color: #0068b7;
}

.zgwj .top .mn .box .sum {
    font-size: 14px;
    color: #a7a0a0;
}

.zgwj .bottom .mn {
    display: flex;
    padding: 50px 20px;
    justify-content: center;
    align-items: center;
    background: #fcfcfc;
}

.zgwj .bottom .mn img {
    max-width: 100%;
    display: block;
}

.zgwj .bottom .mn .b {
    display: flex;
    height: 40px;
    padding: 0 20px;
    border-top: 2px solid #fff;
    justify-content: space-between;
    align-items: center;
    background: #0068b7;
}

.zgwj .bottom .mn .b p {
    font-size: 16px;
    color: #fff;
}

.lxwm .box {
    padding: 30px 20px;
    background: #fcfcfc;
}

.lxwm .box .mn {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #a7a0a0;
}

.lxwm .box .mn .tb {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    margin-right: 10px;
}

.lxwm .box .mn .tit {
    width: 55px;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}

.lxwm .box .mn .sum {
    width: calc(100% - 100px);
    font-size: 16px;
    line-height: 24px;
    color: #a7a0a0;
}


/*12.23新加*/
.header .lang-z {
    display: flex;
}

.header .lang-z .mr {
    margin-left: 10px;
}

.header .phone-nav-mn .lang-z {
    margin-top: 50px;
    width: 100%;
    justify-content: center;
}

.header .phone-nav-mn .lang-z .lang {
    width: 100px;
    height: 40px;
    margin-left: 0 10px;
    border: 1px solid #0068b7;
}

.header .phone-nav-mn .lang-z .lang a {
    line-height: 40px;
    color: #0068b7;
}

.qygz .swiper-slide .mn .tit {
    font-size: 18px;
    font-weight: bold;
}

.qygz .swiper-slide .mn .sum.dsh {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-right: 80px;
}

.qygz .swiper-slide .mn .sum.dsh span {
    display: inline-block;
    margin-right: 40px;
}

.zgwj .top .mn .box .sum {
    font-size: 18px;
}

.zgwj .bottom .mn {
    flex-wrap: wrap;
}

.zgwj .bottom .mn .b {
    margin-bottom: 30px;
}

.zgwj .bottom .mn .b-box {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.zgwj .bottom .mn .b-box .b {
    width: 40%;
    box-sizing: border-box;
}


@media (max-width: 1720px) {

    .i-banner .swiper-slide .xx .tit {
        font-size: 48px;
    }

    .i-ser .mpage3 {
        top: 150px;
    }

    .footer .top .fc dl {
        margin-right: 40px;
    }

    .viewpage .mr {
        width: 27%;
    }


}

@media (max-width: 1440px) {

    .w1642 {
        width: 94%;
    }

    .w1400 {
        width: 94%;
    }

    .header ul li {
        margin: 0 20px;
    }

    .i-banner .swiper-slide .xx {
        max-width: 50%;
    }

    .i-banner .swiper-slide .xx .tit {
        font-size: 36px;
    }

    .i-about .main .l {
        width: 40%;
    }

    .i-about .main .r {
        width: 50%;
    }

    .i-about .main .more {
        margin: 30px auto 0;
    }

    .i-news .swiper-slide .l {
        width: 40%;
    }

    .i-news .swiper-slide .r {
        width: 50%;
    }

    .i-ser .mpage3 {
        top: 60px;
    }

    .footer .top .fc dl {
        margin-right: 30px;
    }

    .qywh .tu {
        width: 100%;
        height: auto;
    }

    .cs-warp2 .main li {
        width: 30%;
    }

    .cs-warp3 .main li {
        width: 24%;
    }

    .xs .main .mn {
        width: 30%;
    }

    .news .main li .xx {
        margin-left: 40px;
        box-sizing: border-box;
        padding-right: 50px;
    }

    .news .main li .tb {
        right: 10px;
    }

    .join .main .mn {
        width: 47%;
    }

    .fzzfw .main .mn .r {
        padding: 40px 40px 0;
    }

    .fzzfw .main .mn .t {
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .fzzfw .main .mn .c .sum {
        padding-top: 13px;
    }

    .sqzz .main li {
        width: 30%;
    }

    .sqzz .main li .b {
        min-height: 380px;
    }

    .sqzz .main li .b, .sqzz .main li .t {
        padding: 40px;
    }

    .zfw-warp2 .pic .swiper-slide img {
        width: 100%;
    }

    .cs-warp1 .xx {
        width: 50%;
        box-sizing: border-box;
    }

    .cs-warp1 .r {
        width: 43.0714286%;
    }

    .cs-warp1 .r .img1 {
        width: 100%;
    }

    .cs-warp3 .main .bt .en {
        font-size: 14px;
        line-height: 20px;
    }

    .cs-warp3 .main .b {
        padding: 15px 20px 0;
    }

    .viewpage .mr .t, .viewpage .mr .b {
        width: 90%;
    }

    .viewpage .mr .b p {
        font-size: 16px;
        margin-right: 10px;
    }
}

@media (max-width: 1240px) {
    .header ul li {
        margin: 0 8px;
    }

    .header .lang {
        margin-left: 10px;
    }

    .i-banner .swiper-slide .xx {
        left: 280px;
        width: 60%;
    }

    .i-banner .swiper-slide .xx .sum {
        line-height: 30px;
        font-size: 16px;
    }

    .i-banner .qiu {
        left: 100px;
        width: 140px;
        height: 140px;
    }

    .i-banner .page {
        width: 80px;
    }

    .i-banner .qiu p {
        font-size: 16px;
    }

    .i-banner .page:after {
        font-size: 16px;
    }

    .i-about .main .l, .i-about .main .r {
        width: 100%;
        float: none;
        display: block;
    }

    .i-about .main .sj {
        max-width: 100%;
    }

    .i-about .main .sj .sum {
        width: 25%;
    }

    .i-about .bg {
        max-width: 100%;
    }

    .i-news .mpage {
        width: 50%;
    }

    .i-news .swiper-slide .l .bigimg img {
        width: 100%;
    }

    .i-ser .ibt {
        top: 60px;
    }

    .i-ser .mpage3 {
        top: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 400px;
    }

    .progress {
        width: 400px;
        height: 400px;
    }

    .i-ser .mpage3 .mn .tit {
        font-size: 22px;
    }

    .i-ser .mpage3 .mn.on .tit {
        font-size: 24px;
    }

    .i-ser .mpage3 .mn.one .tit {
        bottom: 40px;
        right: 30px;
    }

    .i-ser .mpage3 .mn.two .tit {
        bottom: 40px;
        left: 30px;
    }

    .i-ser .mpage3 .mn.three .tit {
        top: 40px;
        left: 30px;
    }

    .i-ser .mpage3 .mn.four .tit {
        top: 40px;
        right: 30px;
    }

    .i-ser .main .xx {
        left: auto;
        right: 3%;
        transform: translate(0);
    }

    .i-ser .main .xx p {
        font-size: 20px;
    }

    .i-ser .main .xx .b span {
        margin-left: 5px;
        font-size: 16px;
        line-height: 30px;
    }

    .i-ser .main .xx .line {
        width: 200px;
    }

    .footer .top .fc {
        display: none;
    }

    .qywh .nr .nr-c {
        margin: 0 50px;
    }

    .qywh .nr li .sum {
        line-height: 20px;
    }

    .qywh .wh {
        flex-wrap: wrap;
    }

    .qywh .wh .r {
        margin-left: 15px;
    }

    .qywh .wh .mn {
        width: 33.3333%;
        box-sizing: border-box;
        align-items: flex-start;
        padding: 0 10px;
        justify-content: center;
    }

    .qywh .wh .r .sum {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    .fzlc .swiper-slide {
        padding: 100px;
    }

    .fzlc .swiper-slide .xx {
        padding-right: 0;
    }

    .zzfw .main li .xx {
        padding: 40px;
    }

    .zzfw .main li .xx .b .sum {
        padding-top: 15px;
    }

    .fzzfw .main .mn .r {
        position: relative;
        padding: 40px;
    }

    .fzzfw .main .mn .l, .fzzfw .main .mn .r {
        float: none;
        display: block;
        width: 100%;
        max-width: 833px;
        margin: 0 auto;
    }

    .fzzfw .main .mn .b {
        bottom: auto;
        top: 30px;
        right: 30px;
    }

    .fzzfw .main .mn:nth-child(2) .l {
        float: none;
    }

    .sqzz .main.pc {
        display: none;
    }

    .sqzz .phone {
        display: block;
        padding-top: 10px !important;
    }

    .sqzz .main li {
        width: 500px;
    }

    .sqzz .main li .b {
        min-height: 300px;
    }

    .zfw-warp2 .pic .swiper-container {
        width: calc(100% - 160px)
    }

    .zfw-warp2 .tb {
        margin-bottom: 20px;
        justify-content: center;
    }

    .zfw-warp2 .tb li {
        width: 25%;
        margin-bottom: 30px;
    }

    .cs-warp1 .xx {
        padding-left: 0;
    }

    .cs-warp1 .r {
        margin-top: 100px;
    }

    .cs-warp1 .r .img2 {
        display: none;
    }

    .cs-warp3 .phone {
        display: block;
        padding: 20px;
    }

    .cs-warp3 .main.pc {
        display: none;
    }

    .cs-warp3 .main {
        flex-wrap: nowrap;
    }

    .cs-warp3 .main li {
        width: 300px;
    }

    .cs-warp4 .bigimg {
        padding-top: 100px;
    }

    .xs .main .mn {
        width: 32%;
    }

    .xs .main .mn .t {
        padding: 0 20px;
    }

    .xs .main .mn .b {
        padding: 20px 20px 0;
    }

    .xs-main .bt {
        margin-right: 80px;
    }

    .news .main li {
        padding-left: 20px;
    }

    .news .main li:hover {
        padding-left: 30px;
    }

    .news .main li .bigimg {
        width: 300px;
    }

    .news .main li .bigimg img {
        width: 100%;
    }

    .news .main li .xx {
        width: calc(100% - 400px);
    }

    .viewpage .mr .b {
        padding: 0 10px;
    }

    .viewpage .mr .t {
        padding: 30px 10px;
    }

    .qygz .swiper-slide .mn .tit, .qygz .swiper-slide .mn .sum {
        height: auto;
        padding: 10px;
        line-height: 26px;
    }

    .qygz .swiper-slide .mn {
        position: relative;
        justify-content: flex-end;
    }

    .qygz .swiper-slide .mn .tit {
        position: absolute;
        left: 0;
        height: 100%;
        width: 30%;
    }

    .qygz .swiper-slide .mn .sum {
        width: 70%;
    }

    .join .main .mn .img {
        width: 250px;
    }

}


@media screen and (min-width: 0\0
) {
    .i-ser {
        overflow: hidden;
    }

    /*.i-ser .main .swiper-slide .img{transform: scale(1);}*/
    .header .logo img {
        height: 52px;
    }

    .jzdh .box img {
        height: 76px;
    }

    .footer .top .fl .img {
        height: 45px;
    }

    body {
        overflow-x: hidden;
    }

}















