.con {
    width: 1200px;
    margin: 0 auto;
}

.pu_bg {
    width: 100%;
}

.pu_bg img {
    width: 100%;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    height: auto;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-color: #fff;
    background: #fff;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    height: 13px;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    transition: .5s;
}

#fp-nav ul li a.active,
.fp-slidesNav ul li a.active {
    height: 30px;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
    background: #fff;
    height: 28px;
    border-radius: 4px;
}

#fp-nav ul li .fp-tooltip {
    top: 50%;
    transform: translateY(-50%);
}


/*头部*/

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 999;
    transition: .5s;
}

#header a.logo {
    float: left;
    margin-top: 15px;
    transition: .5s;
}

#header a.logo img {
    height: 60px;
    transition: .5s;
}

#header .nav {
    float: left;
    margin-top: 34px;
    margin-left: 80px;
    transition: .5s;
}

#header .nav li {
    float: left;
    margin: 0 25px;
}

#header .nav li a {
    position: relative;
    color: #fff;
    font-size: 16px;
    transition: .5s;
}

#header .nav li a:after {
    position: absolute;
    content: '';
    bottom: -8px;
    right: 50%;
    margin-left: -50%;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: .3s;
}

#header .nav li a:before {
    position: absolute;
    content: '';
    bottom: -8px;
    left: 50%;
    margin-right: -50%;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: .3s;
}

#header .nav li:hover a:after {
    width: 50%;
}

#header .nav li:hover a:before {
    width: 50%;
}

#header.on {
    height: 50px;
    background: rgba(0, 0, 0, .7);
}

#header.on a.logo {
    margin-top: 5px;
}

#header.on a.logo img {
    height: 40px;
}

#header.on .nav {
    margin-top: 13px;
    margin-left: 150px;
}

#header.on .nav li a {
    font-size: 14px;
}


/*banner*/

.banner {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.banner .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../gotmp/seo_bg.jpg);
}

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

.banner .txt h2 {
    margin-bottom: 20px;
    font-size: 54px;
    color: #fff;
    text-align: center;
    margin-top: 200px;
    opacity: 0;
    transition: .5s;
}

.banner .txt img {
    margin: 0 auto;
}

.banner .txt p {
    font-size: 16px;
    color: #fff;
    width: 710px;
    margin: 0 auto;
    line-height: 25px;
    text-align: center;
    opacity: 0;
    margin-top: 80px;
    transition: .5s;
}

.banner .txt.on h2 {
    margin-top: 0;
    opacity: 1;
}

.banner .txt.on p {
    margin-top: 0;
    opacity: 1;
}

.banner .mouse {
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -40px;
    width: 81px;
    height: 81px;
    background: url(../gotmp/mouse_guide.png) no-repeat;
    animation: mouse 1s infinite;
}

@keyframes mouse {
    0% {
        bottom: 20px;
    }
    50% {
        bottom: 10px;
    }
    100% {
        bottom: 20px;
    }
}

@-webkit-keyframes mouse {
    0% {
        bottom: 20px;
    }
    50% {
        bottom: 10px;
    }
    100% {
        bottom: 20px;
    }
}


/*首页第二屏*/

.section2 {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section2 ul {
    width: 100%;
    height: 100%;
}

.section2 ul li {
    position: relative;
    float: left;
    width: 25%;
    height: 100%;
    transition: .3s;
}

.section2 ul li a {
    display: block;
    width: 100%;
    height: 100%;
    opacity: .9;
    transition: .5s;
}

.section2 ul li:nth-child(1) {
    top: 15%;
    transition-delay: 0;
}

.section2 ul li:nth-child(2) {
    top: 20%;
    transition-delay: .1s;
}

.section2 ul li:nth-child(3) {
    top: 25%;
    transition-delay: .2s;
}

.section2 ul li:nth-child(4) {
    top: 30%;
    transition-delay: .3s;
}

.section2 ul li.on {
    top: 0;
}

.section2 ul li:nth-child(1) a {
    background: url(../gotmp/service-bg1.jpg) center/cover no-repeat;
}

.section2 ul li:nth-child(2) a {
    background: url(../gotmp/service-bg2.jpg) center/cover no-repeat;
}

.section2 ul li:nth-child(3) a {
    background: url(../gotmp/service-bg3.jpg) center/cover no-repeat;
}

.section2 ul li:nth-child(4) a {
    background: url(../gotmp/service-bg4.jpg) center/cover no-repeat;
}

.section2 ul li:hover a {
    opacity: 1;
}

.section2 ul li .cbox {
    width: 75%;
    padding: 230px 0 0;
    text-align: center;
    margin: 0 auto;
}

.section2 ul li .cbox img {
    position: relative;
    top: 0;
    margin-bottom: 33px;
    display: inline-block;
    transition: .5s;
}

.section2 ul li:hover .cbox img {
    top: -40px;
}

.section2 ul li .cbox h1 {
    font-size: 36px;
    color: #fff;
}

.section2 ul li .cbox h2 {
    font-size: 14px;
    color: #fff;
}

.section2 ul li .cbox .line {
    width: 45px;
    height: 1px;
    background: #fff;
    margin: 30px auto 40px;
}

.section2 ul li .cbox .oth {
    width: 80%;
    margin: 0 auto;
}

.section2 ul li .cbox .oth span {
    float: left;
    width: 50%;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.section2 ul li .cbox .oth span:nth-child(1) {
    border-right: 1px solid #fff;
}

.section2 ul li .cbox .oth span:nth-child(3) {
    border-right: 1px solid #fff;
}

.section2 ul li .cbox .oth span:nth-child(3) {
    border-bottom: none;
}

.section2 ul li .cbox .oth span:nth-child(4) {
    border-bottom: none;
}


/*首页第三屏*/

.section3 {
    display: block !important;
    width: 100%;
    overflow: hidden;
    table-layout: normal !important;
}

.section3 .fp-tableCell {
    display: block !important;
}

.section3 .wrap {
    width: 100%;
}

.section3 ul {
    width: 100%;
    overflow: hidden;
}

.section3 ul li {
    position: relative;
    float: left;
    width: 25%;
    transform: scale(0.8);
    transition: .3s;
    overflow: hidden;
}

.section3 ul li.on {
    transform: scale(1);
}

.section3 ul li img {
    width: 100%;
    height: 100%;
}

.section3 ul li a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, .7);
    padding: 30px;
    box-sizing: border-box;
    opacity: 0;
    transition: .5s;
}

.section3 ul li .opa .txt {
    margin-top: 50px;
    transition: .5s;
}

.section3 ul li .opa .txt h4 {
    font-size: 18px;
    color: #fff;
}

.section3 ul li .opa .txt h4 span {
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 6px;
}

.section3 ul li .opa .txt h5 {
    font-size: 24px;
    color: #fff;
    margin: 20px 0 10px;
}

.section3 ul li .opa .txt p {
    font-size: 14px;
    color: #fff;
    line-height: 23px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.section3 ul li:hover .opa {
    opacity: 1;
}

.section3 ul li:hover .opa .txt {
    margin-top: 0;
}

.section3 a.more {
    display: block;
    width: 240px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #2FAD38;
    border: 1px solid #2FAD38;
    margin: 40px auto 0;
    text-indent: 50px;
    transition: .4s;
}

.section3 a.more i {
    margin-left: 40px;
    text-indent: 0;
}

.section3 a.more:hover {
    background: #2FAD38;
    color: #fff;
}


/*首页第四屏*/

.section4 {
    width: 100%;
    height: 100%;
    background: url(../gotmp/sec4.jpg) center/cover no-repeat;
}

.section4 .s_top {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
}

.s_top .st_l {
    float: left;
    width: 55%;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 45px;
}

.s_top .st_l h1 {
    font-size: 48px;
    color: #fff;
}

.s_top .st_l h3 {
    font-size: 24px;
    color: #fff;
    margin: 30px 0 15px;
}

.s_top .st_l p {
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}

.s_top .st_r {
    float: right;
    width: 40%;
    padding-left: 30px;
    box-sizing: border-box;
}

.s_top .st_r h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.s_top .st_r ul li {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 5px 0;
}

.s_top .st_r ul li a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    margin-left: -14px;
    transition: .5s;
}

.s_top .st_r ul li a i {
    display: inline-block;
    font-size: 16px;
    margin-right: 8px;
    margin-left: 5px;
}

.s_top .st_r ul li:hover a {
    margin-left: 0;
    text-decoration: underline;
}

.s_btm {
    width: 100%;
    padding: 60px 0 0;
}

.s_btm ul li {
    float: left;
    width: 20%;
}

.s_btm ul li h5 {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.s_btm ul li h5 span {
    display: inline-block;
    vertical-align: bottom;
    font-size: 60px;
    font-weight: bold;
}

.s_btm ul li h5 em {
    display: inline-block;
    vertical-align: middle;
    margin-top: -30px;
}

.s_btm ul li p {
    font-size: 16px;
    color: #fff;
    text-align: center;
}


/*底部*/

.section5 {
    width: 100%;
    display: block !important;
    background: #f4f4f4;
}

.section5 .fp-tableCell {
    display: block !important;
}

#footer-text {
    padding: 50px 0;
}

.section5 dl {
    float: left;
    width: 140px;
    height: 200px;
    padding-bottom: 20px;
    border-left: 1px solid #e4e4e4;
    padding-left: 20px;
}

.section5 dt {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}

.section5 dd {
    margin-bottom: 8px;
}

.section5 dd a {
    font-size: 14px;
    color: #666;
}

.section5 .last {
    float: left;
    padding-left: 20px;
    width: 370px;
    height: 200px;
    border-left: 1px solid #e4e4e4;
}

.section5 .last .f_ewm {
    float: left;
    width: 120px;
}

.section5 .last .f_ewm img {
    width: 110px;
    height: 110px;
    margin: 0 auto;
}

.section5 .last .f_ewm p {
    font-size: 14px;
    color: #444;
    text-align: center;
}

.section5 .last .txt {
    float: right;
    width: 240px;
}

.section5 .last .txt h4 {
    font-size: 18px;
    color: #333;
}

.section5 .last .txt h5 {
    font-size: 30px;
    color: #000;
    margin: 5px 0;
}

.section5 .last .txt p {
    font-size: 12px;
    color: #666;
    line-height: 20px;
}

.copy {
    width: 100%;
    height: 36px;
    background: #000;
}

.move_news {
    width: 48%;
    float: left;
}

.move_news strong {
    display: inline-block;
    font-size: 12px;
    color: #707070;
    font-weight: bold;
    line-height: 36px;
    padding-right: 15px;
    vertical-align: top;
}

.move_news .news_cont {
    width: 70% !important;
    display: inline-block;
    vertical-align: middle;
    line-height: 36px;
}

.move_news .news_cont a {
    display: inline-block;
    margin: 0 8px;
    color: #707070;
    transition: .3s;
    font-size: 12px;
}

.move_news .news_cont a:hover {
    color: #fff;
}

.news_cont .tempWrap {
    width: 100% !important;
}

.copy .cp {
    float: right;
    width: 48%;
    font-size: 12px;
    color: #707070;
    line-height: 36px;
}

.copy .cp a {
    font-size: 12px;
    color: #707070;
}

.copy .cp a:hover {
    color: #f4f4f4;
    text-decoration: underline;
}


/*右侧固定*/

.gb-contact {
    z-index: 9999;
    right: 10px;
    position: fixed;
    top: 45%;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -10%)
}

.gb-contact li {
    margin-bottom: 10px;
    height: 60px;
    width: 60px;
    transition: 0.5s;
    position: relative
}

.gb-contact .txt {
    position: absolute;
    right: 0;
    height: 60px;
    overflow: hidden;
    transition: 0.5s;
    width: 60px;
    line-height: 60px;
    font-size: 16px;
    color: #ffffff;
    padding-right: 60px;
    text-align: center;
    background: rgba(47, 173, 56, 0.8);
    border-radius: 60px;
    box-sizing: border-box;
}

.gb-contact .ico {
    transition: 0.5s;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    background-image: url("../gotmp/img33.png");
    background-repeat: no-repeat;
    display: inline-block;
    height: 60px;
    width: 60px;
    border-radius: 60px
}

.gb-contact .spe {
    position: absolute;
    left: -160px;
    width: 160px;
    height: 160px;
    padding: px;
    background: #fff;
}

.gb-contact .spe .sj {
    position: absolute;
    bottom: 18px;
    right: -9px;
    width: 0;
    height: 0;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
    border-top: 10px solid transparent;
}

.gb-contact .spe img {
    width: 100%;
}

.gb-contact .ico-phone {
    background-position: 0 -70px;
}

.gb-contact .ico-sc {
    background-position: 0 -140px;
}

.gb-contact .ico-cx {
    background-position: 0 -210px;
}

.gb-contact .ico-zx {
    background-position: 0 -280px;
}

.gb-contact li:hover .txt {
    width: 208px;
}

.gb-contact li:hover .ico {
    background-color: #2FAD38;
}

.gb-contact li:hover .ico-pc {
    background-position: -90px 0;
}

.gb-contact li:hover .ico-phone {
    background-position: -90px -70px
}

