.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    background-color: rgb(255,255,255);
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 33;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: 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);
    }
}

.mobile-inner-nav {
    overflow: auto;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224,27%,35%,.6);
    width: 100%;
    position: absolute;
    top: 50px;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.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: 50px;
    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;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,40px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    font-family: PingFangSC-Regular,PingFang SC,"Microsoft YaHei","Arial";
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

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;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

body.current .head .wrap .bg {
    background: #fff;
    box-shadow: 0px 3px 12px 6px rgba(0,0,0,0.03);
}

.head {
    padding-top: calc(35/1920*100vw);
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 5555;
}

.head .wrap .bg {
    height: calc(100/1920*100vw);
    background: rgb(255 255 255 / 80%);
    border-radius: calc(50/1920*100vw) 0 calc(50/1920*100vw) 0;
}

.wrap {
    padding: 0 calc(95/1920*100vw);
}

.head .wrap .logo {
    padding-left: calc(46/1920*100vw);
    padding-top: calc(24/1920*100vw);
    float: left;
}

.head .wrap .logo a {
}

.head .wrap .logo img {
    height: calc(52/1920*100vw);
}

.head .wrap .right {
    float: right;
}

.head .wrap .right .nav {
    float: left;
}

.head .wrap .right .nav ul {
    float: left;
}

.head .wrap .right .nav ul li {
    float: left;
    position: relative;
    margin-left: calc(20/1920*100vw);
}

.head .wrap .right .nav ul li .h2tit {
}

.head .wrap .right .nav ul li:hover .h2tit a:after,.head .wrap .right .nav ul li.current .h2tit a:after {
    width: 100%;
}

.head .wrap .right .nav ul li:hover .h2tit a,.head .wrap .right .nav ul li.current .h2tit a {
    color: #FB6F12;
}

.head .wrap .right .nav ul li .h2tit a:after {
    height: 7px;
    background: #FB6F12;
    width: 100%;
    content: "";
    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%);
    width: 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;
}

.head .wrap .right .nav ul li .h2tit a {
    position: relative;
    display: block;
    line-height: calc(100/1920*100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #272727;
    padding: 0 calc(10/1920*100vw);
}

.head .wrap .right .nav ul li:hover .slide {
    top: calc(100/1920*100vw);
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.head .wrap .right .nav ul li .slide {
    background: rgb(255 255 255 / 90%);
    position: absolute;
    border-radius: 0 0 calc(50/1920*100vw) calc(50/1920*100vw);
    padding: calc(33/1920*100vw);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: calc(60/1920*100vw);
    left: 0;
    top: calc(120/1920*100vw);
    display: flex;
}

.head .wrap .right .nav ul li .slide .imgbox {
}

.head .wrap .right .nav ul li .slide .imgbox a {
}

.head .wrap .right .nav ul li .slide .imgbox img {
    width: calc(185/1920*100vw);
    height: calc(146/1920*100vw);
    float: left;
    object-fit: cover;
}

.head .wrap .right .nav ul li .slide .ris {
    float: left;
    padding-left: calc(67/1920*100vw);
    margin-left: calc(30/1920*100vw);
    border-left: 1px solid #DDDDDD;
    width: calc(100% - 215/1920*100vw);
}

.head .wrap .right .nav ul li .slide .ris a {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #272727;
    float: left;
    width: 25%;
    margin-bottom: calc(24/1920*100vw);
}

.head .wrap .right .nav ul li .slide.w1 {
    width: calc(836/1920*100vw);
}

.head .wrap .right .nav ul li .slide.w2 {
    width: calc(636/1920*100vw);
}

.head .wrap .right .nav ul li .slide.w2 .ris a {
    width: 50%;
}

.head .wrap .right .nav ul li .slide.w3 {
    width: calc(436/1920*100vw);
}

.head .wrap .right .nav ul li .slide.w3 .ris a {
    width: 100%;
}

.head .wrap .right .nav ul li .slide2 {
}

.head .wrap .right .nav ul li .slide2 .imgbox {
}

.head .wrap .right .nav ul li .slide2 .imgbox a {
}

.head .wrap .right .nav ul li .slide2 .imgbox img {
}

.head .wrap .right .nav ul li .slide2 .ris {
}

.head .wrap .right .nav ul li .slide2 .ris a {
}

.head .wrap .right .lans {
    margin-left: calc(156/1920*100vw);
    position: relative;
    float: left;
}

.head .wrap .right .lans .h2tit {
    height: calc(100/1920*100vw);
    background: url(../images/lan.png) no-repeat center center;
    background-size: 100%;
    width: calc(20/1920*100vw);
    cursor: pointer;
}

.head .wrap .right .lans dl {
    position: absolute;
    left: calc(-35/1920*100vw);
    width: calc(90/1920*100vw);
    text-align: center;
    background: #fff;
    border-radius: 0 0 calc(10/1920*100vw) calc(10/1920*100vw);
    z-index: 5;
    padding: calc(5/1920*100vw) 0;
}

.head .wrap .right .lans dl dd {
}

.head .wrap .right .lans dl dd a {
    display: block;
    color: #000;
    line-height: 3;
}

.head .wrap .right .lans dl dd + dd {
}

.head .wrap .right .lans dl dd + dd a {
}

.head .wrap .right .line {
    float: left;
    width: calc(1/1920*100vw);
    height: calc(30/1920*100vw);
    background: #AEAEAE;
    margin-top: calc(36/1920*100vw);
    margin-left: calc(23/1920*100vw);
    margin-right: calc(25/1920*100vw);
}

.head .wrap .right .tel {
    margin-right: calc(29/1920*100vw);
    font-family: Arial;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #FF761D;
    float: left;
    line-height: calc(100/1920*100vw);
    padding-left: calc(34/1920*100vw);
    background: url(../images/tel.png) no-repeat left center;
    background-size: calc(17/1920*100vw);
}

.head .wrap .right .switch.current {
    opacity: 0;
}

.head .wrap .right .switch {
    float: left;
    width: calc(55/1920*100vw);
    height: calc(55/1920*100vw);
    margin-top: calc(23/1920*100vw);
    margin-right: calc(23/1920*100vw);
    background: url(../images/switch.png) no-repeat center center;
    background-size: 100%;
    cursor: pointer;
}

.head .wrap .right .lans dl {
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: calc(120/1920*100vw);
}

.head .wrap .right .lans:hover dl {
    visibility: visible;
    opacity: 1;
    z-index: 5;
    top: calc(100/1920*100vw);
}

.banner {
}

.banner .swiper-container {
}

.banner .swiper-container .swiper-wrapper {
}

.banner .swiper-container .swiper-wrapper .swiper-slide {
}

.banner .swiper-container .swiper-wrapper .swiper-slide img {
    display: block;
    width: 100%;
}

.banner .swiper-container .swiper-pagination {
}

.index {
    line-height: 1;
}

.section1 {
    position: relative;
    margin-bottom: calc(100/1920*100vw);
}

.section1 .left {
    padding-top: calc(126/1920*100vw);
    margin-left: calc(154/1920*100vw);
    width: calc(683/1920*100vw);
}

.section1 .left .title1:after {
    content: "";
    position: absolute;
    width: calc(8/1920*100vw);
    height: calc(34/1920*100vw);
    background: #FB6F12;
    left: calc(-18/1920*100vw);
    top: calc(4/1920*100vw);
}

.section1 .left .title1 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30/1920*100vw);
    color: #8C94A3;
    position: relative;
}

