.mobile {
    width: 100%;
}

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

.mobile-inner img {
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wow {
    opacity: 0;
}

.mobile-inner-nav {
    background-color: hsl(358,69%,41%);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    max-height: calc(100vh - 50px);
    z-index: 444;
    overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@charset "utf-8";@charset "UTF-8";.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    opacity: 0;
}

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

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,9%,0);
    }

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

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

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

.fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(.3,.3,.3);
    }

    100% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

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

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
    overflow-x: hidden;
}

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

body {
    font-family: "HanHei SC","PingFang SC","Microsoft YaHei";
    font-weight: 300;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

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

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

input {
    -webkit-appearance: none;
    border-radius: 0
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

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

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

li {
    list-style: none;
}

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

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

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

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

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

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

body {
    -webkit-overflow-scrolling: touch;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pc {
    display: block;
}

.wap {
    display: none;
}

.wrap7:after {
    content: "";
    display: table;
    clear: both;
}

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

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

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

.head {
    background: #fff;
    width: 100%;
    z-index: 5555;
    left: 0;
    position: fixed;
    top: 0;
}

.head .wrap {
    /* position:relative;*/
}

.head .logo {
    float: left;
    padding-top: 26px;
    position: relative;
    z-index: 5;
}

.head .logo img {
    width: 109px;
}

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

.head .nav {
    float: left;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
    font-size: 0;
}

.head .nav li {
    margin-left: 33px;
    float: none;
    position: relative;
    display: inline-block;
}

.head .nav li.sli:hover .h2tit {
    color: #AF2025;
    background: url(../images/3_1xzred.png) no-repeat right center;
}

.head .nav li.current .h2tit a,.head .nav li:hover .h2tit a {
    color: #AF2025;
}

.head .nav li.sli .h2tit {
    padding-right: 10px;
    position: relative;
}

.head .nav ul li {
}

.head .nav ul li .h2tit {
    position: relative;
}

.head .nav li:nth-child(4).current .h2tit a:after {
    left: 50%;
}

.head .nav li:nth-child(5).current .h2tit a:after {
    left: 50%;
}

.head .nav li:nth-child(6).current .h2tit a:after {
    left: 50%;
}

.head .nav li:nth-child(1).current .h2tit a:after {
    left: 50%;
}

.head .nav li.current .h2tit a:after {
    position: absolute;
    top: 70%;
    left: calc(50% - 6px);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    content: "";
    width: 20px;
    height: 3px;
    background: #AF2025;
}

.head .nav li .h2tit a {
    display: block;
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    /* padding-right:10px;*/
    line-height: 80px;
}

.head .nav li.sli .h2tit {
    background: url(../images/3_1jtblack.png) no-repeat right center;
}

.head .nav li dl:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 6;
    border-width: 0 10px 7px 10px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -10px;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    left: 50%;
}

.head .nav li:hover dl {
    visibility: visible;
    opacity: 1;
    top: 80px;
    z-index: 5;
}

.head .nav li dl {
    position: absolute;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
    width: 140px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: 90px;
}

.head .nav li dl dd a:hover {
    background: #f5f5f5;
    color: #AF2025;
}

.head .nav li dl dd a {
    display: block;
    line-height: 40px;
    color: #333;
    font-size: 14px;
}

.head .search_wrap .tb {
    height: 100%;
}

.head .search_wrap {
    float: left;
    margin-left: 35px;
    position: relative;
    width: 16px;
    height: 80px;
    margin-right: 9px;
}

.head .login_res {
    float: left;
    line-height: 80px;
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
}

.head .login_res a {
    color: #333333;
}

.head .login_res span {
}

.header .tb {
    float: right;
    width: 70px;
    height: 70px;
    margin: 22px 0 0;
    position: relative;
    z-index: 3;
    right: -18px;
}

.search-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    height: 100%;
}

.search-wrapper .input-holder {
    overflow: hidden;
    height: 43px;
    background: rgba(255,255,255,0);
    border-radius: 6px;
    position: relative;
    width: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: 20px;
}

.search-wrapper .input-holder .search-input {
    width: 100%;
    height: 100%;
    padding: 0px 70px 0 20px;
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    background: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #FFF;
    -webkit-transform: translate(0,60px);
    -moz-transform: translate(0,60px);
    transform: translate(0,60px);
    -webkit-transition: all .3s cubic-bezier(0.000,0.105,0.035,1.570);
    -moz-transition: all .3s cubic-bezier(0.000,0.105,0.035,1.570);
    transition: all .3s cubic-bezier(0.000,0.105,0.035,1.570);
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
    font-family: PingFangSC-Regular,PingFang SC;
}

.search-wrapper .input-holder .search-icon {
    width: 16px;
    height: 100%;
    border: none;
    background: url(../images/3_1sousuo.png) center no-repeat #fff;
    border-radius: 6px;
    padding: 0px;
    outline: none;
    position: relative;
    z-index: 2;
    float: right;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.search-wrapper .close {
    position: absolute;
    z-index: 1;
    top: 27px;
    right: -4px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all .3s cubic-bezier(0.285,-0.450,0.935,0.110);
    -moz-transition: all .3s cubic-bezier(0.285,-0.450,0.935,0.110);
    transition: all .3s cubic-bezier(0.285,-0.450,0.935,0.110);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.search-wrapper .close:before {
    width: 5px;
    height: 25px;
    left: 10px;
    top: 0px;
    content: ''
}

.search-wrapper .close:after {
    width: 25px;
    height: 5px;
    left: 0px;
    top: 10px;
    content: ''
}

.search-wrapper .result-container {
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0px;
    text-align: center;
    font-family: "Open Sans",Arial,Verdana;
    font-size: 14px;
    display: none;
    color: #B7B7B7;
}

.search-wrapper.active {
    left: -147px;
}

.search-wrapper.active .input-holder {
    border-radius: 50px;
    width: 266px;
    background: rgba(177,32,37,.9);
    -webkit-transition: all .5s cubic-bezier(0.000,0.105,0.035,1.570);
    -moz-transition: all .5s cubic-bezier(0.000,0.105,0.035,1.570);
    transition: all .5s cubic-bezier(0.000,0.105,0.035,1.570);
    box-shadow: 0px 2px 10px 0px rgb(251,123,127);
}

.search-wrapper.active .input-holder .search-input {
    opacity: 1;
    -webkit-transform: translate(0,0px);
    -moz-transform: translate(0,0px);
    transform: translate(0,0px);
}

.search-wrapper.active .input-holder .search-icon {
    width: 32px;
    height: 32px;
    background-color: #E6E6E6;
    margin: 5px;
    border-radius: 30px;
}

.search-wrapper .close::before,.search-wrapper .close::after {
    position: absolute;
    content: '';
    background: #ccc;
    border-radius: 2px;
    opacity: 0;
}

.search-wrapper.active .close:after {
    opacity: 1
}

.search-wrapper.active .close:before {
    opacity: 1
}

.search-wrapper.active .close {
    right: -32px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .6s cubic-bezier(0.000,0.105,0.035,1.570);
    -moz-transition: all .6s cubic-bezier(0.000,0.105,0.035,1.570);
    transition: all .6s cubic-bezier(0.000,0.105,0.035,1.570);
    -webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.search-wrapper .input-holder .search-input::-webkit-input-placeholder {
    color: #fff;
}

.search-wrapper .input-holder .search-input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff;
}

.search-wrapper .input-holder .search-input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff;
}

.search-wrapper .input-holder .search-input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff;
}

.head .login_res a:hover {
    color: #AF2025
}

.channel_banner {
    height: 335px;
    text-align: center;
    position: relative;
}

.channel_banner .center {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.channel_banner .h2tit {
    font-size: 50px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 70px;
    font-size: 40px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 56px;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.5);
}

.channel_banner .en {
    padding-top: 9px;
    font-size: 30px;
    font-family: Helvetica-Light,Helvetica;
    font-weight: 300;
    color: #FFFFFF;
    text-transform: uppercase;
    line-height: 36px;
}

.sec_menu {
    margin-top: -40px;
    position: relative;
    z-index: 45;
    text-align: center;
}

.sec_menu + .position {
    margin: 0px;
}

.sec_menu .flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
}

.sec_menu .flex a {
    flex: 1;
    line-height: 80px;
    position: relative;
    font-size: 18px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    overflow: hidden;
}