.gb-contact li:hover .ico-sc {
    background-position: -90px -140px
}

.gb-contact li:hover .ico-cx {
    background-position: -90px -210px
}

.gb-contact li:hover .ico-zx {
    background-position: -90px -280px
}

.gb-contact .wx_ico {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #fff;
    text-align: center;
    border-radius: 100%;
    transition: .5s;
}

.gb-contact .wx_ico i {
    display: inline-block;
    margin-top: 15px;
    width: 30px;
    height: 30px;
    background: url(../gotmp/wx_ico.png) center/cover no-repeat;
    background-size: 100%;
}

.gb-contact .fanhui i {
    display: inline-block;
    margin-top: 15px;
    width: 30px;
    height: 30px;
    background: url(../gotmp/fh2.png) center/cover no-repeat;
    background-size: 100%;
}

.gb-contact li:hover .spe {
    display: block;
}

.gb-contact li:hover .wx_ico {
    background: #2FAD38;
}

.gb-contact li:hover .wx_ico i {
    background-image: url(../gotmp/wx_ico1.png);
}

.gb-contact li:hover .wx_ico.fanhui i {
    background-image: url(../gotmp/fh.png);
}


/*网站建设页面*/

.pu_bg {
    position: relative;
    width: 100%;
    height: 400px;
}

.pu_bg .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pu_bg .txt h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    margin-top: 200px;
    opacity: 0;
    transition: 1.2s;
}

.pu_bg .txt img {
    margin: 0 auto;
}

.pu_bg .txt p {
    font-size: 36px;
    color: #fff;
    width: 710px;
    margin: 0 auto;
    line-height: 25px;
    text-align: center;
    opacity: 0;
    margin-top: 80px;
    transition: 1.2s;
}

.pu_bg .txt.on h2 {
    margin-top: 0;
    opacity: 1;
}

.pu_bg .txt.on p {
    margin-top: 0;
    opacity: 1;
}


/*网站建设sec1*/

.js_sec1 {
    width: 100%;
    padding: 30px 0 50px;
}

.stxt h2 {
    font-size: 40px;
    color: #444;
    text-align: center;
    margin-bottom: 10px;
}

.stxt p {
    font-size: 16px;
    color: #666;
    text-align: center;
}

.js_sec1 ul {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.js_sec1 ul li {
    position: relative;
    display: inline-block;
    width: 128px;
    height: 128px;
    border: 1px solid #ddd;
    border-radius: 100%;
}

.js_sec1 ul li:nth-child(2n) {
    margin-top: 180px;
}

.js_sec1 ul li > i {
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../gotmp/js_ico.png);
    margin-top: 30px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

.js_sec1 ul li > h4 {
    font-size: 16px;
    color: #444;
    text-align: center;
}

.js_sec1 ul li:nth-child(1) > i {
    background-position: 0 0;
}

.js_sec1 ul li:nth-child(2) > i {
    background-position: -50px 0;
}

.js_sec1 ul li:nth-child(3) > i {
    background-position: -100px 0;
}

.js_sec1 ul li:nth-child(4) > i {
    background-position: -150px 0;
}

.js_sec1 ul li:nth-child(5) > i {
    background-position: -200px 0;
}

.js_sec1 ul li:nth-child(6) > i {
    background-position: -250px 0;
}

.js_sec1 ul li:nth-child(7) > i {
    background-position: -300px 0;
}

.js_sec1 ul li:nth-child(8) > i {
    background-position: -350px 0;
}

.js_sec1 ul li:before {
    position: absolute;
    content: '';
    top: 157px;
    left: 81px;
    width: 92px;
    height: 1px;
    border-top: 2px dashed #ddd;
    z-index: 9;
    transform: rotate(54deg);
}

.js_sec1 ul li:nth-child(2n):before {
    transform: rotate(-54deg);
    top: -23px;
    left: 89px;
    width: 94px;
}

.js_sec1 ul li:last-child:before {
    display: none;
}

.js_sec1 ul li .list {
    text-align: left;
    background: #f60;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 64px;
    padding-bottom: 0px;
    z-index: 10;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .4s;
}

.js_sec1 ul li.on .list {
    opacity: 1;
    height: auto;
    padding-bottom: 30px;
}

.js_sec1 ul li .list .ctop {
    margin-bottom: 10px;
}

.js_sec1 ul li .list .ctop i {
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../gotmp/js_ico.png);
    margin-top: 30px;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

.js_sec1 ul li .list .ctop h4 {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.js_sec1 ul li:nth-child(1) .list .ctop i {
    background-position: 0 -50px;
}

.js_sec1 ul li:nth-child(2) .list .ctop i {
    background-position: -50px -50px;
}

.js_sec1 ul li:nth-child(3) .list .ctop i {
    background-position: -100px -50px;
}

.js_sec1 ul li:nth-child(4) .list .ctop i {
    background-position: -150px -50px;
}

.js_sec1 ul li:nth-child(5) .list .ctop i {
    background-position: -200px -50px;
}

.js_sec1 ul li:nth-child(6) .list .ctop i {
    background-position: -250px -50px;
}

.js_sec1 ul li:nth-child(7) .list .ctop i {
    background-position: -300px -50px;
}

.js_sec1 ul li:nth-child(8) .list .ctop i {
    background-position: -350px -50px;
}

.js_sec1 ul li .list a {
    display: block;
    font-size: 13px;
    color: #fff;
    text-indent: 32px;
    margin: 5px 0;
}

.js_sec1 ul li:nth-child(2n) .list {
    bottom: 0;
    top: auto;
}


/*js-content2*/

#js-content2 {
    width: 100%;
    height: auto;
    background: #0195ff;
    margin-top: 70px;
    text-align: center;
    padding-bottom: 50px;
}

#js-content2 h1 {
    text-align: center;
    color: #fff;
    font-weight: 100;
    display: inline-block;
    border-bottom: 2px solid #fff;
    padding: 50px 10px 20px 10px;
    margin-bottom: 50px;
}

#js-content2 ol {
    width: 100%;
    margin: 0 auto;
    height: auto;
    text-align: center;
    font-size: 0;
    position: relative;
    top: 0px;
    transition: all 1s;
}

#js-content2 ol li {
    height: auto;
    overflow: hidden;
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
}

#js-content2 ol li {
    width: 30%;
    margin: 0 1% 40px 1%;
}

#js-content2 h1 {
    font-size: 40px;
}

#js-content2 ol li img {
    display: block;
    float: left;
    width: 28%;
    height: auto;
}

#js-content2 ol li .right {
    float: left;
    width: 72%;
    height: auto;
    text-align: left;
    color: #fff;
}

#js-content2 ol li .right h5 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
    margin-top: 10px;
}


/*网站建设sec3*/

.js_sec3 {
    width: 100%;
    padding: 50px 0;
}

.js_sec3 .con {
    margin-top: 40px;
}

.js_sec3 .s_l {
    float: left;
    width: 60%;
}

.js_sec3 .s_r {
    float: right;
    width: 36%;
    margin-top: 100px;
}

.js_sec3 .s_r img {
    max-width: 100%;
    margin: 0 auto;
}

.js_sec3 .s_l ul li h3 {
    position: relative;
    padding-left: 35px;
    font-size: 20px;
    color: #444;
    margin-bottom: 15px;
}

.js_sec3 .s_l ul li h3 span {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -10px;
    width: 18px;
    height: 18px;
    border: 2px solid #0d6fa6;
    border-radius: 18px;
    background: #fff;
}

.js_sec3 .s_l ul li h3 span:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 115px;
    background: #ddd;
    top: 20px;
    left: 50%;
}

.js_sec3 .s_l ul li:last-child h3 span:after {
    display: none;
}

.js_sec3 .s_l ul li p {
    font-size: 16px;
    color: #888;
    line-height: 24px;
    margin-left: 35px;
    padding-bottom: 25px;
}


/*网站建设sec4*/

.js_sec4 {
    width: 100%;
    padding: 50px 0;
    background: #f4f4f4;
}

.js_sec4 .con {
    margin-top: 40px;
}

.js_sec4 ul {
    width: 100%;
    overflow: hidden;
}

.js_sec4 ul li {
    position: relative;
    float: left;
    width: 32.33%;
    height: 280px;
    margin-right: 1.5%;
    transition: .3s;
    overflow: hidden;
    margin-bottom: 35px;
}

.js_sec4 ul li:nth-child(3n) {
    margin-right: 0;
}

.js_sec4 ul li img {
    width: 100%;
}

.js_sec4 ul li a {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, .7);
    padding: 30px;
    box-sizing: border-box;
    opacity: 0;
    transition: .5s;
}

.js_sec4 ul li .opa .txt {
    margin-top: 50px;
    transition: .5s;
}

.js_sec4 ul li .opa .txt h4 {
    font-size: 18px;
    color: #fff;
}

.js_sec4 ul li .opa .txt h4 span {
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 6px;
}

.js_sec4 ul li .opa .txt h5 {
    font-size: 24px;
    color: #fff;
    margin: 20px 0 10px;
}

.js_sec4 ul li .opa .txt p {
    font-size: 14px;
    color: #fff;
    line-height: 23px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.js_sec4 ul li:hover .opa {
    opacity: 1;
}

.js_sec4 ul li:hover .opa .txt {
    margin-top: 0;
}

.js_sec4 a.more {
    display: block;
    width: 240px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #f60;
    border: 1px solid #f60;
    margin: 40px auto 0;
    text-indent: 50px;
    transition: .4s;
}

.js_sec4 a.more i {
    margin-left: 40px;
    text-indent: 0;
}

.js_sec4 a.more:hover {
    background: #f60;
    color: #fff;
}

#anitOut {
    position: relative;
}

#anitOut canvas {
    position: absolute;
    top: 0;
    left: 0;
}

#container.s_btm {
    width: 100%;
    padding: 0;
    position: relative;
}

#container.s_btm ul {
    position: absolute;
    top: 0;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: -600px;
    width: 1200px;
}


/*网站建设详情sec2*/

.jf_sec2 {
    padding: 50px 0;
    width: 100%;
    height: 540px;
    background: #f89c00;
    overflow: hidden;
}

.jf_txt {
    float: left;
    width: 50%;
    margin-top: 100px;
}

.jf_txt h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 10px;
}

.jf_txt p {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    width: 90%;
}

.jf_txt span {
    display: block;
    /*width: 60px;height: 1px;background: #fff;*/
    margin-top: 40px;
}

.jf_pic {
    float: right;
    width: 50%;
    margin-top: 30px;
}

.jf_pic img {
    max-width: 90%;
    margin: 0 auto;
}


/*网站建设详情sec3*/

.jf_sec3 {
    padding: 50px 0;
    width: 100%;
    background: url(../gotmp/jfsec3_bg.jpg) center/cover no-repeat;
}

.jf_sec3 .stxt h2 {
    color: #fff;
}

.jf_sec3 ul {
    text-align: center;
    margin-top: 20px;
}

.jf_sec3 ul li {
    display: inline-block;
    width: 124px;
    margin: 0 20px;
}

.jf_sec3 ul li .item {
    position: relative;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    transition: .2s;
}

.jf_sec3 ul li .item .ck {
    position: absolute;
    width: 106px;
    height: 106px;
    background: #fff;
    top: 50%;
    left: 50%;
    margin-left: -53px;
    margin-top: -53px;
    border-radius: 100%;
    transition: .4s;
}