.section1 .left .title2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(36/1920*100vw);
    color: #333333;
    padding-top: calc(29/1920*100vw);
    padding-bottom: calc(60/1920*100vw);
}

.section1 .left .title3 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(33/1920*100vw);
    color: #333333;
    margin-bottom: calc(18/1920*100vw);
}

.section1 .left .endec {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
    line-height: calc(30/1920*100vw);
    padding-bottom: calc(56/1920*100vw);
}

.section1 .left .cndec {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
    line-height: calc(30/1920*100vw);
    padding-bottom: calc(56/1920*100vw);
}

.section1 .left .items:after {
    content: "";
    display: table;
    clear: both;
}

.section1 .left .items .item:nth-child(3),.section1 .left .items .item:nth-child(4) {
    padding-bottom: 0;
}

.section1 .left .items .item {
    float: left;
    padding-bottom: calc(53/1920*100vw);
    width: 50%;
}

.section1 .left .items .item .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #666666;
    position: relative;
    margin-left: calc(50/1920*100vw);
    margin-bottom: calc(10/1920*100vw);
}

.section1 .left .items .item .tit img {
    height: calc(34/1920*100vw);
    position: absolute;
    top: calc(-6/1920*100vw);
    left: calc(-47/1920*100vw);
}

.section1 .left .items .item .tit b {
}

.section1 .left .items .item .num {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(36/1920*100vw);
    color: #666666;
    margin-left: calc(47/1920*100vw);
    margin-top: calc(17/1920*100vw);
}

.section1 .left .items .item .num b {
    font-size: calc(60/1920*100vw);
    font-weight: normal;
}

.section1 .video {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    border-radius: 0 0 0 calc(80/1920*100vw);
}

.section1 .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.section2 {
    background: #EBF3F9;
    padding-top: calc(60/1920*100vw);
    padding-bottom: calc(85/1920*100vw);
}

.section2 .wrap {
}

.section2 .wrap .titlemodel {
}

.titlemodel .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(36/1920*100vw);
    color: #333333;
}

.titlemodel .line {
    width: calc(77/1920*100vw);
    height: calc(5/1920*100vw);
    background: #FB6F12;
    margin-top: calc(25/1920*100vw);
    display: inline-block;
}

.section2 .wrap .list {
    margin-top: calc(40/1920*100vw);
    zoom:1;overflow: hidden;
    display: flex;
    border-radius: calc(10/1920*100vw);
}

.section2 .wrap .list .item {
    flex: 1;
    position: relative;
}

.section2 .wrap .list .item:nth-child(2n) .content {
    background: #fff;
}

.section2 .wrap .list .item .content {
    position: relative;
    height: calc(421/1920*100vw);
    background: #F1F1F1;
    padding-top: calc(116/1920*100vw);
    padding-left: calc(32/1920*100vw);
    padding-right: calc(32/1920*100vw);
    z-index: 5;
}

.section2 .wrap .list * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section2 .wrap .list .item.current, .section2 .wrap .list .item:hover {
    flex: 3;
    background: #FB6F12;
}

.section2 .wrap .list .item.current .content , .section2 .wrap .list .item:hover .content {
    background: #FB6F12;
    padding-right: 60%;
}

.section2 .wrap .list .item.current .content *, .section2 .wrap .list .item:hover .content * {
    color: #fff !important;
}

.section2 .wrap .list .item.current .imgbox , .section2 .wrap .list .item:hover .imgbox {
    z-index: 45;
    width: 60%;
}

.section2 .wrap .list .item .content .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #111111;
    padding-bottom: calc(20/1920*100vw);
}

.section2 .wrap .list .item .content .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #999999;
    line-height: calc(36/1920*100vw);
    padding-right: calc(36/1920*100vw);
}

.section2 .wrap .list .item .content a.more {
    display: block;
    position: absolute;
    width: calc(42/1920*100vw);
    height: calc(42/1920*100vw);
    border-radius: calc(300/1920*100vw);
    background: url(../images/mores.png) no-repeat center center;
    background-size: 100%;
    left: calc(29/1920*100vw);
    bottom: calc(39/1920*100vw);
}

.section2 .wrap .list .item .imgbox {
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 100%;
    right: 0px;
    top: 0px;
}

.section2 .wrap .list .item .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section3 {
    padding-top: calc(70/1920*100vw);
    padding-bottom: calc(120/1920*100vw);
}

.section3 .wrap {
}

.section3 .wrap .titlemodel {
}

.section3 .wrap .titlemodel .title {
}

.section3 .wrap .titlemodel .line {
}

.section3 .wrap .list {
    margin-top: calc(40/1920*100vw);
    zoom:1;overflow: hidden;
    position: relative;
}

.section3 .wrap .list .left {
    width: calc(657/1920*100vw);
    height: calc(734/1920*100vw);
    float: left;
}

.section3 .wrap .list .left .imgboxitem {
    height: 100%;
}

.imgboxitem {
}

.imgboxitem a {
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: calc(20/1920*100vw);
}

.imgboxitem a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imgboxitem a span.title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #111111;
    line-height: calc(63/1920*100vw);
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 0 calc(26/1920*100vw);
    background: rgb(255 255 255 / 80%);
}

.section3 .wrap .list .right {
    float: right;
    width: calc(1066/1920*100vw);
}

.section3 .wrap .list .right .imgboxitem {
    float: left;
    width: calc((100% - 60/1920*100vw)/2);
    margin-left: calc(30/1920*100vw);
    height: calc(349/1920*100vw);
    margin-bottom: calc(32/1920*100vw);
}

