.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: rgb(65 78 113 / 90%);
    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-bottom: calc(118/720*100vw);
}

* {
    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;
}

.section1 {
}

.section1 img {
    display: block;
    width: 100%;
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.wrap {
    margin: calc(0/720*100vw) calc(37/720*100vw);
}

.section2 .wrap:before {
    content: "";
    width: calc(2/720*100vw);
    height: calc(207/720*100vw);
    position: absolute;
    left: 50%;
    top: calc(26/720*100vw);
    background: #000;
    opacity: .06;
}

.section2 .wrap {
    zoom:1;overflow: hidden;
    position: relative;
}

.section2 .wrap a {
    float: left;
    width: 50%;
    text-align: center;
    padding-bottom: calc(36/720*100vw);
}

.section2 .wrap a .icon {
    display: block;
    height: calc(147/720*100vw);
    padding-top: calc(48/720*100vw);
}

.section2 .wrap a .icon img {
    height: calc(80/720*100vw);
}

.section2 .wrap a .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(34/720*100vw);
    color: #050505;
    display: block;
    padding-bottom: calc(20/720*100vw);
}

.section2 .wrap a .txt {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/720*100vw);
    color: #AEADAD;
}

.section3 .wrap {
    display: flex;
    align-items: center;
}

.section3 .wrap a {
    flex: 1;
    text-align: center;
    padding-bottom: calc(34/720*100vw);
}

.section3 .wrap a .icon {
    display: block;
    height: calc(114/720*100vw);
    position: relative;
}

.section3 .wrap a .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%);
    width: calc(47/720*100vw);
}

.section3 .wrap a .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #252525;
}

.section4 .wrap {
}

.section4 .wrap img {
    width: 100%;
}

.section5 .wrap {
}

.titlemodel {
}

.titlemodel a:after {
    content: "";
    position: absolute;
    left: calc(0/720*100vw);
    top: calc(0/720*100vw);
    height: 100%;
    width: calc(6/720*100vw);
    height: calc(34/720*100vw);
    background: #167037;
    border-radius: calc(3/720*100vw);
}

.titlemodel a {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(28/720*100vw);
    color: #303030;
    display: block;
    background: url(../images/more.png) no-repeat right center;
    background-size: calc(16/720*100vw);
    padding-left: calc(25/720*100vw);
    position: relative;
}

.section5 .wrap .imgbox {
    margin-top: calc(36/720*100vw);
    overflow: hidden;
    box-shadow: 0px calc(5/720*100vw) calc(13/720*100vw) 0px rgba(11,3,6,0.21);
    border-radius: calc(10/720*100vw);
}

.section5 .wrap .imgbox video {
    display: block;
    width: 100%;
}

.section5 .wrap .imgbox .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(28/720*100vw);
    color: #030303;
    display: block;
    text-align: center;
    padding: calc(26/720*100vw) 0px;
}

.section6 .wrap {
}

.section6 .wrap .titlemodel {
    margin-bottom: calc(38/720*100vw);
}

.listType1:after {
    content: "";
    display: '';
    clear: both;
}

.listType1 {
}

.listType1 a:nth-child(2n) {
    float: right;
}

.listType1 a {
    float: left;
    box-shadow: 0px calc(5/720*100vw) calc(10/720*100vw) 0px rgba(11,3,6,0.06);
    width: calc((100% - calc(26/720*100vw))/2);
    margin-bottom: calc(26/720*100vw);
    border-radius: calc(10/720*100vw);
    overflow: hidden;
}

.listType1 a img {
    display: block;
    width: 100%;
    height: calc(250/720*100vw);
    object-fit: cover;
}

.listType1 a .title {
    display: block;
    text-align: center;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/720*100vw);
    color: #5E5E5E;
    padding: calc(17/720*100vw) 0px;
}

.section7 {
}

.section7 .title {
    color: #F0CB1D;
    font-weight: bold;
    left: calc(40/720*100vw);
    top: calc(40/720*100vw);
    position: absolute;
    font-size: calc(32/720*100vw);
}