.sec_menu .flex a:after {
    width: 100%;
    height: 9px;
    background: url(../images/3_1sjx.png) no-repeat center center;
    background-size: auto 100%;
    position: absolute;
    left: 0px;
    bottom: -10px;
    content: "";
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.sec_menu .flex a.current:after,.sec_menu .flex a:hover:after {
    bottom: 0px;
}

.position {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 336px;
    background: #fff;
}

.position a {
    color: #333333;
}

.list_type_1 {
    background: #F8F8F8;
    padding-top: 65px;
    padding-bottom: 55px;
}

.list_type_1 .content {
}

.list_type_1 .imgbox {
    overflow: hidden;
}

.list_type_1 .imgbox img {
    width: 100%;
}

.list_type_1 .cons {
    padding: 20px 16px;
    padding-bottom: 10px;
}

.list_type_1 .title {
    font-size: 18px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #000000;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
}

.list_type_1 .dec {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    margin-top: 8px;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list_type_1 .infor {
    zoom:1;overflow: hidden;
    font-size: 12px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
}

.list_type_1 .time {
    float: left;
}

.list_type_1 .click {
    float: right;
    margin-right: 28px;
    background: url(../images/3_1eyes.png) no-repeat left center;
    padding-left: 15px;
}

.list_type_1 .content a {
    display: block;
    background: #FFFFFF;
}

.list_type_1 .content a * {
    display: block;
}

.list_type_1 .list {
    padding: 0px 72px;
    position: relative;
}

.list_type_1 .list .swiper-button-next {
    width: 50px;
    height: 50px;
    right: 0px;
    background: url(../images/3_1yqh.png) no-repeat center center;
    background-size: 100%;
}

.list_type_1 .list .swiper-button-prev {
    width: 50px;
    height: 50px;
    left: 0px;
    background: url(../images/3_1yqhl.png) no-repeat center center;
    background-size: 100%;
}

.newslist_2 {
}

.newslist_2 ul {
}

.newslist_2 ul li {
    margin: 0px 43px;
}

.newslist_2 ul li a * {
    display: block;
}

.newslist_2 ul li a {
    display: block;
    zoom:1;overflow: hidden;
    border-bottom: 1px solid #E1E1E1;
    padding-bottom: 34px;
    margin-bottom: 34px;
}

.newslist_2 ul li a .date {
    float: left;
    text-align: center;
    width: 88px;
    border-radius: 4px;
    border: 1px solid rgba(221,221,221,1);
    overflow: hidden;
}

.newslist_2 ul li a .day {
    font-size: 26px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: rgba(51,51,51,1);
    line-height: 53px;
    background: rgba(221,221,221,1);
}

.newslist_2 ul li a .mouty {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: rgba(51,51,51,1);
    line-height: 39px;
}

.newslist_2 ul li a .right {
    width: calc(100% - 88px);
    float: left;
    padding-left: 20px;
}

.newslist_2 ul li a .title {
    font-size: 24px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: rgba(35,46,58,1);
    line-height: 24px;
    margin-top: 1px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.newslist_2 ul li a .dec {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: rgba(102,102,102,1);
    line-height: 24px;
    padding-top: 19px;
}

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

.newslist_2 ul li a:hover .day {
    background: #B2282D;
    color: #fff
}

.newslist_2 ul li a:hover .title,.newslist_2 ul li a:hover .mouty {
    color: #B2282D
}

.newslist_2 ul li a:hover .date {
    border-color: #B2282D
}

.newslist_2 ul li:last-child a {
    margin-bottom: 0;
    border-bottom: none;
}

.newslist_2 {
    padding-top: 58px;
}

.footer {
    border-top: 1px solid #E4E4E4;
    padding-top: 54px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E4E4E4;
}

.footer .logo {
    zoom:1;overflow: hidden;
}

.footer .logo img {
}

.footer .logo .text {
    display: inline-block;
    vertical-align: middle;
    padding-left: 10px;
    margin-left: 12px;
    border-left: 1px solid #979797;
    font-size: 13px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 18px;
}

.footer .nav_ewm {
}

.footer .nav_ewm .nav {
    float: left;
    padding-top: 37px;
}

.footer .nav_ewm .item {
    float: left;
    width: 190px;
}

.footer .nav_ewm .item a {
    display: block;
    margin-bottom: 13px;
    font-size: 13px;
    font-family: Helvetica;
    color: #333333;
    line-height: 16px;
}

.footer .nav_ewm .ewm {
    float: right;
}

.footer .nav_ewm .model {
    float: left;
    text-align: center;
    padding-top: 22px;
    margin-left: 10px;
}

.footer .nav_ewm .model img {
}

.footer .nav_ewm .title {
    font-size: 12px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 17px;
}

.copy {
    font-size: 13px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 18px;
    padding-top: 13px;
    padding-bottom: 20px;
    text-align: center;
}

.sidemenu {
    position: fixed;
    top: 50%;
    right: 0;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    z-index: 8888;
}

.sidemenu a:last-child {
    margin-bottom: 0px;
}

.sidemenu a {
    display: block;
    position: relative;
    overflow: hidden;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,1);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.18);
    border-radius: 4px;
    text-align: center;
    margin-bottom: 10px;
    padding-top: 11px;
}

.sidemenu a span {
    display: block;
}

.sidemenu a span.cur {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: auto auto !important;
    width: 100%;
    height: 20px;
}

.sidemenu a span.def {
    font-size: 10px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 14px;
    padding-top: 5px;
}

.sidemenu a.icon8 span.def {
    padding-top: 0px;
}

.sidemenu a.icon1 span.cur {
    background: url(../images/3_1sqzx.png);
}

.sidemenu a.icon1:hover span.cur {
}

.sidemenu a.icon2 span.cur {
    background: url(../images/3_1shzx.png);
}

.sidemenu a.icon2:hover span.cur {
}

.sidemenu a.icon3 span.cur {
    background: url(../images/3_1sqhz.png);
}

.sidemenu a.icon3:hover span.cur {
}

.sidemenu a.icon4 span.cur {
    background: url(../images/3_1zlzx.png);
}

.sidemenu a.icon4:hover span.cur {
}

.sidemenu a.icon5 span.cur {
    background: url(../images/3_1lxwm.png);
}

.sidemenu a.icon5:hover span.cur {
}

.sidemenu a.icon8 span.cur {
    background: url(../images/3_1top.png);
    height: 6px;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

.sidemenu a.icon8:hover span.cur {
}

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

.sidemenu a:hover {
    box-shadow: 0px 0px 10px 0px rgba(120,37,37,0.4);
}

.mobile-inner-nav li .text {
    height: 32px;
    border: none;
    padding: 0px 10px;
    width: 190px;
    vertical-align: middle;
    width: calc(100% - 165px);
}

.mobile-inner-nav li .send {
    width: 32px;
    background: none;
    height: 32px;
    border: none;
    background: url(../images/3_1sousuo.png) center no-repeat #fff;
    border-radius: 6px;
    padding: 0px;
    outline: none;
    position: relative;
    z-index: 2;
    border-radius: 0;
    vertical-align: middle;
    top: 0px;
}

.footer .nav_ewm .item a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.head.cur2.cur1 {
    position: fixed;
    -o-transform: translate(0%,0%);
    -webkit-transform: translate(0%,0%);
    -moz-transform: translate(0%,0%);
    -ms-transform: translate(0%,0%);
    transform: translate(0%,0%);
}

.head.cur2 {
    position: fixed;
    -o-transform: translate(0%,0%);
    -webkit-transform: translate(0%,0%);
    -moz-transform: translate(0%,0%);
    -ms-transform: translate(0%,0%);
    transform: translate(0%,0%);
}

.head.cur1 {
    -o-transform: translate(0%,-150%);
    -webkit-transform: translate(0%,-150%);
    -moz-transform: translate(0%,-150%);
    -ms-transform: translate(0%,-150%);
    transform: translate(0%,-150%);
}

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

.height80 {
    height: 80px;
}

.banner {
}

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

.banner .imgcontent .bg1 {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-size: auto 100% !important;
}

.banner .imgcontent .wrap {
    height: 500px;
    position: relative;
    z-index: 5;
    text-transform: uppercase;
}

.banner .imgcontent .center {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    z-index: 10;
}

.banner .imgcontent .text1 {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.banner .imgcontent .text1 .h2tit {
    width: 50%;
    font-size: 66px;
    font-family: Helvetica-Bold,Helvetica;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 88px;
    text-shadow: 0px 0px 20px rgba(255,255,255,0.2);
}

.banner .imgcontent .text1 .right {
    width: 50%;
}

.banner .imgcontent .textmodal {
}

.banner .imgcontent .text3 {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner .imgcontent .text3 .textmodal {
}

.banner .imgcontent .text3 .imgbox {
}

.banner .imgcontent .text3 .imgbox img {
    width: 300px;
    max-width: 100%;
}

.banner .imgcontent .textmodal .h3tit {
    font-size: 40px;
    color: #FFFFFF;
    line-height: 48px;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}

.banner .imgcontent .textmodal .dec {
    padding-top: 7px;
    padding-bottom: 12px;
    font-size: 23px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 32px;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}

.banner .imgcontent .textmodal .link {
    zoom:1;overflow: hidden;
}

.banner .imgcontent .textmodal .link a:nth-child(1) {
    color: #fff;
    background: #AF2025;
    border-color: #AF2025
}

.banner .imgcontent .textmodal .link a {
    float: left;
    width: 160px;
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    margin-right: 11px;
    border: 1px solid #FFFFFF;
    text-align: center;
    line-height: 40px;
}

.banner .imgcontent .textmodal .en {
    font-size: 20px;
    font-weight: 300;
    color: #FFFFFF;
    line-height: 24px;
    padding-bottom: 17px;
}

.banner .swiper-pagination {
    bottom: 3% !important;
}

.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    opacity: 0.49;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff
}

.index {
}

.index .section_1 {
    padding-top: 42px;
}

.titlemodel {
    text-align: center;
}

.titlemodel .cn {
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #000;
    line-height: 42px;
}

.titlemodel .en {
    font-size: 20px;
    font-family: ArialMT;
    color: #000;
    line-height: 23px;
    text-transform: uppercase;
    opacity: .5;
}

.index .section_1 {
}

.index .section_1 .list:after {
    content: "";
    display: table;
    clear: both;
}

.index .section_1 .list {
    padding-top: 33px;
}

.index .section_1 .list li:nth-child(3n) {
    margin-right: 0px;
}

.index .section_1 .list li {
    float: left;
    overflow: hidden;
    position: relative;
    width: calc((100% - 90px)/3);
    margin-right: 45px;
    -webkit-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -o-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -ms-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
}

.index .section_1 .list .imgbox * {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.index .section_1 .list .imgbox .img2 {
    top: -422px;
}

.index .section_1 .list .imgbox .img1 {
    top: 0px;
}

.index .section_1 .list li:hover .imgbox .img2 {
    top: 0;
}

.index .section_1 .list li:hover .imgbox .img1 {
    top: 422px;
}

.index .section_1 .list .imgbox {
    height: 422px;
    position: relative;
    overflow: hidden;
}

.index .section_1 .list .content {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 0px 29px;
}

.index .section_1 .list .icon {
}

.index .section_1 .list .icon img {
    display: block;
    height: 40px;
}

.index .section_1 .list .desc.current span {
    margin-top: 16px;
    margin-bottom: 6px;
}

.index .section_1 .list .desc {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 32px;
    text-shadow: 0px 13px 40px rgba(0,0,0,0.45);
    display: none;
}

.index .section_1 .list .more {
    display: inline-block !important;
    margin-top: 16px;
    margin-bottom: 21px;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    vertical-align: middle;
    padding-right: 26px;
    background: url(../images/white-ljxq@2x.png) no-repeat right center;
    background-size: 16px;
}

.index .section_1 .list .h2tit {
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 28px;
    border-bottom: 1px solid #fff;
    padding-top: 12px;
    padding-bottom: 19px;
}

.index .section_1 .list *:not(.desc) {
    display: block;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

.index .section_1 .list .imgbox {
}

.index .section_1 .list li:hover .imgbox {
}

.index .section_1 {
    padding-bottom: 100px;
}

.index .section_2 {
    padding-bottom: 100px;
    position: relative;
}

.index .section_2 i {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 54;
    background: #ccc;
    opacity: .6;
    display: none;
}

.index .section_2.current i {
    display: block;
}

.index .section_1 .list .desc span {
    display: block;
}

.index .section_2 .tab {
    position: relative;
}

.index .section_2 .tab .left {
    /* float:left;*/
    width: 196px;
}

.index .section_2 .tab .titlemodel {
    text-align: left;
}

.index .section_2 .tab .hd {
    padding-top: 25px;
    padding-bottom: 1px;
}

.index .section_2 .tab .hd a:hover:after,.index .section_2 .tab .hd a.current:after {
    height: 100%;
}

.index .section_2 .tab .hd a:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    background: rgba(175,33,38,1);
    width: 3px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    height: 0px;
}

.index .section_2 .tab .hd a.current span,.index .section_2 .tab .hd a:hover span {
    font-size: 24px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
}

.index .section_2 .tab .hd a:last-child {
    margin-bottom: 19px;
}

.index .section_2 .tab .hd a {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    display: block;
    position: relative;
    height: 42px;
    line-height: 42px;
    margin-bottom: 62px;
    font-size: 18px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: rgba(51,51,51,.5);
    padding-left: 27px;
}

.index .section_2 .tab .hd a span {
    font-size: inherit;
}

.index .section_2 .tab .bd {
    /* padding-left:38px;*/
    /* padding-right:38px;*/
    /* padding-top:31px;*/
    /* padding-right:38px;*/
    width: calc(100% - 196px);
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    -webkit-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -o-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -ms-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
}

.index .section_2 .tab .bd .model:nth-child(1) {
    background: url(../images/dxal-zhcs@2x.jpg) no-repeat center center;
    background-size: cover;
}

.index .section_2 .tab .bd .model:nth-child(2) {
    background: url(../images/Backgroundxal-zhyq@2x.jpg) no-repeat center center;
    background-size: cover;
}

.index .section_2 .tab .bd .model:nth-child(3) {
    background: url(../images/dxal-ggaq@2x.jpg) no-repeat center center;
    background-size: cover;
}

.index .section_2 .tab .bd .model:nth-child(4) {
    background: url(../images/dxal-znzz@2x.jpg) no-repeat center center;
    background-size: cover;
}

.index .section_2 .tab .bd .model:nth-child(5) {
    background: url(../images/dxal-tcy@2x.jpg) no-repeat center center;
    background-size: cover;
}

.index .section_2 .tab .bd .model:nth-child(6) {
    background: url(../images/dxal-jcjg@2x.jpg) no-repeat center center;
    background-size: cover;
}

.index .section_2 .tab .bd .model.current {
    visibility: visible;
    opacity: 1;
    left: 0;
    z-index: 5;
}

.index .section_2 .tab .bd .model {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    left: 60px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    padding-left: 38px;
    padding-right: 38px;
    padding-top: 24px;
    padding-right: 32px;
}

.index .section_2 .tab .bd .title {
    position: relative;
    padding-bottom: 21px;
    line-height: 42px;
    font-size: 0px;
    margin-bottom: 10px;
}

.index .section_2 .tab .bd .title:after {
    width: 61px;
    height: 1px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    content: "";
    background: rgba(175,32,37,1)
}

.index .section_2 .tab .bd .title img {
    height: 42px;
    vertical-align: middle;
}

.index .section_2 .tab .bd .title span {
    padding-left: 10px;
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    color: #333333;
}

.index .section_2 .tab .bd .text {
    width: 775px;
    max-width: 100%;
    height: calc(100% - 63px);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 30px;
}

.index .section_2 .tab .bd .h3tit {
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
}

.index .section_2 .tab .bd .dec {
    padding-top: 5px;
    padding-bottom: 25px;
}

.index .section_2 .tab .bd .dec p:after {
    content: "";
    position: absolute;
    left: 0px;
    width: 8px;
    height: 8px;
    background: #AF2025;
    border-radius: 400px;
    top: 10px;
}

.index .section_2 .tab .bd .dec p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    padding-left: 20px;
    position: relative;
}

.index .section_2 .tab .bd .dec2 {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 1.6;
    padding-top: 5px;
    text-align: justify;
}

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

.height20 {
    height: 20px;
}

.height36 {
    height: 36px;
}

.index .section_2 .tab .bd .text {
    -o-transform: translate(10px,0);
    -webkit-transform: translate(10px,0%);
    -moz-transform: translate(10px,0%);
    -ms-transform: translate(10px,0%);
    transform: translate(10px,0%);
    opacity: 0;
    transition-delay: .4s;
}

.index .section_2 .tab .bd .model.current .text {
    opacity: 1;
    -o-transform: translate(0px,0);
    -webkit-transform: translate(0px,0%);
    -moz-transform: translate(0px,0%);
    -ms-transform: translate(0px,0%);
    transform: translate(0px,0%);
}

.index .section_4 {
    text-align: center;
    padding-top: 100px;
}

.index .section_4 .more {
    display: inline-block;
    position: relative;
    margin-top: 17px;
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #AF2126;
    line-height: 20px;
    padding: 0px 25px;
    background: url(../images/red-more@2x.png) no-repeat right center;
    background-size: 18px;
    margin-bottom: 70px;
}

.index .section_4 .list .swiper-container {
    padding: 24px 0px;
}

.index .section_4 .list {
    text-align: left;
}

.index .section_4 .list a {
}

.index .section_4 .content {
    -webkit-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -o-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    -ms-box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
    box-shadow: 0px 12px 24px 10px rgba(0,0,0,0.1);
}

.index .section_4 .imgbox {
    overflow: hidden;
}

.index .section_4 .content a * {
    display: block;
}

.index .section_4 .imgbox img {
    width: 100%;
}

.index .section_4 .text {
    padding: 25px;
    padding-top: 23px;
    padding-bottom: 0;
    padding-bottom: 25px;
}

.index .section_4 .title {
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index .section_4 .line {
    width: 30px;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 20px;
    background: rgba(51,51,51,1);
}

.index .section_4 .dec {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index .section_4 .infor {
    zoom:1;overflow: hidden;
    line-height: 24px;
    font-size: 0;
}

.index .section_4 .time {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #404952;
    float: left;
}

.index .section_4 .click {
    background: url(../images/3_1eyes.png) no-repeat left center;
    background-size: 12px;
    font-size: 12px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #404952;
    float: left;
    padding-left: 17px;
    margin-left: 8px;
}

.index .section_4 .date {
    float: right;
    height: 24px;
    line-height: 24px;
}

.index .section_4 .date em {
    font-size: 12px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #666666;
    font-style: normal;
    display: inline-block;
    padding-right: 11px;
}

.index .section_4 {
    padding-bottom: 100px;
}

.index .section_4 .date strong {
    font-size: 20px;
    font-family: Helvetica;
    color: #666666;
    font-weight: normal;
    display: inline-block;
}

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

.index .section_4 .list .item:last-child {
    margin-right: 0px;
}

.index .section_4 .list .item {
    width: calc((100% - 90px)/3);
    margin-right: 45px;
    float: left;
}

.index .section_5 {
}

.index .section_5 .list .imgbox {
    margin-bottom: 18px;
}

.index .section_5 .list .imgbox:last-child {
    margin-bottom: 0;
}

.index .section_5 .list .imgbox img {
    max-width: 100%;
}

.index .section_5 .list {
    margin-top: 36px;
    position: relative;
    padding: 0px 60px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #7C8288 !important;
    opacity: 0.5 !important;
}

.swiper-pagination .swiper-pagination-bullet-active.swiper-pagination-bullet {
    background: #AF2025 !important;
    opacity: 1 !important;
}

.index .section_5 .list .imgbox {
    -webkit-box-shadow: 0px 12px 12px 0px rgba(0,0,0,0.03);
    -moz-box-shadow: 0px 12px 12px 0px rgba(0,0,0,0.03);
    -o-box-shadow: 0px 12px 12px 0px rgba(0,0,0,0.03);
    -ms-box-shadow: 0px 12px 12px 0px rgba(0,0,0,0.03);
    box-shadow: 0px 12px 12px 0px rgba(0,0,0,0.03);
}

.index .section_5 .list .swiper-container {
    padding-bottom: 50px;
}

.index .section_5 {
    padding-bottom: 100px;
}

.index .section_6 {
    background: #F8F8F8;
    padding-top: 93px;
    padding-bottom: 92px;
}

.index .section_6 .titlemodel {
    text-align: left;
    padding-bottom: 16px;
}

.index .section_6 .titlemodel .cn {
    font-weight: 500;
    color: #333333;
}

.index .section_6 .titlemodel .en {
    color: #404952;
}

.index .section_6 .content {
    width: 796px;
    background: #FFFFFF;
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.14);
    margin: auto;
    max-width: 100%;
    padding: 34px 58px 28px;
}

.index .section_6 .content form {
}

.index .section_6 .model:after {
    content: "";
    display: table;
    clear: both;
}

.index .section_6 .model {
    margin-bottom: 10px;
}

.index .section_6 .model {
    background: #F2F4F3;
}

.index .section_6 .model .s2 {
    float: left;
    width: calc(100% - 114px);
    background: #f2f4f3;
}

.index .section_6 .model .s1 {
    float: left;
    line-height: 43px;
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #404952;
    padding: 0px 10px;
    width: 76px;
    padding-right: 0px;
}

.index .section_6 .words {
    display: block;
    width: 100%;
    height: 43px;
    background: none;
    border: none;
    padding: 0px 10px;
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    width: calc(100% - 85px);
    float: left;
}

.index .section_6 .words2 {
    display: block;
    width: 100%;
    height: 43px;
    background: #F2F4F3;
    border: none;
    padding: 0px 10px;
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    width: calc(100% - 113px);
    float: left;
    border: none;
}

.index .section_6 .model.type2 {
    background: none;
    box-shadow: none !important;
}

.index .section_6 .code {
    float: right;
    width: 99px;
}

.index .section_6 .code img {
    width: 100%;
    height: 43px;
    cursor: pointer;
}

.index .section_6 textarea {
    height: 63px;
    background: #F2F4F3;
    display: block;
    border: none;
    width: 100%;
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    padding: 10px;
    width: calc(100% - 85px);
    float: left;
}

.index .section_6 .send {
    width: 100px;
    height: 43px;
    background: #B2282D;
    display: block;
    cursor: pointer;
    margin-top: 25px;
    border: none;
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}

input::-webkit-input-placeholder {
    color: #404952;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #404952;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #404952;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #404952;
}

textarea::-webkit-input-placeholder {
    color: #404952;
}

textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #404952;
}

textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #404952;
}

textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #404952;
}

.footer_t2 {
    background: #191E26 !important;
    padding-top: 40px;
}

.footer_t2 .left {
    float: left;
    width: 65%;
}

.footer_t2 .left .logotext {
    font-size: 0;
    margin-bottom: 27px;
}

.footer_t2 .left .logotext img {
    height: 29px;
}

.footer_t2 .left .logotext .h2tit:after {
    content: "";
    width: 2px;
    height: 16px;
    left: 6px;
    top: 6px;
    position: absolute;
    background: #979797
}

.footer_t2 .left .logotext .h2tit {
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 29px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 18px;
    position: relative;
}

.footer_t2 .left .item:last-child {
    border-right: 1px solid rgba(228,228,228,.11);
}

.footer_t2 .left .nav {
    zoom:1;overflow: hidden;
}

.footer_t2 .left .item {
    float: left;
    width: 33.33%;
    min-height: 200px;
}

.footer_t2 .left .h3tit {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 20px;
    margin-bottom: 13px;
}

.footer_t2 .left dl {
}

.footer_t2 .left dl dd a {
    margin-bottom: 13px;
    display: block;
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #A1A7AA;
    line-height: 20px;
}

.footer_t2 .right .link {
    padding-left: 4px;
}

.footer_t2 .right {
    float: right;
    width: 30%;
}

.footer_t2 .right .link:after {
    content: "";
    display: table;
    clear: both;
}

.footer_t2 .right .link a {
    position: relative;
    float: left;
    margin-right: 15px;
}

.footer_t2 .right .link a:hover .title:after {
    top: 33px;
}

.footer_t2 .right .link a .title:after {
    content: "";
    height: 100%;
    right: 10px;
    width: 20px;
    background: url(../images/chatw.png) no-repeat center center;
    background-size: 100%;
    top: 0px;
    position: absolute;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.footer_t2 .right .link a:hover .title:before {
    top: 0
}

.footer_t2 .right .link a .title:before {
    content: "";
    height: 100%;
    right: 10px;
    width: 20px;
    background: url(../images/chatr.png) no-repeat center center;
    background-size: 100%;
    top: -33px;
    position: absolute;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.footer_t2 .right .link a:hover .title {
    color: #B2282D;
    border-color: #B2282D
}

.footer_t2 .right .link a .title {
    display: block;
    overflow: hidden;
    width: 114px;
    line-height: 31px;
    border: 1px solid #FFFFFF;
    padding-left: 9px;
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    position: relative;
}

.footer_t2 .right .link a .slide:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
    display: none;
}

.footer_t2 .right .link a:hover .slide {
    visibility: visible;
    opacity: 1;
    bottom: 34px;
    z-index: 5;
}

.footer_t2 .right .link a .slide {
    position: absolute;
    bottom: 24px;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    width: 110px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.footer_t2 .right .link a .slide img {
    width: 100%;
}

.footer_t2 .right .tel {
    margin-top: 21px;
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #B2282D;
    line-height: 28px;
    padding-left: 25px;
    background: url(../images/red-dh@2x.png) no-repeat left center;
    background-size: 18px;
}

.footer_t2 .right .tel strong {
    font-weight: 500;
}

.footer_t2 .right .tel span {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #B2282D;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.footer_t2 .right .infors {
    padding-top: 16px;
}

.footer_t2 .right .infors p {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #A1A7AA;
    line-height: 20px;
    margin-bottom: 10px;
    padding-left: 28px;
    background-size: 18px !important;
    background-position: left 2px !important;
}

.footer_t2 .right .infors p.icon1 {
    background: url(../images/grey-dh@2x.png) no-repeat left 0px;
}

.footer_t2 .right .infors p.icon2 {
    background: url(../images/grey-yb@2x.png) no-repeat left 0px;
}

.footer_t2 .right .infors p.icon3 {
    background: url(../images/grey-yx@2x.png) no-repeat left 0px;
}

.footer_t2 .right .infors p.icon4 {
    background: url(../images/grey-dz@2x.png) no-repeat left 0px;
}

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

.footer_t2 {
    padding-bottom: 20px;
}

.copy_t2 a {
    color: #fff
}

.copy_t2 {
    text-align: center;
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: rgba(255,255,255,.6);
    line-height: 20px;
    padding-top: 13px;
    padding-bottom: 16px;
    background: #B2282D;
    position: relative;
    z-index: 55
}

.footer_t2 .left dl dd a:hover {
    color: #B2282D
}

.wrap3 {
    width: 1440px;
    max-width: 100%;
    margin: auto;
}

.index .section_3 {
    background: #F8F8F8;
    padding-top: 50px;
    padding-bottom: 59px;
}

.index .section_3 .titlemodel {
    margin-bottom: 4px;
}

.index .section_3 .titlemodel .cn {
    color: rgba(51,51,51,1)
}

.index .section_3 .titlemodel .en {
    color: #333333;
}

/*.index .section_3 .map {position:relative;height:497px;background:url(../images/map@2x.png) no-repeat center center;background-size:1440px;}
*/
.index .section_3 .map {
    overflow: hidden;
    position: relative;
}

.index .section_3 .map video {
    display: block;
    width: 100%;
    /* margin-left:-1%;*/
}

.index .section_3 .list {
    margin-top: -40px;
    z-index: 55;
    position: relative;
}

.index .section_3 .list li {
    float: left;
    width: 25%;
    font-size: 0px;
}

.index .section_3 .list li * {
    display: inline-block;
    vertical-align: middle;
}

.index .section_3 .list li img {
    height: 34px;
    float: left;
    margin-top: 8px;
}

.index .section_3 .list li strong {
    padding-left: 8px;
    padding-right: 5px;
    font-size: 44px;
    font-family: DINAlternate-Bold,DINAlternate;
    font-weight: bold;
    color: #A94245;
    float: left;
    line-height: 51px;
}

.index .section_3 .list li strong b {
    display: inline;
    vertical-align: baseline;
}

.index .section_3 .map .item:hover {
    z-index: 555;
}

.index .section_3 .list li span {
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #A94245;
    float: left;
    line-height: 28px;
    padding-top: 12px;
}

.index .section_3 .map .item {
    /* display:none;*/
    position: absolute;
    perspective: 150;
    -webkit-perspective: 500;
    perspective-origin: top center;
    position: absolute;
    z-index: 555;
    margin-top: 7px;
    margin-left: 7px;
}

.index .section_3 .map .item .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    position: relative;
    transform: rotateX(127deg);
    -webkit-transform: rotateX(127deg);
    z-index: 44;
    cursor: pointer;
}

.index .section_3 .map .item .icon * {
    margin: auto;
    display: block;
    border-radius: 400px;
}

.index .section_3 .map .item .icon i {
    height: 100%;
    opacity: 0.54;
    border: 1px solid #AF2025;
    width: 100%;
    -webkit-animation: pulse 4s ease infinite;
    animation: pulse 4s ease infinite;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.index .section_3 .map .item .icon span {
    height: 34px;
    width: 34px;
    border: 1px solid #B71C21;
    position: absolute;
    left: 50%;
    margin-left: -18px;
    top: 50%;
    margin-top: -18px;
    -webkit-animation: pulse 4s ease infinite;
    animation: pulse 4s ease infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.index .section_3 .map .item .icon b {
    width: 12px;
    height: 12px;
    background: #AF2025;
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: 50%;
    margin-top: -7px;
    z-index: 3;
}

.index .section_3 .map .item .slide:after {
    display: none;
    content: "";
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #fff transparent transparent transparent;
}

/*.index .section_3 .map .item:hover .slide {visibility:visible;opacity:1;bottom:66px;z-index:444;}
*/
.index .section_3 .map .item .slide {
    width: 343px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.17);
    position: absolute;
    bottom: 66px;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    bottom: 46px;
}

.index .section_3 .map .item .country {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #AF2025;
    line-height: 33px;
    text-align: center;
    background: rgba(175,32,37,0.2);
    font-size: 12px;
    font-family: ;
    font-weight: 500;
    color: #AF2025;
    line-height: 17px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px 0;
    background: rgba(255,255,255,0.7);
}

.index .section_3 .map .item .city {
    padding: 11px 22px;
    font-size: 0;
    padding-bottom: 3px;
    padding-right: 6px;
}

.index .section_3 .map .item .city a {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 22px;
    display: inline-block;
    margin-right: 12px;
    margin-bottom: 8px;
}

/*@-webkit-keyframes pulse {0% {opacity:1;-webkit-transform:scale(0);transform:scale(0);}
20%,100% {opacity:1;-webkit-transform:scale(3);transform:scale(3)}
}
*/
@keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    20%,100% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3)
    }
}

@-webkit-keyframes pulsehover {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(4);
        transform: scale(3)
    }
}

@keyframes pulsehover {
    0% {
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(4);
        transform: scale(3)
    }
}

/*.index .section_3 .map .item:hover .icon i {display:inline-block;-webkit-animation:pulsehover 1s ease infinite !important;animation:pulsehover 1s ease infinite !important;-webkit-animation-delay:0 !important;animation-delay:0 !important;}
*/
/*.index .section_3 .map .item:hover .icon span {display:inline-block;-webkit-animation:pulsehover 1s ease infinite !important;animation:pulsehover 1s ease infinite !important;-webkit-animation-delay:0 !important;animation-delay:0 !important;}
*/
/*.index .section_3 .map .item:hover .icon b {transform:scale(1.5);opacity:1;}
*/
.index {
}

.index .section_1 .list .desc span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.probanner {
}

.probanner .center {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    padding: 0px 15px;
}

.probanner .wrap {
    height: 335px;
    position: relative;
}

.probanner .h2tit {
    font-size: 50px;
    font-family: Helvetica;
    color: #FFFFFF;
    line-height: 60px;
    text-transform: uppercase;
}

.probanner .h3tit {
    padding-top: 6px;
    padding-bottom: 10px;
    font-size: 30px;
    font-family: Helvetica;
    color: #FFFFFF;
    line-height: 36px;
    font-weight: normal;
}

.probanner .dec {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 28px;
    font-weight: normal;
}

.promain {
    overflow-x: hidden;
}

.titlemodel2 {
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 42px;
    letter-spacing: 6px;
    text-align: center;
}

.promain .section_1 {
    padding-top: 76px;
    padding-bottom: 41px;
}

.promain .section_1 .list {
    padding-top: 81px;
}

.promain .section_1 .list li:nth-child(3n) {
    margin-right: 0px;
}

.promain .section_1 .list li {
    float: left;
    width: calc((100% - 120px)/3);
    margin-right: 60px;
    position: relative;
    margin-bottom: 64px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    zoom:1;overflow: hidden;
}

.promain .section_1 .list .icon {
    float: left;
    width: 65px;
    display: inline-block;
}

.promain .section_1 .list .icon img {
    display: block;
    width: 100%;
}

.promain .section_1 .list .content {
    float: left;
    padding-left: 12px;
    width: calc(100% - 65px);
}

.promain .section_1 .list .h2tit {
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
}

.promain .section_1 .list .dec {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 22px;
    padding-top: 10px;
}

.promain .section_2 {
    padding-bottom: 133px;
    background: #B2282D;
    padding-top: 90px;
}

.promain .section_2 .titlemodel2 {
    color: #fff;
}

.promain .section_2 .list {
    padding-top: 38px;
}

.promain .section_2 .item {
    float: left;
    text-align: center;
    height: 197px;
    width: calc((100% - 482px)/3);
}

.promain .section_2 .imgbox {
}

.promain .section_2 .imgbox img {
    height: 140px;
}

.promain .section_2 .title {
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 42px;
    padding-top: 15px;
}

.promain .section_2 .item:nth-child(2n) {
    background: url(../images/add@2x.png) no-repeat center 110px;
    background-size: 21px;
    width: 240px;
}

.promain .section_3 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.promain .section_3 .list {
    position: relative;
    background: url(../images/cpt@2x.png) no-repeat center 0;
    background-size: 185px;
    zoom:1;overflow: hidden;
    margin-top: 110px;
    position: relative;
}

.promain .section_3 .list li:nth-child(2n) {
    float: right;
    clear: right;
}

.promain .section_3 .list li {
    float: left;
    clear: left;
    margin-bottom: 23px;
}

.promain .section_3 .list li .title {
    width: 138px;
    line-height: 38px;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 6px;
    background: #B2282D;
    text-align: center;
    font-weight: 500;
}

.promain .section_3 .list li dd {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    position: relative;
    padding-left: 24px;
}

.promain .section_3 .list li dd:after {
    left: 4px;
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background: #AF2025;
    border-radius: 30px;
    top: 12px;
}

.promain .section_3 .list li:nth-child(1),.promain .section_3 .list li:nth-child(2) {
    margin-bottom: 108px;
}

.promain .section_3 .list li:last-child {
    clear: both;
    float: none;
    margin: auto;
    width: 240px;
}

.promain .section_4 {
    background: #F8F8F8;
    padding-top: 38px;
    padding-bottom: 48px;
}

.promain .section_4 .list {
    padding-top: 83px;
}

.promain .section_4 .list li:nth-child(3n) {
    margin-right: 0px;
}