.section3 .wrap .list .right .imgboxitem a {
}

.section3 .wrap .list .right .imgboxitem a img {
}

.section3 .wrap .list .right .imgboxitem a span.title {
}

.section4 {
    background: #EBF3F9;
    padding: calc(80/1920*100vw) 0;
}

.section4 .wrap {
}

.section4 .content {
    background: #FFFFFF;
    border-radius: calc(30/1920*100vw);
    zoom:1;overflow: hidden;
    position: relative;
}

.section4 .left {
    float: left;
    width: calc(1174/1920*100vw);
    padding-top: calc(86/1920*100vw);
    position: relative;
    padding-bottom: calc(93/1920*100vw);
    padding-left: calc(112/1920*100vw);
}

.section4 .titlemodel {
}

.section4 .titlemodel .title {
}

.section4 .titlemodel .line {
}

.section4 .dec {
    padding-top: calc(52/1920*100vw);
}

.section4 .dec p:after {
    content: "";
    position: absolute;
    left: 0;
    width: calc(8/1920*100vw);
    height: calc(14/1920*100vw);
    background: #FB6F12;
    border-radius: 50%;
    top: calc(2/1920*100vw);
}

.section4 .dec p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
    position: relative;
    margin-bottom: calc(15/1920*100vw);
    padding-left: calc(22/1920*100vw);
}

.section4 .more {
    width: calc(149/1920*100vw);
    line-height: calc(49/1920*100vw);
    background: url(../images/more.png) no-repeat calc(13/1920*100vw) center #FB6F12;
    display: block;
    margin-top: calc(125/1920*100vw);
    border-radius: calc(300/1920*100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #FFFFFF;
    padding-left: calc(57/1920*100vw);
    background-size: calc(33/1920*100vw);
}

.section4 .left .imgbox {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    right: calc(118/1920*100vw);
}

.section4 .imgbox img {
    width: calc(567/1920*100vw);
    height: calc(354/1920*100vw);
    object-fit: cover;
}

.section4 .right {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: calc(578/1920*100vw);
}

.section4 .itm1 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(25/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(74/1920*100vw);
    padding-left: calc(54/1920*100vw);
    height: 50%;
    position: relative;
    background: url(../images/hr.png) no-repeat 96% calc(14/1920*100vw) #FB6F12;
    background-size: calc(90/1920*100vw);
}

.section4 .itm1 p {
    padding-bottom: calc(30/1920*100vw);
}

.section4 .itm2 {
    height: 50%;
    overflow: hidden;
}

.section4 .itm2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section5 {
    padding-top: calc(67/1920*100vw);
    padding-bottom: calc(54/1920*100vw);
}

.section5 .wrap {
    padding: 0;
}

.section5 .wrap .titlemodel {
    text-align: center;
}

.section5 .wrap .titlemodel .title1 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(48/1920*100vw);
    color: #CDCDCD;
}

.section5 .wrap .titlemodel .title {
    margin-top: calc(-30/1920*100vw);
}

.section5 .wrap .titlemodel .line {
}

.section5 .wrap .dec {
    padding-top: calc(20/1920*100vw);
    text-align: center;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(25/1920*100vw);
    color: #5E5E5E;
    padding-bottom: calc(50/1920*100vw);
}

.section5 .wrap .list {
    padding: calc(0/1920*100vw) calc(5/1920*100vw);
    zoom:1;overflow: hidden;
}

.section5 .wrap .list a .wrp {
    position: relative;
    overflow: hidden;
    display: block;
}

.section5 .wrap .list a {
    float: left;
    position: relative;
    overflow: hidden;
    width: 20%;
    padding: calc(5/1920*100vw);
}

.section5 .wrap .list a img {
    display: block;
    height: calc(298/1920*100vw);
    object-fit: cover;
    width: 100%;
}

.section5 .wrap .list a span.titles {
    position: absolute;
    height: calc(50/1920*100vw);
    width: 100%;
    bottom: 0;
    z-index: 4;
    line-height: calc(50/1920*100vw);
    left: 0;
    background: rgb(255 255 255 / 80%);
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #111111;
    padding: 0 calc(12/1920*100vw);
}

.section5 .wrap .list2 {
    margin-top: calc(50/1920*100vw);
}

.section5 .wrap .list2 .swiper-container {
}

.section5 .wrap .list2 .swiper-container .swiper-wrapper {
}

.section5 .wrap .list2 .swiper-container .swiper-wrapper .swiper-slide {
    padding-bottom: calc(75/1920*100vw);
}

.section5 .wrap .list2 .swiper-container .swiper-wrapper .swiper-slide a {
    display: block;
}

.section5 .wrap .list2 .swiper-container .swiper-wrapper .swiper-slide a img {
    width: 100%;
}

.section5 .wrap .list2 .swiper-container .swiper-pagination {
}

.section5 .wrap .list2 .swiper-container .swiper-pagination * {
    width: calc(40/1920*100vw);
    height: calc(4/1920*100vw);
    background: #E8E8E8;
    border-radius: 0;
}

.section5 .wrap .list2 .swiper-container .swiper-pagination *.swiper-pagination-bullet-active {
    background: #FB6F12;
}

.section6 {
    background: #f5f5f5;
    padding-top: calc(60/1920*100vw);
}

.section6 .wrap {
    /* padding-left:calc(205/1920*100vw); */
    padding-right: calc(52/1920*100vw);
    margin-right: calc(92/1920*100vw);
    box-shadow: 0px 3px 12px 6px rgba(0,0,0,0.03);
    background: #fff;
    background: url(../images/bfs.png) no-repeat right top;
    border-radius: calc(0/1920*100vw) calc(100/1920*100vw) calc(0/1920*100vw) calc(0/1920*100vw);
    padding-top: calc(105/1920*100vw);
    padding-bottom: calc(101/1920*100vw);
    background-size: cover;
}

.section6 .wrap .content {
    zoom:1;overflow: hidden;
    position: relative;
}

.section6 .wrap .content .titlemodel {
    margin-bottom: calc(68/1920*100vw);
}

.section6 .wrap .content .titlemodel .title {
}

.section6 .wrap .content .titlemodel .line {
}