.section7 .val {
    font-family: MiSans;
    font-weight: bold;
    font-size: calc(46/720*100vw);
    color: #FFFFFF;
    position: absolute;
    left: calc(39/720*100vw);
    bottom: calc(27/720*100vw);
}

.section8 .wrap {
}

.section8 .wrap .titlemodel {
    margin-bottom: calc(45/720*100vw);
    margin-top: calc(49/720*100vw);
}

.section8 .wrap .titlemodel a {
}

.listType2 {
}

.listType2 a:last-child {
    margin-bottom: 0;
    border: none;
    /* padding-bottom:0;*/
}

.listType2 a {
    display: block;
    zoom:1;overflow: hidden;
    position: relative;
    padding-bottom: calc(28/720*100vw);
    border-bottom: calc(1/720*100vw) solid #ddd;
    margin-bottom: calc(34/720*100vw);
}

.listType2 a .infor {
    display: block;
    float: left;
    width: calc(435/720*100vw);
    padding-top: calc(3/720*100vw);
}

.listType2 a .infor .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(24/720*100vw);
    color: #303030;
    display: block;
}

.listType2 a .infor .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/720*100vw);
    color: #787777;
    margin-top: calc(19/720*100vw);
    margin-bottom: calc(23/720*100vw);
    display: block;
}

.listType2 a .infor .time {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/720*100vw);
    color: #A8A8A8;
    display: block;
}

.listType2 a .imgbox {
    display: block;
    float: right;
}

.listType2 a .imgbox img {
    width: calc(155/720*100vw);
    height: calc(116/720*100vw);
    background: #167037;
    border-radius: calc(10/720*100vw);
    display: block;
}

.shadow {
    background: #fff;
    box-shadow: 0px calc(5/720*100vw) calc(27/720*100vw) 0px rgba(11,3,6,0.24);
    border-radius: calc(10/720*100vw) calc(10/720*100vw) calc(10/720*100vw) calc(10/720*100vw);
}

.section1 {
}

.section2 {
    padding-top: calc(28/720*100vw);
    padding-bottom: calc(31/720*100vw);
}

.section3 {
    margin-bottom: calc(31/720*100vw);
}

.section4 {
    margin-bottom: calc(42/720*100vw);
}

.section5 {
    margin-bottom: calc(56/720*100vw);
}

.section6 {
    padding-bottom: calc(18/720*100vw);
}

.section7 {
    height: calc(229/720*100vw);
/*    background: url(../images/telbg.png) no-repeat center center;
*/    /*background-size: 100%;*/
    position: relative;
}

.section8 {
}

.footer {
    position: fixed;
    background: #fff;
    z-index: 6666;
    left: 0;
    bottom: 0px;
    border-top: calc(1/720*100vw) solid #ddd;
    text-align: center;
    display: flex;
    align-items: center;
    width: 100%;
}

.footer a {
    padding-top: calc(10/720*100vw);
    flex: 1;
    height: calc(118/720*100vw);
}

.footer a.current {
}

.footer a .icon {
    background-size: auto calc(30/720*100vw) !important;
    display: block;
    height: calc(60/720*100vw);
}

.footer a .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/720*100vw);
    color: #565555;
    display: block;
}

.footer a:nth-child(1) .icon {
    background: url(../images/menu1.png) no-repeat center center;
}

.footer a:nth-child(1).current .icon {
    background: url(../images/menucur1.png) no-repeat center center;
}

.footer a:nth-child(2) .icon {
    background: url(../images/menu2.png) no-repeat center center;
}

.footer a:nth-child(2).current .icon {
    background: url(../images/menucur2.png) no-repeat center center;
}

.footer a:nth-child(3) .icon {
    background: url(../images/menu3.png) no-repeat center center;
}

.footer a:nth-child(3).current .icon {
    background: url(../images/menucur3.png) no-repeat center center;
}

.footer a:nth-child(4) .icon {
    background: url(../images/menu4.png) no-repeat center center;
}

.footer a:nth-child(4).current .icon {
    background: url(../images/menucur4.png) no-repeat center center;
}

.footer a.current .title {
    color: #167037;
}