.jf_sec3 ul li .item .ck span {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

.jf_sec3 ul li .item .ck span.ic2 {
    transition: .4s;
    opacity: 0;
    transform: rotateY(0);
}

.jf_sec3 ul li:nth-child(1) .ck span.ic1 {
    background: url(../gotmp/ic1.png) center/cover no-repeat;
    background-size: 100%;
    transition: .3s;
    opacity: 1;
}

.jf_sec3 ul li:nth-child(1) .ck span.ic2 {
    background: url(../gotmp/ic1x.png) center/cover no-repeat;
    background-size: 100%;
}

.jf_sec3 ul li:nth-child(2) .ck span.ic1 {
    background: url(../gotmp/ic2.png) center/cover no-repeat;
    background-size: 100%;
    transition: .3s;
    opacity: 1;
}

.jf_sec3 ul li:nth-child(2) .ck span.ic2 {
    background: url(../gotmp/ic2x.png) center/cover no-repeat;
    background-size: 100%;
}

.jf_sec3 ul li:nth-child(3) .ck span.ic1 {
    background: url(../gotmp/ic3.png) center/cover no-repeat;
    background-size: 100%;
    transition: .3s;
    opacity: 1;
}

.jf_sec3 ul li:nth-child(3) .ck span.ic2 {
    background: url(../gotmp/ic3x.png) center/cover no-repeat;
    background-size: 100%;
}

.jf_sec3 ul li:nth-child(4) .ck span.ic1 {
    background: url(../gotmp/ic4.png) center/cover no-repeat;
    background-size: 100%;
    transition: .3s;
    opacity: 1;
}

.jf_sec3 ul li:nth-child(4) .ck span.ic2 {
    background: url(../gotmp/ic4x.png) center/cover no-repeat;
    background-size: 100%;
}

.jf_sec3 ul li:nth-child(5) .ck span.ic1 {
    background: url(../gotmp/ic5.png) center/cover no-repeat;
    background-size: 100%;
    transition: .3s;
    opacity: 1;
}

.jf_sec3 ul li:nth-child(5) .ck span.ic2 {
    background: url(../gotmp/ic5x.png) center/cover no-repeat;
    background-size: 100%;
}

.jf_sec3 ul li:nth-child(6) .ck span.ic1 {
    background: url(../gotmp/ic6.png) center/cover no-repeat;
    background-size: 100%;
    transition: .3s;
    opacity: 1;
}

.jf_sec3 ul li:nth-child(6) .ck span.ic2 {
    background: url(../gotmp/ic6x.png) center/cover no-repeat;
    background-size: 100%;
}

.jf_sec3 ul li:nth-child(7) .ck span.ic1 {
    background: url(../gotmp/ic7.png) center/cover no-repeat;
    background-size: 100%;
    transition: .3s;
    opacity: 1;
}

.jf_sec3 ul li:nth-child(7) .ck span.ic2 {
    background: url(../gotmp/ic7x.png) center/cover no-repeat;
    background-size: 100%;
}

.jf_sec3 ul li:hover .item {
    border-color: rgba(47, 173, 56, 0.2);
}

.jf_sec3 ul li:hover .item .ck {
    background: #2eac37;
}

.jf_sec3 ul li:hover .item .ck span.ic1 {
    opacity: 0;
}

.jf_sec3 ul li:hover .item .ck span.ic2 {
    opacity: 1;
    transform: rotateY(180deg);
}

.jf_sec3 ul li p {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
}


/*网站建设详情sec4*/

.jf_sec4 {
    width: 100%;
    padding: 50px 0 0;
    overflow: hidden;
}

.jf_sec4 .con {
    margin-top: 50px;
}

.jf_sec4 ul li {
    float: left;
    width: 20%;
    border-right: 1px solid #ddd;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.jf_sec4 ul li img {
    position: relative;
    top: 0;
    height: 52px;
    margin: 0 auto;
    transition: .4s;
}

.jf_sec4 ul li h5 {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-top: 10px;
}

.jf_sec4 ul li p {
    font-size: 14px;
    color: #555;
    text-align: center;
}

.jf_sec4 ul li:hover img {
    top: -20px;
}


/*网站建设详情sec5*/

.jf_sec5 {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
    background: url(../gotmp/yxwz_bg1.jpg) center/cover fixed no-repeat;
}

.jf_sec5 .con {
    margin-top: 40px;
}

.jf_sec5 .stxt h2 {
    color: #fff;
}

.jf_sec5 .stxt p {
    color: #fff;
}

.jf_sec5 ul li {
    float: left;
    width: 19%;
    height: 130px;
    margin-right: 1.2%;
    margin-bottom: 15px;
}

.jf_sec5 ul li:nth-child(5n) {
    margin-right: 0;
}

.jf_sec5 ul li a {
    display: block;
    width: 100%;
    height: 105px;
    padding-top: 25px;
    transition: transform .8s;
    transform: rotateX(0deg);
    background: rgba(0, 0, 0, .6);
}

.jf_sec5 ul li span {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    background: url(../gotmp/yxwz_icos.png) no-repeat;
}

.jf_sec5 ul li p {
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.jf_sec5 ul li:nth-child(1) span {
    background-position: 0 -80px;
}

.jf_sec5 ul li:nth-child(2) span {
    background-position: -40px -80px;
}

.jf_sec5 ul li:nth-child(3) span {
    background-position: -80px -80px;
}

.jf_sec5 ul li:nth-child(4) span {
    background-position: -120px -80px;
}

.jf_sec5 ul li:nth-child(5) span {
    background-position: -160px -80px;
}

.jf_sec5 ul li:nth-child(6) span {
    background-position: 0px -120px;
}

.jf_sec5 ul li:nth-child(7) span {
    background-position: -40px -120px;
}

.jf_sec5 ul li:nth-child(8) span {
    background-position: -80px -120px;
}

.jf_sec5 ul li:nth-child(9) span {
    background-position: -120px -120px;
}

.jf_sec5 ul li:nth-child(10) span {
    background-position: -160px -120px;
}

.jf_sec5 ul li:hover a {
    transform: rotateX(360deg);
    background: #ffb400;
}


/*案例页面*/

.anli {
    width: 100%;
    padding: 50px 0;
}

.anli .con {
    margin-top: 30px;
}

.anli ul li {
    position: relative;
    float: left;
    width: 23%;
    margin-right: 2.4%;
    border: 1px dashed #ddd;
    border-radius: 6px;
    height: 80px;
    padding: 10px 0;
}

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

.anli ul li span {
    display: block;
    width: 94px;
    height: 73px;
    margin: 0 auto 35px;
}

.anli ul li h3 {
    display: none;
    font-size: 22px;
    color: #333;
    text-align: center;
}

.anli ul li a {
    display: block;
    width: 94px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    background: #0d6fa6;
    margin: 20px auto 0;
    border-radius: 3px;
}

.anli ul li i {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid #0d6fa6;
}

.anli ul li i.i1 {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
    border-radius: 6px 0 0 0;
}

.anli ul li i.i2 {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
    border-radius: 0px 6px 0 0;
}

.anli ul li i.i3 {
    bottom: -1px;
    left: -1px;
    border-top: none;
    border-right: none;
    border-radius: 0px 0px 0 6px;
}

.anli ul li i.i4 {
    bottom: -1px;
    right: -1px;
    border-top: none;
    border-left: none;
    border-radius: 0px 0px 6px 0px;
}

.anli ul li span {
    display: none;
    background: url(../gotmp/pg1.png) no-repeat;
}


/*.anli ul li:nth-child(1) span{background: url(../gotmp/pg1.png) no-repeat;}
.anli ul li:nth-child(2) span{background: url(../gotmp/pg2.png) no-repeat;}
.anli ul li:nth-child(3) span{background: url(../gotmp/pg3.png) no-repeat;}
.anli ul li:nth-child(4) span{background: url(../gotmp/pg4.png) no-repeat;}*/

.anli ul li:hover {
    background: #0d6fa6;
}

.anli ul li:hover h3 {
    color: #fff;
}

.anli ul li:nth-child(1):hover span {
    background-image: url(../gotmp/pg1x.png);
}

.anli ul li:nth-child(2):hover span {
    background-image: url(../gotmp/pg2x.png);
}

.anli ul li:nth-child(3):hover span {
    background-image: url(../gotmp/pg3x.png);
}

.anli ul li:nth-child(4):hover span {
    background-image: url(../gotmp/pg4x.png);
}

.anli ul li:hover a {
    background: #fff;
    color: #0d6fa6;
}


/*万词霸屏页面*/

.conx {
    width: 1250px;
    margin: 0 auto;
}

.sec_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sec_wrap .se_info {
    width: 540px;
    max-width: 50%;
    margin-top: 260px;
}

.sec_wrap .se_info h2 {
    font-size: 60px;
    color: #fff;
}

.sec_wrap .se_info p {
    margin-top: 50px;
    font-size: 18px;
    color: #fff;
}

.section1x {
    width: 100%;
    margin-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.section1x .conx {
    position: relative;
}

.section1x .tg_l {
    float: left;
    width: 700px;
    height: 518px;
}

.section1x .tg_p1 {
    position: absolute;
    bottom: 0;
    left: 565px;
    width: 168px;
    height: 276px;
}

.section1x .tg_p2 {
    position: absolute;
    top: 50px;
    right: 100px;
}

.section1x .tg_r {
    float: right;
    padding-top: 100px;
}

.section1x .tg_r .p1 {
    font-size: 48px;
    color: #333;
}

.section1x .tg_r .p2 {
    font-size: 60px;
    color: #333;
    padding: 10px 0;
}

.section1x .tg_r .p3 {
    font-size: 36px;
    color: #333;
}

.anli ul li a {
    margin-top: 1px !important
}

.section2x {
    position: relative;
    width: 100%;
    height: 800px;
    background: url(../images/se2_bg1.jpg) center no-repeat;
    overflow: hidden;
}

.section2x .m_bg {
    height: 100%;
    background: url(../images/se2_bg2.png) center no-repeat;
}

.section2x .se_txt {
    position: absolute;
    width: 100%;
    height: 800px;
    top: 0;
}

.section2x .se_txt h2 {
    font-size: 60px;
    margin-top: 120px;
    text-align: center;
    color: #fff;
}

.section2x .se_txt ul {
    width: 570px;
    margin: 30px auto;
    text-align: center;
}

.section2x .se_txt ul li {
    display: inline-block;
    width: 175px;
    border-right: 1px solid #4b4b4b
}

.section2x .se_txt ul li:last-child {
    border: none;
}

.section2x .se_txt ul li .txt1 {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.section2x .se_txt ul li .txt1 span {
    font-size: 60px;
}

.section2x .se_txt ul li .txt2 {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

.section2x .se_txt .s_ofo {
    font-size: 18px;
    color: #fff;
    width: 660px;
    margin: 0 auto;
    line-height: 30px;
}

.section2x .donghua {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 500px;
    top: 300px;
}

.section3x {
    position: relative;
    width: 100%;
    height: 825px;
    background: url(../images/se3_bg.jpg) center no-repeat;
    overflow: hidden;
}

.section3x .conx h2 {
    font-size: 60px;
    text-align: center;
    color: #fff;
    margin: 120px 0 50px;
}

.section3x .conx p {
    font-size: 18px;
    color: #fff;
    width: 680px;
    margin: 0 auto;
    line-height: 30px;
}

.section3x .tubiao {
    position: relative;
    width: 800px;
    height: 350px;
    margin: 0 auto;
    margin-top: 200px;
}

.section3x .tubiao div {
    position: absolute;
    text-align: center;
}

.section3x .tubiao p {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.section3x .tubiao span.icn1 {
    display: inline-block;
    width: 100px;
    height: 130px;
    background: url(../images/icn1.png) center bottom no-repeat;
}

.section3x .tubiao span.icn2 {
    display: inline-block;
    width: 65px;
    height: 85px;
    background: url(../images/icn2.png) center bottom no-repeat;
}

.section3x .tubiao span.icn3 {
    display: inline-block;
    width: 100px;
    height: 130px;
    background: url(../images/icn3.png) center bottom no-repeat;
}

.section3x .tubiao span.icn4 {
    display: inline-block;
    width: 100px;
    height: 110px;
    background: url(../images/icn4.png) center bottom no-repeat;
}

.section3x .tubiao .tb1 {
    left: 0;
    top: 0px;
}

.section3x .tubiao .tb2 {
    left: 200px;
    top: -100px;
}

.section3x .tubiao .tb3 {
    left: 330px;
    top: 30px;
}

.section3x .tubiao .tb4 {
    right: 0;
    top: -100px;
}

.section3x .bt_bg {
    position: absolute;
    bottom: -30px;
    width: 100%;
    height: 226px;
    background: url(../images/se3_bg2.png) center bottom no-repeat;
}

.section4x {
    position: relative;
    width: 100%;
    height: 880px;
    background: url(../images/se4_bg.png) center no-repeat;
    overflow: hidden;
}

.section4x h2 {
    font-size: 60px;
    margin-top: 120px;
    text-align: center;
    color: #333;
}

.section4x .txt {
    width: 880px;
    margin: 40px auto 0;
}

.section4x .txt p {
    color: #333;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}

.section4x .s4_mv1 {
    width: 1140px;
    height: 334px;
    margin: 50px auto 0;
    background: url(../images/s4_mv1.png) center no-repeat;
}

.section4x .s4_mv2 {
    position: absolute;
    right: 170px;
    top: 290px;
    width: 176px;
    height: 153px;
    background: url(../images/s4_mv2.png) center no-repeat;
}

.section5x {
    width: 100%;
    height: 810px;
    background: #000;
    overflow: hidden;
}

.section5x .s5_l {
    float: left;
    width: 540px;
    max-width: 50%;
    margin-top: 260px;
}

.section5x .s5_l .txt1 {
    font-size: 60px;
    color: #f00;
}

.section5x .s5_l .txt2 {
    font-size: 60px;
    color: #fff;
}

.section5x .s5_l .txt3 {
    font-size: 18px;
    margin-top: 30px;
    color: #fff;
}

.section5x .s5_r {
    float: right;
    width: 50%;
    height: 810px;
    background: url(../images/se5_bg.png) right bottom no-repeat;
}

.section6x {
    width: 100%;
    height: 880px;
    background: #db6e1e;
    overflow: hidden;
}

.section6x h2 {
    font-size: 60px;
    margin-top: 80px;
    text-align: center;
    color: #fff;
}

.section6x p {
    width: 880px;
    margin: 40px auto 0;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}

.section6x #s6_banner {
    width: 1052px;
    height: 500px;
    margin: 100px auto 0;
    overflow: hidden;
    background: url(../images/se6_bg.png) top no-repeat;
}

.section6x #s6_banner .ban_wrap {
    position: relative;
    width: 922px;
    height: 447px;
    margin: 41px;
}

.section6x #s6_banner .swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.section6x #s6_banner .swiper-container .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.section6x #s6_banner .swiper-container .swiper-wrapper img {
    width: 100%;
    height: 100%;
}

.section6x #s6_banner .swiper-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.section7x {
    width: 100%;
    height: 1000px;
    background: #fff;
    overflow: hidden;
}

.section7x h2 {
    font-size: 60px;
    margin-top: 120px;
    text-align: center;
    color: #333;
}

.section7x .txt {
    width: 880px;
    margin: 40px auto 0;
}

.section7x .txt p {
    color: #333;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}

.section7x .s7_mv {
    width: 1209px;
    height: 549px;
    margin: 100px auto 0;
    background: url(../gotmp/se7_bg.png) bottom center no-repeat;
}

.section8x {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background: url(../images/se8_bg.jpg) bottom center #fff no-repeat;
}

.section8x h2 {
    font-size: 60px;
    margin-top: 80px;
    text-align: center;
    color: #333;
}

.section8x p {
    width: 820px;
    margin: 40px auto 0;
    color: #333;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}

.section8x .lg_wrap {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 80px;
}

.section8x .lg_wrap span {
    position: absolute;
    width: 200px;
    height: 85px;
}

.section8x .lg_wrap span.lg1 {
    left: 500px;
    background: url(../images/lg1.jpg) center no-repeat;
}

.section8x .lg_wrap span.lg2 {
    right: 200px;
    top: 98px;
    background: url(../images/lg2.png) center no-repeat;
}

.section8x .lg_wrap span.lg3 {
    left: 120px;
    bottom: 350px;
    background: url(../images/lg3.jpg) center no-repeat;
}

.section8x .lg_wrap span.lg4 {
    top: 149px;
    right: 500px;
    background: url(../gotmp/lg4.jpg) center no-repeat;
}

.section8x .lg_wrap span.lg5 {
    left: 200px;
    bottom: 250px;
    background: url(../gotmp/lg5.png) center no-repeat;
}

.section8x .lg_wrap span.lg6 {
    left: 400px;
    bottom: 140px;
    background: url(../gotmp/lg6.jpg) center no-repeat;
}

.section8x .lg_wrap span.lg7 {
    left: 50px;
    bottom: 100px;
    background: url(../gotmp/lg7.jpg) center no-repeat;
}


/*点放大*/

@keyframes dian {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    30% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: .1
    }
    60% {
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5);
        opacity: .5
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes dian {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    30% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: .1
    }
    60% {
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5);
        opacity: .5
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-moz-keyframes dian {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    30% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: .1
    }
    60% {
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5);
        opacity: .5
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.section8x .circle {
    position: absolute;
    height: 88px;
    width: 88px;
    display: inline-block;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    border-radius: 48px;
    opacity: .12;
    filter: alpha(opacity=0);
    -webkit-animation: dian 2s ease-out;
    -moz-animation: dian 2s ease-out;
    -o-animation: dian 2s ease-out;
    animation: dian 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle {
    background: #000;
}

.section8x .circle1 {
    top: 200px;
    right: 100px;
    width: 20px;
    height: 20px;
}

.section8x .circle2 {
    top: 260px;
    right: 130px;
    width: 30px;
    height: 30px;
    -webkit-animation: dian 3s ease-out;
    -moz-animation: dian 3s ease-out;
    -o-animation: dian 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle3 {
    top: 230px;
    right: 230px;
    width: 10px;
    height: 10px;
    -webkit-animation: dian 0.8s ease-out;
    -moz-animation: dian 0.8s ease-out;
    -o-animation: dian 0.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle4 {
    top: 300px;
    right: 200px;
    width: 25px;
    height: 25px;
    -webkit-animation: dian 1.3s ease-out;
    -moz-animation: dian 1.3s ease-out;
    -o-animation: dian 1.3s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle5 {
    top: 300px;
    right: 100px;
    width: 16px;
    height: 16px;
    -webkit-animation: dian 2.2s ease-out;
    -moz-animation: dian 2.2s ease-out;
    -o-animation: dian 2.2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle6 {
    top: 360px;
    right: 100px;
    width: 14px;
    height: 14px;
    -webkit-animation: dian 0.6s ease-out;
    -moz-animation: dian 0.6s ease-out;
    -o-animation: dian 0.6s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle7 {
    top: 360px;
    right: 150px;
    width: 35px;
    height: 35px;
    -webkit-animation: dian 1.1s ease-out;
    -moz-animation: dian 1.1s ease-out;
    -o-animation: dian 1.1s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle8 {
    top: 460px;
    right: 220px;
    width: 13px;
    height: 13px;
    -webkit-animation: dian 0.4s ease-out;
    -moz-animation: dian 0.4s ease-out;
    -o-animation: dian 0.4s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle9 {
    top: 460px;
    right: 220px;
    width: 13px;
    height: 13px;
    -webkit-animation: dian 2.6s ease-out;
    -moz-animation: dian 2.6s ease-out;
    -o-animation: dian 2 . s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle10 {
    top: 560px;
    right: 320px;
    width: 17px;
    height: 17px;
    -webkit-animation: dian 1.2s ease-out;
    -moz-animation: dian 1.2s ease-out;
    -o-animation: dian 1.2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle11 {
    top: 500px;
    right: 260px;
    width: 26px;
    height: 26px;
    -webkit-animation: dian 1.1s ease-out;
    -moz-animation: dian 1.1s ease-out;
    -o-animation: dian 1.1s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle12 {
    top: 600px;
    right: 260px;
    width: 10px;
    height: 10px;
    -webkit-animation: dian 0.8s ease-out;
    -moz-animation: dian 0.8s ease-out;
    -o-animation: dian 0.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle13 {
    bottom: 50px;
    right: 260px;
    width: 15px;
    height: 15px;
    -webkit-animation: dian 2.3s ease-out;
    -moz-animation: dian 2.3s ease-out;
    -o-animation: dian 2.3s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle14 {
    bottom: 50px;
    right: 330px;
    width: 20px;
    height: 20px;
    -webkit-animation: dian 1.1s ease-out;
    -moz-animation: dian 1.1s ease-out;
    -o-animation: dian 1.1s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.section8x .circle15 {
    bottom: 100px;
    right: 290px;
    width: 20px;
    height: 22px;
    -webkit-animation: dian 0.8s ease-out;
    -moz-animation: dian 0.8s ease-out;
    -o-animation: dian 0.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-o-keyframes dian {
    0% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    30% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: .1
    }
    60% {
        -webkit-transform: scale(.5);
        -moz-transform: scale(.5);
        -o-transform: scale(.5);
        transform: scale(.5);
        opacity: .5
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.section9x {
    width: 100%;
    height: 920px;
    overflow: hidden;
    background: #be2829;
}

.section9x .conx {
    width: 1200px;
}

.section9x h2 {
    font-size: 60px;
    margin-top: 100px;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}

.section9x p {
    margin-top: 30px;
    font-size: 30px;
    color: #fff;
    text-align: center;
}

.section9x .s9_mv1 {
    float: left;
    margin-top: 170px;
    margin-left: 100px;
}

.section9x .s9_mv2 {
    float: left;
    margin-top: 10px;
}

.section9x .s9_mv3 {
    float: left;
    margin-top: 290px;
}

.section10x {
    position: relative;
    width: 100%;
    height: 810px;
    overflow: hidden;
    background: url(../gotmp/se10_bg.jpg) center no-repeat;
}

.section10x .wrap {
    position: relative;
    overflow: hidden;
    width: 1300px;
    height: 810px;
    margin: 0 auto;
    background: url(../gotmp/s10_mv1.png) left 160px no-repeat;
}

.section10x .wrap .s10_mv2 {
    position: absolute;
    right: -10px;
    bottom: 50px;
    width: 270px;
    height: 246px;
    background: url(../gotmp/s10_mv2.png) center no-repeat;
}

.section11x {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background: #bb2829;
}

.section11x .wrap {
    width: 100%;
    height: 800px;
    background: url(../gotmp/s11_mv1.jpg) -82% bottom no-repeat;
}

.section11x .sec_wrap .se_info {
    width: 700px;
    float: right;
    margin-top: 210px;
}

.section11x .sec_wrap .se_info h2 {
    text-align: right;
}

.section11x .sec_wrap .se_info h2.spe {
    margin-bottom: 70px;
}

.section11x .sec_wrap .se_info p {
    text-align: right;
    margin-top: 0;
    line-height: 30px;
}

.section12x {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background: #0a2452;
}

.section12x .wrap {
    position: relative;
    width: 1300px;
    height: 800px;
    position: relative;
    margin: 0 auto;
    background: url(../gotmp/s12_mv1.jpg) left bottom no-repeat;
}

.section12x .wrap .mv1 {
    position: absolute;
    top: 253px;
    left: 164px;
    height: 348px;
    width: 345px;
    background: url(../gotmp/s12_mv2.png) no-repeat;
    animation: turn 8s linear infinite;
    -moz-animation: turn 8s linear infinite;
    -webkit-animation: turn 8s linear infinite;
    -o-animation: turn 8s linear infinite;
}

.section12x .wrap .mv2 {
    position: absolute;
    top: 297px;
    left: 206px;
    height: 261px;
    width: 260px;
    background: url(../gotmp/s12_mv3.png) no-repeat;
    animation: turn2 6s linear infinite;
    -moz-animation: turn2 6s linear infinite;
    -webkit-animation: turn2 6s linear infinite;
    -o-animation: turn2 6s linear infinite;
}

.section12x .sec_wrap .se_info {
    width: 700px;
    float: right;
    margin-top: 215px;
}

.section12x .sec_wrap .se_info h2 {
    text-align: right;
}

.section12x .sec_wrap .se_info h2.spe {
    margin-bottom: 70px;
}

.section12x .sec_wrap .se_info p {
    text-align: right;
    margin-top: 0;
    line-height: 30px;
}


/*360度旋转*/

@keyframes turn2 {
    from {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
    to {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0)
    }
}

@-moz-keyframes turn2 {
    from {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
    to {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0)
    }
}

@-webkit-keyframes turn2 {
    from {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
    to {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0)
    }
}

@-o-keyframes turn2 {
    from {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
    to {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0)
    }
}

@keyframes turn {
    from {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0)
    }
    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

@-moz-keyframes turn {
    from {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0)
    }
    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

@-webkit-keyframes turn {
    from {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0)
    }
    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

@-o-keyframes turn {
    from {
        transform: rotate(0);
        -ms-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        -moz-transform: rotate(0)
    }
    to {
        transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

.section13x {
    position: relative;
    width: 100%;
    height: 800px;
    background: #f1f1f1;
    overflow: hidden;
}

.section13x h2 {
    font-size: 60px;
    margin-top: 80px;
    text-align: center;
    color: #333;
}

.section13x p {
    width: 660px;
    margin: 10px auto 0;
    color: #333;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}

.section13x .s13_mv1 {
    height: 400px;
    margin-top: 100px;
    background: url(../gotmp/s13_mv1.png) center #f1f1f1 no-repeat;
}

.section14x {
    position: relative;
    width: 100%;
    height: 810px;
    background: #fff;
    overflow: hidden;
}

.section14x .wrap {
    width: 100%;
    height: 760px;
    background: url(../gotmp/s14_mv1.jpg) center no-repeat;
}

.section14x .sec_wrap .se_info h2 {
    color: #333;
}

.section14x .sec_wrap .se_info p {
    font-size: 30px;
    color: #333;
}

.section15x {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 800px;
    background: url(../gotmp/se15_bg.jpg) bottom center no-repeat;
}

.section15x h2 {
    font-size: 60px;
    margin-top: 80px;
    text-align: center;
    color: #fff;
}

.section15x p {
    width: 660px;
    margin: 10px auto 0;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
}

.section15x .cir_box {
    position: relative;
    width: 920px;
    height: 440px;
    margin: 100px auto;
}

.section15x .cir_box .sp1 {
    position: absolute;
    left: 0;
    bottom: 100px;
    width: 100px;
    height: 100px;
    background: url(../gotmp/s15_icn1.png) center no-repeat;
}

.section15x .cir_box .sp2 {
    position: absolute;
    left: 140px;
    bottom: 260px;
    width: 112px;
    height: 112px;
    background: url(../gotmp/s15_icn2.png) center no-repeat;
}

.section15x .cir_box .sp3 {
    position: absolute;
    left: 390px;
    bottom: 330px;
    width: 131px;
    height: 131px;
    background: url(../gotmp/s15_icn3.png) center no-repeat;
}

.section15x .cir_box .sp4 {
    position: absolute;
    right: 140px;
    bottom: 260px;
    width: 112px;
    height: 112px;
    background: url(../gotmp/s15_icn4.png) center no-repeat;
}

.section15x .cir_box .sp5 {
    position: absolute;
    right: 0;
    bottom: 100px;
    width: 100px;
    height: 100px;
    background: url(../gotmp/s15_icn5.png) center no-repeat;
}

.section15x .cir_box .sptxt {
    position: absolute;
    bottom: 50px;
    font-size: 38px;
    line-height: 65px;
    text-align: center;
    width: 100%;
}

.section15x .cir_box .sptxt p {
    font-size: 40px;
    color: #fff;
    text-align: center;
    line-height: 50px;
}

.section15x .rin_box {
    width: 920px;
    margin: 0 auto;
    position: relative;
    left: 26%;
}

.section15x .rin_box .bow {
    width: 300px;
    height: 300px;
    border-left: 0;
    border: 3px solid #62C4EA;
    position: absolute;
    border-bottom: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
}

.bow1 {
    -webkit-animation: ripple 8s infinite ease-out;
    -moz-animation: ripple 8s infinite ease-out;
    animation: ripple 8s infinite ease-out;
}

.bow2 {
    -webkit-animation: ripple 8s infinite ease-out;
    -moz-animation: ripple 8s infinite ease-out;
    animation: ripple 8s infinite ease-out;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}

.bow3 {
    -webkit-animation: ripple 8s infinite ease-out;
    -moz-animation: ripple 8s infinite ease-out;
    animation: ripple 8s infinite ease-out;
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    animation-delay: 4s;
}

.bow4 {
    -webkit-animation: ripple 8s infinite ease-out;
    -moz-animation: ripple 8s infinite ease-out;
    animation: ripple 8s infinite ease-out;
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    animation-delay: 6s;
}

.bow5 {
    -webkit-animation: ripple 8s infinite ease-out;
    -moz-animation: ripple 8s infinite ease-out;
    animation: ripple 8s infinite ease-out;
    -webkit-animation-delay: 8s;
    -moz-animation-delay: 8s;
    animation-delay: 8s;
}

@-webkit-keyframes ripple {
    0% {
        opacity: .4
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(4, 4);
        transform: scale(4, 4)
    }
}

@-moz-keyframes ripple {
    0% {
        opacity: .4
    }
    100% {
        opacity: 0;
        -moz-transform: scale(4, 4);
        transform: scale(4, 4)
    }
}

@keyframes ripple {
    0% {
        opacity: .4
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(4, 4);
        -moz-transform: scale(4, 4);
        transform: scale(4, 4)
    }
}

.section16x {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 800px;
    background: #FE7D29;
}

.section16x .wrap {
    width: 100%;
    height: 800px;
    background: url(../gotmp/s16_mv1.png) 160% bottom no-repeat;
}

.section16x .sec_wrap .se_info {
    width: 100%;
    max-width: 100%;
    margin-top: 55px;
}

.section16x .sec_wrap h2 {
    margin-bottom: 40px;
}

.section16x .sec_wrap p {
    margin-top: 0;
    font-size: 34px;
    line-height: 50px;
}

.section17x {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 860px;
    background: url(../gotmp/se17_bg.jpg) top center no-repeat;
}

.section17x h2 {
    font-size: 60px;
    margin-top: 80px;
    text-align: center;
    color: #fff;
}

.section17x p {
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
}

.section17x p.spe {
    margin-top: 30px;
}

.section18x {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 800px;
    background: url(../gotmp/se18_bg.jpg) bottom center no-repeat;
}

.section18x h2 {
    font-size: 60px;
    margin-top: 80px;
    text-align: center;
    color: #fff;
}

.section18x p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
}

.section18x p.spe {
    margin-top: 15px;
}

.section18x .s18_mv1 {
    width: 879px;
    height: 254px;
    margin: 210px auto 0;
    background: url(../gotmp/s18_mv1.png) bottom center no-repeat;
}

.section19x {
    width: 100%;
    overflow: hidden;
}

.section19x h1 {
    font-size: 60px;
    color: #333;
    text-align: center;
    margin-top: 80px;
}

.section19x .platform-list {
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
    line-height: 20px;
    padding-top: 70px;
}

.section19x .platform-list table {
    border-collapse: separate;
}

.section19x .platform-list table tbody .top {
    height: 94px;
    font-size: 18px;
}

.section19x .platform-list table tbody .top .top-td {
    text-align: center;
    vertical-align: middle;
    font-size: 18px;
}

.section19x .platform-list table tbody .content-tr .one {
    border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
    border-top: 1px solid #e4e4e4;
    width: 149px;
}

.section19x .platform-list table tbody .top .first {
    width: 149px;
    font-size: 18px;
}

.section19x .platform-list table tbody .top .ios {
    background-color: #888888;
    border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    -webkit-border-radius: 10px 0 0 0;
    color: #fff;
    width: 300px;
}

.section19x .platform-list table tbody .top .pc {
    background-color: #e82828;
    border-radius: 0 10px 0 0;
    -moz-border-radius: 0 10px 0 0;
    -webkit-border-radius: 0 10px 0 0;
    color: #fff;
    font-size: 36px;
    border-bottom: 1px solid #c90000;
    height: 94px;
    line-height: 94px;
}

.section19x .platform-list table tbody .content-tr {
    height: 98px;
}

.section19x .platform-list table tbody .content-tr .first {
    background-color: #f5f5f5;
    line-height: 1.2;
}

.section19x .platform-list table tbody .content-tr .last {
    border-right: 1px solid #e4e4e4;
}

.section19x .platform-list table tbody .content-tr td {
    text-align: center;
    color: #626262;
    border-left: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    line-height: 35px;
    padding: 0 10px;
    font-size: 18px;
}

.section19x .platform-list table tbody .content-tr td.tdbg {
    color: #626262;
    background: #f5f5f5;
}

.section19x .platform-list table tbody .content-tr td.tdbgred {
    color: #fff;
    background: #E82828;
    border-bottom: 1px solid #c90000;
    line-height: 35px;
}

.section20x {
    width: 100%;
    padding-bottom: 20px;
    overflow: hidden;
}

.section20x .conx {
    width: 1200px;
}

.section20x ul li {
    overflow: hidden;
    float: left;
    width: 556px;
    border: 1px dotted #ddd;
    padding: 10px;
    background: #fff;
    margin: 0px 10px 12px;
}

.section20x ul li .n_pic {
    width: 90px;
    color: #0f9ca1;
    float: left;
    font-size: 52px;
    text-align: center;
    line-height: 80px;
    display: inline-block;
    margin: 10px;
}

.section20x ul li .n_pic span {
    display: block;
    font-size: 28px;
    background: #f6f6f6;
}

.section20x ul li .n_txt {
    display: inline-block;
    float: left;
    overflow: hidden;
    width: 440px;
}

.section20x ul li .n_txt a h3 {
    color: #111;
    font-size: 16px;
    margin-top: 13px;
    margin-bottom: 8px;
    font-weight: normal;
}

.section20x ul li .n_txt a p {
    color: #888;
    font-size: 14px;
    line-height: 25px;
    margin-right: 5px;
    text-align: left;
}

.section20x ul li:hover {
    background: #f6f6f6;
}


/*seo页面*/

.seo {
    position: relative;
    overflow: hidden;
}

.seo .so_l {
    float: left;
    width: 49%;
    padding-top: 200px;
}

.seo .so_l h3 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 50px;
}

.seo .so_l ul {
    margin-left: -20px;
}

.seo .so_l ul li {
    position: relative;
    float: left;
    width: 90px;
}

.seo .so_l ul li:after {
    position: absolute;
    content: '+';
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    top: 50%;
    right: -12px;
    margin-top: -18px;
}

.seo .so_l ul li:last-child:after {
    display: none;
}

.seo .so_l ul li img {
    margin: 0 auto;
    width: 48px;
    height: 48px;
}

.seo .so_l ul li p {
    font-size: 12px;
    color: #fff;
    text-align: center;
    line-height: 24px;
}

.seo .so_l .seo_c {
    margin-top: 50px;
}

.seo .so_l .seo_c a {
    display: inline-block;
    width: 156px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
}

.seo .so_l .seo_c a:first-child {
    background: #fff;
    color: #37a7ed;
    margin-right: 15px;
}

.seo .so_r {
    float: right;
    width: 48%;
    padding-top: 180px;
}

.seo .so_r img {
    max-width: 100%;
    margin: 0 auto;
}

.seo .opa_btm {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, .48);
}

.seo .opa_btm ul li {
    float: left;
    width: 17%;
    margin-right: 3.75%;
    border-right: 1px solid #fff;
    box-sizing: border-box;
}

.seo .opa_btm ul li:last-child {
    margin-right: 0;
    border: none;
}

.seo .opa_btm ul li img {
    display: inline-block;
    width: 32px;
    vertical-align: middle;
}

.seo .opa_btm ul li .bx {
    display: inline-block;
    width: 140px;
    vertical-align: middle;
    margin-left: 15px;
}

.seo .opa_btm ul li .bx h6 {
    font-size: 16px;
    color: #fff;
}

.seo .opa_btm ul li .bx p {
    font-size: 12px;
    color: #fff;
}

#seo1 {
    width: 100%;
    height: auto;
    padding: 30px 0;
}

#seo1 .con {
    width: 85%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1200px;
    padding-bottom: 50px;
}

#seo1 .con div {
    float: left;
    height: auto;
    margin-top: 30px;
}

#seo1 .con div h1 img {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}

#seo1 .con div .gengduo {
    display: block;
    width: 100px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    color: #fff;
    background: #ff8800;
    border-radius: 3px;
    font-size: 14px;
    margin-top: 10px;
}

@media all and (max-width: 800px) {
    #seo1 .con div h1 {
        font-size: 25px;
    }

    #seo1 .con div h1 img {
        height: 50px;
        width: auto;
    }

    #seo1 .con div {
        width: 100%;
    }

    #seo1 .con div p {
        height: auto;
        min-height: 150px;
        color: #666;
        line-height: 25px;
    }
}

@media all and (min-width: 800px) {
    #seo1 .con div h1 {
        font-size: 32px;
        line-height: 88px;
    }

    #seo1 .con div {
        width: 55%;
    }

    #seo1 .con div p {
        height: 180px;
        overflow: hidden;
        color: #666;
        line-height: 30px;
        font-size: 14px;
    }
}

.same_seo {
    width: 100%;
    height: auto;
}

.same_seo .con {
    width: 85%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1200px;
    padding-bottom: 50px;
}

h1.sm_so {
    border-left: 3px solid #0cc0f5;
    font-size: 25px;
    padding-left: 10px;
}

h1.sm_so span {
    font-size: 14px;
    color: #555;
    margin-left: 20px;
}

.same_seo .con ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.same_seo .con ul li {
    border: 1px solid #eee;
    height: auto;
    padding: 20px;
    margin-top: 25px;
    overflow: hidden;
    box-sizing: border-box;
}

.same_seo .con ul li:nth-child(2n+1) {
    margin-right: 2%;
}

.same_seo .con ul li .right h5 {
    color: #009fd9;
    font-size: 18px;
    margin-bottom: 8px;
}

.same_seo .con ul li .right p {
    color: #999;
    font-size: 14px;
}

@media all and (max-width: 550px) {
    .same_seo .con ul li {
        width: 100%;
    }

    .same_seo .con ul li img {
        display: none;
        float: left;
        width: 95px;
        height: 100px;
    }

    .same_seo .con ul li .right {
        width: 100%;
    }
}

@media all and (min-width: 550px) and (max-width: 900px) {
    .same_seo .con ul li {
        width: 100%;
    }

    .same_seo .con ul li img {
        display: block;
        float: left;
        width: 95px;
        height: 100px;
    }

    .same_seo .con ul li .right {
        width: calc(100% - 115px);
        -webkit-width: calc(100% - 115px);
        float: right;
    }
}

@media all and (min-width: 900px) {
    .same_seo .con ul li {
        width: 49%;
        float: left;
    }

    .same_seo .con ul li img {
        display: block;
        float: left;
        width: 95px;
        height: 100px;
    }

    .same_seo .con ul li .right {
        width: calc(100% - 115px);
        -webkit-width: calc(100% - 115px);
        float: right;
    }
}

#seo3 {
    width: 100%;
    height: auto;
    padding: 50px 0;
}

#seo3 .con {
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1200px;
    padding-bottom: 50px;
}

#seo3 .con h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 50px;
}

#seo3 .con .biaoge:nth-of-type(2n+1) {
    margin-right: 2%;
}

#seo3 .con .biaoge dl {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    background: #00c0ef;
    padding: 0;
    margin: 0;
}

#seo3 .con .biaoge li {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-bottom: 1px solid #e3e3e3;
}

#seo3 .con .biaoge li:nth-of-type(2n) {
    background: #f9f9f9;
}

#seo3 .con .biaoge li:nth-of-type(1) span {
    color: #333 !important;
}

#seo3 .con .biaoge li span {
    display: block;
    height: 40px;
    float: left;
    line-height: 40px;
    text-align: center;
    color: #333;
    font-size: 13px;
    overflow: hidden;
    border-left: 1px solid #e3e3e3;
    padding: 0 5px;
    word-wrap: break-word;
    box-sizing: border-box;
}

@media all and (max-width: 550px) {
    #seo3 .con {
        width: 95%;
    }

    #seo3 .con .biaoge {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    #seo3 .con .biaoge li span:nth-child(-n+2) {
        width: 30%;
    }

    #seo3 .con .biaoge li span:nth-child(3) {
        width: 20%;
    }

    #seo3 .con .biaoge li span:nth-child(4) {
        width: 20%;
        color: #f00;
    }

    #seo3 .con .biaoge li span:nth-child(5) {
        width: 32%;
        border-right: 1px solid #e3e3e3;
        display: none;
    }
}