.section6 .wrap .content .list {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.section6 .wrap .content .list a {
    float: left;
    margin-right: calc(50/1920*100vw);
    width: calc((100% - 100/1920*100vw)/3);
    position: relative;
    overflow: hidden;
    background: #fff;
}

.section6 .wrap .content .list a * {
    display: block;
}

.section6 .wrap .content .list a:nth-child(3) {
    margin-right: 0;
}

.section6 .wrap .content .list a .imgbox {
    overflow: hidden;
}

.section6 .wrap .content .list a .imgbox img {
    height: calc(323/1920*100vw);
    width: 100%;
    object-fit: cover;
}

.section6 .wrap .content .list a .con {
    background: #fff;
    padding: calc(34/1920*100vw);
    position: relative;
}

.section6 .wrap .content .list a .con .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #333333;
}

.section6 .wrap .content .list a .con .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #666666;
    line-height: calc(30/1920*100vw);
    margin-top: calc(33/1920*100vw);
    margin-bottom: calc(34/1920*100vw);
}

.section6 .wrap .content .list a .con .type {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #FB6F12;
    background: url(../images/more2.png) no-repeat right center;
    line-height: calc(26/1920*100vw);
    background-size: auto 100%;
}

.footer {
}

.footer .wrap {
    padding: 0 calc(120/1920*100vw);
}

.footer .wrap .block1 {
    padding-top: calc(133/1920*100vw);
    padding-left: calc(23/1920*100vw);
    padding-right: calc(23/1920*100vw);
    border-bottom: 2px solid #E5E5E5;
    zoom:1;overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding-bottom: calc(34/1920*100vw);
}

.footer .wrap .block1 .left {
    text-align: center;
}

.footer .wrap .block1 .left img {
    width: calc(379/1920*100vw);
    height: calc(52/1920*100vw);
    object-fit: contain;
}

.footer .wrap .block1 .left .line {
    height: calc(4/1920*100vw);
    background: #E8E8E8;
    margin-top: calc(10/1920*100vw);
    margin-bottom: calc(13/1920*100vw);
}

.footer .wrap .block1 .left .line i {
    width: calc(38/1920*100vw);
    height: 100%;
    background: #FB6F12;
    display: block;
}

.footer .wrap .block1 .left .name {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30/1920*100vw);
    color: #666666;
}

.footer .wrap .block1 .cons {
    display: flex;
    align-items: top;
    padding-left: calc(61/1920*100vw);
}

.footer .wrap .block1 .cons .item {
    width: 33.333%;
    padding-right: calc(43/1920*100vw);
}

.footer .wrap .block1 .cons .item .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #666666;
    position: relative;
}

.footer .wrap .block1 .cons .item .title img {
    position: absolute;
    height: calc(18/1920*100vw);
    left: calc(-26/1920*100vw);
    top: calc(3/1920*100vw);
}

.footer .wrap .block1 .cons .item .line {
    width: calc(23/1920*100vw);
    height: calc(3/1920*100vw);
    background: #FB6F12;
    margin-top: calc(11/1920*100vw);
    margin-bottom: calc(20/1920*100vw);
}

.footer .wrap .block1 .cons .item .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #666666;
    line-height: calc(36/1920*100vw);
    width: calc(220/1920*100vw);
}

.footer .wrap .block1 .cons .item .dec p b {
    color: #FB6F12;
    font-weight: normal;
}

.footer .wrap .block1 .code {
    width: calc(205/1920*100vw);
    height: calc(111/1920*100vw);
    background: url(../images/lsr.png) no-repeat center center;
    background-size: 100% 100%;
    text-align: center;
    padding-top: calc(28/1920*100vw);
}

.footer .wrap .block1 .code a {
    margin: 0 calc(10/1920*100vw);
    display: inline-block;
    position: relative;
}

.footer .wrap .block1 .code a > img {
    width: calc(55/1920*100vw);
}
.footer .wrap .block1 .code a:hover .slide{
    top:-119%;
    
    visibility:visible;
    opacity:1;
    z-index:5;
}
.footer .wrap .block1 .code a .slide{
    position: absolute;
    top: -100%;
    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%);
    background: #fff;
    padding: 10px;
    width: 99px;
    box-shadow: 0px 0px 10px #ccc;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}
.footer .wrap .block1 .code a .slide img{
    width: 100%;
}
.footer .wrap .block2 {
    padding: 0 calc(28/1920*100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #666666;
    padding-top: calc(32/1920*100vw);
    padding-bottom: calc(49/1920*100vw);
    display: flex;
    justify-content: space-between;
}

.footer .wrap .block2 .left {
}

.footer .wrap .block2 .ri {
}

.footer .wrap .block2 .ri a {
    color: inherit;
}

.head * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.switchMenu {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 55555;
    height: 100%;
    top: 0px;
    background: #fff;
    display: none;
}

.switchMenu .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: 600px;
    max-height: 80vh;
    overflow: auto;
}

.switchMenu ul {
    text-align: center;
}

.switchMenu ul li {
    border-bottom: 1px solid #eee;
}

.switchMenu ul li .h2tit {
    cursor: pointer;
}

.switchMenu ul li .h2tit a {
    display: block;
    color: #333;
    font-weight: normal;
    line-height: 3;
    font-size: 16px;
    display: inline-block;
}

.switchMenu ul li .slide {
    zoom:1;overflow: hidden;
    display: flex;
    align-items: center;
    padding: 10px 0px;
    display: none;
}

.switchMenu ul li .slide .imgbox {
    float: left;
    width: 32%;
}

.switchMenu ul li .slide .imgbox a {
}

.switchMenu ul li .slide .imgbox img {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.switchMenu ul li .slide .ris {
    width: 68%;
    float: left;
    text-align: left;
    padding-left: 4%;
}

.switchMenu ul li .slide .ris a {
    float: left;
    width: 50%;
    color: #333;
    line-height: 2;
    font-size: 14px;
}

.switchMenu .close {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 60px;
    height: 60px;
    background: url(../images/close.png) no-repeat center center;
    background-size: 55%;
    z-index: 5;
}

body::-webkit-scrollbar {
    width: 5px;
    height: 1px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #FF761D
}

body::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #fff;
}

.alertmodel {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    background: rgba(0,0,0,.7);
}

.alertmodel .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: 900px;
    max-width: 90%;
}

.alertmodel .close {
    position: absolute;
    cursor: pointer;
    right: -10px;
    top: -10px;
    background: url(../images/close.png) no-repeat center center #fff;
    background-size: 70%;
    height: 30px;
    border-radius: 30px;
    width: 30px;
    line-height: 30px;
    color: #000;
    font-weight: bold;
    text-align: center;
    z-index: 5;
}