.topTab {
    background: url(../images/people.png) no-repeat right bottom #167037;
    background-size: calc(158/720*100vw);
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 999;
}
.topTab .topfh {
	width: calc(40 / 720* 100vw);
    height: calc(40 / 720* 100vw);
    background: url(../images/dbfh.png) no-repeat left bottom #167037;
    background-size: calc(40/720*100vw);
    padding-top: calc(25 / 720* 100vh);
    margin-left: calc(20 / 720* 100vw);
}
.topTab .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(34/720*100vw);
    color: #FFFFFF;
    padding-top: calc(35/720*100vw);
    padding-bottom: calc(60/720*100vw);
    text-align: center;
}
.topTab .hd .swiper-wrapper{
    display:flex;
}
.topTab .hd .swiper-wrapper  .swiper-slide{
        flex:1;
        display: block;
    }
.topTab .hd {
    /* display:flex; */
    text-align: center;
    padding: 0px calc(60/720*100vw);
}
    .topTab .hd.block{
        display:block;
    }
        .topTab .hd.block .swiper-wrapper  .swiper-slide{
            flex:none;
            width: auto;
            /* padding: 0px 5vw; */
        }

.topTab .hd a {
    flex: 1;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30/720*100vw);
    color: #FFFFFF;
}

.topTab .hd a span {
    display: inline-block;
    position: relative;
    padding-bottom: calc(27/720*100vw);
}

.topTab .hd a span:after {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: calc(5/720*100vw);
    left: 0;
    background: #f0cb1d;
    opacity: 0;
}

.topTab .hd a.current {
}

.topTab .hd a.current span {
}

.topTab .hd a.current span:after {
    opacity: 1;
}

.aboutMain {
    padding: calc(14/720*100vw) calc(16/720*100vw);
}

.height {
    height: calc(241/720*100vw);
}

.aboutMain img {
    width: 100%;
}

.aboutMain2 {
    padding-top: calc(20/720*100vw);
    text-align: center;
    padding-bottom: calc(56/720*100vw);
}

.aboutMain2 .icon {
    padding-bottom: calc(18/720*100vw);
}

.aboutMain2 .icon img {
    width: calc(432/720*100vw);
}

.aboutMain2 .txt1 {
    color: #167037;
    font-size: calc(30/720*100vw);
    padding-bottom: calc(48/720*100vw);
}

.aboutMain2 .txt1 span {
    font-size: calc(37/720*100vw);
}

.aboutMain2 .txt1 span b {
    font-weight: 600;
}

.aboutMain2 .txt2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(24/720*100vw);
    color: #323232;
    line-height: calc(51/720*100vw);
    margin: auto;
    padding-left: calc(62/720*100vw);
    padding-right: calc(62/720*100vw);
    padding-bottom: calc(77/720*100vw);
}

.aboutMain2 .txt2 p {
}

.aboutMain2 .txt3 {
    height: calc(408/720*100vw);
    background: url(../images/about3.png) no-repeat center 0;
    background-size: 100%;
    padding-top: calc(233/720*100vw);
    color: #f3d405;
}

.aboutMain2 .txt3 .p1 {
    font-size: calc(30/720*100vw);
}

.aboutMain2 .txt3 .p2 {
    font-size: calc(50/720*100vw);
    padding-top: calc(2/720*100vw);
}

.aboutMain2 .txt3 .p2 b {
    font-size: calc(61/720*100vw);
}

.topTab .hd.type2 {
    padding: 0px;
}

.imgwidth100 {
}

.imgwidth100 img {
    width: 100%;
}

.height3 {
    height: calc(42/720*100vw);
}

.height2 {
    height: calc(51/720*100vw);
}

.alertmodel {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 65667;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.88);
}

.alertmodel .content {
    position: absolute;
    top: 44%;
    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%);
    border-radius: calc(10/720*100vw) calc(10/720*100vw) calc(10/720*100vw) calc(10/720*100vw);
    background: #fff;
    padding-bottom: calc(37/720*100vw);
    width: calc(559/720*100vw);
}

.alertmodel .content .title {
}