@media all and (min-width: 550px) and (max-width: 900px) {
    #seo3 .con {
        width: 85%;
    }

    #seo3 .con .biaoge {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    #seo3 .con .biaoge li span:nth-child(-n+2) {
        width: 20%;
    }

    #seo3 .con .biaoge li span:nth-child(3) {
        width: 14%;
    }

    #seo3 .con .biaoge li span:nth-child(4) {
        width: 14%;
        color: #f00;
    }

    #seo3 .con .biaoge li span:nth-child(5) {
        width: 32%;
        border-right: 1px solid #e3e3e3;
    }
}

@media all and (min-width: 900px) {
    #seo3 .con {
        width: 85%;
    }

    #seo3 .con .biaoge {
        width: 49%;
        height: auto;
        float: left;
    }

    #seo3 .con .biaoge li span:nth-child(-n+2) {
        width: 20%;
    }

    #seo3 .con .biaoge li span:nth-child(3) {
        width: 14%;
    }

    #seo3 .con .biaoge li span:nth-child(4) {
        width: 14%;
        color: #f00;
    }

    #seo3 .con .biaoge li span:nth-child(5) {
        width: 32%;
        border-right: 1px solid #e3e3e3;
    }
}

.cross {
    width: 100%;
    height: 211px;
    line-height: 211px;
    color: #fff;
    background: linear-gradient(-263deg, rgba(15, 207, 222, 1), rgba(168, 32, 255, 1));
    text-align: center;
    font-size: 50px;
}