.alertmodel .center video {
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: cover;
}

.cbanner {
    height: calc(473/1920*100vw);
    position: relative;
    overflow: hidden;
}

.cbanner .img {
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.cbanner .content {
    position: relative;
    z-index: 5;
}

.cbanner .wrap {
    padding: 0 calc(170/1920*100vw);
    padding-top: calc(245/1920*100vw);
}

.cbanner .title1 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30/1920*100vw);
    color: #FFFFFF;
}

.cbanner .title2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(36/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(30/1920*100vw);
}

.secMenu {
    line-height: calc(80/1920*100vw);
    border: 1px solid #ccc;
    border-right: none;
    border-left: none;
}

.secMenu .wrap {
    zoom:1;overflow: hidden;
}
.secMenu .les a:last-child{
    border-right: 1px solid #ccc;
}
.secMenu .les a {
    font-family: Adobe Heiti Std;
    font-weight: normal;
    font-size: calc(18/1920*100vw);
    color: #6E6E6E;
    float: left;
    padding: 0 calc(16/1920*100vw);
    border-left: 1px solid #ccc;
    border-top: none;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.secMenu .les a:after {
    height: calc(5/1920*100vw);
    position: absolute;
    width: 100%;
    content: "";
    background: #FE6800;
    left: 0;
    opacity: 0;
}

.secMenu .les a.current:after,.secMenu .les a:hover:after {
    opacity: 1;
}

.secMenu .les {
    float: left;
}

.secMenu .ris {
    float: right;
}

.secMenu .ris .bts {
    float: left;
    cursor: pointer;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    font-size: calc(18/1920*100vw);
    color: #6E6E6E;
    margin-left: calc(39/1920*100vw);
    padding-left: calc(47/1920*100vw);
    background: url(../images/up.png) no-repeat left center;
    background-size: calc(33/1920*100vw);
}

.secMenu .ris .pos a {
    color: inherit;
}

.secMenu .ris .pos {
    float: left;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    font-size: calc(18/1920*100vw);
    color: #6E6E6E;
    padding-left: calc(25/1920*100vw);
    background: url(../images/home.png) no-repeat left center;
    background-size: calc(18/1920*100vw);
}

.channelMain {
    line-height: 1;
}

.mainBlock1 {
    background: #f3f3f3;
    padding-top: calc(58/1920*100vw);
    padding-bottom: calc(80/1920*100vw);
}

.channelMain .wrap {
    padding: 0 calc(120 / 1920 * 100vw);
}

.mainBlock1 .content {
    background: #FFFFFF;
    border-radius: calc(50 / 1920 * 100vw);
    zoom:1;overflow: hidden;
    position: relative;
    padding-top: calc(80 / 1920 * 100vw);
    padding-right: calc(63 / 1920 * 100vw);
    padding-bottom: calc(97 / 1920 * 100vw);
    padding-left: calc(63 / 1920 * 100vw);
}

.mainBlock1 .mf1 {
    display: flex;
    margin-bottom: calc(94 / 1920 * 100vw);
}

.mainBlock1 .mf1 .left {
    width: calc(621 / 1920 * 100vw);
    padding-top: calc(23 / 1920 * 100vw);
}

.mainBlock1 .mf1 .left .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(36 / 1920 * 100vw);
    color: #333333;
}

.mainBlock1 .mf1 .left .line {
    width: calc(70 / 1920 * 100vw);
    height: calc(5 / 1920 * 100vw);
    background: #FE6800;
    margin-top: calc(20 / 1920 * 100vw);
    margin-bottom: calc(35 / 1920 * 100vw);
}

.mainBlock1 .mf1 .left .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(33 / 1920 * 100vw);
    color: #333333;
    line-height: calc(36 / 1920 * 100vw);
}

.mainBlock1 .mf1 .ris {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #333333;
    line-height: calc(30 / 1920 * 100vw);
    padding-left: calc(91 / 1920 * 100vw);
    border-left: calc(1 / 1920 * 100vw) solid #E5E5E5;
    width: calc(921 / 1920 * 100vw);
    padding-top: calc(16 / 1920 * 100vw);
}

.mainBlock1 .mf1 .ris p {
    padding-bottom: calc(20 / 1920 * 100vw);
}

.mainBlock1 .mf2 {
    background: #F3F3F3;
    border-radius: calc(20 / 1920 * 100vw);
    overflow: hidden;
    position: relative;
    zoom:1;}

.mainBlock1 .mf2 .items {
    float: left;
    width: 50%;
    padding-top: calc(73 / 1920 * 100vw);
    padding-left: calc(97 / 1920 * 100vw);
    padding-bottom: calc(18 / 1920 * 100vw);
}

.mainBlock1 .mf2 .item {
    float: left;
    padding-bottom: calc(53 / 1920 * 100vw);
    width: 50%;
}

.mainBlock1 .mf2 .item .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #666666;
    position: relative;
    margin-bottom: calc(10 / 1920 * 100vw);
}

.mainBlock1 .mf2 .item .tit img {
    height: calc(34 / 1920 * 100vw);
    position: absolute;
    top: calc(-6 / 1920 * 100vw);
    left: calc(-47 / 1920 * 100vw);
}

.mainBlock1 .mf2 .item .num {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(36 / 1920 * 100vw);
    color: #666666;
}

.mainBlock1 .mf2 .item .num b {
    font-size: calc(60 / 1920 * 100vw);
    font-weight: normal;
}

.mainBlock1 .mf2 .imgbox {
    position: absolute;
    width: 50%;
    right: 0;
    top: 0px;
    height: 100%;
    background: url(../images/ab.png) no-repeat center center;
    background-size: cover;
}

.mainBlock2 {
    padding-top: calc(50 / 1920 * 100vw);
    padding-bottom: calc(96 / 1920 * 100vw);
}

.mainBlock2 .wrap {
}

.mainBlock2 .titlemodel {
    padding-bottom: calc(40 / 1920 * 100vw);
    text-align: center;
}

.mainBlock2 .titlemodel .title {
}

.mainBlock2 .titlemodel .line {
}

.mainBlock2 .list {
    border: 1px solid #E1E1E1;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: none;
}

.mainBlock2 .item {
    width: 25%;
    float: left;
    border-right: calc(1 / 1920 * 100vw) solid #E1E1E1;
    border-bottom: calc(1 / 1920 * 100vw) solid #E1E1E1;
    padding-top: calc(41 / 1920 * 100vw);
    padding-left: calc(35 / 1920 * 100vw);
    padding-right: calc(35 / 1920 * 100vw);
    height: calc(254 / 1920 * 100vw);
}