.promain .section_4 .list li {
    float: left;
    width: calc((100% - 80px)/3);
    margin-right: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.promain .section_4 .list li .imgbox {
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    overflow: hidden;
}

.promain .section_4 .list li .imgbox img {
    display: block;
    width: 100%;
}

.promain .section_4 .list li .title {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 20px;
    letter-spacing: 2px;
    padding-top: 10px;
}

.promain .section_4 .contenttext .item1:after {
    content: "";
    left: 0px;
    top: 6px;
    border-radius: 30px;
    position: absolute;
    width: 8px;
    height: 8px;
    background: #AF2025;
}

.promain .section_4 .contenttext {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding-top: 53px;
}

.promain .section_4 .contenttext .item1.mr2 {
    margin-right: 14px;
}

.promain .section_4 .contenttext .item1 {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #B2282D;
    line-height: 20px;
    letter-spacing: 2px;
    padding-left: 19px;
    position: relative;
}

.promain .section_4 .contenttext .imgbox {
    padding: 0px 20px;
}

.promain .section_4 .contenttext .imgbox img {
    height: 110px;
}

.promain .section_5 {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.promain .section_5 .imgs {
    font-size: 0px;
    padding-top: 25px;
    padding-bottom: 42px;
}

.promain .section_5 .imgs img:nth-child(2) {
}

.promain .section_5 .imgs img {
    vertical-align: middle;
    margin: 0px 12px;
}

.promain .section_5 .imgbox {
}

.promain .section_5 .imgbox img {
    width: 100%;
}

.promain .section_6 {
    background: #B2282D;
    padding-top: 98px;
    padding-bottom: 98px;
}

.promain .section_6 .titlemodel2 {
    padding-bottom: 67px;
    color: #fff
}

.promain .section_6 .list {
}

.promain .section_6 .list li:nth-child(3n) {
    margin-right: 0px;
}

.promain .section_6 .list li {
    float: left;
    margin-right: 50px;
    width: calc((100% - 100px)/3);
    zoom:1;display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}

.promain .section_6 .list li .icon {
    float: left;
}

.promain .section_6 .list li .icon img {
    height: 50px;
}

.promain .section_6 .list li .content {
    padding-left: 19px;
    width: 295px;
}

.promain .section_6 .list li .h2tit {
    font-size: 22px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 30px;
    padding-top: 12px;
}

.promain .section_6 .list li .dec {
    padding-top: 18px;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
}

.promain .section_6 .list li .dec p {
    padding-left: 10px;
    position: relative;
    padding-bottom: 28px;
}

.promain .section_6 .list li .dec p:after {
}

.promain .section_6 .list li .dec p:last-child {
    padding-bottom: 0px;
}

.promain .section_6 .list li .dec p:after {
    content: "";
    width: 4px;
    height: 4px;
    background: #FFFFFF;
    position: absolute;
    left: 0px;
    top: 9px;
    border-radius: 340px;
}

.promain .section_7 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.promain .section_7 .list {
    padding-top: 70px;
}

.promain .section_7 .list li {
    float: left;
    margin-right: 10px;
    width: calc((100% - 65px)/3);
}

.promain .section_7 .list li a {
    position: relative;
    overflow: hidden;
}

.promain .section_7 .list li:nth-child(3n) {
    margin-right: 0px;
}

.promain .section_7 .list li * {
    display: block;
}

.promain .section_7 .list li .imgbox img {
    display: block;
    width: 100%;
}

.promain .section_7 .list li a:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 5;
    background: linear-gradient(180deg,rgba(0,0,0,0) 0%,rgba(0,0,0,0.53) 97%);
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
}

.promain .section_7 .list li .imgbox {
}

.promain .section_7 .list li .content {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 6;
    padding: 0px 18px;
    padding-bottom: 18px;
}

.promain .section_7 .list li .text {
}

.promain .section_7 .list li .title {
    font-size: 22px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 30px;
}

.promain .section_7 .list li .dec {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    margin-top: 10px;
}

.promain .section_8 {
    background: #F8F8F8;
    padding-top: 60px;
    padding-bottom: 34px;
}

.promain .section_4 .list li .imgbox {
    overflow: hidden;
}

.promain .section_7 .list li .imgbox {
    overflow: hidden;
}

.promain {
}

.cooperationbanner {
}

.cooperationbanner .wrap {
    position: relative;
    height: 335px;
    text-align: center;
}

.cooperationbanner .center {
    padding: 0px 15px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.cooperationbanner .h2tit {
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 56px;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.25);
}

.cooperationbanner .h3tit {
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 32px;
    text-shadow: 0px 2px 10px rgba(32,32,32,0.64);
    padding-top: 9px;
    padding-bottom: 32px;
}

.cooperationbanner .more {
    width: 160px;
    line-height: 40px;
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    background: #AF2025;
    display: block;
    margin: auto;
}

.cooperationbanner .wrap {
}

.cooperationbanner {
}

.cooperation_main {
    overflow-x: hidden;
}

.sec_menu2 {
    position: relative;
    margin-top: -54px;
    text-align: center;
    z-index: 55;
}

.sec_menu2 ul {
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
    zoom:1;overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
}

.sec_menu2 ul li {
    float: left;
    width: 33.333%;
}

.sec_menu2 ul li a:hover:after,.sec_menu2 ul li a.current:after {
    opacity: 1;
}

.sec_menu2 ul li a:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #AF2025 transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}

.sec_menu2 ul li a {
    display: block;
    position: relative;
    font-size: 18px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 25px;
    padding-top: 62px;
    height: 108px;
    background-size: auto 30px !important;
    overflow: hidden;
}

.sec_menu2 ul li:nth-child(1) a {
    background: url(../images/icon1.png) no-repeat center 24px;
}

.sec_menu2 ul li:nth-child(1):hover a,.sec_menu2 ul li:nth-child(1).current a {
    background: url(../images/icon1curr.png) no-repeat center 24px;
}

.sec_menu2 ul li:nth-child(2) a {
    background: url(../images/icon2.png) no-repeat center 24px;
}

.sec_menu2 ul li:nth-child(2):hover a,.sec_menu2 ul li:nth-child(2).current a {
    background: url(../images/icon2curr.png) no-repeat center 24px;
}

.sec_menu2 ul li:nth-child(3) a {
    background: url(../images/icon3.png) no-repeat center 24px;
}

.sec_menu2 ul li:nth-child(3):hover a,.sec_menu2 ul li:nth-child(3).current a {
    background: url(../images/icon3curr.png) no-repeat center 24px;
}

.sec_menu2 ul li a:hover,.sec_menu2 ul li a.current {
    color: #AF2025
}

.cooperation_main .section_1 {
    text-align: center;
    padding-top: 51px;
    padding-bottom: 63px;
}

.cooperation_main .section_1 .list:after {
    content: "";
    width: 100%;
    position: absolute;
    width: 76%;
    height: 1px;
    background: #AF2025;
    left: 12%;
    top: 22px;
}

.cooperation_main .section_1 .list {
    position: relative;
    margin-top: 41px;
}

.cooperation_main .section_1 .item {
    float: left;
    width: 25%;
    text-align: center;
}

.cooperation_main .section_1 .num {
    width: 45px;
    position: relative;
    z-index: 4;
    margin: auto;
    line-height: 45px;
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    background: #FFFFFF;
    box-shadow: 0px 4px 12px 0px rgba(175,32,37,0.25);
    border-radius: 240px;
}

.cooperation_main .section_1 .title {
    font-size: 18px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 25px;
    padding-top: 13px;
}

.cooperation_main .section_2 {
    background: #B2282D;
    padding-top: 90px;
    padding-bottom: 88px;
}

.cooperation_main .section_2 .list {
}

.cooperation_main .section_2 .list li:last-child {
    margin-right: 0px;
}

.cooperation_main .section_2 .list li i.i1 {
    left: 0px;
    top: -1px;
    height: 2px;
    width: 1px;
    opacity: 0;
}

.cooperation_main .section_2 .list li i.i2 {
    right: -1px;
    top: 0px;
    width: 2px;
    height: 1px;
    opacity: 0;
}

.cooperation_main .section_2 .list li i.i3 {
    right: 0px;
    bottom: -1px;
    height: 2px;
    width: 0px;
    opacity: 0;
}

.cooperation_main .section_2 .list li i.i4 {
    left: -1px;
    bottom: 0px;
    width: 2px;
    height: 0px;
    opacity: 0;
}

.cooperation_main .section_2 .list li:hover i.i1 {
    width: 100%;
}

.cooperation_main .section_2 .list li:hover i.i2 {
    height: 100%;
}

.cooperation_main .section_2 .list li:hover i.i3 {
    width: 100%;
}

.cooperation_main .section_2 .list li:hover i.i4 {
    height: 100%;
}

.cooperation_main .section_2 .list li:hover i {
    opacity: 1;
}

.cooperation_main .section_2 .list li i {
    position: absolute;
    display: block;
    background: #fff;
    -webkit-transition: all 0.4s !important;
    -o-transition: all 0.4s !important;
    -moz-transition: all 0.4s !important;
    -ms-transition: all 0.4s !important;
    transition: all 0.4s !important;
}

.cooperation_main .section_2 .list li {
    float: left;
    position: relative;
    margin-right: 40px;
    width: calc((100% - 160px)/5);
    height: 354px;
    background-size: 60px !important;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 3px;
}

.cooperation_main .section_2 .h2tit {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
    padding-top: 45px;
    padding-bottom: 7px;
}

.cooperation_main .section_2 .dec {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 30px;
    padding-left: 25px;
    padding-right: 25px;
}

.cooperation_main .section_2 .more {
    position: absolute;
    font-size: 16px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 22px;
    bottom: 34px;
    right: 25px;
    padding-right: 24px;
    background: url(../images/more.png) no-repeat right center;
    background-size: auto 22px;
}

.cooperation_main .section_2 .list li:after {
    position: absolute;
    width: 60px;
    height: 60px;
    content: "";
    position: absolute;
    left: 30px;
    top: -31px;
    background-size: 100% 100% !important;
}

.cooperation_main .section_2 .list li:nth-child(1):after {
    background: url(../images/ir1.png) no-repeat center 0;
}

.cooperation_main .section_2 .list li:nth-child(2):after {
    background: url(../images/ir2.png) no-repeat center 0;
}

.cooperation_main .section_2 .list li:nth-child(3):after {
    background: url(../images/ir3.png) no-repeat center 0;
}

.cooperation_main .section_2 .list li:nth-child(4):after {
    background: url(../images/ir4.png) no-repeat center 0;
}

.cooperation_main .section_2 .list li:nth-child(5):after {
    background: url(../images/ir5.png) no-repeat center 0;
}

.cooperation_main .section_3 {
    text-align: center;
    padding-top: 100px;
}

.height16 {
    height: 16px;
}

.titlemodel3 {
    text-align: center;
}

.titlemodel4 {
    text-align: center;
    line-height: 56px;
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #404952;
    background: #F8F8F8;
}

.titlemodel3 span:after,.titlemodel3 span:before {
    position: absolute;
    width: 84px;
    content: "";
    height: 1px;
    background: #B2282D;
    top: 20px;
    left: 0
}

.titlemodel3 span:after {
    left: auto;
    right: 0px;
}

.titlemodel3 span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 28px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #B2282D;
    line-height: 40px;
    padding: 0px 103px;
}

.cooperation_main .section_3 .list {
    padding-top: 50px;
}

.cooperation_main .section_3 .list li:last-child {
    margin-right: 0px;
}

.cooperation_main .section_3 .list li {
    float: left;
    height: 176px;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.09);
    position: relative;
    margin-right: 20px;
    width: calc((100% - 100px)/6);
}

.cooperation_main .section_3 .list li .center {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.cooperation_main .section_3 {
    padding-bottom: 100px;
}

.cooperation_main .section_3 .list li .imgbox {
}

.cooperation_main .section_3 .list li .imgbox img {
    height: 63px;
}

.cooperation_main .section_3 .list li .title {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
    padding-top: 18px;
}

.cooperation_main .section_3 .list li:nth-child(1) .imgbox img {
    height: 70px;
}

.cooperation_main .section_3 .list li .title {
    padding-top: 6px;
}

.cooperation_main .section_4 {
    text-align: center;
    padding-bottom: 40px;
}

.cooperation_main .section_4 .list {
    padding-top: 14px;
    font-size: 0;
}

.cooperation_main .section_4 .list li {
    display: inline-block;
    vertical-align: top;
    width: calc((100% - 80px)/5);
    margin-right: 20px;
    margin-bottom: 16px;
    box-shadow: 0px 4px 14px 0px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.cooperation_main .section_4 .list li .imgbox {
}

.cooperation_main .section_4 .list li .imgbox img {
    width: 100%;
    height: 67px;
    object-fit: contain;
}

.cooperation_main .section_4 .list li:nth-child(5n) {
    margin-right: 0;
}

.cooperation_main .section_5 {
    text-align: center;
    padding-bottom: 50px;
}

.cooperation_main .section_5 .list {
    padding-top: 14px;
    font-size: 0;
}

.cooperation_main .section_5 .list li .flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 74px;
}

.cooperation_main .section_5 .list li {
    display: inline-block;
    vertical-align: top;
    width: calc((100% - 21px)/4);
    margin-right: 7px;
    margin-bottom: 15px;
    padding-left: 15px;
    box-shadow: 0px 4px 14px 0px rgba(0,0,0,0.05);
}

.cooperation_main .section_5 .list li .imgbox {
}

.cooperation_main .section_5 .list li .text {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
    padding-left: 10px;
    text-align: left;
}

.cooperation_main .section_5 .list li .imgbox img {
}

.cooperation_main .section_5 .list li:nth-child(4n) {
    margin-right: 0;
}

.cooperation_main .section_6 {
    padding-top: 50px;
    padding-bottom: 100px;
}

.cooperation_main .section_6 .posr {
    position: relative;
    padding-bottom: 20px;
}

.cooperation_main .section_6 .posr:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background: url(../images/fuwukehu_mb@2x.png) no-repeat center bottom;
    background-size: 100%;
    height: 80px;
}

.cooperation_main .section_6 .list::-webkit-scrollbar {
    width: 5px;
    height: 1px;
}

.cooperation_main .section_6 .list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #af2025
}

.cooperation_main .section_6 .list::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #ccc;
}

.cooperation_main .section_6 .list {
    margin-top: 40px;
    height: 490px;
    overflow: hidden;
    position: relative;
}

.cooperation_main .section_6 .list img {
    display: block;
    width: 100%;
    margin-bottom: 50px;
}

.cooperation_main .section_8 {
    padding-top: 58px;
    padding-bottom: 74px;
    background: rgba(248,248,248,.8)
}

.cooperation_main .section_1.current {
    padding-top: 80px;
}

.cooperation_main .section_8.current {
    padding-top: 80px;
}

.swiper-button-prev {
    width: 18px;
    height: 32px;
    background: url(../images/left.png) no-repeat center center;
    background-size: 9px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.swiper-button-next {
    width: 18px;
    height: 32px;
    background: url(../images/righthover.png) no-repeat center center;
    background-size: 9px;
}

.index .section_5 .list .swiper-button-prev:hover {
    background: url(../images/lefthover.png) no-repeat center center;
    background-size: 9px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.swiper-button-next:hover {
    background: url(../images/right.png) no-repeat center center;
    background-size: 9px;
}

.index .section_5 .list .swiper-button-prev,.index .section_5 .list .swiper-button-next {
    display: none;
}

.index .section_5 .list .swiper-pagination {
    opacity: 0;
}

.promain .section_3 .list li .ani {
    // -webkit-animation: cloudy3 5s linear infinite;
    // animation: cloudy3 5s linear infinite;
}

@keyframes cloudy3 {
    20% {
        -webkit-transform: translate(6px,8px);
        transform: translate(6px,8px);
    }

    40% {
        -webkit-transform: translate(0px,0px);
        transform: translate(0px,0px);
    }

    60% {
        -webkit-transform: translate(-4px,0px);
        transform: translate(-4px,0px);
    }
}

.promain .section_3 .list li:nth-child(1) .ani {
    animation-delay: 0.3s;
    animation-duration: 4.3s;
}

.promain .section_3 .list li:nth-child(2) .ani {
    animation-delay: 0.6s;
    animation-duration: 7.3s;
}

.promain .section_3 .list li:nth-child(3) .ani {
    animation-delay: 0.2s;
    animation-duration: 4.3s;
}

.promain .section_3 .list li:nth-child(4) .ani {
    animation-delay: 0.4s;
    animation-duration: 9.3s;
}

.promain .section_3 .list li:nth-child(5) .ani {
    animation-delay: 0.1s;
    animation-duration: 7.3s;
}

.channebanner {
    text-align: center;
    position: relative;
    height: 335px;
    /* background-attachment:fixed !important;*/
    position: fixed;
    width: 100%;
    left: 0;
    top: 80px;
}

.channebanner .center {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    padding: 0px 10px;
}

.channebanner .title {
    font-size: 40px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 56px;
    /* padding-bottom:10px;*/
}

.channebanner .dec {
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 32px;
    padding-top: 10px;
    max-width: 840px;
    margin: auto;
}

.channebanner .more {
    display: block;
    margin: 0px auto;
    margin-top: 16px;
    width: 150px;
    font-size: 14px;
    font-family: ;
    font-weight: 500;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    line-height: 32px;
}

.titlemodel5:after {
    content: "";
    position: absolute;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    bottom: 0px;
    width: 173px;
    height: 2px;
    background: #902F30
}

.titlemodel5 {
    text-align: center;
    position: relative;
    padding-bottom: 9px;
    font-size: 35px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 49px;
}

.bank_main {
    padding-top: 35px;
}

.bank_main .section_1 {
    text-align: center;
}

.bank_main .section_1 .dec {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    padding-top: 53px;
    padding-bottom: 59px;
}

.bank_main .section_1 .list:after {
    content: "";
    display: table;
    clear: both;
}

.bank_main .section_1 .list {
    margin-bottom: 48px;
}

.bank_main .section_1 .list li {
    float: left;
    width: 20%;
    padding: 0px 3px;
}

.bank_main .section_1 .list li .content * {
    position: relative;
    z-index: 5;
}

.bank_main .section_1 .list li .content {
    overflow: hidden;
    background: #F8F8F8;
}

.bank_main .section_1 .list li .content:before {
    height: calc(100% - 6px);
    content: "";
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    background: #AF2025;
    top: -100%;
}

.bank_main .section_1 .list li {
    position: relative;
}

.bank_main .section_1 .list li:after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 28px;
    height: 28px;
    background: url(../images/more4.png) no-repeat center center #f5f4f1;
    background-size: auto 100%;
    content: "";
    bottom: -28px;
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    position: absolute;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    transition-delay: .2s;
    opacity: 0;
    z-index: 44;
}

.bank_main .section_1 .list li .content {
    padding-top: 32px;
    position: relative;
    height: 268px;
}

.bank_main .section_1 .icon {
    text-align: center;
    position: relative;
    height: 58px;
    overflow: hidden;
}

.bank_main .section_1 .icon img {
    height: 100%;
    position: absolute !important;
    top: 0;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
}

.bank_main .section_1 .icon .default {
}

.bank_main .section_1 .icon .current {
    top: 58px;
}

.bank_main .section_1 .title {
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
    padding-top: 15px;
    padding-bottom: 9px;
}

.bank_main .section_1 .line {
    width: 50px;
    height: 2px;
    margin: auto;
    background: #9A2C31;
}

.bank_main .section_1 .decr {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 20px;
    margin-top: 15px;
    padding: 0px 38px;
}

.bank_main .section_1 .list li:hover .content {
    background: #F8F8F8;
}

.bank_main .section_1 .list li:hover .content {
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
}

.bank_main .section_1 .list li:hover .title {
    color: #fff
}

.bank_main .section_1 .list li:hover .line {
    background: #fff
}

.bank_main .section_1 .list li:hover .decr {
    color: #fff
}

.bank_main .section_1 li:hover .icon .default {
    top: -58px;
}

.bank_main .section_1 li:hover .icon .current {
    top: 0;
}

.bank_main .section_1 .list li:hover .content:before {
    top: 0px;
}

.bank_main .section_1 .list li:hover:after {
    bottom: -14px;
    opacity: 1;
}

.bank_main .section_1 .list li.current .content {
    background: #F8F8F8;
}

.bank_main .section_1 .list li.current .content {
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
}

.bank_main .section_1 .list li.current .title {
    color: #fff
}

.bank_main .section_1 .list li.current .line {
    background: #fff
}

.bank_main .section_1 .list li.current .decr {
    color: #fff
}

.bank_main .section_1 li.current .icon .default {
    top: -58px;
}

.bank_main .section_1 li.current .icon .current {
    top: 0;
}

.bank_main .section_1 .list li.current .content:before {
    top: 0px;
}

.bank_main .section_1 .list li.current:after {
    bottom: -14px;
    opacity: 1;
}

.bank_main .section_1 .list li {
    cursor: pointer;
}

.titlemodel6 {
    text-align: center;
}

.titlemodel6 .title {
    display: inline-block;
    position: relative;
    vertical-align: top;
    font-size: 0;
}

.titlemodel6 .title span {
    font-size: 35px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    line-height: 59px;
    padding: 0px 23px;
    background: #fff;
    border: 1px solid #9A2C31;
    position: relative;
    z-index: 5;
    display: inline-block;
    vertical-align: top;
}

.titlemodel6 .title b {
    position: absolute;
    width: 64px;
    height: 72px;
    top: -7px;
    left: -15px;
    border: 1px solid #9A2C31;
}

.titlemodel6 .title strong {
    border: 1px solid #9A2C31;
    width: 66px;
    height: 12px;
    position: absolute;
    left: 11px;
    bottom: -4px;
    z-index: 7;
    background: #fff;
}

.bank_main .section_2 {
    background: #F8F8F8;
    padding-top: 69px;
    text-align: center;
    padding-bottom: 76px;
}

.bank_main .section_2 .imgbox ul li {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 22px;
    position: absolute;
    width: 100%;
    text-align: left;
    background-size: auto 100% !important;
}

.bank_main .section_2 .imgbox img {
    margin: auto;
    display: block;
    max-width: 100%;
}

.bank_main .section_2 .imgbox ul li:nth-child(1) {
    background: url(../images/list1.png) no-repeat left center;
}

.bank_main .section_2 .imgbox ul li:nth-child(2) {
    top: 112px;
    background: url(../images/list2.png) no-repeat center center;
}

.bank_main .section_2 .imgbox ul li:nth-child(3) {
    top: 220px;
    background: url(../images/list3.png) no-repeat center center;
}

.bank_main .section_2 .imgbox ul li:nth-child(4) {
    top: 330px;
    background: url(../images/list4.png) no-repeat center center;
}

.bank_main .section_2 .imgbox ul li:nth-child(2n) span {
    float: right;
}

.bank_main .section_2 .imgbox ul li span {
    display: block;
    width: 216px;
    max-width: 100%;
    padding-top: 92px;
}

.bank_main .section_2 .imgbox ul li {
    height: 110px;
    background-position: left center !important;
}

.bank_main .section_2 .imgbox ul li:nth-child(2n) {
    background-position: right center !important;
}

.bank_main .section_2 .imgbox ul {
    position: relative;
}

.bank_main .section_2 .imgbox:after {
    display: none;
    content: "";
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 10px;
    border-radius: 12px;
    background: #b01a20;
}

.bank_main .section_2 .imgbox {
    margin: auto;
    position: relative;
    width: 721px;
    height: 587px;
    margin-top: 36px;
    max-width: 100%;
}

.bank_main .section_2 .imgbox img {
    max-width: 100%;
}

.bank_main .section_3 {
    padding-top: 70px;
    padding-bottom: 100px;
    text-align: center;
}

.bank_main .section_3 .imgbox {
    padding: 0px 15px;
    padding-top: 38px;
}

.bank_main .section_3 .imgbox img {
    max-width: 100%;
}

.bank_main .section_4 {
    padding-top: 40px;
    padding-bottom: 100px;
    background: #F8F8F8;
    text-align: center;
}

.bank_main .section_4 .imgbox {
    padding: 0px 15px;
    padding-top: 46px;
}

.bank_main .section_4 .imgbox .text + img {
    max-width: 100%;
    width: 100%;
}

.bank_main .section_5 {
    padding-top: 41px;
}

.bank_main .section_5 .content:after {
    content: "";
    display: table;
    clear: both;
}

.bank_main .section_5 .content {
    margin-top: 35px;
    position: relative;
    height: 250px;
}

.bank_main .section_5 .content .left {
    float: left;
    width: 50%;
    position: relative;
    height: 100%;
    background: #F8F8F8;
}

.bank_main .section_5 .content .left span {
    font-size: 30px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    line-height: 35px;
    max-width: 100%;
    width: 440px;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.bank_main .section_5 .content .right {
    float: left;
    width: 50%;
    height: 100%;
    background: #AF2025;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bank_main .section_5 .content .right .center {
    max-width: 100%;
    width: 542px;
    padding-left: 7%;
    padding-right: 5%;
}

.bank_main .section_5 .content .right .h2tit {
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 42px;
    padding-bottom: 26px;
}

.bank_main .section_5 .content .right .dec {
}

.bank_main .section_5 .content .right .dec p:last-child {
    margin-bottom: 0px;
}

.bank_main .section_5 .content .right .dec p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    background: url(../images/3_1bsjt@2x.png) no-repeat left 5px;
    background-size: 10px;
}

.bank_main .section_6 {
    padding-top: 133px;
    padding-bottom: 82px;
}

.bank_main .section_6 ul:after {
    content: "";
    display: table;
    clear: both;
}

.bank_main .section_6 ul li .icon {
    transition-delay: .4s;
}

.bank_main .section_6 ul li:hover .icon {
    -o-transform: translate(0%,-15px);
    -webkit-transform: translate(0%,-15px);
    -moz-transform: translate(0%,-15px);
    -ms-transform: translate(0%,-15px);
    transform: translate(0%,-15px);
}

.bank_main .section_6 ul li:hover .icon img {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.bank_main .section_6 ul {
}

.bank_main .section_6 ul li:nth-child(4n) {
    margin-right: 0px;
}

.bank_main .section_6 ul li {
    float: left;
    width: calc((100% - 45px)/4);
    margin-right: 15px;
}

.bank_main .section_6 ul li .content {
    position: relative;
}

.bank_main .section_6 ul li .icon {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -47px;
}

.bank_main .section_6 ul li .icon img {
    width: 74px;
    height: 74px;
    display: block;
    margin: auto;
    border-radius: 710px;
}

.bank_main .section_6 ul li .title {
    text-align: center;
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 32px;
    padding-top: 32px;
    padding-bottom: 6px;
    background: #AF2025;
}

.bank_main .section_6 ul li .dec p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    padding-left: 22px;
    background: url(../images/red.png) no-repeat left 11px;
    background-size: 10px;
}

.bank_main .section_6 ul li .dec {
    height: 260px;
    padding-left: 15px;
    padding-right: 13px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.2);
}