#cp_gn.same_seo {
    padding: 50px 0 0;
    background: #f1f1f1;
}

#cp_gn.same_seo ul li .right h5 {
    color: #333;
}

#cp_gn.same_seo ul li img {
    width: 60px;
    height: auto;
}

.changjing {
    width: 100%;
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
}

.changjing ul {
    margin-top: 30px;
}

.changjing ul li {
    float: left;
    width: 23%;
    margin-right: 2.66%;
    border: 1px solid #ddd;
    box-sizing: border-box;
    padding: 40px 15px 0;
    height: 320px;
}

.changjing ul li:last-child {
    margin-right: 0;
}

.changjing ul li img {
    margin: 0 auto 30px;
}

.changjing ul li h5 {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.changjing ul li p {
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 22px;
}

.yh_key {
    position: relative;
    width: 100%;
    height: 520px;
    padding: 50px 0;
    background: #f4f4f4;
    overflow: hidden;
}

.yh_key .con {
    position: relative;
}

.yh_key .c_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -197px;
    margin-top: -176px;
    width: 395px;
    height: 352px;
    background: url(../gotmp/youhua_bg.png) no-repeat;
}

.yh_key ul li {
    position: absolute;
    width: 460px;
    text-align: right !important;
}

.yh_key ul li h3 {
    font-size: 18px;
    color: #4989ef;
    margin-bottom: 10px;
}