.mainBlock2 .item .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30 / 1920 * 100vw);
    color: #333333;
    margin-bottom: calc(27 / 1920 * 100vw);
    position: relative;
}

.mainBlock2 .item .tit img {
    float: right;
    height: calc(36 / 1920 * 100vw);
}

.mainBlock2 .item .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #666666;
    line-height: calc(30 / 1920 * 100vw);
}

.mainBlock3 {
    background: #e5f2f9;
    padding-top: calc(66 / 1920 * 100vw);
    padding-bottom: calc(70 / 1920 * 100vw);
}

.mainBlock3 .wrap {
}

.mainBlock3 .titlemodel {
}

.mainBlock3 .titlemodel .title {
}

.mainBlock3 .titlemodel .line {
}

.mainBlock3 .list {
    position: relative;
}

.mainBlock3 .list .line {width: calc(1034/ 1920 * 100vw);height: 2px;background: #FE6800;position: relative;margin-top: calc(-30/ 1920 * 100vw);}
.mainBlock3 .list .line i{
    
position: absolute;
    
height: 12px;
    
background: #FE6800;
    
border-radius: 50%;
    
width: 12px;
    
left: 0;
    
top: -5px;
}

.mainBlock3 .list .line img {
    width: calc(1034 / 1920 * 100vw);
}

.mainBlock3 .swiper-container {
    padding-bottom: calc(110 / 1920 * 100vw);
}

.mainBlock3 .swiper-wrapper {
    padding-top: calc(40 / 1920 * 100vw);
}

.mainBlock3 .swiper-slide {
    background: #FFFFFF;
    box-shadow: calc(0px / 1920 * 100vw) calc(0px / 1920 * 100vw) calc(6px / 1920 * 100vw) calc(4px / 1920 * 100vw) rgba(0,0,0,0.08);
    border-radius: calc(20 / 1920 * 100vw);
    padding: calc(39 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(50 / 1920 * 100vw);
    text-align: center;
}

.mainBlock3 .swiper-slide .imgbox {
}

.mainBlock3 .swiper-slide .imgbox img {
    width: 100%;
}

.mainBlock3 .swiper-slide .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #333333;
    margin-top: calc(39 / 1920 * 100vw);
    padding-top: calc(32 / 1920 * 100vw);
    border-top: calc(1 / 1920 * 100vw) solid #E8E8E8;
}

.mainBlock3 .swiper-button-next {
    width: calc(49 / 1920 * 100vw);
    height: calc(49 / 1920 * 100vw);
    background: url(../images/right.png) no-repeat center center;
    background-size: 100%;
    margin: 0;
    top: auto;
    bottom: 0px;
    right: calc(128 / 1920 * 100vw);
}

.mainBlock3 .swiper-button-prev {
    width: calc(49 / 1920 * 100vw);
    height: calc(49 / 1920 * 100vw);
    background: url(../images/left.png) no-repeat center center;
    background-size: 100%;
    margin: 0;
    top: auto;
    bottom: 0px;
    left: auto;
    right: calc(227 / 1920 * 100vw);
}

.mainBlock4 {
    padding-top: calc(73 / 1920 * 100vw);
    background: url(../images/hx.png) no-repeat center center;
    background-size: cover;
    padding-bottom: calc(180 / 1920 * 100vw);
    box-shadow: calc(0px / 1920 * 100vw) calc(3px / 1920 * 100vw) calc(12px / 1920 * 100vw) calc(6px / 1920 * 100vw) rgba(0,0,0,0.03);
}

.mainBlock4 .wrap {
}

.mainBlock4 .titlemodel {
}

.mainBlock4 .titlemodel .title {
}

.mainBlock4 .titlemodel .line {
}

.mainBlock4 .content {
    padding-left: calc(40 / 1920 * 100vw);
    zoom:1;overflow: hidden;
}

.mainBlock4 .left {
    width: calc(780 / 1920 * 100vw);
    position: relative;
    float: left;
}

.mainBlock4 .titles {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(36 / 1920 * 100vw);
    color: #FE6800;
    padding-top: calc(67 / 1920 * 100vw);
    padding-left: calc(26 / 1920 * 100vw);
}

.mainBlock4 .left .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #333333;
    line-height: calc(30 / 1920 * 100vw);
    padding-top: calc(41 / 1920 * 100vw);
    padding-right: calc(88 / 1920 * 100vw);
}

.mainBlock4 .left .vals {
    padding-top: calc(80 / 1920 * 100vw);
    padding-left: calc(33 / 1920 * 100vw);
}

.mainBlock4 .left .vals .tit1 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #333333;
}

.mainBlock4 .left .vals .txt {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(36 / 1920 * 100vw);
    color: #FE6800;
    padding: calc(23 / 1920 * 100vw) 0px;
}

.mainBlock4 .left .line i {
    width: calc(4 / 1920 * 100vw);
    height: calc(120 / 1920 * 100vw);
    background: #FE6800;
    position: absolute;
    left: calc(-1 / 1920 * 100vw);
    top: calc(0 / 1920 * 100vw);
}

.mainBlock4 .left .line {
    position: absolute;
    height: 78%;
    width: 2px;
    right: calc(0 / 1920 * 100vw);
    bottom: calc(0 / 1920 * 100vw);
    width: calc(2 / 1920 * 100vw);
    background: #D1D1D1;
}

.mainBlock4 .right {
    padding-left: calc(130 / 1920 * 100vw);
    float: left;
}

.mainBlock4 .right img {
    width: calc(469 / 1920 * 100vw);
}

.secMenu {
    left: 0px;
    top: calc(105/1920*100vw);
    width: 100%;
    background: #fff;
    z-index: 444;
}

.secMenu.cur1 {
    position: fixed;
    line-height: calc(60/1920*100vw);
    top: calc(135/1920*100vw);
}

.section7 {
    background: #f4f3f3;
    padding-top: calc(69/1920*100vw);
    padding-bottom: calc(81/1920*100vw);
}

.section7 .wrap {
    padding: 0px calc(153/1920*100vw);
}

.section7 .content {
    background: #fff;
    border-radius: calc(20/1920*100vw) calc(20/1920*100vw) 0px 0px;
}

.section7 .sec1 {
    zoom:1;overflow: hidden;
    padding-left: calc(98/1920*100vw);
}