.bank_main .section_4 .imgbox {
    position: relative;
    padding: 0;
    text-align: left;
    margin-top: 46px;
}

.bank_main .section_4 .left p:last-child {
    margin-bottom: 0px;
}

.bank_main .section_4 .text {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 4;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 50px;
    /* width:623px;*/
    justify-content: space-between;
    align-items: center;
    padding-right: 28px;
}

.bank_main .section_4 .left {
    width: 623px;
}

.bank_main .section_4 .left p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 24px;
    padding-left: 20px;
    margin-bottom: 25px;
}

.bank_main .section_4 .right {
    font-size: 0;
}

.bank_main .section_4 .right img {
}

.bank_main .section_4 .right img.marlr {
    margin: 0px 27px;
}

.bank_main .section_1 .dec {
    padding-left: 15px;
    padding-right: 15px;
}

.bank_main {
    background: #fff;
    position: relative;
    z-index: 5;
}

.site_main {
}

.site_main .section_1 {
    text-align: center;
    padding-bottom: 79px;
    padding-top: 35px;
}

.site_main .section_1 .dec {
    width: 880px;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    max-width: 100%;
    margin: auto;
    padding-top: 53px;
    padding-left: 15px;
    padding-right: 15px;
}

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

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

.site_main .section_2 {
    background: #F8F8F8;
    padding-top: 64px;
    padding-bottom: 107px;
}

.site_main .section_2 .dec {
    padding-top: 58px;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
}

.site_main .section_2 .imgbox {
    padding-top: 71px;
}

.site_main .section_2 .imgbox img {
    width: 100%;
}

.site_main .section_3 {
    padding-top: 70px;
    text-align: center;
    padding-bottom: 138px;
}

.site_main .section_3 .list {
    padding-top: 74px;
    zoom:1;overflow: hidden;
}

.site_main .section_3 .list li:before,.site_main .section_3 .list li:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 1px;
    height: 100%;
    background: #AF2025;
    display: none;
}

.site_main .section_3 .list li:before {
    left: auto;
    right: 0px;
}

.site_main .section_3 .list li:nth-child(2):after,.site_main .section_3 .list li:nth-child(2):before {
    display: block;
}

.site_main .section_3 .list li {
    float: left;
    width: 33.333%;
    position: relative;
}

.site_main .section_3 .list .title {
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    line-height: 33px;
    padding-top: 3px;
    padding-bottom: 20px;
}

.site_main .section_3 .list .dec {
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 33px;
}

.site_main .section_3 .list2 {
    margin-top: 90px;
    position: relative;
    zoom:1;overflow: hidden;
    background: url(../images/relative@2x.png) no-repeat center center;
    background-size: 246px;
    height: 388px;
    padding-top: 19px;
    margin-bottom: 39px;
}

.site_main .section_3 .list2 li:nth-child(2n) {
    float: right;
    clear: right;
}

.site_main .section_3 .list2 li {
    float: left;
    width: 245px;
    height: 129px;
    background: #AF2025;
    margin-bottom: 79px;
    clear: left;
}

.site_main .section_3 .list2 .title {
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 33px;
    padding-top: 29px;
    padding-bottom: 12px;
}

.site_main .section_3 .list2 .dec {
    font-size: 18px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
}

.site_main .section_3 .list3 {
    border: 1px solid #AF2025;
    zoom:1;overflow: hidden;
    line-height: 60px;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 10%;
}

.site_main .section_3 .list3 span {
    font-size: 18px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    flex: 1;
}

.site_main .section_4 {
    text-align: center;
    background: #F8F8F8;
    padding-top: 64px;
    padding-bottom: 95px;
}

.site_main .section_4 .list {
    padding-top: 109px;
    zoom:1;overflow: hidden;
}

.site_main .section_4 .list li {
    float: left;
    width: 20%;
}

.site_main .section_4 .list li .cir {
    width: 250px;
    height: 250px;
    background: #AF2025;
    border-radius: 300px;
    margin: auto;
    max-width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site_main .section_4 .list li .icon {
    height: 50px;
    position: relative;
}

.site_main .section_4 .list li .icon img {
}

.site_main .section_4 .list li .title {
    font-size: 30px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 42px;
    padding-top: 29px;
}

.site_main .section_4 .list li .dec {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    margin-top: 46px;
}

.site_main .section_5 {
    padding-top: 64px;
    padding-bottom: 110px;
}

.site_main .section_5 .imgbox {
    padding-top: 100px;
    padding-left: 15px;
    padding-right: 15px;
}

.site_main .section_5 .imgbox img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.site_main .section_4 .list li:hover .cir {
    -o-transform: translate(0%,-15px);
    -webkit-transform: translate(0%,-15px);
    -moz-transform: translate(0%,-15px);
    -ms-transform: translate(0%,-15px);
    transform: translate(0%,-15px);
}

.site_main .section_1 .dec strong {
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #AF2025;
}

.solution_main {
}

.solution_main .section_1 {
    text-align: center;
    background: #F8F8F8;
    padding-top: 70px;
    padding-bottom: 100px;
}

.solution_main .section_1 .dec {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    width: 868px;
    padding: 0px 15px;
    max-width: 100%;
    padding-top: 55px;
    padding-bottom: 53px;
    margin: auto;
}

.solution_main .section_1 .dec strong {
    font-weight: 500;
    color: #AF2025;
}

.solution_main .section_1 .list {
    position: relative;
    width: 566px;
    margin: auto;
    max-width: 100%;
    height: 376px;
}

.solution_main .section_1 .list ul {
}

.solution_main .section_1 .list ul li .cr {
    width: 100%;
    position: absolute;
    top: 121px;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 283px;
}

.solution_main .section_1 .list ul li:nth-child(2),.solution_main .section_1 .list ul li:nth-child(3) {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.solution_main .section_1 .list ul li:nth-child(3) {
    left: auto;
    right: 0px;
}

.solution_main .section_1 .list ul li {
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 28px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 142px 188px 142px;
    border-color: transparent transparent #AF2025 transparent;
    position: relative;
    margin: auto;
}

.solution_main .section_1 .list .text {
    font-size: 32px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 45px;
    position: absolute;
    top: 69%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
}

.titlemodel7 {
    text-align: center;
}

.titlemodel7 span:before,.titlemodel7 span:after {
    position: absolute;
    left: 0px;
    top: 20px;
    width: 84px;
    content: "";
    height: 1px;
    background: #B2282D;
}

.titlemodel7 span:before {
    left: auto;
    right: 0px;
}

.titlemodel7 span {
    display: inline-block;
    vertical-align: middle;
    padding: 0px 104px;
    position: relative;
    font-size: 28px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #B2282D;
    line-height: 40px;
}

.height40 {
    height: 40px;
}

.solution_main .section_2 {
    padding-top: 70px;
    text-align: center;
    padding-bottom: 100px;
}

.solution_main .section_2 .imgbox {
    padding-top: 48px;
}

.solution_main .section_2 .imgbox img {
    max-width: 100%;
}

.solution_main {
}

.solution_main .section_3 {
    text-align: center;
    background: #F8F8F8;
    padding-bottom: 100px;
    padding-top: 70px;
}

.solution_main .section_3 .dec {
    width: 838px;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    width: 868px;
    padding: 0px 15px;
    max-width: 100%;
    margin: auto;
    padding-top: 35px;
    padding-bottom: 35px;
}

.solution_main .section_3 .dec strong {
    font-weight: 500;
    color: #B2282D
}

.solution_main .section_3 .imgbox {
}

.solution_main .section_3 .imgbox img {
    width: 100%;
}

.bgwhite {
    background: #fff !important;
}

.solution_main .section_4 {
    background: #F8F8F8;
    padding-top: 64px;
    padding-bottom: 91px;
}

.solution_main .section_4 .imgbox {
    padding-top: 35px;
}

.solution_main .section_4 .imgbox img {
    width: 100%;
    display: block;
    margin-bottom: 4px;
}

.solution_main .section_4 .list {
    zoom:1;overflow: hidden;
}

.solution_main .section_4 .list.type2 li {
    height: 103px;
    width: calc((100% - 60px)/6);
}

.solution_main .section_4 .list li:last-child {
    margin-right: 0px !important;
}

.solution_main .section_4 .list li {
    float: left;
    width: calc((100% - 48px)/5);
    margin-right: 12px;
    height: 96px;
    background: #F8F8F8;
    border: 1px solid #AF2025;
    margin-right: 12px;
    margin-bottom: 9px;
}

.solution_main .section_4 .list li .title {
    line-height: 24px;
    zoom:1;overflow: hidden;
    background: #AF2025;
}

.solution_main .section_4 .list li .num {
    font-size: 18px;
    font-family: Futura-Bold,Futura;
    font-weight: bold;
    color: #FFFFFF;
    float: left;
    width: 40px;
    text-align: center;
    border-right: 1px solid #fff;
}

.solution_main .section_4 .list li .ri {
    width: calc(100% - 40px);
    float: left;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    padding-left: 8px;
}

.solution_main .section_4 .list li .dec {
    font-size: 13px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 18px;
    padding: 10px;
    padding-right: 5px;
}

.solution_main .section_5 {
    text-align: center;
    padding-top: 70px;
    padding-bottom: 100px;
}

.solution_main .section_5 .list {
    padding-top: 116px;
    zoom:1;overflow: hidden;
}

.solution_main .section_5 .list li {
    float: left;
    width: 20%;
}

.solution_main .section_5 .list li .cir {
    width: 250px;
    height: 250px;
    background: #AF2025;
    border-radius: 300px;
    margin: auto;
    max-width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution_main .section_5 .list li .icon {
    height: 50px;
    position: relative;
}

.solution_main .section_5 .list li .icon img {
}

.solution_main .section_5 .list li .title {
    font-size: 30px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 42px;
    padding-top: 29px;
}

.solution_main .section_5 .list li .dec p {
    text-align: left;
    padding-left: 21px;
    background: url(../images/red.png) no-repeat left 11px;
    background-size: 10px;
}

.solution_main .section_5 .list li .dec {
    font-size: 15px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    margin-top: 46px;
    padding-right: 20px;
    padding-left: 20px;
}

.solution_main .section_5 .list li:hover .cir {
    -o-transform: translate(0%,-15px);
    -webkit-transform: translate(0%,-15px);
    -moz-transform: translate(0%,-15px);
    -ms-transform: translate(0%,-15px);
    transform: translate(0%,-15px);
}

.solution_main .section_6 {
    padding-top: 70px;
    padding-bottom: 100px;
    background: #F8F8F8;
}

.solution_main .section_6 ul:after {
    content: "";
    display: table;
    clear: both;
}

.solution_main .section_6 ul {
    padding-top: 63px;
}

.solution_main .section_6 ul li:nth-child(4n) {
    margin-right: 0px;
}

.solution_main .section_6 ul li {
    float: left;
    width: calc((100% - 45px)/4);
    margin-right: 15px;
}

.solution_main .section_6 ul li .content {
    position: relative;
}

.solution_main .section_6 ul li .icon {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -47px;
    display: none;
}

.solution_main .section_6 ul li .icon img {
    width: 74px;
    height: 74px;
    display: block;
    margin: auto;
}

.solution_main .section_6 ul li .title:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #AF2025 transparent transparent transparent;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
}

.solution_main .section_6 ul li .title {
    text-align: center;
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 32px;
    line-height: 70px;
    background: #AF2025;
    position: relative;
}

.solution_main .section_6 ul li .dec p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    padding-left: 22px;
    background: url(../images/red.png) no-repeat left 11px;
    background-size: 10px;
}

.solution_main .section_6 ul li .dec {
    height: 300px;
    padding-left: 15px;
    padding-right: 13px;
    display: block;
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.2);
    padding-top: 37px;
}

.solution_main .section_7 {
}

.base_text_1 {
    margin-top: 47px;
}

.base_text_1 .content {
    position: relative;
    height: 250px;
}

.base_text_1 .content .left {
    float: left;
    width: 50%;
    position: relative;
    height: 100%;
    background: #F8F8F8;
}

.base_text_1 .content .left span {
    font-size: 30px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    line-height: 35px;
    max-width: 100%;
    width: 451px;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.base_text_1 .content .right {
    float: left;
    width: 50%;
    height: 100%;
    background: #AF2025;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.base_text_1 .content .right .center {
    max-width: 100%;
    padding-left: 7%;
    padding-right: 4%;
}

.base_text_1 .content .right .h2tit {
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 42px;
    padding-bottom: 26px;
}

.base_text_1 .content .right .h2tit,.bank_main .section_5 .content .right .h2tit {
    font-size: 30px;
    padding-bottom: 10px;
}

.base_text_1 .content .right .dec {
}

.base_text_1 .content .right .dec p:last-child {
    margin-bottom: 0px;
}

.base_text_1 .content .right .dec p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    background: url(../images/3_1bsjt@2x.png) no-repeat left 5px;
    background-size: 10px;
}

.solution_main .section_8 {
}

.base_text_2 .content {
    position: relative;
}

.base_text_2 .icon {
    text-align: center;
    position: absolute;
    width: 100%;
    top: -47px;
}

.base_text_2 .icon img {
    width: 74px;
    height: 74px;
    display: block;
    margin: auto;
}

.base_text_2 .title {
    text-align: center;
    font-size: 20px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 32px;
    padding-top: 32px;
    padding-bottom: 6px;
    background: #AF2025;
}

.base_text_2 .dec p {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 25px;
    padding-left: 22px;
    background: url(../images/red.png) no-repeat left 6px;
    background-size: 10px;
}

.base_text_2 .dec {
    min-height: 300px;
    padding-left: 15px;
    padding-right: 13px;
    padding-top: 11px;
    padding-bottom: 15px;
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.2);
}

.base_text_2 .dec {
    overflow: hidden;
}

.base_text_2 .icon {
    transition-delay: .4s;
}

.site_main .section_1 .dec.w1026 {
    width: 1026px;
}

.production_line_main {
}

.production_line_main .section_1 {
    padding-bottom: 135px;
}

.production_line_main .section_1 img {
    max-width: 100%;
}

.production_line_main .section_2 {
    background: #F8F8F8;
    padding-top: 74px;
    padding-bottom: 100px;
}

.production_line_main .section_2 img {
    display: block;
    width: 100%;
    margin-top: 69px;
}

.production_line_main .section_3 {
    padding-top: 70px;
    padding-bottom: 100px;
}

.production_line_main .section_3 img {
    display: block;
    width: 100%;
    margin-top: 89px;
}

.production_line_main {
}

.production_line_main .section_4 {
    padding-top: 70px;
    padding-bottom: 90px;
    background: #F8F8F8;
}

.production_line_main .section_4 img {
    display: block;
    width: 100%;
}

.production_line_main .section_4 .dec {
    padding-top: 35px;
    padding-bottom: 40px;
    font-size: 18px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
}

.production_line_main .section_4 .dec strong {
    font-weight: 500;
    color: #AF2025
}

.production_line_main .section_5 {
    padding-top: 64px;
    padding-bottom: 100px;
}

.production_line_main .section_5 img {
    display: block;
    width: 100%;
    margin-top: 35px;
}

.production_line_main .section_6 {
    padding-top: 70px;
    background: #F8F8F8;
    padding-bottom: 100px;
}

.production_line_main .section_6 img {
    display: block;
    width: 100%;
    margin-top: 90px;
}

.production_line_main .section_7 {
    padding-top: 77px;
    padding-bottom: 100px;
}

.production_line_main .section_7 img {
    display: block;
    width: 100%;
    margin-top: 48px;
}

.production_line_main .section_8 {
    padding-top: 64px;
    padding-bottom: 100px;
    background: #F8F8F8;
}

.production_line_main .section_8 img {
    display: block;
    width: 100%;
    margin-top: 64px;
}

.production_line_main .section_9 {
    padding-top: 70px;
    padding-bottom: 100px;
}

.production_line_main .section_9 img {
    display: block;
    margin: auto;
    max-width: 100%;
    margin-top: 88px;
}

.base_text_1 .content .right .center.w571 {
    width: ;
}

.base_text_1 .content .left span strong {
    display: block;
}

.base_text_1 .content .left span em {
    font-weight: inherit;
    font-style: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-40%,-50%);
    -webkit-transform: translate(-40%,-50%);
    -moz-transform: translate(-40%,-50%);
    -ms-transform: translate(-40%,-50%);
    transform: translate(-40%,-50%);
    width: 100%;
    opacity: 0;
}

.base_text_1 .content .left span.textbd em.current {
    opacity: 1;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.base_text_1 .content .right .decbd .bd {
    transition-delay: .1s;
    font-weight: inherit;
    font-style: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-40%,-50%);
    -webkit-transform: translate(-40%,-50%);
    -moz-transform: translate(-40%,-50%);
    -ms-transform: translate(-40%,-50%);
    transform: translate(-40%,-50%);
    width: 100%;
    opacity: 0;
}

.base_text_1 .content .right .decbd .bd.current {
    opacity: 1;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.base_text_1 .content .right .decbd {
    position: relative;
}

.production_line_main .section_10 .base_text_1 {
    margin-top: 47px;
}

.list_type_1:after {
    display: table;
    clear: both;
    content: "";
}

.list_type_2 {
}

.list_type_2 li {
    float: left;
    width: calc((100% - 45px)/4);
    margin-right: 15px;
}

.list_type_2 li:last-child {
    margin-right: 0px;
}

.h400 .base_text_2 .dec {
    height: 400px;
}

.h400.he .base_text_2 .dec {
    min-height: 400px;
    padding-bottom: 20px;
    height: auto;
}

.list_type_2 {
    padding-top: 133px;
    padding-bottom: 80px;
}

.site_main .section_1.type2 {
    padding-bottom: 48px;
}

.about_main {
}

.about_main .section_1 {
    padding-bottom: 86px;
}

.about_main .section_1 .list {
}

.about_main .section_1 .list li:nth-child(4) {
    margin-right: 0px;
}

.about_main .section_1 .list li {
    margin-right: 10px;
    height: 268px;
    background: #AF2025;
    float: left;
    width: calc((100% - 30px)/4);
}

.about_main .section_1 .list .icon {
    padding-top: 21px;
    padding-bottom: 22px;
    text-align: center;
}

.about_main .section_1 .list .icon img {
    height: 58px;
}

.about_main .section_1 .list .dec {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 30px;
    padding-left: 24px;
    padding-right: 24px;
}

.about_main .section_2 {
    padding-bottom: 100px;
}

.about_main .section_2 img {
    width: 975px;
    max-width: 100%;
    display: block;
    margin: auto;
    margin-top: 58px;
}

.about_main .section_3 {
    padding-top: 56px;
    background: #F8F8F8;
    padding-bottom: 86px;
}

.about_main .section_3 .img1 {
    padding-top: 70px;
    padding-bottom: 116px;
}

.about_main .section_3 .img1 img {
    width: 100%;
}

.about_main .section_3 .content {
    position: relative;
    height: 496px;
}

.about_main .section_3 .list {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 56;
}

.about_main .section_3 .list li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 4;
    background: #fff;
    content: "";
    width: 100%;
    height: 100%;
}

.about_main .section_3 .list li:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0px;
    content: '';
    border-style: solid;
    border-width: 27px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    box-shadow: 2px 0px 12px rgba(0,0,0,0.11);
    right: -33px;
    top: 13px;
    transform: rotate(35deg) skewY(24deg);
    box-shadow: 2px 0px 12px rgba(0,0,0,0.11);
    right: -26px;
    top: 19px;
}

.about_main .section_3 .list li * {
    position: relative;
    z-index: 66;
}

.about_main .section_3 .list li {
    position: absolute;
    width: 325px;
    background: #FFFFFF;
    box-shadow: 0px 4px 11px 0px rgba(0,0,0,0.11);
    height: 92px;
    text-align: right;
    padding-right: 103px;
}

.about_main .section_3 .list li img {
    position: absolute;
    top: 50%;
    right: 0;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

.about_main .section_3 .list li .text p:nth-child(2) {
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    padding-top: 4px;
}

.about_main .section_3 .list li .text {
    font-size: 16px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
    padding-top: 24px;
}

.about_main .section_3 .center {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.about_main .section_3 .center .center2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
}

.about_main .section_3 .center .center2 i {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/3_1cricle@2x.png) no-repeat center center;
    background-size: auto 100%;
    animation: 3s linear 0s normal forwards infinite rotate;
    -webkit-animation: 3s linear 0s normal forwards infinite rotate;
    -moz-animation: 3s linear 0s normal forwards infinite rotate;
    -o-animation: 3s linear 0s normal forwards infinite rotate;
}

.about_main .section_3 .text2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 260px;
    max-width: 100%;
}

.about_main .section_3 .text2 .item {
    zoom:1;overflow: hidden;
}

.about_main .section_3 .text2 .num {
    font-size: 30px;
    font-family: Anton-Regular;
    font-weight: 400;
    color: #B90102;
    line-height: 44px;
    float: left;
    width: 99px;
}

.about_main .section_3 .text2 .num b {
}

.about_main .section_3 .text2 .title {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 44px;
    float: left;
    width: calc(100% - 99px);
}

.about_main .section_3 .list li:nth-child(1) {
    left: 0px;
    top: 12px;
}

.about_main .section_3 .list li:nth-child(2) {
    right: 0px;
    top: 22px;
}

.about_main .section_3 .list li:nth-child(3) {
    left: 0px;
    top: 140px;
}

.about_main .section_3 .list li:nth-child(4) {
    right: 0px;
    top: 202px;
}

.about_main .section_3 .list li:nth-child(5) {
    left: 0px;
    top: 269px;
}

.about_main .section_3 .list li:nth-child(6) {
    left: 0px;
    bottom: 7px;
}

.about_main .section_3 .list li:nth-child(7) {
    right: 0px;
    bottom: 29px;
}

.about_main .section_3 .list li:nth-child(2):after,.about_main .section_3 .list li:nth-child(4):after,.about_main .section_3 .list li:nth-child(7):after {
    left: -33px;
    right: auto;
    transform: rotate(225deg);
    left: -26px;
    right: auto;
    transform: rotate(215deg) skewY(24deg);
}

.about_main .section_3 .list li:nth-child(2),.about_main .section_3 .list li:nth-child(4),.about_main .section_3 .list li:nth-child(7) {
    padding-right: 0px;
    padding-left: 103px;
    text-align: left;
}

.about_main .section_3 .list li:nth-child(2) img,.about_main .section_3 .list li:nth-child(4) img,.about_main .section_3 .list li:nth-child(7) img {
    right: auto;
    left: 0px;
}

.about_main .section_3 .list li:hover {
    -o-transform: translate(0%,-15px);
    -webkit-transform: translate(0%,-15px);
    -moz-transform: translate(0%,-15px);
    -ms-transform: translate(0%,-15px);
    transform: translate(0%,-15px);
}