.yh_key ul li p {
    font-size: 14px;
    color: #666;
    line-height: 22px;
}

.yh_key ul li:nth-child(1) {
    top: 26px;
    left: 0;
}

.yh_key ul li:nth-child(2) {
    top: 26px;
    right: 0;
}

.yh_key ul li:nth-child(3) {
    top: 183px;
    left: 0;
    width: 395px;
}

.yh_key ul li:nth-child(4) {
    top: 183px;
    right: 0;
    width: 395px;
}

.yh_key ul li:nth-child(5) {
    top: 350px;
    left: 0;
}

.yh_key ul li:nth-child(6) {
    top: 350px;
    right: 0;
}

.yh_key ul li:nth-child(2n) {
    text-align: left !important;
}

.yh_anli {
    width: 100%;
    padding: 50px 0;
}

.yh_anli ul {
    margin-top: 40px;
}

.yh_anli ul li {
    float: left;
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 15px;
}

.yh_anli ul li:nth-child(3n) {
    margin-right: 0;
}

.yh_anli ul li .pic {
    width: 100%;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
    height: 250px;
    overflow: hidden;
}

.yh_anli ul li .pic img {
    width: 100%;
    transition: .4s;
    transform: scale(1);
}

.yh_anli ul li p {
    font-size: 16px;
    color: #333;
    line-height: 50px;
    transition: .4s;
}

.yh_anli ul li:hover .pic img {
    transform: scale(1.06);
}

.yh_anli ul li:hover p {
    color: #4989ef;
}

.jichu {
    position: relative;
    width: 100%;
    padding: 50px 0;
    height: 420px;
    background: #f4f4f4;
    overflow: hidden;
}

.jichu .jc_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -226px;
    width: 437px;
    height: 282px;
    background: url(../gotmp/jichu.png) no-repeat;
}

.jichu ul {
    margin-top: 30px;
    position: relative;
}

.jichu ul li {
    width: 360px;
    position: absolute;
}

.jichu ul li .txt {
    width: 290px;
    text-align: right !important;
    float: left;
}

.jichu ul li .txt h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.jichu ul li .txt p {
    font-size: 14px;
    color: #666;
}

.jichu ul li:nth-child(2n) {
    float: right;
}

.jichu ul li:nth-child(2n) .txt {
    text-align: left !important;
}

.jichu ul li .cir {
    width: 58px;
    height: 58px;
    border: 1px solid #4989ef;
    border-radius: 100%;
    color: #4989ef;
    font-size: 24px;
    line-height: 58px;
    text-align: center !important;
    float: right;
}

.jichu ul li:nth-child(2n) .txt {
    float: right;
}

.jichu ul li:nth-child(2n) .cir {
    float: left;
}

.jichu ul li:nth-child(1) {
    top: 0;
    left: 0;
}

.jichu ul li:nth-child(2) {
    top: 0;
    right: 0;
}

.jichu ul li:nth-child(3) {
    top: 120px;
    left: 0;
}

.jichu ul li:nth-child(4) {
    top: 120px;
    right: 0;
}

.jichu ul li:nth-child(5) {
    top: 240px;
    left: 0;
}

.jichu ul li:nth-child(6) {
    top: 240px;
    right: 0;
}

.jichu.quanzhan {
    background: #fff;
}

.jichu.quanzhan ul li .cir {
    border-color: #2cac3b;
    color: #2cac3b;
}

.jichu.quanzhan .jc_bg {
    width: 441px;
    height: 280px;
    background: url(../gotmp/jichu2.png) no-repeat;
}


/*关于我们*/

#gy-content2 {
    position: relative;
    width: 85%;
    height: auto;
    margin: -80px auto 0 auto;
    max-width: 1300px;
    background: #fff;
    padding: 40px;
    z-index: 9;
}

#gy-content2 h5 {
    color: #666;
    font-size: 18px;
    font-weight: 300;
}

#gy-content2 span {
    display: block;
    width: 50px;
    height: 10px;
    background: #1E95FB;
}

#gy-content2 h1 {
    margin-top: 20px;
    font-size: 36px;
    color: #333;
}

#gy-content2 p {
    color: #444;
    font-size: 16px;
    line-height: 28px;
}

#gy-content3 {
    width: 100%;
    height: auto;
    background: #cdcccc;
}

#gy-content3 .con {
    width: 85%;
    height: auto;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    background: #e0e0e0;
}

#gy-content3 .con .left {
    width: 48%;
    height: 540px;
    float: left;
    padding: 50px;
    box-sizing: border-box;
}

#gy-content3 .con .left h1 {
    color: #2b2b2b;
    font-size: 50px;
    margin-bottom: 40px;
}

#gy-content3 .con .left h2 {
    color: #2b2b2b;
    font-size: 25px;
    padding-right: 20px;
    padding-bottom: 8px;
    border-bottom: 5px solid #2b2b2b;
    display: inline-block;
}

#gy-content3 .con .left p {
    font-size: 18px;
    color: #000;
}

#gy-content3 .con .left h3 {
    color: #2b2b2b;
    font-size: 25px;
    font-weight: bold;
    margin: 20px 0 10px;
}

#gy-content3 .con .bg {
    width: 52%;
    height: 540px;
    float: left;
    position: relative;
}

#gy-content3 .con .bg .txt {
    background: rgba(199, 36, 41, 0.7);
    width: 80%;
    height: auto;
    color: #fff;
    padding: 10px 30px;
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#gy-content3 .con .bg .txt h5 {
    font-size: 20px;
    font-weight: bold;
}

#gy-content3 .con .bg .txt p {
    font-size: 14px;
    margin-top: 15px;
    line-height: 20px;
    width: 100%;
    height: auto;
    max-height: 120px;
    overflow: hidden;
}

#gy_content4 {
    width: 100%;
    padding: 50px 0;
}

#gy_content4 img {
    max-width: 100%;
    margin: 0 auto;
}

#gy-content5 {
    width: 100%;
    height: auto;
    padding-top: 70px;
    padding-bottom: 70px;
}

#gy-content5 .con {
    width: 85%;
    height: auto;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
}

#gy-content5 .con h1 {
    text-align: center;
    font-size: 30px;
    color: #fff;
}

#gy-content5 .con h2 {
    text-align: center;
    font-size: 20px;
    color: #cacace;
    font-weight: 100;
    margin-bottom: 30px;
}

#gy-content5 .con h2 font {
    color: #f00;
}

#gy-content5 ul dl {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    border-bottom: 2px solid #999;
    padding-bottom: 5px;
}

#gy-content5 ul dl dd {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    float: left;
    border-left: 3px solid #fff;
    padding-left: 10px;
}

#gy-content5 ul dl a {
    display: block;
    color: #eee;
    font-size: 14px;
    float: right;
}

#gy-content5 ul li {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 10px;
}

#gy-content5 ul li a {
    display: block;
    float: left;
    width: calc(100% - 100px);
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
}

#gy-content5 ul li span {
    display: block;
    float: right;
    width: 100px;
    height: 20px;
    line-height: 20px;
    text-align: right;
    color: #fff;
    font-size: 14px;
}

#gy-content5 ul li:hover a {
    text-decoration: underline;
}

@media all and (max-width: 700px) {
    #gy-content5 ul {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }
}

@media all and (min-width: 700px) {
    #gy-content5 ul {
        width: 48%;
        height: auto;
        float: left;
    }

    #gy-content5 ul:nth-of-type(1) {
        margin-right: 4%;
    }
}


/*******联系我们********/

.lx-content {
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: #f4f4f4;
}

.lx-content h1 {
    text-align: center;
}

.lx-content .con {
    width: 85%;
    height: auto;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 30px;
}

.lx-content .con ul {
    margin-top: 50px;
    padding: 15px;
    box-sizing: border-box;
}

.lx-content .con span.g-span {
    display: inline-block;
    width: auto;
    padding: 0 15px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 20px;
    background: #00597b;
    margin-bottom: 20px;
}

.lx-content .con ul p {
    font-size: 16px;
    color: #444;
    line-height: 35px;
}

.lx-content .con ul p a {
    color: #444;
}

.lx-content .con ul p a:hover {
    text-decoration: underline;
}

.lx-content .con ul p .ma {
    position: relative;
    display: inline-block;
    border: 1px solid #00f;
}

.lx-content .con ul p .ma img {
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 10px;
    top: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.lx-content .con .di {
    width: 100%;
    height: auto;
    overflow: hidden;
    clear: both;
    padding-top: 50px;
}

.lx-content .con .di ol {
    height: auto;
    padding-right: 30px;
    margin-bottom: 50px;
}

.lx-content .con .di ol p {
    color: #666;
    font-size: 14px;
}

@media all and (max-width: 550px) {
    .lx-content .con ul p .ma {
        display: none;
    }
}

@media all and (min-width: 550px) {
    .lx-content .con ul {
        width: 88%;
        height: auto;
        float: left;
    }

    .lx-content .con ul:nth-child(2n+1) {
        margin-right: 4%;
    }
}

@media all and (max-width: 700px) {
    .lx-content .con .di ol {
        width: 100%;
    }
}

@media all and (min-width: 700px) {
    .lx-content .con .di ol {
        width: 50%;
        float: left;
    }
}

.lx-content.spe {
    background: #fff;
}

.oth_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../gotmp/lianxi_bg.png) center/cover no-repeat;
}

.lianxi .txt h2 {
    font-size: 36px;
    text-align: center;
}

.lianxi .txt p {
    line-height: 24px;
    font-size: 28px;
    text-align: center;
}

.lianxi .txt h6 {
    font-size: 16px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

.public-con {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.ccont {
    width: 90%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1200px;
}


/*js-content1*/

#js-content1 {
    border: 1px solid #000;
    border-collapse: collapse;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

#js-content1 td {
    border: 1px solid #000;
    padding: 10px 10px;
    word-wrap: break-word;
    font-size: 14px;
    color: #333;
}

#js-content1 tr td:nth-child(1) {
    width: 18%;
}