.section7 .sec1 .left {
    float: left;
    padding-top: calc(88/1920*100vw);
    width: calc(580/1920*100vw);
}

.section7 .sec1 .left .item:last-child {
    padding-bottom: calc(26/1920*100vw);
}

.section7 .sec1 .left .item {
    display: flex;
    align-items: center;
    padding-bottom: calc(64/1920*100vw);
}

.section7 .sec1 .left .item .icon {
    margin-right: calc(40/1920*100vw);
}

.section7 .sec1 .left .item .infor {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
    line-height: calc(24/1920*100vw);
    width: calc(370/1920*100vw);
}

.section7 .sec1 .left .item .infor .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
}

.section7 .sec1 .left .item .infor .val {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #FB6F12;
    padding-top: calc(10/1920*100vw);
}

.section7 .sec1 .right {
    float: left;
    padding-top: calc(60/1920*100vw);
    width: calc(599/1920*100vw);
}

.section7 .sec1 .right .titlemodel {
}

.section7 .sec1 .right .titlemodel .title {
}

.section7 .sec1 .right .titlemodel .line {
}

.section7 .sec1 .right .formtable {
}

.section7 .sec1 .right .formtable form {
}

.section7 .sec1 .right .formtable .items {
    padding-top: calc(40/1920*100vw);
    zoom:1;overflow: hidden;
}

.section7 .sec1 .right .formtable .item {
    width: 3;
    float: left;
    margin-bottom: calc(20/1920*100vw);
}

.section7 .sec1 .right .formtable .item:last-child {
    width: 100%;
}

.section7 .sec1 .right .formtable .item input {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
    display: block;
    width: 100%;
    border: none;
    height: calc(50/1920*100vw);
    padding-right: calc(30/1920*100vw);
}

.section7 .sec1 .right .formtable .item textarea {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
    width: 100%;
    height: calc(90/1920*100vw);
    border: none;
}

.section7 .sec1 .right .formtable .btns {
}

.section7 .sec1 .right .formtable .btns button.btn1 {
    background: url(../images/f1.png) no-repeat calc(24/1920*100vw) center #FB6F12;
    background-size: calc(26/1920*100vw);
}

.section7 .sec1 .right .formtable .btns button.btn2 {
    background: url(../images/f2.png) no-repeat calc(24/1920*100vw) center #FB6F12;
    background-size: calc(25/1920*100vw);
}

.section7 .sec1 .right .formtable .btns button {
    float: left;
    width: calc(138/1920*100vw);
    height: calc(46/1920*100vw);
    border-radius: calc(23/1920*100vw);
    margin-right: calc(30/1920*100vw);
    border: none;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
    text-align: left;
    padding-left: calc(66/1920*100vw);
}

.section7 .sec2 {
    margin-top: calc(142/1920*100vw);
    zoom:1;overflow: hidden;
    position: relative;
    padding-top: calc(65/1920*100vw);
}

.section7 .sec2 .left {
    float: left;
    width: calc(605/1920*100vw);
    padding-left: calc(171/1920*100vw);
    padding-right: calc(175/1920*100vw);
    text-align: center;
}

.section7 .sec2 .left .item {
}

.section7 .sec2 .left .item img {
    width: 100%;
}

.section7 .sec2 .left .item .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #666666;
    padding-top: calc(35/1920*100vw);
    padding-bottom: calc(30/1920*100vw);
}

.section7 .sec2 .right {
    position: absolute;
    width: calc(100% - 605/1920*100vw);
    right: 0;
    top: 0px;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: calc(121/1920*100vw);
}

.section7 .sec2 .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section8 {
    background: #f4f3f3;
}

.section8 .wrap {
    padding: 0 calc(120/1920*100vw);
    padding-top: calc(55/1920*100vw);
    padding-bottom: calc(52/1920*100vw);
}

.section8 .content {
    background: #FFFFFF;
    border-radius: calc(50/1920*100vw);
    padding: calc(40/1920*100vw);
}

.section8 .content1 {
}

.section8 .content1 .titlemodel {
}

.section8 .content1 .titlemodel .title {
}

.section8 .content1 .titlemodel .line {
}

.section8 .content1 .list {
    margin-top: calc(28/1920*100vw);
    position: relative;
}

.section8 .content1 .list .swiper-pagination {
    bottom: 0;
}

.section8 .content1 .list .swiper-pagination * {
    width: calc(40/1920*100vw);
    height: calc(4/1920*100vw);
    background: #E8E8E8;
    border-radius: 0;
}

.section8 .content1 .list .swiper-pagination *.swiper-pagination-bullet-active {
    background: #FB6F12;
}

.section8 .content1 .list .swiper-wrapper {
}

.section8 .content1 .list .swiper-slide {
    padding-bottom: calc(56/1920*100vw);
}

.section8 .content1 .list a {
    display: block;
    position: relative;
    overflow: hidden;
    zoom:1;background: #F3F3F3;
    border-radius: calc(20/1920*100vw);
    padding-left: calc(57/1920*100vw);
    padding-bottom: calc(72/1920*100vw);
}

.section8 .content1 .list a * {
    display: block;
}

.section8 .content1 .list .left {
    width: calc(640/1920*100vw);
    padding-top: calc(64/1920*100vw);
}

.section8 .content1 .list .left .infor1 {
    display: flex;
    justify-content: space-between;
}

.section8 .content1 .list .left .infor1 .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #FB6F12;
}

.section8 .content1 .list .left .infor1 .time {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #777777;
}

.section8 .content1 .list .left .infor2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #333333;
    line-height: calc(36/1920*100vw);
    margin-top: calc(26/1920*100vw);
    margin-bottom: calc(32/1920*100vw);
}

.section8 .content1 .list .left .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #777777;
    line-height: calc(30/1920*100vw);
    margin-bottom: calc(58/1920*100vw);
}

.section8 .content1 .list .left .more {
    width: calc(138/1920*100vw);
    line-height: calc(46/1920*100vw);
    background: #FB6F12;
    border-radius: calc(23/1920*100vw);
    text-align: center;
    color: #fff;
    font-size: calc(16/1920*100vw);
}

.section8 .content1 .list .imgbox {
    overflow: hidden;
    position: absolute;
    width: calc(759/1920*100vw);
    height: 100%;
    top: 0;
    right: 0;
}

.section8 .content1 .list .imgbox img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section8 .content2 {
    padding-top: calc(87/1920*100vw);
}