.about_main .section_4 {
    padding-top: 76px;
}

.about_main .section_4 .list1 {
    text-align: center;
    padding-top: 78px;
    margin-bottom: 70px;
}

.about_main .section_4 .list1:after {
    display: table;
    clear: both;
    content: "";
}

.about_main .section_4 .list1 .item:nth-child(2) {
    width: 155px;
    background: none;
}

.about_main .section_4 .list1 .item {
    float: left;
    width: calc((100% - 155px)/2);
    height: 88px;
    background: #AF2025;
    border-radius: 7px;
}

.about_main .section_4 .list1 .title {
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    padding-top: 11px;
    line-height: 33px;
}

.about_main .section_4 .list1 .dec {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 28px;
    padding-top: 2px;
}

.about_main .section_4 .list1 .dec2 {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #404952;
    line-height: 28px;
    padding-top: 60px;
    background: url(../images/3_1hhdy@2x.png) no-repeat center 0px;
    background-size: 44px;
}

.type2.cooperation_main .section_3 {
    padding-top: 0;
}

.type2.cooperation_main .section_4 .list {
    padding-top: 25px;
}

.about_main .section_5 {
    padding-top: 90px;
    padding-bottom: 150px;
}

.about_main .section_5 .posr:after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    background: url(../images/fuwukehu_mb@2x.png) no-repeat center bottom;
    background-size: 100%;
    height: 80px;
}

.about_main .section_5 .posr {
    position: relative;
    padding-bottom: 20px;
}

.about_main .section_5 .posr .list {
    margin-top: 53px;
    height: 490px;
    overflow: hidden;
    position: relative;
}

.about_main .section_5 .posr .list ul {
}

.about_main .section_5 .posr .list li {
}

.about_main .section_5 .posr .list img {
    display: block;
    width: 100%;
}

.about_main .section_6 .base_text_1 {
    margin-top: 47px;
}

.position + div,.solution_main,.production_line_main,.cooperation_main,.about_main {
    position: relative;
    z-index: 5;
    background: #fff;
    /* padding-bottom:108px;*/
}

.solution2_main {
}

.solution2_main .section_1 {
    padding-top: 30px;
    padding-bottom: 76px;
}

.solution2_main .section_1 .imgbox {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 32px;
}

.solution2_main .section_1 .imgbox img {
    display: block;
    margin: auto;
    max-width: 100%;
}

.solution2_main .section_2 {
    text-align: center;
    padding-top: 70px;
    background: #F8F8F8;
    padding-bottom: 70px;
}

.solution2_main .section_2 .dec {
    font-size: 16px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.solution2_main .section_2 img {
    max-width: 100%;
    mix-blend-mode: multiply;
}

.solution2_main .section_3 {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 140px;
}

.solution2_main .section_3 .dec {
    width: 871px;
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 28px;
    padding-top: 35px;
    max-width: 100%;
    margin: auto;
    padding-bottom: 30px;
}

.solution2_main .section_3 .img1 {
    font-size: 0;
}

.solution2_main .section_3 .img1 img {
    width: 50%;
}

.solution2_main .section_3 .imgbox {
}

.solution2_main .section_3 .imgbox img {
    display: block;
    width: 100%;
}

.solution2_main .section_4 {
    background: #F8F8F8;
    padding-top: 77px;
    padding-bottom: 85px;
}

.solution2_main .section_4 .dec0 {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
    padding: 35px 15px;
    text-align: center;
}

.solution2_main .section_4 .content {
    border: 2px solid #AF2025;
    zoom:1;overflow: hidden;
    height: 405px;
}

.solution2_main .section_4 .content .left {
    background: #AF2025;
    height: 100%;
    float: left;
    width: 55.4%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.solution2_main .section_4 .content .left .text {
    /* float:left;*/
    padding-left: 26px;
}

.solution2_main .section_4 .content .left .h2tit {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 28px;
    padding-bottom: 24px;
}

.solution2_main .section_4 .content .left .dec {
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
}

.solution2_main .section_4 .content .left .dec p {
    padding-left: 16px;
    background: url(../images/3_1bsjt@2x.png) no-repeat left 9px;
    background-size: 10px;
}

.solution2_main .section_4 .content .left .imgs {
    /* float:left;*/
    text-align: center;
    padding-right: 21px;
}

.solution2_main .section_4 .content .left .imgs img {
    width: 163px;
    margin-bottom: 28px;
    display: block;
}

.solution2_main .section_4 .content .left .title {
    font-size: 12px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 17px;
    letter-spacing: 2px;
    width: 126px;
    margin: auto;
}

.solution2_main .section_4 .content .right {
    float: right;
    height: 100%;
    width: 44.6%;
    text-align: center;
}

.solution2_main .section_4 .content .right .title {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    line-height: 53px;
}

.solution2_main .section_4 .content .right .imgbox {
}

.solution2_main .section_4 .content .right .imgbox img {
    width: 458px;
    max-width: 90%;
}

.solution2_main .section_4 .content .right .list {
    zoom:1;overflow: hidden;
}

.solution2_main .section_4 .content .right .list li {
    float: left;
    width: 25%;
    padding-top: 15px;
}

.solution2_main .section_4 .content .right .icon {
}

.solution2_main .section_4 .content .right .icon img {
    height: 40px;
}

.solution2_main .section_4 .content .right .tts {
    font-size: 16px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
    padding-top: 4px;
}

.footer_t2 {
    position: relative;
    z-index: 65;
}

.chat_main {
    position: relative;
    z-index: 5;
}

.chat_main .section_1 {
    padding-top: 36px;
    padding-bottom: 68px;
}

.chat_main .section_1 .list {
    zoom:1;overflow: hidden;
}

.chat_main .section_1 .list li:last-child {
    margin-right: 0px;
}

.chat_main .section_1 .list li {
    float: left;
    text-align: center;
    margin-right: 14px;
    height: 268px;
    background: #AF2025;
    width: calc((100% - 28px)/3);
}

.chat_main .section_1 .icon {
    padding-top: 32px;
    padding-bottom: 12px;
}

.chat_main .section_1 .icon img {
    height: 58px;
}

.chat_main .section_1 .title {
    font-size: 18px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 30px;
    padding-bottom: 5px;
}

.chat_main .section_1 .line {
    margin: auto;
    width: 50px;
    height: 2px;
    background: #fff;
    margin-bottom: 10px;
}

.chat_main .section_1 .dec {
    width: 268px;
    max-width: 91%;
    margin: auto;
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 30px;
}

.chat_main .section_2 {
    background: #F8F8F8;
    padding-top: 77px;
}

.chat_main .section_3 {
    padding-top: 76px;
    padding-bottom: 52px;
}

.chat_main .section_3 .imgbox {
    padding: 0px 15px;
    padding-top: 39px;
}

.chat_main .section_3 .imgbox img {
    display: block;
    margin: auto;
    max-width: 100%;
}

.chat_main .section_4 {
    background: #F8F8F8;
    padding-top: 90px;
    padding-bottom: 100px;
}

.chat_main .section_4 .list:after {
    display: table;
    clear: both;
    content: "";
}

.chat_main .section_4 .list {
    margin: auto;
    width: 920px;
    padding: 0px 15px;
    max-width: 100%;
    padding-top: 70px;
}

.chat_main .section_4 .list li:nth-child(3) {
    margin-right: 0px;
}

.chat_main .section_4 .list li {
    float: left;
    margin-right: 55px;
    width: calc((100% - 110px)/3);
}

.chat_main .section_4 .list li .content {
    position: relative;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.11);
    border: 1px solid #AF2025;
    height: 261px;
    position: relative;
    padding-top: 44px;
    padding-left: 17px;
    padding-right: 17px;
}

.chat_main .section_4 .list li .icon {
    position: absolute;
    left: 25px;
    top: -29px;
}

.chat_main .section_4 .list li .icon img {
    height: 60px;
}

.chat_main .section_4 .list li .title {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    line-height: 28px;
}

.chat_main .section_4 .list li .dec {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 27px;
    padding-top: 12px;
}

.service_main {
    /* */
    position: relative;
    z-index: 888;
    background: #fff;
}

.service_main .section_1 {
    padding-bottom: 109px;
}

.service_main .section_1 .listtype2 {
    padding: 0
}

.listtype2:after {
    content: "";
    display: table;
    clear: both;
}

.listtype2:before {
    position: absolute;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    content: "";
    background: #F8F8F8;
    height: 204px;
    display: none;
}

.listtype2 {
    position: relative;
    padding: 0px 9%;
}

.listtype2 li {
    float: left;
    height: 284px;
    background: url(../images/bgr.png) no-repeat center center;
    background-size: auto 100%;
    width: 33.33%;
    position: relative;
    z-index: 5;
}

.listtype2 li .title {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 28px;
    padding-top: 34px;
    padding-bottom: 11px;
    text-align: center;
}

.listtype2 li .dec {
}

.listtype2 li .dec p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 25px;
    background: url(../images/3_1bsjt@2x.png) no-repeat left center;
    padding-left: 15px;
    background-size: 10px;
}

.listtype2 li:nth-child(1) .dec {
    padding-left: 95px;
}

.listtype2 li:nth-child(2) .dec {
    padding-left: 68px;
}

.listtype2 li:nth-child(3) .dec {
    padding-left: 129px;
}

.service_main .section_2 {
}

.service_main .section_2 .dec0 {
    text-align: center;
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
    padding: 37px 15px;
}

.service_main .section_2 .content:after {
    content: "";
    display: table;
    clear: both;
}

.service_main .section_2 .content {
    height: 471px;
    position: relative;
}

.service_main .section_2 .content .map {
}

.service_main .section_2 .content .map img {
    display: block;
    margin: auto;
    max-width: 100%;
}

.service_main .section_2 .content .list {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
}

.service_main .section_2 .content .list li:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0px;
    content: '';
    border-style: solid;
    border-width: 20px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    box-shadow: 2px 0px 12px rgba(0,0,0,0.11);
    right: -20px;
    top: 9px;
    border-width: 17px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(35deg) skewY(24deg);
    box-shadow: 2px 0px 12px rgba(0,0,0,0.11);
    right: -16px;
    top: 12px;
}

.service_main .section_2 .content .list li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 4;
    background: #fff;
    content: "";
    width: 100%;
    height: 100%;
}

.service_main .section_2 .content .list li {
    background: #FFFFFF;
    box-shadow: 0px 4px 11px 0px rgba(0,0,0,0.11);
    height: 58px;
    padding-right: 34px;
    position: absolute;
    width: 241px;
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    text-align: right;
    line-height: 58px;
    left: 0px;
}

.service_main .section_2 .content .list li span {
    display: block;
    position: relative;
    z-index: 4;
}

.service_main .section_2 .content .list li .icon {
    position: absolute;
    top: 50%;
    right: 7px;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    z-index: 6;
}

.service_main .section_2 .content .list li .icon img {
    height: 18px;
}

.service_main .section_2 .content .list li:nth-child(2n) {
    left: auto;
    right: 0px;
}

.service_main .section_2 .content .list li:nth-child(1) {
    left: 0px;
    top: 64px;
}

.service_main .section_2 .content .list li:nth-child(2) {
    top: 64px;
}

.service_main .section_2 .content .list li:nth-child(3) {
    left: 0px;
    top: 137px;
}

.service_main .section_2 .content .list li:nth-child(4) {
    top: 160px;
}

.service_main .section_2 .content .list li:nth-child(5) {
    top: 213px;
}

.service_main .section_2 .content .list li:nth-child(6) {
    top: 259px;
}

.service_main .section_2 .content .list li:nth-child(7) {
    top: 283px;
}

.service_main .section_2 .content .list li:nth-child(8) {
    top: 347px;
}

.service_main .section_2 .content .list li:nth-child(9) {
    top: 356px;
}

.service_main .section_2 .content .list li:nth-child(2n):after {
    left: -20px;
    right: auto;
    transform: rotate(225deg);
    left: -17px;
    right: auto;
    transform: rotate(215deg) skewY(24deg);
}

.service_main .section_2 .content .list li:nth-child(2n) .icon {
    right: auto;
    left: 7px;
}

.service_main .section_2 .content .list li:nth-child(2n) {
    text-align: left;
    padding-left: 34px;
    padding-right: 0;
}

.service_main .section_2 {
    padding-bottom: 47px;
}

.service_main .section_3 {
    text-align: center;
    background: #F8F8F8;
}

.service_main .section_3 .imgbox img {
    max-width: 100%;
}

.service_main .section_3 .imgbox {
    padding: 30px 15px;
}

.service_main .section_4 {
    padding-top: 74px;
    padding-bottom: 96px;
}

.service_main .section_4 .dec0 {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
    padding: 35px 15px;
    text-align: center;
}

.service_main .section_4 .list:after {
    content: "";
    display: table;
    clear: both;
}

.service_main .section_4 .list {
    padding-bottom: 36px;
}

.service_main .section_4 .list li:nth-child(4),.service_main .section_4 .list li:nth-child(8) {
    margin-right: 0px;
    width: 28%;
}

.service_main .section_4 .list li:nth-child(1),.service_main .section_4 .list li:nth-child(2),.service_main .section_4 .list li:nth-child(3),.service_main .section_4 .list li:nth-child(5),.service_main .section_4 .list li:nth-child(6),.service_main .section_4 .list li:nth-child(7) {
}

.service_main .section_4 .list li {
    float: left;
    height: 58px;
    background: #FFFFFF;
    margin-bottom: 14px;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.12);
    width: 23%;
    margin-right: 1%;
}

.service_main .section_4 .icon {
    float: left;
    margin-left: 27px;
    padding-top: 18px;
}

.service_main .section_4 .icon img {
    height: 18px;
}

.service_main .section_4 .list span {
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    float: left;
    padding-left: 6px;
    line-height: 58px;
}

.service_main .section_4 .imgbox {
}

.service_main .section_4 .imgbox img {
    width: 100%;
    display: block;
}

.service_main .section_5 {
    background: #F8F8F8;
    padding-top: 68px;
    padding-bottom: 63px;
}

.service_main .section_5 .dec0 {
    text-align: center;
    padding: 35px 15px;
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
}

.service_main .section_5 .imgbox {
    float: left;
    width: calc(100% - 347px);
}

.service_main .section_5 .imgbox img {
    width: 100%;
}

.service_main .section_5 .content {
}

.service_main .section_5 .content:after {
    content: "";
    display: table;
    clear: both;
}

.service_main .section_5 .right {
    float: right;
    width: 312px;
}

.service_main .section_5 .right li {
    height: 58px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.12);
    margin-bottom: 16px;
}

.service_main .section_5 .icon {
    padding-top: 17px;
    padding-left: 29px;
    float: left;
}

.service_main .section_5 .icon img {
    height: 18px;
}

.service_main .section_5 li span {
    float: left;
    padding-left: 7px;
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 58px;
}

.service_main .section_4.section_6 .list li {
    width: calc((100% - 40px)/3);
    margin-right: 20px;
    margin-bottom: 14px;
}

.service_main .section_4.section_6 .list li:nth-child(3n) {
    margin-right: 0px;
}

.service_main .section_4.section_7 {
    background: #F8F8F8;
}

.service_main .section_4.section_7 .imgbox2 {
    zoom:1;overflow: hidden;
}

.service_main .section_4.section_7 .imgbox2 img {
    float: left;
}

.service_main .section_4.section_7 .imgbox2 img:nth-child(1) {
    padding-top: 10px;
    width: 65.4%;
}

.service_main .section_4.section_7 .imgbox2 img:nth-child(2) {
    float: right;
    width: 34%;
}

.service_main .section_8 {
    padding-top: 92px;
    padding-bottom: 66px;
}

.service_main .section_8 .list .imgbox {
    padding: 20px;
}

.service_main .section_8 .list {
    padding-top: 10px;
}

.service_main .section_8 .list img {
    display: block;
    width: 100%;
}

.service_main .section_8 .list .wr .dec {
    text-align: center;
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
    padding-top: 20px;
    padding-bottom: 35px;
}

.service_main .section_8 .list .wr {
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    padding: 30px;
}

.service_main .section_8 .list .swiper-container {
    padding-bottom: 20px;
}

.service_main .section_9 {
    padding-top: 86px;
    padding-bottom: 100px;
    background: #F8F8F8;
}

.service_main .section_9 .content {
    height: 378px;
    margin: auto;
    margin-top: 50px;
    position: relative;
    width: 862px;
    max-width: 100%;
}

.service_main .section_9 .content .list {
}

.service_main .section_9 .content .list li:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0px;
    content: '';
    border-style: solid;
    border-width: 26px;
    border-color: #fff #fff transparent transparent;
    transform: rotate(35deg) skewY(24deg);
    box-shadow: 2px 0px 12px rgba(0,0,0,0.11);
    right: -26px;
    top: 20px;
}

.service_main .section_9 .content .list li:before {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 4;
    background: #fff;
    content: "";
    width: 100%;
    height: 100%;
}

.service_main .section_9 .content .list li:nth-child(2n):after {
    left: -26px;
    right: auto;
    transform: rotate(217deg) skewY(19deg);
}

.service_main .section_9 .content .list li:nth-child(3) {
    top: 227px;
}

.service_main .section_9 .content .list li:nth-child(4) {
    top: 227px;
}

.service_main .section_9 .content .list li {
    top: 59px;
}

.service_main .section_9 .content .list li:nth-child(2n) {
    left: auto;
    right: 0px;
    padding-right: 0;
    padding-left: 109px;
    text-align: left;
}

.service_main .section_9 .content .list li {
    position: absolute;
    height: 92px;
    background: #FFFFFF;
    box-shadow: 0px 4px 11px 0px rgba(0,0,0,0.11);
    text-align: right;
    padding-right: 109px;
    left: 0;
    width: 268px;
    z-index: 67;
}

.service_main .section_9 .content .list li:nth-child(2n) img {
    right: auto;
    left: 44px;
}

.service_main .section_9 .content .list img {
    position: absolute;
    position: absolute;
    top: 50%;
    right: 44px;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    z-index: 4;
}

.service_main .section_9 .content .text {
    height: 100%;
    position: relative;
    z-index: 4;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service_main .section_9 .content .text p {
    font-size: 16px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
}

.service_main .section_9 .content .text p:nth-child(2) {
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
}

.service_main .section_9 .content .center {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.service_main .section_9 .content .center2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
}

.service_main .section_9 .content .center2 i {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/3_1cricle@2x.png) no-repeat center center;
    background-size: auto 100%;
    animation: 3s linear 0s normal forwards infinite rotate;
    -webkit-animation: 3s linear 0s normal forwards infinite rotate;
    -moz-animation: 3s linear 0s normal forwards infinite rotate;
    -o-animation: 3s linear 0s normal forwards infinite rotate;
}

.service_main .section_9 .content .text span {
    display: block;
}

.service_main .section_9 .content .text2 {
    font-size: 30px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #B90102;
    line-height: 42px;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.height50 {
    height: 50px;
}

.service_main .section_10 {
}

.service_main .section_10 .list:after {
    content: "";
    display: table;
    clear: both;
}

.service_main .section_10 .list {
    padding-top: 15px;
    margin-bottom: 30px;
}

.service_main .section_10 .list li:last-child {
    margin-right: 0px;
}

.service_main .section_10 .list li {
    float: left;
    width: calc((100% - 108px)/7);
    margin-right: 18px;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.09);
    margin-bottom: 16px;
}

.service_main .section_10 .list li .icon {
    height: auto;
    position: relative;
}

.service_main .section_10 .list li .icon img {
    width: 100%;
    top: 50%;
    left: 50%;
}

.service_main .section_10 .list li .titlte {
    font-size: 18px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
    display: none;
}

.service_main .section_10 .lists:after {
    content: "";
    display: table;
    clear: both;
}

.service_main .section_10 .lists {
}

.service_main .section_10 .lists .item {
}

.service_main .section_10 .lists .item:nth-child(1) {
    float: left;
    width: 59%;
}

.service_main .section_10 .lists .item:nth-child(1) .list li:nth-child(3n) {
    margin-right: 0px;
}

.service_main .section_10 .lists .item:nth-child(1) .list li {
    width: calc((100% - 36px)/3);
}

.service_main .section_10 .lists .item:nth-child(2) {
    float: right;
    width: 39.5%;
}

.service_main .section_10 .lists .item:nth-child(2) .list li {
    width: calc((100% - 18px)/2);
}

.service_main .section_10 .lists .item:nth-child(2) .list li:nth-child(2n) {
    margin-right: 0px;
}

.service_main .section_10 {
    padding-bottom: 70px;
    padding-top: 80px;
}

.service_main .section_11 {
    padding-top: 67px;
    background: #F8F8F8;
    padding-bottom: 90px;
}

.service_main .section_11 .list {
}

.service_main .section_11 .list {
    padding-top: 69px;
    zoom:1;overflow: hidden;
}

.service_main .section_11 .list li {
    float: left;
    width: 33.33%;
    text-align: center;
}

.service_main .section_11 .list li .cir {
    width: 190px;
    height: 190px;
    background: #AF2025;
    border-radius: 300px;
    margin: auto;
    max-width: 100%;
    display: ;
    padding-top: 27px;
}

.service_main .section_11 .list li .icon {
    height: 94px;
    position: relative;
}

.service_main .section_11 .list li .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.service_main .section_11 .list li:nth-child(1) .dec {
    width: 260px;
}

.service_main .section_11 .list li .title {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 32px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 64px;
}

.service_main .section_11 .list li .dec p {
    text-align: left;
    padding-left: 17px;
    background: url(../images/red.png) no-repeat left 10px;
    background-size: 10px;
}

.service_main .section_11 .list li .dec {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    padding-top: 36px;
    width: 320px;
    max-width: 100%;
    margin: auto;
}

.service_main .section_11 .list li:hover .cir {
    -o-transform: translate(0%,-15px);
    -webkit-transform: translate(0%,-15px);
    -moz-transform: translate(0%,-15px);
    -ms-transform: translate(0%,-15px);
    transform: translate(0%,-15px);
}

.service_main .section_12 {
    padding-top: 106px;
    padding-bottom: 80px;
}

.service_main .section_12 .list {
}

.service_main .section_12 .list li {
    background: #FFFFFF;
    box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.07);
    float: left;
    margin-right: 10px;
    margin-bottom: 20px;
}

.service_main .section_12 .list li img {
    width: 100%;
}

.service_main .section_12 .list:after {
    content: "";
    display: table;
    clear: both;
}

.service_main .section_12 .list.list1 li:nth-child(5n) {
    margin-right: 0px;
}

.service_main .section_12 .list.list1 {
    padding-top: 20px;
}

.service_main .section_12 .list.list1 li {
    margin-right: 8px;
    width: calc((100% - 32px)/5);
}

.service_main .section_12 .list.list2 li:nth-child(4n) {
    margin-right: 0px;
}

.service_main .section_12 .list.list2 li {
    margin-right: 10px;
    width: calc((100% - 30px)/4);
}

.service_main .section_12 .list.list3 li:nth-child(3n) {
    margin-right: 0px;
}

.service_main .section_12 .list.list3 li {
    margin-right: 10px;
    width: calc((100% - 20px)/3);
}

.height80 {
    height: 80px;
}

.channel_main {
    position: relative;
    z-index: 7;
    background: #fff
}

.about_main2 {
}

.about_main2 .section_1 {
    background: rgba(248,248,248,.8);
    padding-top: 51px;
    padding-bottom: 60px;
}

.about_main2 .section_1 .content:after {
    content: "";
    display: table;
    clear: both;
}