@media screen and (max-width: 500px) {
    #js-content1 {
        table-layout: fixed;
    }

    #js-content1 td {
        width: 100% !important;
    }
}


/*js-content2*/

#js-content2 {
    width: 100%;
    height: auto;
    background: #0195ff;
    margin-top: 70px;
    text-align: center;
    padding-bottom: 50px;
}

#js-content2 h1 {
    text-align: center;
    color: #fff;
    font-weight: 100;
    display: inline-block;
    border-bottom: 2px solid #fff;
    padding: 50px 10px 20px 10px;
    margin-bottom: 50px;
}

#js-content2 ol {
    width: 100%;
    margin: 0 auto;
    height: auto;
    text-align: center;
    font-size: 0;
    position: relative;
    top: 200px;
    opacity: 0;
    transition: all 1s;
}

#js-content2 ol li {
    height: auto;
    overflow: hidden;
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
}

@media screen and (max-width: 650px) {
    #js-content2 ol li {
        width: 95%;
        margin: 0 auto 40px auto;
    }

    #js-content2 h1 {
        font-size: 25px;
    }
}

@media screen and (min-width: 650px) and (max-width: 900px) {
    #js-content2 ol li {
        width: 46%;
        margin: 0 1% 40px 1%;
    }

    #js-content2 h1 {
        font-size: 40px;
    }
}

@media screen and (min-width: 900px) {
    #js-content2 ol li {
        width: 30%;
        margin: 0 1% 40px 1%;
    }

    #js-content2 h1 {
        font-size: 40px;
    }
}

#js-content2 ol li img {
    display: block;
    float: left;
    width: 28%;
    height: auto;
}

#js-content2 ol li .right {
    float: left;
    width: 72%;
    height: auto;
    text-align: left;
    color: #fff;
}

#js-content2 ol li .right h5 {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
    margin-top: 10px;
}


/*js-content3*/

#js-content3 {
    width: 100%;
    height: auto;
    margin-top: 70px;
    text-align: center;
    padding-bottom: 50px;
}

#js-content3 h1 {
    text-align: center;
    color: #000;
    font-weight: 100;
    display: inline-block;
    padding: 50px 0 20px 0;
}

#js-content3 h2 {
    text-align: center;
    font-size: 25px;
    color: #666;
    margin-bottom: 30px;
}

#js-content3 ul {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 0;
    position: relative;
    top: 200px;
    opacity: 0;
    transition: all 1s;
}

#js-content3 ul li {
    display: inline-block;
    vertical-align: top;
    height: auto;
    font-size: 16px;
}

#js-content3 ul li > div {
    width: 100%;
    height: 0;
    padding-bottom: 70%;
}

#js-content3 ul li > div a {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    background: rgba(255, 108, 0, 0);
    color: #fff;
    transition: all .5s;
}

#js-content3 ul li > div a h5 {
    font-size: 24px;
    padding-top: 30px;
    padding-left: 30px;
    margin-bottom: 20px;
    text-align: left;
    transition: all .5s;
    position: relative;
    top: 100px;
    opacity: 0;
}

#js-content3 ul li > div a p {
    padding: 0 30px;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 20px;
    height: auto;
    max-height: 100px;
    overflow: hidden;
    text-align: left;
    transition: all .5s;
    position: relative;
    top: 100px;
    opacity: 0;
}

#js-content3 ul li > div a:hover {
    background: rgba(255, 108, 0, 0.8);
    transition: all .5s;
}

#js-content3 ul li > div a:hover h5 {
    top: 0;
    opacity: 1;
    transition: all .5s;
}

#js-content3 ul li > div a:hover p {
    top: 0;
    opacity: 1;
    transition: all .5s;
}

#js-content3 ul li .a {
    width: 100%;
    display: block;
    text-align: center;
    margin: 5px 0;
}

#js-content3 ul li .a:hover {
    color: #ff6c00;
}

#js-content3 ul .gengduo {
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #ff6c00;
    border: 1px solid #ff6c00;
    margin: 30px auto 0 auto;
    font-size: 16px;
}

#js-content3 ul .gengduo:hover {
    background: #ff6c00;
    color: #fff;
}

@media all and (max-width: 600px) {
    #js-content3 ul li {
        width: 95%;
        margin-bottom: 15px;
    }
}

@media all and (min-width: 900px) {
    #js-content3 ul li {
        width: 32%;
        margin-right: 2%;
    }

    #js-content3 ul li:nth-child(3n) {
        margin-right: 0;
    }
}

.cont {
    width: 1200px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
}

.x-public-biao h1 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 20px;
}

.x-public-biao h2 {
    text-align: center;
    font-size: 15px;
    color: #999;
    margin-bottom: 30px;
}

#x-banner {
    width: 100%;
    height: 430px;
}

#x-banner form {
    width: 600px;
    height: 60px;
    margin: 0 auto;
    position: relative;
    top: 300px;
    background: #fff;
    border-radius: 30px;
    padding: 10px;
    font-size: 0;
}

#x-banner form input[type=text] {
    vertical-align: top;
    width: calc(100% - 160px);
    -webkit-width: calc(100% - 160px);
    height: 100%;
    font-size: 16px;
    border: none;
    padding: 0 10px;
}

#x-banner form input[type=submit] {
    vertical-align: top;
    width: 160px;
    height: 100%;
    border: none;
    background: #fb5f45;
    color: #fff;
    font-size: 16px;
    border-radius: 20px;
}

#x-banner form input:focus {
    outline: none;
}

#x-content1 {
    background: #eff1f5;
    padding: 70px 0;
}

#x-content1 ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#x-content1 ul li {
    width: 20%;
    height: auto;
    float: left;
    margin-right: 4%;
    margin-bottom: 25px;
    background: #fff;
    padding: 10px 10px 30px 10px;
    text-align: center;
}

#x-content1 ul li:nth-child(4n) {
    margin-right: 0;
}

#x-content1 ul li a {
    display: block;
    width: 100%;
    height: auto;
}

#x-content1 ul li .bg {
    width: 60%;
    height: 0;
    padding-bottom: 60%;
    margin: 40px auto;
}

#x-content1 ul li .bg .img {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

#x-content1 ul li .bg .img1 {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    display: none;
}

#x-content1 ul li:hover .bg .img {
    display: none;
}

#x-content1 ul li:hover .bg .img1 {
    display: block;
}

#x-content1 ul li h5 {
    font-size: 18px;
    margin-bottom: 30px;
}

#x-content1 ul li p {
    width: 100%;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    color: #999;
}

#x-content1 ul li:hover {
    background: #4585f3;
}

#x-content1 ul li:hover h5,
#x-content1 ul li:hover p {
    color: #fff;
}

#x-content1 .gengduo {
    display: block;
    width: 310px;
    height: 75px;
    margin: 30px auto 0 auto;
    background: #fb5f45;
    color: #fff;
    text-align: center;
    line-height: 75px;
    font-size: 18px;
    border-radius: 10px;
}

#x-content1 .gengduo:hover {
    opacity: 0.8;
}

#x-content2 {
    padding: 70px 0;
    background: #fefefe;
}

#x-content2 ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#x-content2 ul li {
    width: 10%;
    height: auto;
    float: left;
    margin-right: 12.5%;
    text-align: center;
    margin-bottom: 50px;
}

#x-content2 ul li:nth-child(5n) {
    margin-right: 0;
}

#x-content2 ul li .bg {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

#x-content2 ul li h5 {
    margin-top: 20px;
    line-height: 20px;
}

#x-content3 {
    background: #f5f8fa;
    padding: 70px 0;
}

#x-content4 {
    padding: 70px 0;
}

#x-content4 h5 {
    font-size: 28px;
    text-align: center;
    margin-top: 50px;
}

#x-content4 h5 span {
    color: #10bd5d;
    vertical-align: top;
}

#x-content4 dl {
    width: 190px;
    height: 32px;
    border: 1px solid #000;
    margin: 20px auto;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
}

#x-content4 .gengduo {
    display: block;
    width: 300px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    margin: 0 auto;
    color: #fff;
    font-size: 22px;
    background: #f47809;
    border-radius: 10px;
}


/*********app********/

#a-banner {
    width: 100%;
    height: 400px;
}

.a-public-biao {
    text-align: center;
    padding: 50px 0;
}

.a-public-biao h1 {
    font-size: 32px;
    font-weight: bold;
    color: #3f3f3f;
    margin-bottom: 10px;
}

.a-public-biao h2 {
    font-weight: 100;
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.a-public-biao p {
    text-align: center;
    font-size: 14px;
    color: #999;
}

#a-table {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}

#a-table dl {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#a-table dl span {
    display: block;
    width: 16.66%;
    float: left;
    height: 95px;
    color: #fff;
    text-align: center;
}

#a-table dl span img {
    margin-top: 18px;
}

#a-table dl span dd {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 15px;
    margin-top: 10px;
}

#a-table dl span:nth-child(2) {
    background: #878787;
    border-top-left-radius: 10px;
}

#a-table dl span:nth-child(3) {
    background: #9dc446;
}

#a-table dl span:nth-child(4) {
    background: #883798;
}

#a-table dl span:nth-child(5) {
    background: #ec9e19;
}

#a-table dl span:nth-child(6) {
    background: #fe544a;
    border-top-right-radius: 10px;
}

#a-table li {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-bottom: 1px solid #ccc;
}

#a-table li span {
    display: block;
    width: 16.56%;
    height: 95px;
    float: left;
    text-align: center;
    position: relative;
    background: #fefefe;
    border-right: 1px solid #ccc;
}

#a-table li span dd {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    font-size: 13px;
    color: #444;
    line-height: 20px;
}

#a-table li span:nth-child(1) {
    background: #f4f4f4;
    border-left: 1px solid #ccc;
}

#a-table li:nth-of-type(1) span:nth-child(1) {
    border-top: 1px solid #ccc;
    border-top-left-radius: 10px;
}

#a-content1 {
    background: #f4f4f4;
    padding-bottom: 70px;
}

#a-content1 ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#a-content1 ul li {
    width: 20%;
    height: auto;
    float: left;
    text-align: center;
}

#a-content1 ul li .bg {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

#a-content1 ul li .biao {
    display: block;
    width: 100%;
    height: auto;
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin: 20px 0;
}

#a-content1 ul li p {
    width: 100%;
    height: auto;
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

#a-content2 {
    padding-bottom: 50px;
}

#a-content2 ul {
    width: 80%;
    height: auto;
    margin: 0 auto;
}

#a-content2 ul li {
    width: 100%;
    height: auto;
    margin-bottom: 35px;
    overflow: hidden;
}

#a-content2 ul li a {
    display: block;
    width: 100%;
    height: 26px;
    line-height: 26px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    background: url(../gotmp/a_wen.png) no-repeat left center;
    padding-left: 35px;
}

#a-content2 ul li p {
    width: auto;
    height: 41px;
    overflow: hidden;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #ccc;
    float: left;
    padding-top: 5px;
    margin-top: 5px;
    line-height: 18px;
    background: url(../gotmp/a_da.png) no-repeat left center;
    padding-left: 35px;
}

#a-form {
    background: #f4f4f4;
    padding-bottom: 50px;
}

#a-form form {
    width: 570px;
    height: auto;
    margin: 20px auto 0 auto;
}

#a-form form input[type=text] {
    display: block;
    width: 100%;
    height: 42px;
    border: 1px solid #ccc;
    padding: 0 10px;
    margin-bottom: 20px;
}

#a-form form textarea {
    display: block;
    width: 100%;
    height: 120px;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
}

#a-form form input[type=submit] {
    display: block;
    border: none;
    width: 100%;
    height: 40px;
    background: #ff7852;
    color: #fff;
    font-size: 16px;
}

#a-content3 {
    padding-bottom: 50px;
}

#a-content3 li {
    width: 23.5%;
    height: auto;
    float: left;
    margin-right: 2%;
}

#a-content3 li:nth-child(4n) {
    margin-right: 0;
}

#a-content3 li .bg {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 80%;
}

#a-content3 li .txt {
    border: 1px solid #ccc;
    width: 100%;
    height: auto;
    padding: 10px;
}

#a-content3 li .txt dd {
    display: block;
    width: 100%;
    height: 25px;
    line-height: 20px;
    overflow: hidden;
    font-size: 13px;
    color: #999;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

#a-content3 li .txt dd:nth-child(3) {
    height: 45px;
}

#a-content3 li .txt dd a {
    font-weight: bold;
}

#a-content3 li:hover .txt {
    background: #e4e4e4;
}


/*m---*/

@media screen and ( max-width: 980px) {
    #sj-bottom {
        width: 100%;
        height: 50px;
        background: #03689f;
        position: fixed;
        bottom: 0;
        left: 0;
        padding-top: 10px;
        z-index: 999;
    }

    #sj-bottom li {
        width: 24%;
        height: auto;
        float: left;
        text-align: center;
    }

    #sj-bottom li a {
        display: block;
        width: 100%;
        height: auto;
    }

    #sj-bottom li i {
        font-size: 25px;
        color: #fff;
    }

    #sj-bottom li dd {
        display: block;
        color: #fff;
    }

    #header {
        DISPLAY: NONE
    }

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

    .pu_bg .txt {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .indexvideo {
        display: none
    }
}