.section8 .content2 .titlemodel {
}

.section8 .content2 .titlemodel .title {
}

.section8 .content2 .titlemodel .line {
}

.section8 .content2 .list {
    zoom:1;overflow: hidden;
    padding-top: calc(60/1920*100vw);
}

.section8 .content2 .list a {
    float: left;
    width: calc((100% - calc(60/1920*100vw))/3);
    margin-right: calc(20/1920*100vw);
    margin-bottom: calc(80/1920*100vw);
}

.section8 .content2 .list a:nth-child(3n) {
    margin-right: 0;
}

.section8 .content2 .list .imgbox {
    display: block;
    overflow: hidden;
    border-radius: calc(10/1920*100vw);
}

.section8 .content2 .list .imgbox img {
    display: block;
    width: 100%;
    height: calc(385/1920*100vw);
    object-fit: cover;
}

.section8 .content2 .list .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
    line-height: calc(36/1920*100vw);
    display: block;
    padding-top: calc(33/1920*100vw);
    margin-bottom: calc(27/1920*100vw);
    line-height: 1;
}

.section8 .content2 .list .line {
    width: calc(98/1920*100vw);
    height: calc(2/1920*100vw);
    background: #D1D1D1;
    margin-bottom: calc(17/1920*100vw);
    display: block;
}

.section8 .content2 .list .time {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #777777;
}

.pagesize {
    text-align: center;
    padding-top: calc(40/1920*100vw);
    font-size: 0;
    padding-bottom: calc(20/1920*100vw);
}

.pagesize a {
    display: inline-block;
    width: calc(55/1920*100vw);
    line-height: calc(50/1920*100vw);
    background: #FFFFFF;
    border-radius: 50%;
    border: calc(2/1920*100vw) solid #E5E5E5;
    line-height: calc(53/1920*100vw);
    font-family: Arial;
    font-weight: 400;
    font-size: calc(30/1920*100vw);
    color: #555555;
    margin: calc(0/1920*100vw) calc(5/1920*100vw);
}

.pagesize a:hover,.pagesize a.current {
    color: #fff;
    border-color: #FB6F12;
    background: #FB6F12;
}

.pagesize a:first-child,.pagesize a:last-child {
    color: #E5E5E5;
}

.section9 .content1 {
    padding-top: calc(80 / 1920 * 100vw);
    padding-bottom: calc(170 / 1920 * 100vw);
    margin-bottom: calc(46 / 1920 * 100vw);
    background: #f4f3f3;
}

.section9 .content1 .wrap {
    zoom:1;overflow: hidden;
}

.section9 .content1 .imgbox {
    width: calc(689 / 1920 * 100vw);
    height: calc(450 / 1920 * 100vw);
    float: left;
    overflow: hidden;
    border-radius: calc(16 / 1920 * 100vw);
}

.section9 .content1 .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section9 .content1 .ri {
    float: left;
    padding-top: calc(18 / 1920 * 100vw);
    width: calc(853 / 1920 * 100vw);
    margin-left: calc(100 / 1920 * 100vw);
}

.section9 .content1 .titlemodel {
}

.section9 .content1 .titlemodel .title {
}

.section9 .content1 .titlemodel .line {
}

.section9 .content1 .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    color: #777777;
    line-height: calc(30 / 1920 * 100vw);
    margin-top: calc(43 / 1920 * 100vw);
}

.section9 .content1 .more {
    width: calc(138 / 1920 * 100vw);
    line-height: calc(46 / 1920 * 100vw);
    background: #FB6F12;
    border-radius: calc(23 / 1920 * 100vw);
    display: block;
    margin-top: calc(114 / 1920 * 100vw);
    text-align: center;
    color: #fff;
    font-size: calc(17 / 1920 * 100vw);
}

.section9 .content2 {
}

.section9 .content2 .title {
    border-bottom: calc(5 / 1920 * 100vw) solid #f4f3f3;
}

.section9 .content2 .wrap {
    padding-left: calc(157 / 1920 * 100vw);
    padding-right: calc(157 / 1920 * 100vw);
}

.section9 .content2 .tit {
    width: calc(210 / 1920 * 100vw);
    line-height: calc(71 / 1920 * 100vw);
    background: #FB6F12;
    border-radius: calc(30 / 1920 * 100vw) calc(30 / 1920 * 100vw) 0px 0px;
    text-align: center;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(24 / 1920 * 100vw);
    color: #FFFFFF;
}

.section9 .content2 .condetal {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    color: #777777;
    line-height: calc(30 / 1920 * 100vw);
    padding-top: calc(65 / 1920 * 100vw);
    padding-bottom: calc(110 / 1920 * 100vw);
}

.section9 .content2 .condetal .wrap {
}

.section9 .content2 .condetal p {
}

.section9 .content3 {
    background: #f4f3f3;
    padding-top: calc(101 / 1920 * 100vw);
}

.section9 .content3 .wrap {
}

.section9 .content3 .titlemodel {
}

.section9 .content3 .titlemodel .title {
}

.section9 .content3 .titlemodel .line {
}

.section9 .content3 .list {
    padding-top: calc(44 / 1920 * 100vw);
    zoom:1;overflow: hidden;
}

.section9 .content3 .list a * {
    display: block;
}

.section9 .content3 .list a:nth-child(3n) {
    margin-right: calc(0 / 1920 * 100vw);
}

.section9 .content3 .list a {
    float: left;
    margin-right: calc(45 / 1920 * 100vw);
    width: calc((100% - calc(116 / 1920 * 100vw)) / 3);
    margin-bottom: calc(116 / 1920 * 100vw);
}

.section9 .content3 .list .imgbox {
    display: block;
    overflow: hidden;
    border-radius: calc(10 / 1920 * 100vw);
}

.section9 .content3 .list .imgbox img {
    display: block;
    width: 100%;
    height: calc(385 / 1920 * 100vw);
    object-fit: cover;
}

.section9 .content3 .list .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #333333;
    line-height: calc(36 / 1920 * 100vw);
    display: block;
    padding-top: calc(33 / 1920 * 100vw);
    margin-bottom: calc(27 / 1920 * 100vw);
    line-height: 1;
}

.section9 .content3 .list .line {
    width: calc(98 / 1920 * 100vw);
    height: calc(2 / 1920 * 100vw);
    background: #D1D1D1;
    margin-bottom: calc(17 / 1920 * 100vw);
    display: block;
}

.section9 .content3 .list .time {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #777777;
}