.alertmodel .content .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30/720*100vw);
    color: #070707;
    padding-top: calc(47/720*100vw);
    text-align: center;
    padding-bottom: calc(30/720*100vw);
}

.alertmodel .content .txt {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(22/720*100vw);
    color: #555454;
    line-height: calc(51/720*100vw);
    padding-left: calc(26/720*100vw);
    padding-right: calc(26/720*100vw);
    padding-bottom: calc(48/720*100vw);
}

.alertmodel .content .txt p {
}

.alertmodel .content .end {
    width: calc(473/720*100vw);
    height: calc(74/720*100vw);
    background: #167037;
    display: block;
    margin: auto;
    border: none;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30/720*100vw);
    color: #FFFFFF;
    border-radius: 300px;
}

.progress {
    background: #fff;
}

.progress .block1 {
    height: calc(678/720*100vw);
    background: url(../images/progress1.png) no-repeat 10px 0;
    background-size: auto calc(639/720*100vw);
    margin-top: calc(20/720*100vw);
    position: relative;
    padding-left: calc(37/720*100vw);
    padding-top: calc(530/720*100vw);
    font-size: calc(30/720*100vw);
    font-weight: bold;
    color: #167037;
}

.progress .block2 .bg {
    background: #fff
}

.progress .block2 {
    background: #f4f4f4;
    padding: calc(27/720*100vw) calc(25/720*100vw);
    padding-bottom: calc(34/720*100vw);
}

.progress .block2 .title {
    font-family: MiSans;
    font-weight: 800;
    font-size: calc(36/720*100vw);
    color: #157037;
    text-align: center;
    padding-top: calc(47/720*100vw);
}

.progress .block2 .txt {
    padding-top: calc(50/720*100vw);
    padding-left: calc(13/720*100vw);
    padding-right: calc(13/720*100vw);
    padding-bottom: calc(32/720*100vw);
}

.progress .block2 .item {
}

.progress .block2 .item .s1 {
    display: flex;
}

.progress .block2 .item .num {
    width: calc(39/720*100vw);
    height: calc(39/720*100vw);
    background: #167037;
    border-radius: 50%;
    text-align: center;
    line-height: calc(39/720*100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #FFFFFF;
}

.progress .block2 .item .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #303131;
    padding-left: calc(17/720*100vw);
}

.progress .block2 .item .s2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #303131;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/720*100vw);
    color: #6A6B6A;
    line-height: calc(41/720*100vw);
    padding-top: calc(24/720*100vw);
    padding-bottom: calc(37/720*100vw);
}

.progress .block3 {
}

.progress .block3 .title {
    padding-top: calc(40/720*100vw);
    padding-left: calc(14/720*100vw);
}

.progress .block3 .title img {
    height: calc(130/720*100vw);
}

.progress .block3 .txt1 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(22/720*100vw);
    color: #6A6B6A;
    line-height: calc(55/720*100vw);
    padding-top: calc(39/720*100vw);
    padding-bottom: calc(26/720*100vw);
    padding-left: calc(26/720*100vw);
}

.progress .block3 .txt1 p {
}

.progress .block3 .txt1 b {
    color: #157037;
    font-weight: normal;
}

.progress .block3 .imgbox {
    padding-bottom: calc(45/720*100vw);
}

.progress .block3 .imgbox img {
    width: calc(684/720*100vw);
    display: block;
    margin-left: calc(7/720*100vw);
}

.formTable {
    padding: calc(20/720*100vw) calc(41/720*100vw);
    padding-bottom: calc(80/720*100vw);
}



.formTable .s1 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #525353;
	margin-top: calc(5 / 720* 100vw);
    margin-bottom: calc(5 / 720* 100vw);
}

.formTable .s1 b {
    color: #FF0000;
}

.formTable .words {
    height: calc(74/720*100vw);
    display: block;
    margin-top: calc(32/720*100vw);
    width: 100%;
    margin-bottom: calc(31/720*100vw);
    border: 1px solid #ccc;
    padding: 0px calc(18/720*100vw);
    font-family: NSimSun;
    font-weight: 400;
    font-size: calc(20/720*100vw);
}