/*pc---*/

@media screen and ( min-width: 980px) {
    #sj-bottom {
        display: none
    }

    #top {
        DISPLAY: NONE !important
    }

    #fixed {
        DISPLAY: NONE !important
    }

    .anli ul li {
        height: 50px !important
    }

    .indexvideo2 {
        display: none
    }
}


/*********手机版头部和底部的注册查询版块*********/

@media all and (max-width: 700px) {
    #zhucechaxun {
        width: 100%;
        height: auto;
        background: #fff;
        box-sizing: border-box;
        margin-top: 40px;
        padding: 0 15px 10px 15px;
    }

    #zhucechaxun .tou {
        width: 100%;
        height: auto;
        text-align: center;
    }

    #zhucechaxun .tou h2 {
        color: #1361a3;
        font-size: 14px;
        text-align: center;
        display: inline-block;
        background: #fff;
        position: relative;
        z-index: 2;
        padding: 10px;
    }

    #zhucechaxun .tou span {
        display: block;
        width: 90%;
        height: 1px;
        background: #000;
        margin: 0 auto;
        position: relative;
        top: -20px;
        z-index: 1;
    }

    #zhucechaxun form {
        width: 100%;
        height: auto;
    }

    #zhucechaxun form li {
        width: 100%;
        height: 50px;
        border: 1px solid #d3d3d3;
        border-radius: 8px;
        margin-top: 10px;
        overflow: hidden;
    }

    #zhucechaxun form li span {
        height: 100%;
        line-height: 50px;
        width: 100px;
        color: #546b65;
        font-size: 16px;
        padding-left: 10px;
    }

    #zhucechaxun form li input {
        display: block;
        width: calc(100% - 100px);
        -webkit-width: calc(100% - 100px);
        float: left;
        height: 100%;
        border: none;
        font-size: 16px;
        letter-spacing: 1px;
        color: #333;
    }

    #zhucechaxun form li input:focus {
        border: none;
        outline: none;
    }

    #zhucechaxun form .chaxun {
        display: block;
        width: 100%;
        height: 50px;
        border-radius: 8px;
        background: #bd241f;
        margin-top: 10px;
        color: #fff;
        font-size: 16px;
        border: none;
    }
}

@media all and (min-width: 700px) {
    #zhucechaxun {
        display: none;
    }
}


/******滚动停止class********/

@media all and (max-width: 700px) {
    #fixed {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        z-index: 999;
    }

    #fixed,
    #sj-bottom {
        transition: all .5s;
        -webkit-transition: all .5s;
    }

    .fixed-active {
        top: -100% !important;
    }

    .sj-bottom-active {
        bottom: -100% !important;
    }
}

@media all and (max-width: 700px) {
    body {
        right: 0;
        position: relative;
        transition: all .5s;
        -webkit-transition: all .5s;
    }

    #top {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    #top .logo {
        display: block;
        float: left;
        width: auto;
        height: 30px;
        margin-top: 10px;
        margin-left: 5%;
    }

    #top .logo img {
        display: block;
        width: auto;
        height: 100%;
    }

    #kaiguan {
        display: block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        float: right;
        text-align: center;
        font-size: 30px;
    }

    nav {
        width: 86%;
        height: 200%;
        background: #03689f;
        position: fixed;
        right: -86%;
        top: 0;
        transition: all .5s;
        -webkit-transition: all .5s;
        z-index: 9999;
    }

    nav > li {
        width: 100%;
        height: auto;
        max-height: 500px;
        overflow-y: scroll;
        overflow: hidden;
        border-bottom: 1px solid #eee;
    }

    nav > li > a {
        display: block;
        width: calc(100% - 60px);
        padding-left: 20px;
        color: #fff;
        height: 40px;
        line-height: 40px;
        float: left;
    }

    nav > li > span {
        display: block;
        width: 60px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        color: #fff;
        float: right;
        border-left: 1px solid #eee;
        cursor: pointer;
    }

    nav > li > a > i.fa {
        display: none;
    }

    nav ol {
        width: 100%;
        height: auto;
        background: #fff;
        clear: both;
        display: none;
    }

    nav ol li .left {
        width: 100%;
        height: auto;
    }

    nav ol li {
        width: 100%;
        height: auto;
        border-top: 1px solid #eee;
    }

    nav ol li a {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        color: #03689f;
        padding-left: 20px;
    }

    #sj-nav {
        width: 100%;
        height: auto;
        overflow: hidden;
        border-bottom: 1px solid #ccc;
    }

    #sj-nav li {
        width: 25%;
        height: auto;
        float: left;
    }

    #sj-nav li a {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        text-align: center;
        overflow: hidden;
        font-size: 16px;
        color: #03689f;
    }
}

@media all and (min-width: 700px) {
    #top {
        width: 100%;
        height: auto;
        border-bottom: 2px solid #000;
    }

    #top .public-con {
        overflow: hidden;
    }

    #top .logo {
        display: block;
        width: auto;
        height: 54px;
        float: left;
        margin-top: 15px;
    }

    #top .logo img {
        display: block;
        width: auto;
        height: auto;
    }

    nav {
        width: auto;
        height: auto;
        float: right;
        overflow: hidden;
    }

    nav > li {
        width: auto;
        height: auto;
        float: left;
    }

    nav > li > a {
        display: block;
        width: 94px;
        height: 82px;
        line-height: 82px;
        color: #676b74;
        font-size: 16px;
        text-align: center;
        border-top: 3px solid transparent;
    }

    nav > li:hover > a {
        color: #e76418;
    }

    nav > li:nth-child(2):hover > a {
        border-top: 3px solid #e76418;
        border-left: 1px solid #e8e8e8;
        border-right: 1px solid #e8e8e8;
    }

    nav > li > a i.fa {
        color: #e76418;
        transform: rotate(0deg);
        transition: all .3s;
        -webkit-transition: all .3s;
    }

    nav > li:hover > a i.fa {
        transform: rotate(180deg);
        color: #444;
    }

    nav ol {
        position: absolute;
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 2;
        background: #fff;
        width: 1000px;
        height: auto;
        border: 1px solid #e8e8e8;
        text-align: center;
        font-size: 0;
        padding: 35px;
        display: none;
    }

    nav ol li {
        display: inline-block;
        vertical-align: top;
        width: auto;
        height: auto;
        margin-bottom: 15px;
    }

    nav ol li a {
        display: block;
        width: 150px;
        height: auto;
        font-size: 15px;
        color: #444;
    }

    nav ol li:hover a {
        color: #e76418;
    }

    nav > li:hover ol {
        display: block;
    }

    #kaiguan {
        display: none;
    }

    nav > li > span {
        display: none;
    }

    #sj-nav {
        display: none;
    }
}

.xinkemoth {
    display: none !important
}


/********æ”¿åºœ*******/

#z-banner {
    width: 100%;
    height: 500px;
}

#z-content {
    padding-top: 30px;
}

#z-content .cont {
    position: relative;
}

#z-content #z-left {
    width: 200px;
    height: auto;
    float: left;
}

#z-content #z-left ol li {
    width: 110px;
    height: 32px;
    border-radius: 16px;
    margin: 0 auto;
    text-align: center;
    line-height: 32px;
    margin-bottom: 20px;
    cursor: pointer;
}

#z-content #z-left ol li:hover {
    background: #767676;
    color: #fff;
}

#z-content #z-left ol li.active {
    background: #0661b1;
    color: #fff;
}

#z-content #z-left ul {
    width: 100%;
    height: auto;
    margin-top: 100px;
}

#z-content #z-left ul li {
    width: 110px;
    height: 32px;
    border-radius: 16px;
    margin: 0 auto;
    text-align: center;
    line-height: 32px;
    margin-bottom: 20px;
    cursor: pointer;
}

#z-content #z-left ul li:hover {
    background: #767676;
    color: #fff;
}

#z-content #z-left ul li.active {
    background: #0661b1;
    color: #fff;
}

#z-content #z-right {
    width: calc(100% - 250px);
    height: auto;
    min-height: 1000px;
    float: right;
    border-left: 2px solid #ccc;
    padding-left: 10px;
}

.z-public-h2 {
    font-size: 26px;
    color: #0061b3;
    text-align: center;
    position: relative;
    height: 30px;
    width: 100%;
    margin-bottom: 30px;
}

.z-public-h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #0061b3;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}

#z-right .div1 {
    margin-bottom: 50px;
}

#z-right .div1 .neirong {
    text-indent: 2em;
    font-size: 16px;
    color: #666;
    line-height: 25px;
    overflow: hidden;
}

#z-right .div1 .neirong img {
    display: block;
    width: 300px;
    height: auto;
    float: left;
}

#z-right .div1 .neirong p {
    margin-bottom: 25px;
    width: calc(100% - 320px);
    -webkit-width: calc(100% - 320px);
    height: auto;
    float: right;
}

#z-right .div15 ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 15px;
}

#z-right .div15 ul li {
    width: 32%;
    height: 320px;
    float: left;
    margin-right: 2%;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    text-align: center;
    padding: 30px;
}

#z-right .div15 ul li:nth-child(3n) {
    margin-right: 0;
}

#z-right .div15 ul li img {
    height: 110px;
    width: auto;
}

#z-right .div15 ul li h5 {
    font-size: 18px;
    margin: 30px 0;
}

#z-right .div15 ul li p {
    font-size: 14px;
    color: #666;
    line-height: 25px;
    width: 100%;
    height: 75px;
    overflow: hidden;
}

#z-right .div15 ul li:hover {
    box-shadow: 0px 0px 15px #999;
}

#z-right .div15 .bg {
    width: 100%;
    height: 180px;
    position: relative;
}

#z-right .div15 .bg p {
    width: 90%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: 20px;
}

#z-right .div2 {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

#z-right .div2 li {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

#z-right .div2 li h5 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

#z-right .div2 li h5 dd {
    display: block;
    float: left;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    margin-right: 5px;
}

#z-right .div2 li p {
    line-height: 30px;
    color: #666;
    font-size: 16px;
}

#z-right .div2 li img {
    display: block;
    margin: 0 auto;
}

#z-right .div2 li:nth-of-type(1) h5 {
    color: #0d7cca;
}

#z-right .div2 li:nth-of-type(1) h5 dd {
    background: #0d7cca;
}

#z-right .div2 li:nth-of-type(2) h5 {
    color: #fa9926;
}

#z-right .div2 li:nth-of-type(2) h5 dd {
    background: #fa9926;
}

#z-right .div2 li:nth-of-type(3) h5 {
    color: #3e9e16;
}

#z-right .div2 li:nth-of-type(3) h5 dd {
    background: #3e9e16;
}

#z-right .div2 li .tx-ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#z-right .div2 li .tx-ul .tx-li {
    width: 32%;
    height: auto;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    background: #f4f4f4;
    padding: 15px 0 15px 0;
    margin-bottom: 20px;
}

#z-right .div2 li .tx-ul .tx-li:nth-child(3n) {
    margin-right: 0;
}

#z-right .div2 li .tx-ul .tx-li dd {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 3px;
    float: left;
}

#z-right .div2 li .tx-ul .tx-li span {
    display: block;
    float: right;
    width: calc(100% - 75px);
    -webkit-width: calc(100% - 75px);
    height: auto;
    font-size: 16px;
    line-height: 25px;
    overflow: hidden;
}

#z-right .div3 {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

#z-right .div3 ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#z-right .div3 ul li {
    width: 47%;
    height: auto;
    float: left;
    margin-bottom: 50px;
}

#z-right .div3 ul li:nth-child(2n+1) {
    margin-right: 6%;
}

#z-right .div3 ul li h5 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
    color: #0d7cca;
}

#z-right .div3 ul li h5 dd {
    display: block;
    float: left;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    margin-right: 5px;
    background: #0d7cca;
}

#z-right .div3 ul li p {
    line-height: 30px;
    color: #666;
    font-size: 16px;
}

#z-right .div4 dl {
    width: 100%;
    height: 50px;
    background: url(../gotmp/z_b.jpg) no-repeat;
    background-size: 100% 100%;
    margin-bottom: 15px;
}

#z-right .div4 dl dd {
    font-size: 18px;
    line-height: 50px;
    display: block;
    color: #fff;
    width: 210px;
    height: 100%;
    text-align: center;
    overflow: hidden;
}

#z-right .div4 ul {
    width: 100%;
    height: auto;
    overflow: hidden;
}

#z-right .div4 ul li {
    width: 18.8%;
    height: auto;
    float: left;
    margin-right: 1%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    text-align: center;
    padding: 0 15px;
}

#z-right .div4 ul li:nth-child(5n) {
    margin-right: 0;
}

#z-right .div4 ul li .bg {
    display: block;
    width: 130px;
    height: 110px;
    position: relative;
    margin: 0 auto;
}

#z-right .div4 ul li .bg img {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#z-right .div4 ul li h5 {
    width: 100%;
    height: 38px;
    line-height: 38px;
    border-top: 1px solid #ccc;
    font-size: 12px;
}