.about_main2 .section_1 .content {
}

.about_main2 .section_1 .title {
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 42px;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 16px;
}

.about_main2 .section_1 .title:after {
    left: 0px;
    position: absolute;
    content: "";
    bottom: 0px;
    width: 78px;
    height: 1px;
    background: #BD0000
}

.about_main2 .section_1 .left {
    float: left;
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 19px;
    float: left;
    width: 46.7%;
}

.about_main2 .section_1 .left p:last-child {
    padding-bottom: 0;
}

.about_main2 .section_1 .left p {
    padding-bottom: 25px;
}

.about_main2 .section_1 .right {
    float: right;
    width: 50%;
}

.about_main2 .section_1 .right img {
    display: block;
    width: 100%;
}

.channel_main {
    overflow-x: hidden;
}

.titlemodel8 {
    text-align: center;
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 42px;
    z-index: 5;
    position: relative;
}

.about_main2 .section_2 {
    padding-top: 100px;
}

.about_main2 .section_2 .list {
    margin-top: 40px;
    padding-left: 45px;
    padding-right: 45px;
    position: relative;
}

.about_main2 .section_2 .list ul {
}

.about_main2 .section_2 .list li:after {
    content: "";
    display: table;
    clear: both;
}

.about_main2 .section_2 .list li {
    margin-bottom: 39px;
    position: relative;
    zoom:1;overflow: hidden;
    z-index: 7;
}

.about_main2 .section_2 .list li .left {
    width: 349px;
    height: 132px;
    background: url(../images/7_1fzlc@2x.png) no-repeat center center;
    background-size: 100%;
    float: left;
    text-align: center;
}

.about_main2 .section_2 .list li .num {
    width: 109px;
    line-height: 132px;
    text-align: center;
    float: left;
    font-size: 50px;
    font-family: Anton-Regular;
    font-weight: 400;
    color: #404952;
}

.about_main2 .section_2 .list li .text {
    float: left;
    width: calc(100% - 109px);
}

.about_main2 .section_2 .list li .day {
    font-size: 42px;
    font-family: Anton-Regular;
    font-weight: 400;
    color: #B2282D;
    line-height: 70px;
}

/* .about_main2 .section_2 .list li .title {font-size:17px;font-family:PingFangSC-Semibold,PingFang SC;font-weight:600;color:#FFFFFF;line-height:28px;line-height:63px;}
*/
.about_main2 .section_2 .list li .title.type2 {
    font-size: 16px;
}

.about_main2 .section_2 .list li .title {
    font-size: 14px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: normal;
    color: #FFFFFF;
    line-height: 28px;
    height: 63px;
    font-size: 20px;
    font-family: PingFangSC,PingFang SC;
    /* font-weight:600;*/
    color: #FFFFFF;
    line-height: 28px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_main2 .section_2 .list li .right p:nth-child(2n) {
    padding-bottom: 10px;
}

.about_main2 .section_2 .list li .right {
    width: calc(100% - 413px);
    float: right;
    background: rgba(248,248,248,.8);
    padding: 20px 26px;
    padding-bottom: 10px;
    z-index: 7;
    position: relative;
}

.about_main2 .section_2 .list li .right p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 22px;
}

.about_main2 .section_2 .list li .right p strong {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #B2282D;
    line-height: 22px;
    display: block;
    padding-bottom: 3px;
}

.about_main2 .section_2 .list li:before {
    width: 15px;
    height: 15px;
    background: #B2282D;
    position: absolute;
    left: 372px;
    top: 63px;
    content: "";
    border-radius: 30px;
}

.about_main2 .section_2 .list:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0px;
    width: 2px;
    background: #B2282D;
    left: 424px;
}

.about_main2 .section_2 .list li:first-child:after {
    position: absolute;
    left: 378px;
    top: 0px;
    width: 4px;
    background: #fff;
    height: 63px;
    content: "";
    z-index: 6;
}

.about_main2 .section_2 .list li:last-child .right:after {
    position: absolute;
    left: -36px;
    bottom: 0px;
    width: 4px;
    background: #fff;
    height: calc(100% - 78px);
    content: "";
    z-index: 6;
}

.about_main2 .section_3 {
    padding-top: 98px;
    padding-bottom: 36px;
}

.about_main2 .section_3 .list {
    padding-top: 32px;
    padding-bottom: 40px;
    margin: 0
}

.about_main2 .section_3 .list:after {
    display: table;
    clear: both;
    content: "";
}

.about_main2 .section_3 .list li {
    zoom:1;overflow: hidden;
    height: 415px;
    background: #FFFFFF;
    box-shadow: 0px 7px 16px 0px rgba(0,0,0,0.07);
    margin-bottom: 24px;
    width: calc((100% - 16px)/2);
    float: left;
    margin-right: 16px;
}

.about_main2 .section_3 .list li:nth-child(2n) {
    margin-right: 0px;
}

.about_main2 .section_3 .list li .left {
    float: left;
    text-align: center;
    height: 100%;
    position: relative;
    width: 103px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_main2 .section_3 .list li .time {
    font-size: 34px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #B2282D;
    line-height: 56px;
}

.about_main2 .section_3 .list li .left img {
    margin: 0px auto;
}

.about_main2 .section_3 .list li .right {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    float: left;
    width: calc(100% - 111px);
    padding-right: 0;
}

.about_main2 .section_3 .list li .right p {
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
    padding-left: 20px;
    background: url(../images/red.png) no-repeat left 6px;
    background-size: 10px;
}

.titlemodel9 {
    font-size: 30px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 42px;
    letter-spacing: 6px;
    text-align: center;
}

.contact_main {
}

.contact_main .section_1 {
    padding-bottom: 62px;
}

.contact_main .section_1 .formtable {
    padding-top: 50px;
}

.contact_main .section_1 .items:after {
    content: "";
    display: table;
    clear: both;
}

.contact_main .section_1 .item:nth-child(2n) {
    float: right;
}

.contact_main .section_1 .items {
}

.contact_main .section_1 .item:last-child {
    width: 100%;
}

.contact_main .section_1 .item {
    margin-bottom: 30px;
    float: left;
    width: calc((100% - 80px)/2);
}

.contact_main .section_1 .s1 {
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #404952;
    line-height: 22px;
    padding-bottom: 14px;
}

.contact_main .section_1 .model {
}

.contact_main .section_1 select,.contact_main .section_1 .words {
    height: 50px;
    border: 1px solid #D7D7D7;
    width: 100%;
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #000;
    padding: 0px 20px;
}

.contact_main .section_1 select {
    padding-left: 18px;
}

.contact_main .section_1 .words.words2 {
    float: left;
    width: calc(100% - 111px);
}

.contact_main .section_1 .code {
    float: left;
    width: 100px;
    float: right;
}

.contact_main .section_1 .code img {
    cursor: pointer;
    width: 100%;
    height: 50px;
}

.contact_main .section_1 .formtable textarea {
    height: 72px;
    border: 1px solid #D7D7D7;
    width: 100%;
    display: block;
    resize: none;
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #000;
    line-height: 22px;
    padding: 14px 20px;
}

.contact_main .section_1 .send {
    width: 210px;
    height: 50px;
    background: #B2282D;
    cursor: pointer;
    margin: auto;
    display: block;
    margin-top: 10px;
    border: none;
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
}

.contact_main .section_1 .words::-webkit-input-placeholder {
    color: rgba(64,73,82,.5);
}

.contact_main .section_1 .words::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(64,73,82,.5);
}

.contact_main .section_1 .words:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(64,73,82,.5);
}

.contact_main .section_1 .words:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(64,73,82,.5);
}

.contact_main .section_1 .formtable textarea::-webkit-input-placeholder {
    color: rgba(64,73,82,.5);
}

.contact_main .section_1 .formtable textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(64,73,82,.5);
}

.contact_main .section_1 .formtable textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(64,73,82,.5);
}

.contact_main .section_1 .formtable textarea:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(64,73,82,.5);
}

.contact_main .section_2 {
    padding-bottom: 97px;
    background: #F8F8F8;
}

.contact_main .section_2 .content {
    text-align: left;
    font-size: 0px;
    padding-left: 172px;
}

.contact_main .section_2 .item1 {
    display: inline-block;
    font-size: 12px;
    margin-top: 112px;
    vertical-align: top;
    padding-left: 28px;
    text-align: left;
    background: url(../images/telb.png) no-repeat left 2px;
}

.contact_main .section_2 .item2 {
    display: inline-block;
    font-size: 12px;
    padding-top: 112px;
    vertical-align: top;
    text-align: left;
    padding-left: 59px;
    padding-right: 48px;
}

.contact_main .section_2 .item3 {
    display: inline-block;
    font-size: 12px;
    padding-top: 98px;
    vertical-align: top;
}

.contact_main .section_2 .val {
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #666666;
    line-height: 33px;
}

.contact_main .section_2 .title {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
}

.contact_main .section_2 .item3 img {
    width: 82px;
    margin-left: 11px;
}

.contact_main .section_2 .item2 p {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
    padding-bottom: 15px;
}

.join_main {
}

.join_main .section_1 {
    background: #F8F8F8;
    padding-top: 75px;
    padding-bottom: 58px;
}

.join_main .section_1 .content {
    padding-top: 36px;
    padding-left: 15px;
    padding-right: 15px;
    width: 958px;
    margin: auto;
    max-width: 100%;
}

.join_main .section_1 .content p {
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 28px;
    padding-bottom: 28px;
}

.join_main .section_2 {
    padding-top: 15px;
}

.join_main .section_2 .hd {
}

.join_main .section_2 .hd .content {
    height: 154px;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.09);
    padding: 34px 22px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.join_main .section_2 .hd .title {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
    padding-bottom: 13px;
    margin-bottom: 28px;
}

.join_main .section_2 .hd .list .swiper-container {
    padding: 20px;
    padding-bottom: 0;
    padding-bottom: 20px;
}

.join_main .section_2 .hd .list {
}

.join_main .section_2 .hd .line {
}

.join_main .section_2 .hd .pos {
    font-size: 16px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 22px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 0px 22px;
    padding-bottom: 30px;
}

.join_main .section_2 .bd {
    background: #B2282D;
}

.join_main .section_2 .bd .model {
    padding-bottom: 59px;
    padding-top: 41px;
    display: ;
}

.join_main .section_2 .bd .pos {
    font-size: 15px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 25px;
    opacity: .8;
    padding-bottom: 30px;
}

.join_main .section_2 .bd .title {
    padding-bottom: 14px;
    font-size: 26px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 25px;
    /* padding-top:68px;*/
}

.join_main .section_2 .bd .list:after {
    content: "";
    display: table;
    clear: both;
}

.join_main .section_2 .bd .list {
}

.join_main .section_2 .bd .content:last-child {
    margin-right: 0px;
}

.join_main .section_2 .bd .content {
    width: calc((100% - 72px)/3);
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.11);
    border: 1px solid #FFFFFF;
    margin-right: 36px;
    float: left;
    position: relative;
    min-height: 385px;
    padding-bottom: 20px;
}

.join_main .section_2 .bd .name {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 25px;
    position: absolute;
    left: 20px;
    padding: 0px 6px;
    background: #b2282d;
    top: -13px;
}

.join_main .section_2 .bd .text {
    font-size: 15px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 24px;
    padding-left: 19px;
    padding-right: 19px;
    x;padding-top: 32px;
}

.join_main .section_2 .bd .text p {
}

.join_main .section_2 .words {
    text-align: center;
    font-size: 16px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #B2282D;
    line-height: 25px;
    padding: 25px 0px;
}

.join_main .section_2 .bd .palr {
    padding-left: 115px;
    padding-right: 115px;
}

.join_main .section_2 .hd .content:hover:after,.join_main .section_2 .hd .content.current:after {
    bottom: 0px;
}

.join_main .section_2 .hd .content:after {
    content: "";
    position: absolute;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    bottom: 0px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #B2282D transparent;
    bottom: -10px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.join_main .section_2 .hd .title {
    position: relative;
}

.join_main .section_2 .hd .title:after {
    content: "";
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    left: 0px;
    bottom: 0px;
    width: 56px;
    height: 1px;
    background: #AF2025;
    position: absolute;
    width: 0;
}

.join_main .section_2 .hd .content:hover .title:after,.join_main .section_2 .hd .content.current .title:after {
    width: 56px;
}

.join_main .section_2 .hd .list .swiper-container.cur {
    padding-bottom: 0;
}

.index .section_3 .map .item:hover {
    z-index: 666;
}

.footer_t2 .right .link a:nth-child(1) .title:after {
    background: url(../images/xcx.png) no-repeat center center;
    background-size: 100%;
}

.footer_t2 .right .link a:nth-child(1) .title:before {
    background: url(../images/xcxred.png) no-repeat center center;
    background-size: 100%;
}

.head .nav ul li:nth-child(2) {
    position: static;
}

.head .nav ul li .slide .wrap {
    position: relative;
}

.head .nav ul li:hover .slide {
    box-shadow: 10px 10px 10px rgb(0 0 0 / .1);
}

.head .nav ul li .slide {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0px;
    top: 80px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 22px;
    padding-bottom: 22px;
    display: none;
    max-height: calc(100vh - 80px);
    overflow: auto;
}

.head .nav ul li .slide .hd {
    float: left;
    width: 133px;
    text-align: left;
    padding-top: 11px;
    border-right: 2px solid #AF2025;
}

.head .nav ul li .slide .hd a {
    font-size: 14px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    display: block;
    padding-left: 20px;
    line-height: 20px;
    background-size: 15px !important;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.head .nav ul li .slide .bd {
    float: right;
    width: calc(100% - 133px);
    padding-left: 5%;
    padding-top: 24px;
}

.head .nav ul li .slide .model li:last-child {
    margin-right: 0px;
}

.head .nav ul li .slide .model {
}

.head .nav ul li .slide .model li {
    margin: 0px;
    float: left;
    width: calc((100% - 40px)/5);
    margin-right: 23px;
}

.head .nav ul li .slide .model li a * {
    display: block;
}

.head .nav ul li .slide .model li a {
}

.head .nav ul li .slide .model li a .imgbox {
    overflow: hidden;
}

.head .nav ul li .slide .model li a .imgbox img {
    width: 100%;
}

.head .nav ul li .slide .model li a .title {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 20px;
    padding-top: 10px;
    text-align: left;
}

.head .nav ul li .slide .hd a:last-child {
    margin-bottom: 6px;
}

.head .nav ul li .slide .hd a:nth-child(1) {
    background: url(../images/2_2zhcs@2x.png) no-repeat left center;
}

.head .nav ul li .slide .hd a:nth-child(2) {
    background: url(../images/2_2zhyq@2x.png) no-repeat left center;
}

.head .nav ul li .slide .hd a:nth-child(3) {
    background: url(../images/2_2ggaq@2x.png) no-repeat left center;
}

.head .nav ul li .slide .hd a:nth-child(4) {
    background: url(../images/2_2znzz@2x.png) no-repeat left center;
}

.head .nav ul li .slide .hd a.current,.head .nav ul li .slide .hd a:hover {
    color: #AF2025
}

.head .nav ul li .slide .model li a:hover .title {
    color: #AF2025
}

.head .nav ul li .slide.width2 .hd a img {
    position: relative;
    top: -2px;
}

.head .nav ul li .slide .hd a img {
    width: 15px;
    margin-right: 5px;
    vertical-align: middle;
    display: inline;
}

.head .nav ul li .slide .hd a {
    background: none !important;
}

.index {
    overflow-x: hidden;
}

.mobile-inner-nav li .slide {
    text-indent: 0;
    display: none;
}

.mobile-inner-nav li .slide .hd {
    zoom:1;overflow: hidden;
    text-align: left;
    padding-top: 11px;
    width: 120px;
    float: left;
    margin: 10px 0px;
    border-right: 1px solid #fff;
    padding-top: 0;
}

.mobile-inner-nav li .slide .hd a {
    font-size: 14px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    display: block;
    padding-left: 20px;
    float: none;
    width: 100%;
    line-height: 20px;
    background-size: 15px !important;
    margin-bottom: 10px;
    background: none !important;
    color: #fff;
    padding: 0px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.mobile-inner-nav li .slide .bd {
    zoom:1;overflow: hidden;
    padding: 0;
    float: left;
    width: calc(100% - 120px);
    padding: 10px 0px;
    padding-left: 10px;
}

.mobile-inner-nav li .slide .model li:last-child {
}

.mobile-inner-nav li .slide .model {
}

.mobile-inner-nav li .slide .model li {
    margin: 0px;
    float: left;
    width: 48%;
    margin: 1%;
    border: none;
    text-align: ;
}

.mobile-inner-nav li .slide .model li a * {
    display: block;
}

.mobile-inner-nav li .slide .model li a {
}

.mobile-inner-nav li .slide .model li a .imgbox {
    overflow: hidden;
    display: none;
}

.mobile-inner-nav li .slide .model li a .imgbox img {
    width: 100%;
}

.mobile-inner-nav li .slide .model li a .title {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #fff;
    text-indent: 0;
    padding: 0;
    line-height: 20px;
    text-align: left;
}

.mobile-inner-nav li .slide .hd a:last-child {
    margin-bottom: 6px;
}

.mobile-inner-nav li .slide .hd a:nth-child(1) {
    background: url(../images/2_2zhcs@2x.png) no-repeat left center;
}

.mobile-inner-nav li .slide .hd a:nth-child(2) {
    background: url(../images/2_2zhyq@2x.png) no-repeat left center;
}

.mobile-inner-nav li .slide .hd a:nth-child(3) {
    background: url(../images/2_2ggaq@2x.png) no-repeat left center;
}

.mobile-inner-nav li .slide .hd a:nth-child(4) {
    background: url(../images/2_2znzz@2x.png) no-repeat left center;
}

.mobile-inner-nav li .slide .hd a.current,.mobile-inner-nav li .slide .hd a:hover {
    color: #fff
}

.mobile-inner-nav li .slide .model li a:hover .title {
    color: #fff
}

.newsarticle {
    background: #fff;
    position: relative;
    z-index: 5;
}

.newsarticle .h2tit {
    text-align: center;
    font-size: 26px;
    font-family: PingFang-SC-Medium,PingFang-SC;
    font-weight: 500;
    color: #000000;
    line-height: 37px;
    padding-top: 50px;
}

.newsarticle .infor {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0,0,0,.5);
    line-height: 20px;
    settings;padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
}

.newsarticle .article p {
    padding-bottom: 20px;
}

.newsarticle .infor em {
    width: 1px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    background: rgba(0,0,0,.5);
    margin: 0px 10px;
}

.newsarticle .article {
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
}

.newsarticle .article * {
    max-width: 100%;
}

.newsarticle .share {
    padding-top: 50px;
    font-size: 0;
    font-family: PingFang-SC-Medium,PingFang-SC;
    font-weight: 500;
    color: #000000;
}

.newsarticle .share span {
    font-size: 14px;
    font-family: PingFang-SC-Medium,PingFang-SC;
    font-weight: 500;
    color: #000000;
    line-height: 34px;
    display: inline-block;
    vertical-align: middle;
}

.newsarticle .share a > img {
    width: 34px;
    margin-right: 20px;
}

.newsarticle .prev_next {
    padding-top: 53px;
    padding-bottom: 50px;
}

.newsarticle .prev_next:after {
    content: "";
    display: table;
    clear: both;
}

.newsarticle .prev_next p {
}

.newsarticle .prev_next p a {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.11);
    float: left;
    line-height: 106px;
    width: calc((100% - 20px)/2);
    font-size: 14px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #666666;
    padding-left: 66px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: url(../images/icon-syp@2x.png) no-repeat 19px center;
    background-size: 28px !important;
}

.newsarticle .prev_next p:nth-child(2) a {
    float: right;
    padding-left: 40px;
    background: url(../images/icon-xyp@2x.png) no-repeat calc(100% - 19px) center;
    padding-right: 57px;
}

.newsarticle .prev_next p a:hover {
    color: #AF2025
}

.newsarticle {
    overflow-x: hidden;
}

.head .nav ul li:nth-child(2) dl {
    display: none;
}

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

#loading_more {
    text-align: center;
    position: relative;
    line-height: 40px;
    font-size: 15px;
}

#loading_more .loadingfa img {
    height: 30px;
    width: 30px;
}

#loading_more .loadingfa {
    position: relative;
    height: 30px;
    width: 30px;
    margin: 0px;
    margin-right: 4px;
    display: inline-block;
    top: auto;
    left: auto;
}

#loading_more span {
    color: #b2282d;
    display: inline-block;
    vertical-align: middle;
}

.bd2_sec_1 {
    padding-bottom: 80px;
    background: #F8F8F8;
    padding-top: 70px;
}

.bd2_sec_1 img {
    max-width: 100%;
    display: block;
    margin: auto;
    margin-top: 48px;
}

.bd2_sec_1 .dec {
    text-align: left;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    padding-top: 48px;
}

.bd2_sec_2 {
    padding-bottom: 80px;
    padding-top: 70px;
}

.bd2_sec_2 img {
    max-width: 100%;
    width: 100%;
    margin-top: 48px;
}

.bd3_sec_1 {
    padding-bottom: 50px;
    background: #F8F8F8;
    padding-top: 70px;
}

.bd3_sec_1 li {
    display: flex;
    align-items: center;
    margin-bottom: 27px;
}

.bd3_sec_1 ul {
    padding-top: 49px;
}

.bd3_sec_1 ul .num {
    width: 82px;
    font-size: 30px;
    font-family: Futura-Bold,Futura;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    line-height: 82px;
    background: url(../images/red-brick@2x.png) no-repeat center center;
    background-size: 100%;
}