.formTable .checkbox {
    display: flex;
    align-items: center;
    padding: calc(26/720*100vw) 0px;
    border-bottom: 1px solid #ccc;
}

.formTable .checkbox label input {
    width: calc(25/720*100vw);
    height: calc(25/720*100vw);
    margin-right: calc(/720*100vw);
}

.formTable .checkbox label {
    display: flex;
    align-items: center;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #525353;
    margin-right: calc(56/720*100vw);
}

.formTable .s3 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #525353;
    margin-right: calc(18/720*100vw);
}

.formTable .s4 {
    display: flex;
    align-items: center;
}

.formTable .send {
    margin-top: calc(56/720*100vw);
    height: calc(81/720*100vw);
    background: #167037;
    border-radius: calc(40/720*100vw);
    width: 100%;
    border: none;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30/720*100vw);
    color: #FFFFFF;
}

.height40 {
    height: calc(40/720*100vw);
}

.progress.type2 .block2 .item .num {
    font-size: calc(22/720*100vw);
}

.contact {
    text-align: center;
}

.contact .title {
    font-family: MiSans;
    font-weight: bold;
    font-size: calc(46/720*100vw);
    color: #156E38;
    padding-top: calc(82/720*100vw);
    padding-bottom: calc(40/720*100vw);
}

.contact .dec {
}

.contact .dec p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(34/720*100vw);
    padding-bottom: calc(26/720*100vw);
    color: #080808;
}

.contact .ewm {
    width: calc(302/720*100vw);
    height: calc(283/720*100vw);
    background: #fff;
    box-shadow: 0px calc(5/720*100vw) calc(13/720*100vw) 0px rgba(11,3,6,0.37);
    border-radius: calc(5/720*100vw);
    margin: auto;
    margin-top: calc(19/720*100vw);
    padding-top: calc(41/720*100vw);
}

.contact .ewm img {
    width: calc(164/720*100vw);
}

.contact .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #167037;
    margin-top: calc(7/720*100vw);
}
.article {
    padding: 0px calc(36/720*100vw);
}
.article .h2tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(24/720*100vw);
    color: #303030;
    text-align: center;
    padding-top: calc(48/720*100vw);
    padding-bottom: calc(25/720*100vw);
}
.article .infor {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/720*100vw);
    color: #A8A8A8;
    padding-bottom: calc(39/720*100vw);
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: calc(44/720*100vw);
}
.article .contentdetail {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/720*100vw);
    color: #787777;
    padding-bottom: calc(40/720*100vw);
}






    .load-more-btn {
      display: block;
      margin: 20px auto;
      padding: 10px 20px;
      font-size: 16px;
      color: #fff;
      background-color: #007bff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .load-more-btn:hover {
      background-color: #0056b3;
    }

.bdwz {
    font-family: Microsoft YaHei;
    font-size: calc(26 / 720* 100vw);
    color: #323232;
    line-height: calc(40 / 720* 100vw);
    margin: auto;
	padding-top: calc(41 / 720* 100vw);
    padding-left: calc(41 / 720* 100vw);
    padding-right: calc(41 / 720* 100vw);
    padding-bottom: calc(20 / 720* 100vw);
}

.bdwzbt {
	font-weight: 600;
    font-size: calc(36 / 720* 100vw);
    color: #323232;
    line-height: calc(65 / 720* 100vw);
	padding-bottom: calc(10 / 720* 100vw);
	}

.bdwz span {font-size:calc(30 / 720* 100vw);color: #a40101;font-weight: 600;}

.formTable .s5 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26/720*100vw);
    color: #525353;
	line-height: calc(40 / 720* 100vw);
	margin-top: calc(5 / 720* 100vw);
    width: 100%;
    margin-bottom: calc(15 / 720* 100vw);
}

.formTable .s5 label {
	width:100%;
    display: inline-block;
    align-items: center;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(26 / 720* 100vw);
    color: #525353;
    margin-top: calc(15 / 720* 100vw);
    margin-bottom: calc(15 / 720* 100vw);
	
}