.bd3_sec_1 ul span {
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 33px;
    padding-left: 27px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bank_main .section_5 .content .left span strong {
    display: block;
}

.bank_main .section_1.type2 .list li {
    width: 50%;
    padding: 0px;
    border: none
}

.bank_main .section_1.type2 .list li .content {
    padding-top: 80px;
}

.site_main.type2 .section_1 {
    padding-bottom: 0;
}

.bggrey {
    background: #f8f8f8;
}

.block_bg_2 {
    background: #f8f8f8;
}

.block_bg_2 img {
    width: 100%;
}

.block_bg_3 {
    padding-top: 74px;
    padding-bottom: 60px;
}

.block_bg_3 .dec2 {
    text-align: center;
    width: 840px;
    padding: 0px 15px;
    max-width: 100%;
    margin: auto;
    padding-top: 45px;
    padding-bottom: 38px;
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
}

.block_bg_3 .dec {
    padding-top: 57px;
    padding-bottom: 14px;
    width: 970px;
    max-width: 100%;
    margin: auto;
}

.block_bg_3 .dec p:after {
    content: "";
    left: 0px;
    position: absolute;
    width: 14px;
    height: 14px;
    background: #BA0101;
    top: 7px;
}

.block_bg_3 .dec p {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 27px;
}

.block_bg_3 .imgbox {
}

.block_bg_3 .imgbox img {
    display: block;
    margin: auto;
    max-width: 100%;
}

.service_main .section_11.type2 .list li {
    width: 25%;
}

.service_main .section_11.type2 .list {
}

.service_main .section_11 .decr {
    text-align: center;
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
    padding-top: 67px;
}

.service_main .section_11.type2 .list li .dec {
    width: 190px;
}

.service_main .section_11 .list li .dec p strong {
    display: block;
}

.service_main .section_11.type2 .list li .title {
    font-size: 27px;
}

.bank_main .section_4 .imgbox img {
    max-width: 100%;
    margin: auto;
    display: block;
}

.pt3520 {
    padding-top: 35px;
    padding-bottom: 20px;
}

.bank_main .section_4 .dec {
    text-align: center;
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
}

.sg_section_model {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 70px;
    overflow: hidden;
}

.sg_section_model .imgbox {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 46px;
}

.sg_section_model .imgbox img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.sg_section_model .list {
    zoom:1;overflow: hidden;
    width: 951px;
    margin: auto;
    max-width: 95%;
    text-align: left;
}

.sg_section_model .list .item {
    float: left;
    width: 48%;
    padding-top: 22px;
}

.sg_section_model .list .item:nth-child(2) {
    width: 52%;
}

.sg_section_model .list .item p {
    font-size: 16px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    padding-left: 22px;
    background: url(../images/red.png) no-repeat left 11px;
    background-size: 10px;
}

.sg_section_model .list .item strong {
    color: #BA0101;
    font-weight: 500;
}

.service_main .section_11.type3 .list li {
    width: 20%;
}

.service_main .section_11.type3 .list li .dec {
    width: 200px;
}

.safe_main {
}

.safe_main .section_1:after {
    content: "";
    display: table;
    clear: both;
}

.safe_main .section_1 {
    padding-bottom: 70px;
}

.safe_main .section_1 li:nth-child(3n) {
    margin-right: 0px;
}

.safe_main .section_1 li {
    float: left;
    position: relative;
    overflow: hidden;
    margin-right: 14px;
    width: calc((100% - 28px)/3);
}

.safe_main .section_1 li .imgbox a {
    position: relative;
    display: block;
}

.safe_main .section_1 li .imgbox img {
    width: 100%;
    position: relative;
    z-index: 5;
}

.safe_main .section_1 li .title {
    font-size: 18px;
    font-family: ;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 56px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 8;
    width: 100%;
    text-align: center;
}

.safe_main .section_1 li a:after {
    content: "";
    position: absolute;
    z-index: 7;
    left: 0px;
    width: 100%;
    bottom: 0px;
    height: 56px;
    background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5));
}

.safe_main .section_2 {
    padding-top: 64px;
    padding-bottom: 70px;
    background: #F8F8F8;
}

.safe_main .section_2 .content {
    padding-top: 50px;
}

.safe_main .section_2 .left {
    width: 25.5%;
    float: left;
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 31px;
}

.safe_main .section_2 .right {
    float: right;
    width: 72%;
}

.safe_main .section_2 .right img {
    width: 100%;
}

.safe_main .section_3 {
    padding-bottom: 70px;
    padding-top: 60px;
}

.safe_main .section_3 .content {
    padding-top: 70px;
}

.safe_main .section_3 .left {
    float: left;
    width: 40.7%;
}

.safe_main .section_3 .left img {
    width: 100%;
}

.safe_main .section_3 .right {
    float: right;
    width: 58.4%;
}

.safe_main .section_3 .right p {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    margin-bottom: 8px;
    padding-left: 20px;
    background: url(../images/red.png) no-repeat left 10px;
    background-size: 10px;
}

.safe_main .section_3 .left p strong {
    color: #AF2025;
    font-weight: 500;
}

.service_main .section_11.type2 .list li .cir {
    width: 250px;
    height: 250px;
}

.service_main .section_11.type2.width200 .list li .dec {
    width: 200px;
}

.service_main .section_11.type2 .list li .dec {
    min-height: 200px;
    margin-bottom: 20px;
}

.service2_main {
}

.service2_main .section_1 {
    padding-top: 40px;
    padding-bottom: 70px;
}

.service2_main .section_1 .imgbox {
    padding-top: 52px;
    text-align: center;
}

.service2_main .section_1 .imgbox img {
    max-width: 100%;
    margin: auto;
}

.service2_main .section_2 {
    padding-bottom: 90px;
}

.service2_main .section_2 .list {
    padding-top: 89px;
}

.service2_main .section_2 .list li:last-child {
    margin-right: 0px;
}

.service2_main .section_2 .list li {
    float: left;
    margin-right: 17px;
    width: calc((100% - 54px)/4);
    position: relative;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    -o-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
    height: 294px;
}

.service2_main .section_2 .list li:nth-child(3) .dec {
    padding-left: 7%;
}

.service2_main .section_2 .list li .icon {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0px;
    top: -37px;
}

.service2_main .section_2 .list li .icon img {
    height: 74px;
}

.service2_main .section_2 .list li .dec {
    padding-top: 48px;
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
    padding-left: 26%;
}

.service2_main .section_2 .list li .dec p {
    padding-left: 20px;
    background: url(../images/red.png) no-repeat left 9px;
    background-size: 10px;
}

.service2_main .section_2 .list li .more {
    width: 139px;
    line-height: 40px;
    text-align: center;
    background: #B11E24;
    font-size: 20px;
    font-family: ;
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.18);
    position: absolute;
    bottom: -20px;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
}

.site_main .section_1 .dec.w100 {
    width: 100%;
}

.solution_main_2 {
}

.solution_main_2 .section_1 {
    padding-bottom: 60px;
}

.solution_main_2 .section_1 img {
    display: block;
    margin: auto;
    max-width: 100%;
}

.sg_section_model .dec {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    padding-top: 48px;
}

.service_main .section_11.fz30 .list li .title {
    font-size: 24px;
}

.solution_main_2 .section_3 {
    padding-top: 66px;
    padding-bottom: 64px;
}

.solution_main_2 .section_3 .list {
    padding-top: 68px;
}

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

.solution_main_2 .section_3 .list li {
    float: left;
    margin-right: 12px;
    margin-bottom: 20px;
    width: calc((100% - 72px)/7);
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.09);
}

.solution_main_2 .section_3 .list img {
    width: 100%;
}

.solution_main_2 .section_2 {
    background: #F8F8F8;
    padding-top: 98px;
    padding-bottom: 38px;
}

.solution_main_2 .section_2 ul {
}

.solution_main_2 .section_2 ul li {
    display: flex;
    align-items: center;
    padding: 10px 0px;
}

.solution_main_2 .section_2 ul li .left {
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #3C3C3C;
    line-height: 33px;
    width: 400px;
    text-align: right;
}

.solution_main_2 .section_2 ul li .left strong {
    color: #AF2025
}

.solution_main_2 .section_2 ul li .center {
    width: 90px;
    border-radius: 500px;
    font-size: 30px;
    font-family: D-DIN-Bold;
    font-weight: bold;
    color: #FFFFFF;
    background: #AF2025;
    text-align: center;
    line-height: 90px;
    margin-left: 68px;
    margin-right: 50px;
    position: relative;
    z-index: 4;
}

.solution_main_2 .section_2 ul li .right {
}

.solution_main_2 .section_2 ul li .text:last-child {
    padding-bottom: 0px;
}

.solution_main_2 .section_2 ul li .text {
    padding-bottom: 16px;
}

.solution_main_2 .section_2 ul li .text h2 {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    line-height: 28px;
    padding-bottom: 4px;
}

.solution_main_2 .section_2 ul li .text p {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 32px;
}

.solution_main_2 .section_2 ul {
    position: relative;
    z-index: 65;
}

.solution_main_2 .section_2 .list {
    position: relative;
}

.solution_main_2 .section_2 .list .line {
    position: absolute;
    height: 100%;
    top: 0px;
    width: 10px;
    top: 0;
    left: 38.8%;
}

.solution_main_2 .section_2 .list .line i {
    position: absolute;
}

.solution_main_2 .section_2 .list .line .i1 {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background: #AF2025;
    top: 0px;
    left: 4px;
}

.solution_main_2 .section_2 .list .line .i2 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 15px 8px;
    border-color: transparent transparent #af2025 transparent;
    position: absolute;
    top: 0;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
}

.solution_main_2 .section_2 .list .line .i3 {
    position: absolute;
    bottom: 0;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    width: 10px;
    height: 10px;
    border-radius: 500px;
    background: #af2025;
}

.solution_main_2 .section_2 .list li:last-child {
    padding-bottom: 90px;
}

.sg_section_model .dec.dec2 {
    padding-top: 18px;
    max-width: 974px;
    margin: auto;
}

.base_main_1 {
}

.base_main_1 .section_1 {
    text-align: center;
    padding-top: 37px;
    padding-bottom: 60px;
}

.base_main_1 .section_1 .list li:nth-child(2n) {
    float: right;
}

.base_main_1 .section_1 .list {
    padding-top: 49px;
}

.base_main_1 .section_1 .list li {
    float: left;
    height: 224px;
    background: rgba(175,32,37,1);
    width: calc((100% - 21px)/2);
}

.base_main_1 .section_1 .icon {
    padding-top: 29px;
}

.base_main_1 .section_1 .icon img {
    height: 58px;
}

.base_main_1 .section_1 .dec {
    margin: auto;
    margin-top: 11px;
    font-size: 14px;
    font-family: ;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 30px;
    width: 438px;
    max-width: 90%;
}

.sg_section_model .dec.max860 {
    max-width: 860px;
    margin: auto;
}

.sg_section_model .dec.pt18 {
    padding-top: 18px;
}

.base_main_1 .section_2 {
    padding-top: 60px;
    padding-bottom: 35px;
}

.base_main_1 .section_2 .item {
    position: relative;
    padding-left: 183px;
}

.base_main_1 .section_2 .left {
    width: 153px;
    height: 100%;
    background: #AF2025;
    border-radius: 4px;
    position: absolute;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 33px;
}

.base_main_1 .section_2 .model:last-child {
    margin-bottom}

.base_main_1 .section_2 .right {
}

.base_main_1 .section_2 .model {
    height: 103px;
    border-radius: 4px;
    border: 1px solid #AF2025;
    padding: 0px 28px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    justify-content: center;
}

.base_main_1 .section_2 .model h2 {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #AF2025;
    line-height: 23px;
}

.base_main_1 .section_2 .model p {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 23px;
    padding-top: 10px;
}

.base_main_1 .section_2 .list {
    padding-top: 40px;
}

.base_main_1 .section_3 {
    padding-top: 66px;
    padding-bottom: 16px;
}

.base_main_1 .section_3 .list {
    padding-top: 96px;
}

.base_main_1 .section_3 .list li:nth-child(2n) {
    float: right;
}

.base_main_1 .section_3 .list li {
    float: left;
    width: calc((100% - 20px)/2);
    margin-bottom: 44px;
    position: relative;
    height: 190px;
    box-shadow: 0px 2px 9px 0px rgba(0,0,0,0.11);
    border: 1px solid #AF2025;
}

.base_main_1 .section_3 .list li .title {
    width: 259px;
    line-height: 45px;
    background: #B70000;
    border-radius: 4px;
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    position: absolute;
    top: -22px;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    text-align: center;
}

.base_main_1 .section_3 .list li .dec {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 27px;
    padding-top: 53px;
    padding-left: 30px;
    padding-right: 30px;
}

.base_main_1 .section_4 img {
    max-width: 100%;
}

.base_main_1 .section_4 {
    text-align: center;
    padding: 64px 0px;
}

.base_main_1 .section_4_1 {
    padding-top: 66px;
    padding-bottom: 90px;
}

.base_main_1 .section_4_1 .list {
    padding: 0px 15px;
    width: 960px;
    padding-top: 68px;
    margin: auto;
    max-width: 100%;
}

.base_main_1 .section_4_1 li:nth-child(4n) {
    margin-right: 0px;
}

.base_main_1 .section_4_1 li {
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc((100% - 60px)/4);
    float: left;
    position: relative;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.09);
}

.base_main_1 .section_4_1 li img {
    max-width: 100%;
    max-height: 100%;
}

.base_main_1 .section_4_1:after {
    content: "";
    display: table;
    clear: both;
}

.base_main_2 {
}

.base_main_2 .section_1 {
    padding-top: 37px;
}

.base_main_2 .section_1 .content {
    padding-top: 39px;
    display: flex;
    padding-bottom: 60px;
    align-items: top;
}

.base_main_2 .section_1 .left {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: rgba(51,51,51,1);
    line-height: 30px;
    width: 358px;
}

.base_main_2 .section_1 .left strong {
    color: #AF2025;
}

.base_main_2 .section_1 .right {
    width: 650px;
    margin-left: 40px;
}

.base_main_2 .section_1 .right img {
    width: 100%;
}

.base_main_2 .section_2 {
}

.base_main_2 .section_2 {
}

.base_main_2 .section_2 {
    padding-top: 60px;
    padding-bottom: 35px;
}

.base_main_2 .section_2 .item {
    position: relative;
    padding-left: 183px;
}

.base_main_2 .section_2 .left {
    width: 153px;
    height: 100%;
    background: #AF2025;
    border-radius: 4px;
    position: absolute;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 24px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 33px;
}

.base_main_2 .section_2 .model:last-child {
    margin-bottom}

.base_main_2 .section_2 .right {
}

.base_main_2 .section_2 .model {
    height: 103px;
    border-radius: 4px;
    border: 1px solid #AF2025;
    padding: 0px 28px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
    justify-content: center;
}

.base_main_2 .section_2 .model h2 {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #AF2025;
    line-height: 23px;
}

.base_main_2 .section_2 .model p {
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 23px;
}

.base_main_2 .section_2 .list {
    padding-top: 40px;
}

.solution_main .section_6 .decr {
    text-align: center;
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 28px;
    padding-top: 34px;
}

.solution_main .section_6.type2 ul li .dec {
    height: 383px;
    padding-top: 0;
    padding-top: 15px;
}

.solution_main .section_6 ul li .dec h2 {
    padding-left: 20px;
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #B11E24;
    line-height: 32px;
}

.base_main_2 .section_3 {
    padding-top: 66px;
    padding-bottom: 66px;
}

.base_main_2 .section_3 .list {
    position: relative;
    margin-top: 42px;
    padding: 25px;
}

.base_main_2 .section_3 .list:after {
    content: "";
    display: table;
    clear: both;
}

.base_main_2 .section_3 .list i {
    width: 50px;
    height: 50px;
    background: #AF2025;
    position: absolute;
    z-index: 4;
}

.base_main_2 .section_3 .list i.i1 {
    left: 0px;
    bottom: 0px;
}

.base_main_2 .section_3 .list i.i2 {
    right: 0px;
    top: 0px;
}

.base_main_2 .section_3 .list ul {
}

.base_main_2 .section_3 .list ul li:nth-child(3) {
    margin-right: 0px;
}

.base_main_2 .section_3 .list ul li {
    float: left;
    width: calc((100% - 28px)/3);
    border: 1px solid rgba(175,32,37,1);
    text-align: center;
    padding-top: 68px;
    height: 486px;
    margin-right: 14px;
}

.base_main_2 .section_3 .list ul li .title {
    font-size: 20px;
    font-family: PingFangSC-Semibold,PingFang SC;
    font-weight: 600;
    color: #AF2025;
    height: 60px;
    line-height: 30px;
}

.base_main_2 .section_3 .list ul li .line {
    margin: 9px auto;
    width: 50px;
    height: 2px;
    background: rgba(175,32,37,1);
}

.base_main_2 .section_3 .list ul li .dec {
    font-size: 14px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    width: 260px;
    max-width: 90%;
    margin: auto;
    text-align: left;
}

.base_main_2 .section_3 .list ul li .dec p {
    padding-bottom: 20px;
}

.service2_main .section_1 .decr strong {
    color: rgba(175,32,37,1)
}

.service2_main .section_1 .decr {
    text-align: center;
    padding: 0px 15px;
    margin: auto;
    max-width: 100%;
    width: 868px;
    font-size: 16px;
    font-family: ;
    font-weight: 500;
    color: #333333;
    line-height: 30px;
    padding-top: 55px;
    padding-bottom: 22px;
}

.head .nav ul li .slide.slide2 .bd {
    padding-left: 0;
    float: left;
}

.head .nav ul li:last-child {
    position: static;
}

.head .nav ul li {
    position: static;
}

.head .nav ul li:nth-child(1) {
    position: relative;
}

.head .nav ul li:nth-child(5) {
    position: relative;
}

.head .nav ul li:nth-child(6) {
    position: relative;
}

.search_main {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 45px;
}

.search_main form {
    margin: 0px 43px;
    display: block;
    width: 335px;
    height: 40px;
    border-radius: 22px;
    border: 1px solid #666666;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding-right: 98px;
}

.search_main .words {
    font-size: 18px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    display: block;
    width: 100%;
    border: none;
    height: 100%;
    padding: 0px 26px;
}

.search_main .send {
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: 2px;
    background: none;
    border: none;
    width: 90px;
    height: 34px;
    background: url(../images/6_3ss@2x.png) no-repeat 17px center #B2282D;
    border-radius: 17px;
    background-size: 14px;
    border: none;
    font-size: 18px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    padding-left: 38px;
    text-align: left;
}

.tab_type1 {
    border-bottom: 1px solid #E3E3E9;
    background: #f8f8f8;
}

.tab_type1 ul {
    margin: 0px 43px;
}

.tab_type1 ul li {
    float: left;
}

.tab_type1 ul li a:after {
    height: 4px;
    background: #AF2025;
    content: "";
    bottom: 0px;
    position: absolute;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    width: 0px;
}

.tab_type1 ul li a {
    display: block;
    line-height: 52px;
    font-size: 18px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    color: #333333;
    margin-right: 50px;
    position: relative;
}

.tab_type1 ul li a:hover:after {
    width: 49px;
}

.tab_type1 ul li a.current:after {
    width: 49px;
}

.tab_type1 ul li a:hover,.tab_type1 ul li a.current {
    color: #AF2025
}

.mobile-inner-nav li .slide .slide2 {
    margin-bottom: 20px;
}

.mobile-inner-nav li .slide .h70 {
    display: none;
}

.mobile-inner-nav li .slide * {
    font-size: 15px;
    color: #fff;
    display: block;
    text-indent: 2em;
    line-height: 30px;
}

.mobile-inner-nav li .slide {
}

.mobile-inner-nav li .slide .model li {
    animation-delay: 0s !important;
}

.head .nav ul li .slide.width2 .hd {
    width: 150px;
}

.head .nav ul li .slide.width2 .bd {
    width: calc(100% - 150px);
}

.join_main .section_2 .hd:after {
    content: "";
    display: table;
    clear: both;
}

.join_main .section_2 .hd li {
    float: left;
    width: calc((100% - 80px)/5);
    margin-right: 20px;
    margin-bottom: 20px;
}

.join_main .section_2 .hd li:nth-child(5n) {
    margin-right: 0px;
}

.bank_main .section_1 .list.height li .content {
    height: 300px;
}

.modelcontent {
    position: relative;
    z-index: 5;
    background: #fff;
    /* padding-bottom:108px;*/
    overflow-x: hidden;
}

.head .nav ul li .slide.width2 .hd a:nth-child(1),.head .nav ul li .slide.width2 .hd a:nth-child(2),.head .nav ul li .slide.width2 .hd a:nth-child(3) {
    background: url(../images/jcjg_icon@2x.png) no-repeat left center;
    background-size: 22px;
}

.head .nav ul li .slide.width2 .hd a:nth-child(4) {
    background: url(../images/tcy_icon@2x.png) no-repeat left center;
    background-size: 22px;
}

.h400.he.h570 .base_text_2 .dec {
    min-height: 570px;
}

.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

.bank_main .section_4.type3 .imgbox img {
    display: inline-block !important;
}

.videowrap {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.videowrap.current .content {
    top: 50%;
    opacity: 1;
}

.videowrap .content {
    position: absolute;
    top: 48%;
    opacity: 0;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 4px;
    background: #fff;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.videowrap .content video {
    display: block;
    height: 100%;
    width: width:calc(100% - 80px);
    margin: 0px auto;
    object-fit: contain;
}

.videowrap .content .close {
    position: absolute;
    right: 0px;
    cursor: pointer;
    top: 0px;
    width: 30px;
    height: 30px;
    z-index: 3333;
    background: url(../images/close-white.png) no-repeat center center;
    background-size: 20px;
}

.ani {
    opacity: 0;
    visibility: hidden;
}

.newslist_2 {
    position: relative;
    z-index: 555;
}

.banner .imgcontent .href {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.promain .section_3 .list li .ani {
    opacity: 1;
    visibility: visible;
}

.index .section_3 .map .item.item1 {
    left: 73.1%;
    top: 25.4%;
}

.footer_t2 .right .infors p.icon1 {
    display: none
}

.search_content {
    float: left;
    position: relative;
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-top: 25px;
}

.search_content .words {
    position: absolute;
    top: 0px;
    right: 0;
    border: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 30px;
    height: 30px;
    padding-right: 30px;
    width: 148px;
    padding-left: 12px;
    visibility: hidden;
    z-index: -1;
    opacity: 0;
}

.search_content .send {
    background: none;
    background: url(../images/3_1sousuo.png) center no-repeat;
    cursor: pointer;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 4;
}

.search_content:hover .words {
    visibility: visible;
    opacity: 1;
    z-index: 4;
}

.sidemenu a:nth-child(2) {
    display: none
}

.index .section_3 .map .item.item2 {
    left: 11.4%;
    top: 35.4%;
}

.index .section_3 .map .item.item3 {
    left: 17.6%;
    top: 34.1%;
}

.index .section_3 .map .item.item4 {
    left: 22.78%;
    top: 34.3%;
}

.index .section_3 .map .item.item5_1 {
    left: 43%;
    top: 33.9%;
}

.index .section_3 .map .item.item01 .slide,.index .section_3 .map .item.item5_3 .slide {
    bottom: 52px;
}

.index .section_3 .map .item.item5_3 {
    left: 42%;
    top: 22%;
}

.index .section_3 .map .item.item5 {
    left: 45.2%;
    top: 18%;
}

.index .section_3 .map .item.item6 {
    left: 46%;
    top: 27.4%;
}

.index .section_3 .map .item.item7 {
    left: 49.3%;
    top: 19.5%;
}

.index .section_3 .map .item.item8 {
    left: 50%;
    top: 29.9%;
}

.index .section_3 .map .item.item9 {
    top: ;
    left: 58.2%;
    top: 31.6%;
}

.index .section_3 .map .item.item10 {
    left: 68.9%;
    top: 42.6%;
}

.index .section_3 .map .item.item11 {
    left: 69.8%;
    top: 50.834%;
}

.index .section_3 .map .item.item12 {
    left: 73.1%;
    top: 53.4%;
}

#type1 .swiper-slide {
    width: calc((100% - 55px)/4);
}

#type1 .swiper-slide:nth-child(21) {
    width: calc((100% - 32px)/3);
}

#type1 .swiper-slide:nth-child(22) {
    width: calc((100% - 32px)/3);
}

#type1 .swiper-slide:nth-child(23) {
    width: calc((100% - 32px)/3);
}

.listtype.current .swiper-button-prev,.listtype.current .swiper-button-next {
    opacity: 0;
}

.listtype.current .swiper-pagination {
    opacity: 0;
}

.listtype {
    background: #F8F8F8;
    padding-top: 26px;
    padding-bottom: 82px;
}

.listtype .list {
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
}

.listtype .swiper-container {
    padding-top: 70px;
    padding-bottom: 50px;
}

.listtype1_1.current .swiper-button-prev,.listtype.current .swiper-button-next {
    opacity: 0;
}

.listtype1_1.current .swiper-pagination {
    opacity: 0;
}

.listtype1_1 {
    background: #F8F8F8;
    /* padding-top:26px;*/
    padding-bottom: 82px;
}

.listtype1_1 .list {
    position: relative;
    padding-left: 100px;
    padding-right: 100px;
}

.listtype1_1 .swiper-container {
    padding-top: 70px;
    padding-bottom: 50px;
}

.mih1 .base_text_2 .dec {
    min-height: 230px;
}

.banner .imgcontent .textmodal .link a.play {
    background: rgba(255,255,255,0.35);
    border: none;
    height: 42px;
    line-height: 42px;
}

.banner .imgcontent .textmodal .link a.play2 {
    background: rgba(255,255,255,0.35);
    border: none;
    height: 42px;
    line-height: 42px;
}

.index .section_3 .map .item .slide {
    visibility: visible;
    opacity: 1;
    bottom: 66px;
    z-index: 444;
}

.index .section_3 .map .item .slide {
    width: 97px;
}

.index .section_3 .map .item.item1 .slide {
    width: 343px;
}

.index .section_3 .map .item.item6,.index .section_3 .map .item.item3 {
    z-index: 666;
}

.index .section_3 .map .item.item7 {
    z-index: 556;
}

.listtype .swiper-button-prev,.listtype1_1 .swiper-button-prev {
    top: 48px;
}

.listtype .swiper-button-next,.listtype1_1 .swiper-button-next {
    top: 48px;
}

.search_content .words:focus,.search_content:hover .words {
    border-color: #af2126
}

.about_main2 .section_3 .list li .left img {
    height: auto;
}

.index .section_3 .map .item.item1 .country {
    font-size: 20px;
    font-family: ;
    height: 51px;
    font-weight: 500;
    color: #AF2025;
}

.base_text_1 {
    position: relative;
}

.base_text_1:after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    background: #AF2025
}

.bank_main .section_5 .content .left,.base_text_1 .content .left {
    box-shadow: 0px 2px 10px rgba(0,0,0,.13);
}

.index .section_3 .map .item.item1 .slide:after {
    border-color: #fff transparent transparent transparent;
}

.index .section_3 .map .item .slide:after {
    border-color: #efd2d3 transparent transparent transparent;
}

.index .section_3 .map .item.item5_1 .slide {
    bottom: 55px;
}

.index .section_3 .map .item .slide {
    bottom: -23px;
}

.index .section_3 .map .item.item1 .slide {
    bottom: 66px;
}

.index .section_3 .map .item.item1 .slide:after {
    display: block;
}

.index .section_3 .map .item .country {
    background: none;
    padding: 0px;
    background: rgba(255,255,255,0.7);
}

.index .section_3 .map .item .slide {
    background: none;
    box-shadow: none
}

.index .section_3 .map .item.item1 .country {
    background: rgba(175,32,37,0.2);
}

.index .section_3 .map .item.item1 .slide {
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.17);
}

.index .section_3 .map .item.item1 {
    z-index: 9999
}

.index .section_3 .map .item.item6 .slide {
    bottom: 0
}

.index .section_3 .map .item.item5 .slide {
    bottom: 57px;
}

.index .section_3 .map .item.item8 .slide {
    bottom: 46px;
}

.index .section_3 .map .item.item7 .slide {
    bottom: 51px;
}

.index .section_3 .map .item.item10 .slide {
    bottom: 46px;
}

.index .section_3 .map .item.item11 .slide {
    bottom: 46px;
}

.index .section_3 .map .item.item12 .slide {
    bottom: 46px;
}

.index .section_3 .map .item.item9 .slide {
    bottom: 55px;
}

.index .section_3 .map .item .title {
    font-size: 14px;
    font-family: PingFangSC-Medium,PingFang SC;
    font-weight: 500;
    color: #AF2025;
    line-height: 33px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-family: ;
    font-weight: 500;
    color: #AF2025;
    line-height: 17px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px 0;
    background: none;
    padding: 0px;
    background: rgba(255,255,255,0.7);
    position: absolute;
    width: 100%;
    left: 0;
    top: -14px;
}

.index .section_3 .map .item.item1 .slide {
    bottom: 40px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.index .section_3 .map .item.item1:hover .slide {
    bottom: 66px;
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.index .section_3 .map .item.item1:hover .title {
    -o-transform: translate(0%,10px);
    -webkit-transform: translate(0%,10px);
    -moz-transform: translate(0%,10px);
    -ms-transform: translate(0%,10px);
    transform: translate(0%,10px);
    opacity: 0;
    z-index: -1;
}

.index .section_6 .content {
    overflow: hidden;
}

.head .nav ul li .slide .model {
    display: none;
}

.head .nav ul li .slide .model li a.currentall {
    color: #af2126
}

.head .nav ul li .slide .model li a.currentall * {
    color: #af2126
}

.head .nav ul li:last-child .model {
    display: block;
}

.mobile-inner-nav li .slide.slide2 .bd {
    padding-left: 0;
}

.sidemenu i {
    position: absolute;
    top: 50%;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    left: -20px;
    width: 20px;
    height: 50px;
    background: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.18);
    cursor: pointer;
    display: none;
}

.join_main .section_2 .hd li:nth-child(2n) .cont {
    left: auto;
    right: 0px;
}

.join_main .section_2 .hd .cont {
    background: #b2282d;
    color: #fff;
    padding: 12px;
    left: 0px;
    top: 155px;
    z-index: 6;
    width: calc(100vw - 40px);
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    display: none;
}

.join_main .section_2 .hd .cont .title2 {
    font-size: 20px;
    font-weight: bold;
}

.join_main .section_2 .hd .cont .pos2 {
    font-size: 15px;
    padding: 10px 0px;
}

.join_main .section_2 .hd .cont .list2 {
}

.join_main .section_2 .hd .cont .contentr {
    padding-bottom: 15px;
}

.join_main .section_2 .hd .cont .name {
    padding-bottom: 10px;
}

.join_main .section_2 .hd .cont .text {
}

.bank_main .section_5 .content,.base_text_1 .content {
    z-index: 20;
}

.index .section_1 .list .pclink {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.index .section_1 .list .desc span a {
    color: #fff
}

.mobile-inner-nav li .slide .model li {
    width: 100%;
    margin: 0px;
    margin-bottom: 10px;
}

.mobile-inner-nav > ul > li:nth-child(7) .slide .model li {
    width: 33.333%;
}

.mobile-inner-nav > ul > li:nth-child(7) .slide.slide2 .bd {
    width: 100%;
}

.index .section_3 .titlemodel {
    position: relative;
    z-index: 5;
}

.index .section_3 .map {
    /* margin-top:-48px;*/
}

.join_main .section_2 .bd .model:nth-child(3) .content:last-child {
    display: none
}

.join_main .section_2 .bd .model:nth-child(4) .content:last-child {
    display: none
}

.chat_main .section_2 .list_type_2 {
    padding-top: 90px;
}

.banner .img3 .imgcontent .textmodal .h3tit {
    margin-bottom: 20px;
}

.banner .imgcontent .textmodal .h3tit span {
    display: block
}

.index .section_3 .map .item.item3 .slide {
    bottom: 5px;
}

.index .section_3 .map .item .slide {
    /* bottom:0;*/
}

.index .section_3 .map .item.item4_1 .slide,.index .section_3 .map .item.item2 .slide {
    bottom: -30px;
}

.index .section_3 .map .item.item05 .slide {
    bottom: -10px
}

.index .section_3 .map .item.item02 .slide,.index .section_3 .map .item.item03 .slide {
    bottom: -17px;
}

.index .section_3 .map .item.item4_1 {
    left: 14.58%;
    top: 39.5%;
    z-index: 677;
}

.index .section_3 .map .item.item5_2 {
    left: 40.1%;
    top: 17.8%;
}

.index .section_3 .map .item.item5_2 .slide {
    bottom: 55px;
}

.index .section_3 .map .item.item6_1 .slide {
    bottom: auto;
    left: -34px;
    bottom: 21px;
}

.index .section_3 .map .item.item6_1 {
    left: 47.4%;
    top: 23.6%;
}

.index .section_3 .map .item.item5_1 .slide {
    bottom: 55px;
}

.index .section_3 .map .item.item4_1 .slide {
    bottom: -10px;
    width: 60px;
}

.index .section_3 .map .item.item9_1 {
    left: 57.4%;
    top: 39.5%;
}

.index .section_3 .map .item.item9_1 .slide {
    bottom: -10px;
}

.index .section_3 .map .item.item10_1 {
    left: 62.1%;
    top: 37.8%;
}

.index .section_3 .map .item.item10_1 .slide {
    bottom: 46px;
}

.index .section_3 .map .item.item01 {
    left: 11.5%;
    top: 25%;
}

.index .section_3 .map .item.item02 {
    left: 17%;
    top: 20%;
}

.index .section_3 .map .item.item03 {
    left: 21.3%;
    top: 22%;
}

.index .section_3 .map .item.item04 {
    left: 20%;
    top: 34%;
}

.index .section_3 .map .item.item05 {
    left: 24%;
    top: 41%;
}

.index .section_3 .map .item.item06 .slide {
    bottom: 5px;
}

.index .section_3 .map .item.item06 {
    top: 23%;
    left: 49.4%;
}

.index .section_3 .map .item.item07 {
    left: 54.8%;
    top: 30%;
}

.index .section_3 .map .item.itemagt {
    left: 20.5%;
    top: 68%;
}

.index .section_3 .map .item.itemrs {
    left: 43.9%;
    top: 21%;
}

.index .section_3 .map .item.itemrs .slide {
    bottom: -13px;
}

.lans {
    color: #333;
    font-size: 12px;
    line-height: 80px;
    font-size: 12px;
    font-family: PingFangSC-Regular,PingFang SC;
    font-weight: 400;
    float: left;
}

.lans a {
    display: inline-block;
    color: #333;
    font-size: 12px;
}

/*.mobile-inner-nav > ul > li:nth-child(7) .slide .model li:nth-child(1),*/
.mobile-inner-nav li:nth-child(2) .slide .hd a:last-child,.head .nav ul li:nth-child(2) .slide .hd a:last-child {
    display: none
}

/*.head .nav ul li:last-child .slide .model li:first-child {display:none}
*/
.head .nav ul li .slide .items:before,.head .nav ul li .slide .items:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background: #efcfd0;
    top: 0px;
}

.head .nav ul li .slide .items:before {
    left: 33.333%
}

.head .nav ul li .slide .items:after {
    left: 66.66%
}

.head .nav ul li .slide .items {
    zoom:1;overflow: hidden;
}

.head .nav ul li .slide .item:nth-child(3) {
    border-right: none;
}

.head .nav ul li .slide .item:nth-child(1) {
    padding-left: 0px;
}

.head .nav ul li .slide .item {
    float: left;
    width: 33.3333%;
    /* padding-top:30px;*/
    text-align: left;
    padding-left: 4%;
    padding-right: 4%;
    /* min-height:670px;*/
}

.head .nav ul li .slide .item .h3tit {
    font-size: 18px;
    color: #AF2025;
    font-weight: normal;
}

.head .nav ul li .slide .item .slide2 {
    padding-top: 19px;
}

.head .nav ul li .slide .item .slide2 a {
    line-height: 35px;
    display: block;
    font-size: 16px;
    color: #464646;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.head .nav ul li .slide .item .slide2 a:hover {
    color: #AF2025;
}

.h70 {
    height: 50px;
}

.checkcenter {
    text-align: center;
    padding-bottom: 30px;
}

.checkItem span {
    padding-left: 24px;
}

.checkItem a {
    color: #AF2025;
}

.checkItem {
    position: relative;
    display: inline-block;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #404952;
    line-height: 22px;
}

.checkItem input[type=radio],.checkItem input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 2;
}

.checkItem input[type=radio]+label,.checkItem input[type=checkbox]+label {
    cursor: pointer;
}

.checkItem input[type=radio]+label::before,.checkItem input[type=radio]+label::after,.checkItem input[type=checkbox]+label::before,.checkItem input[type=checkbox]+label::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -7px;
    width: 16px;
    height: 16px;
    width: 16px;
    height: 16px;
    background: #FFFFFF;
}

.checkItem input[type=radio]+label::before,.checkItem input[type=checkbox]+label::before {
    border: 1px solid #DEDEDE;
    background: #fff;
    /* box-shadow:inset 0 1px 1px rgba(0,0,0,.08);*/
}

.checkItem input[type=radio]+label::before,.checkItem input[type=radio]+label::after {
    border-radius: 50%;
}

.checkItem input[type=radio]:checked+label::before,.checkItem input[type=radio]:checked+label::after,.checkItem input[type=checkbox]:checked+label::before,.checkItem input[type=checkbox]:checked+label::after {
    -webkit-animation: cd-bounce .3s;
    -moz-animation: cd-bounce .3s;
    animation: cd-bounce .3s;
}

.checkItem input[type=radio]+label::after,.checkItem input[type=checkbox]+label::after {
    background-color: #F29700;
    background-position: center center;
    background-repeat: no-repeat;
    display: none;
    background: url(../images/tongyi@3x.png) no-repeat center center #AF2025;
    background-size: 85%;
}

.checkItem input[type=radio]+label::after {
}

.checkItem input[type=radio]:checked+label::after,.checkItem input[type=checkbox]:checked+label::after {
    display: block;
}

@-webkit-keyframes cd-bounce {
    0%,100% {
        -webkit-transform: scale(1)
    }

    50% {
        -webkit-transform: scale(.8)
    }
}

@-moz-keyframes cd-bounce {
    0%,100% {
        -moz-transform: scale(1)
    }

    50% {
        -moz-transform: scale(.8)
    }
}

@keyframes cd-bounce {
    0%,100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(.8);
        -moz-transform: scale(.8);
        -ms-transform: scale(.8);
        -o-transform: scale(.8);
        transform: scale(.8)
    }
}

.checkItem label:after,.checkItem label:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.alertmodel {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(51,51,51,0.15);
    z-index: 5555;
}

.alertmodel .shadow {
}

.alertmodel .center {
    width: 720px;
    height: 600px;
    background: #FFFFFF;
    box-shadow: 0px 24px 24px 0px rgba(0,0,0,0.07),inset 0px 1px 1px 0px rgba(0,0,0,0.06);
    border-radius: 6px;
    max-width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    overflow: hidden;
    padding-left: 36px;
    padding-top: 30px;
    padding-right: 28px;
}

.alertmodel .title {
    font-family: PingFangSC,PingFang SC;
    font-weight: 600;
    font-size: 18px;
    color: #3A3A3A;
    padding-bottom: 15px;
}

.alertmodel p {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #3A3A3A;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    padding-bottom: 30px;
}

.alertmodel .ovg {
    height: 300px;
    overflow: auto;
    padding-right: 26px;
    height: 451px;
}

.alertmodel b {
    display: block;
}

.alertmodel br {
}

.alertmodel .close {
    width: 22px;
    height: 22px;
    top: 26px;
    right: 26px;
    position: absolute;
    background: url(../images/guanbi@3x.png) no-repeat center center;
    background-size: 100%;
    cursor: pointer;
}

.alertmodel .send {
    width: 114px;
    height: 32px;
    background: #B2282D;
    display: block;
    margin: auto;
    margin-top: 16px;
    border: none;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    color: #FFFFFF;
}

.alertmodel p:last-child {
    padding-bottom: 0;
}

.alertmodel .ovg::-webkit-scrollbar {
    /*            ʽ*/
    width: 10px;
    /* ߿ ֱ  Ӧ           ĳߴ */
    height: 1px;
}

.alertmodel .ovg::-webkit-scrollbar-thumb {
    /*          С    */
    border-radius: 10px;
    background: #D8D8D8;
}

.alertmodel .ovg::-webkit-scrollbar-track {
    /*            */
    border-radius: 10px;
    background: rgb(216 216 216 / 33%)
}

.alertmodel {
    display: none;
}

.channebanner.type2 {
    height: 500px;
}

.channebanner.type2 .center .title {
    color: #000000;
}

.channebanner.type2 .center .title2 {
    font-family: SourceHanSansCN,SourceHanSansCN;
    font-weight: 400;
    font-size: 50px;
    color: #000000;
    line-height: 74px;
    text-align: center;
    font-style: normal;
    padding-top: 7px;
}

.channebanner.type2 .center .dec {
    padding-top: 29px;
    color: #000;
}

.joinMain {
    margin-top: 580px;
    position: relative;
    z-index: 5;
    background: #fff;
}

.joinMain .block1 {
    padding-top: 100px;
    padding-bottom: 90px;
}

.joinMain .wrap4:after {
    content: "";
    display: table;
    clear: both;
}

.wrap4 {
    /* zoom:1;*/
    /* overflow:hidden;*/
    width: 1015px;
    margin: auto;
    max-width: 90%;
}

.joinMain .titlemodel3 {
    font-family: PingFangSC,PingFang SC;
    font-weight: 500;
    font-size: 30px;
    color: #000000;
}

.joinMain .block1 .wrap4 .list {
    padding-top: 32px;
}

.joinMain .block1 .wrap4 .list span:nth-child(5n) {
    margin-right: 0px;
}

.joinMain .block1 .wrap4 .list span {
    line-height: 40px;
    background: #AD1F24;
    border-radius: 8px;
    float: left;
    margin-right: 11px;
    margin-bottom: 11px;
    width: calc((100% - 44px)/5);
    font-family: SourceHanSansCN,SourceHanSansCN;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}

.joinMain .block2 {
    background: #F5F5F5;
    padding: 58px 0px;
}

.joinMain .block2 .wrap4 {
}

.joinMain .block2 .wrap4 .titlemodel3 {
}

.joinMain .block2 .wrap4 .list {
    padding-top: 30px;
}

.joinMain .block2 .wrap4 .list .item:last-child {
    margin-right: 0px;
}

.joinMain .block2 .wrap4 .list .item {
    float: left;
    margin-right: 10px;
    width: calc((100% - 40px)/5);
}

.joinMain .block2 .wrap4 .list .item .title {
    line-height: 52px;
    background: #AD1F24;
    text-align: center;
    font-family: SourceHanSansCN,SourceHanSansCN;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
}

.joinMain .block2 .wrap4 .list .item .dec span {
}

.joinMain .block2 .wrap4 .list .item .dec {
    font-family: SourceHanSansCN,SourceHanSansCN;
    font-weight: 400;
    font-size: 14px;
    color: #595757;
    line-height: 22px;
    text-align: justify;
    font-style: normal;
    background: #fff;
    height: 115px;
    padding: 12px 10px;
    word-break: break-all;
}

.joinMain .block2.type2 {
    background: #fff;
    padding-top: 62px;
    padding-bottom: 91px;
}

.joinMain .block2.type2 .wrap4 {
}

.joinMain .block2.type2 .wrap4 .titlemodel3 {
}

.joinMain .block2.type2 .wrap4 .list {
}

.joinMain .block2.type2 .wrap4 .list .item {
    width: calc((100% - 30px) / 4);
}

.joinMain .block2.type2 .wrap4 .list .item .title {
}

.joinMain .block2.type2 .wrap4 .list .item .dec {
    background: #F5F5F5;
    text-align: center;
    padding-top: 18px;
    padding-left: 32px;
    padding-right: 32px;
}

.joinMain .block3 {
    background: #F8F8F8;
    padding-top: 60px;
    padding-bottom: 74px;
}

.joinMain .block3 .wrap4 {
}

.joinMain .block3 .wrap4 .content {
    width: 796px;
    background: #FFFFFF;
    box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.14);
    max-width: 90%;
    margin: auto;
    padding: 0px 67px;
}

.joinMain .block3 .wrap4 .content .title {
    font-family: PingFangSC,PingFang SC;
    font-weight: 500;
    font-size: 30px;
    color: #333333;
    line-height: 42px;
    padding-top: 43px;
    padding-bottom: 3px;
    text-align: center;
}

.joinMain .block3 .wrap4 .content .dec {
    font-family: SourceHanSansCN,SourceHanSansCN;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    padding-bottom: 20px;
    text-align: center;
}

.joinMain .block3 .wrap4 .content .formtable {
}

.joinMain .block3 .wrap4 .content .formtable form {
}

.joinMain .block3 .wrap4 .content .formtable form .model {
    margin-bottom: 10px;
    position: relative;
    zoom:1;overflow: hidden;
}

.joinMain .block3 .wrap4 .content .formtable form .model input.words {
    height: 43px;
    background: #F2F4F3;
    width: 100%;
    border: none;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    padding: 0px 10px;
}

.joinMain .block3 .wrap4 .content .formtable form .model textarea {
    height: 200px;
    background: #F2F4F3;
    resize: none;
    width: 100%;
    border: none;
    padding: 10px;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
}

.joinMain .block3 .wrap4 .content .formtable form .model input.words2 {
    float: left;
    width: calc(100% - 94px);
}

.joinMain .block3 .wrap4 .content .formtable form .model img.code {
    width: 85px;
    height: 43px;
    float: right;
    cursor: pointer;
}

.joinMain .block3 .wrap4 .content .formtable form .sendAgreed {
    padding-top: 10px;
    display: flex;
    align-items: center;
    padding-bottom: 33px;
}

.joinMain .block3 .wrap4 .content .formtable form .sendAgreed button.send {
    width: 100px;
    height: 43px;
    background: #B2282D;
    border: none;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.joinMain .block3 .wrap4 .content .formtable form .sendAgreed .checkItem {
    margin-left: 18px;
}

.joinMain .block3 .wrap4 .content .formtable form .sendAgreed .checkItem input[type="checkbox"] {
}

.joinMain .block3 .wrap4 .content .formtable form .sendAgreed .checkItem label {
}

.joinMain .block3 .wrap4 .content .formtable form .sendAgreed .checkItem label span {
}

.joinMain .block3 .wrap4 .content .formtable form .sendAgreed .checkItem label span a {
}

.footer2 {
    background: rgb(200 200 200);
    position: relative;
    z-index: 5;
}

.footer2 .wrap4 {
}

.footer2 .wrap4 .title {
    font-family: SourceHanSansCN,SourceHanSansCN;
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    padding-top: 46px;
}

.footer2 .wrap4 .dec {
    font-family: SourceHanSansCN,SourceHanSansCN;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 46px;
}

.footer2 .wrap4 .dec p {
    padding-bottom: 14px;
}



.joinMain .block3 .wrap4 .content .formtable form .model textarea::-webkit-input-placeholder{
          color:rgba(64, 73, 82, .5) !important;
        }
        .joinMain .block3 .wrap4 .content .formtable form .model textarea::-moz-placeholder{   /* Mozilla Firefox 19+ */
          color:rgba(64, 73, 82, .5) !important;
        }
        .joinMain .block3 .wrap4 .content .formtable form .model textarea:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
           color:rgba(64, 73, 82, .5) !important;
        }
        .joinMain .block3 .wrap4 .content .formtable form .model textarea:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
            color:rgba(64, 73, 82, .5) !important;
        }



.joinMain .block3 .wrap4 .content .formtable form .model input.words::-webkit-input-placeholder{
            color:rgba(64, 73, 82, .5) !important;
        }
.joinMain .block3 .wrap4 .content .formtable form .model input.words::-moz-placeholder{   /* Mozilla Firefox 19+ */
            color:rgba(64, 73, 82, .5) !important;
        }
.joinMain .block3 .wrap4 .content .formtable form .model input.words:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
            color:rgba(64, 73, 82, .5) !important;
        }
.joinMain .block3 .wrap4 .content .formtable form .model input.words:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
            color:rgba(64, 73, 82, .5) !important;
        }