/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;
    padding: 0;
}

/** 设置默认字体 **/
body,
button, input, select, textarea /* for ie */ {
    font: 12px/1.5 tahoma, arial;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}
address,
cite,
dfn,
em,
var {
    font-style: normal;
} /* 将斜体扶正 */
code,
kbd,
pre,
samp {
    font-family: courier new, courier, monospace;
} /* 统一等宽字体 */
small {
    font-size: 12px;
} /* 小于 12px 的中文很难阅读，让 small 正常化 */

/** 重置列表元素 **/
ul,
ol {
    list-style: none;
}

/** 重置文本格式元素 **/
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}

/** 重置表单元素 **/
legend {
    color: #000;
} /* for ie6 */
fieldset,
img {
    border: 0;
} /* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
    font-size: 100%;
} /* 使得表单元素在 ie 下能继承字体大小 */
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 清除浮动 */
.clearfix:after {
    content: '\20';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    *zoom: 1;
}
html, body{
    min-width: 1200px;
}

/* 右边浮动工具栏 */
.side-tools{
    position: fixed;
    bottom: 60px;
    right: 17px;
    width: 80px;
    z-index: 100;
    background: #fff;
}
.side-tools .ul{
    border-width: 1px 1px 0 1px;
    border-color: #e0e0e0;
    border-style: solid;
}
.side-tools .li{
    display: block;
    height: 78px;
    width: 100%;
}
.side-tools .link{
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
    font-size: 0;
}
.side-tools .li:last-of-type .link, .side-tools .li.move .link{
    background: #2c88d8;
}
.side-tools .li:last-of-type .text, .side-tools .li.move .text{
    color: #fff;
}
/* .side-tools .link:hover{
    background: #2c88d8;
}
.side-tools .link:hover .text{
    color: #fff;
} */
.side-tools .icon{
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: top;
    background-image: url(../imgs/utils.png);
    background-repeat: no-repeat;
}
.side-tools .icon-qq{
    background-position: 0 0;
}
.side-tools .icon-online{
    background-position: -32px 0;
}
.side-tools .icon-wechat{
    background-position: -64px 0;
}
.side-tools .icon-tel{
    background-position: -96px 0;
}
.side-tools .icon-go{
    background-position: -128px 0;
}
.side-tools .icon-top{
    background-position: -160px 0;
}
.side-tools .icon-bottom{
    background-position: -192px 0;
}
.side-tools .text{
    display: block;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    line-height: 16px;
}
/* 表单 */
.form .form-row{
    position: relative;
}
.form .input{
    width: 100%;
    height: 100%;
    border: 1px solid #aaa;
    padding: 0 18px;
    box-sizing: border-box;
    font-size: 20px;
    color: #333;
}
.form .textarea{
    width: 100%;
    height: 100%;
    border: 1px solid #aaa;
    padding: 18px;
    box-sizing: border-box;
    font-size: 20px;
    color: #333;
    resize: none;
}
.form .form-btn{
    width: 100%;
    height: 100%;
    border: 1px solid #2c88d8;
    background: #2c88d8;
    color: #fff;
    font-size: 30px;
}
.form .input.error, .form .textarea.error{
    border-color: red;
    outline-color: red;
}
.form .error-tip{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    font-size: 12px;
    color: red;
    pointer-events:none;
}

/* 首页内容 */
.header{
    /* position: fixed; */
    height: 150px;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10;
}
.header .nav-wrapper{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.header .nav-logo-wrapper{
    float: left;
}
.header .nav-logo-wrapper .logo{
    width: 277px;
    height: 71px;
    vertical-align: top;
    margin-top: 79px;
}
.header .nav{
    float: right;
}
.header .tel{
    font-size: 48px;
    color: #2c88d8;
    line-height: 50px;
    margin: 30px 0;
    text-align: right;
    padding: 0 30px;
}
.header .nav .ul{
    height: 40px;
}
.header .nav .li{
    float: left;
    min-width: 145px;
    padding: 0 30px;
    height: 100%;
}
.header .nav .link{
    display: inline-block;
    vertical-align: top;
    height: 100%;
    width: 100%;
    line-height: 40px;
    font-size: 30px;
    cursor: pointer;
    text-align: right;
    color: #000;
}
.header .nav .link.active, .header .nav .link:hover{
    color: #002474;
    font-size: 36px;
}
.footer{
    /* height: 235px; */
    height: 300px;
    background: #192333;
    padding: 50px 0;
}
.footer .ul{
    width: 1200px;
    margin: 0 auto;
}
.footer .li{
    float: left;
    width: 300px;
}
.footer .li .title{
    cursor: pointer;
    display: block;
    font-size: 24px;
    color: #fff;
    line-height: 30px;
}
.footer .li .text{
    display: block;
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
    color: #8c8c8c;
}
.footer .li .tel{
    display: block;
    font-size: 36px;
    line-height: 40px;
    color: #2c88d8;
}
.footer .beian {
    text-align: center;
    padding: 20px 0 10px;
    color: #fff;
}
.footer .beian a {
    color: #fff;
}
.footer .beian a:hover {
    color: #2c88d8;
}
.footer .beian .p1 {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
    margin-bottom: 0;
}
.section{
    position: relative;
}
.section .header{
    position: absolute;
}
.banner-wrapper{
    padding-top: 20px;
    position: relative;
}
.banner-wrapper .banner-img{
    background-image: url(../imgs/banner@index.png);
    background-repeat: no-repeat;
    background-position: 50%;
    width: 100%;
    height: 760px;
}
.banner-wrapper .move-wrapper{
    position: absolute;
    top: 50%;
    margin-top: -116px;
    left: 0;
    right: 0;
    text-align: center;
}
.banner-wrapper .move-wrapper .text{
    position: relative;
    font-size: 90px;
    line-height: 116px;
    color: #ffff;
    font-weight: bold;
    padding-right: 500px;
    text-align: center;
    transition: all 0.7s ease-out;
    opacity: 0;
    font-family: '宋体';
}
#title1{
    top: -200px;
    z-index: 10;
}
#title1.active{
    transform: translate3d(0, 200px, 0px);
    opacity: 1;
}
#title2{
    bottom: -400px;
    z-index: 10;
}
#title2.active{
    transform: translate3d(0, -400px, 0px);
    opacity: 1;
}
.reason .title-wrapper{
    position: relative;
    height: 170px;
}
.reason .title-wrapper .line{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #000;
    z-index: -1;
}
.reason .title-wrapper .inner{
    width: 400px;
    margin: 0 auto;
    padding-top: 55px;
    background: #fff;
}
.reason .title-wrapper .inner .text{
    text-align: center;
    line-height: 50px;
    font-size: 48px;
}
.reason .title-wrapper .inner .star-wrapper{
    font-size: 0;
    margin-top: 15px;
}
.reason .title-wrapper .inner .star-wrapper .star{
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 32px;
    vertical-align: top;
    background: url(../imgs/star.png) no-repeat;
}
.reason .detail{
    width: 1200px;
    margin: 0 auto;
}
.reason .detail .li{
    float: left;
    width: 25%;
}
.reason .detail .content{
    padding: 40px 30px;
}
.reason .detail .info{
    text-align: center;
}
.reason .detail .logo{
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-image: url(../imgs/reason.png);
    background-repeat: no-repeat;
}
.reason .detail .reason-1 .logo{
    background-position: 0 0;
}
.reason .detail .reason-2 .logo{
    background-position: -110px 0;
}
.reason .detail .reason-3 .logo{
    background-position: -220px 0;
}
.reason .detail .reason-4 .logo{
    background-position: -330px 0;
}
.reason .detail .title{
    font-size: 32px;
    line-height: 52px;
    color: #000;
}
.reason .detail .desc{
    font-size: 18px;
    color: #666;
    line-height: 24px;
}
.service{
    padding: 30px 0;
    background: #e7e7e7;
}
.service .title{
    position: relative;
    font-size: 48px;
    line-height: 114px;
    border-bottom: 1px solid #c4c4c4;
    width: 500px;
    margin: 0 auto;
    text-align: center;
}
.service .title::after{
    position: absolute;
    bottom: -1px;
    left: 50%;
    margin-left: -28px;
    width: 56px;
    height: 4px;
    background: #37bbff;
    content: "";
}
.service .detail{
    width: 1200px;
    margin: 50px auto 0;
}
.service .detail .ul{
    float: left;
    width: 300px;
}
.service .detail .li{
    display: block;
    height: 150px;
    line-height: 150px;
    background: #9a9a9a;
}
.service .detail .li:last-of-type .text{
    border-bottom: 0;
}
.service .detail .li .text{
    box-sizing: border-box;
    height: 100%;
    border-bottom: 1px solid #fff;
    display: block;
    text-align: center;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}
.service .detail .li:hover,.service .detail .li.active{
    background: #2c88d8;
}
.service .detail .show{
    float: left;
    width: 900px;
    height: 600px;
}
.service .detail .show .img{
    width: 100%;
    height: 100%;
    vertical-align: top;
}
#fp-nav{
    top: 30%;
}
#fp-nav ul li .fp-tooltip{
    color: #333;
}

/* 关于我们 */
.about{
    min-width: 1550px;
    padding-top: 20px;
    position: relative;
}
.about .img-wrapper{
    float: left;
    width: 960px;
    height: 600px;
}
.about .img-wrapper .img{
    width: 100%;
    height: 100%;
    vertical-align: top;
}
.about .content{
    float: left;
    width: 530px;
    margin-left: 60px;
}
.about .content .title{
    position: relative;
    margin-top: 100px;
    line-height: 50px;
    font-size: 50px;
    padding: 30px 0 20px;
    color: #37bbff;
}
.about .content .title::after{
    display: block;
    content: "";
    width: 128px;
    height: 6px;
    position: absolute;
    top: 0;
    left: 0;
    background: #32c6ff;
}
.about .content .subtitle{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 50px;
    color: #37bbff;
}
.about .content .text{
    font-size: 18px;
    color: #666;
    line-height: 32px;
}
.join{
    padding: 30px 0;
    background: #e7e7e7;
}
.join .title{
    position: relative;
    font-size: 48px;
    line-height: 114px;
    border-bottom: 1px solid #c4c4c4;
    width: 500px;
    margin: 0 auto;
    text-align: center;
}
.join .title::after{
    position: absolute;
    bottom: -1px;
    left: 50%;
    margin-left: -28px;
    width: 56px;
    height: 4px;
    background: #37bbff;
    content: "";
}
.join .subtitle{
    font-size: 26px;
    line-height: 30px;
    margin-top: 60px;
    text-align: center;
}
.join .content{
    margin: 50px auto 0;
    width: 1200px;
    overflow: hidden;
}
.join .content .ul{
    width: 1212px;
}
.join .content .li{
    float: left;
    width: 291px;
    height: 50px;
    text-align: center;
    margin: 0 12px 10px 0;
    background: #3e3e40;
    cursor: pointer;
}
.join .content .li .text{
    width: 100%;
    height: 100%;
    line-height: 50px;
    font-size: 22px;
    color: #fff;
}
.join .content .li:hover, .join .content .li.active{
    background: #2c88d8;
}
.join .content .show{
    margin-top: 10px;
    width: 100%;
}
.join .content .show .item{
    position: relative;
    width: 100%;
    padding: 40px 0 40px;
    background-repeat: no-repeat;
    background-size: cover;
}
.join .content .show .item .item-title{
    position: relative;
    font-size: 24px;
    color: #37bbff;
    padding: 25px 0 15px 75px;
    line-height: 24px;
}
.join .content .show .item .item-title::after{
    display: block;
    content: "";
    width: 56px;
    height: 4px;
    position: absolute;
    top: 0;
    left: 75px;
    background: #37bbff;
}
.join .content .show .item .text{
    margin-top: 12px;
    font-size: 20px;
    color: #fff;
    line-height: 24px;
    padding-left: 75px;
}
.cooperation{
    padding: 30px 0;
}
.cooperation .title{
    position: relative;
    font-size: 48px;
    line-height: 114px;
    border-bottom: 1px solid #c4c4c4;
    width: 500px;
    margin: 0 auto;
    text-align: center;
}
.cooperation .title::after{
    position: absolute;
    bottom: -1px;
    left: 50%;
    margin-left: -28px;
    width: 56px;
    height: 4px;
    background: #37bbff;
    content: "";
}
.cooperation .content{
    width: 1200px;
    margin: 30px auto 0;
}
.cooperation .content .left-inner{
    float: left;
    width: 526px;
}
.cooperation .content .right-inner{
    float: left;
    width: 654px;
    margin-left: 20px
}
.cooperation .form .form-row{
    margin-top: 20px;
}
.cooperation .form .form-row .input{
    height: 60px;
}
.cooperation .form .form-row .textarea{
    height: 220px;
    vertical-align: top;
}
.cooperation .form .form-row .textarea+.error-tip{
    top: 32px;
}
.cooperation .form .form-row .form-btn{
    height: 60px;
}
/* 服务项目 */
.banner-service{
    padding-top: 20px;
    position: relative;
}
.banner-service .banner-img{
    background-image: url(../imgs/banner@service.png);
    background-repeat: no-repeat;
    background-position: 50%;
    width: 100%;
    height: 400px;
}
.banner-service .move-wrapper{
    position: absolute;
    top: 50%;
    margin-top: 10px;
    left: 0;
    right: 0;
    text-align: center;
}
.banner-service .move-wrapper .title{
    position: relative;
    font-size: 50px;
    line-height: 50px;
    color: #ffff;
    font-weight: bold;
    text-align: center;
    transition: all 0.7s ease-out;
    top: -200px;
    opacity: 0;
}
.banner-service .move-wrapper .title.active{
    transform: translate3d(0, 120px, 0px);
    opacity: 1;
}
.banner-service .move-wrapper .subtitle{
    position: relative;
    font-size: 30px;
    line-height: 70px;
    color: #ffff;
    font-weight: bold;
    text-align: center;
    transition: all 0.7s ease-out;
    top: 200px;
    opacity: 0;
}
.banner-service .move-wrapper .subtitle::after{
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 128px;
    height: 2px;
    margin-left: -64px;
    background: #fff;
}
.banner-service .move-wrapper .subtitle.active{
    transform: translate3d(0, -250px, 0px);
    opacity: 1;
}

.type-wrapper{
    width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
}
.type-list{
    width: 1220px;
}
.type-item{
    position: relative;
    float: left;
    width: 590px;
    height: 508px;
    margin: 0 20px 30px 0;
    box-sizing: border-box;
    transition: transform .3s ease;
    cursor: pointer;
}
.type-item::after{
    display: block;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: rgba(62,62,64,.6);
    z-index: 3;
}
.type-item:hover{
    /* transform: scale(1.07); */
    transform: translate(0, -20px);
    box-shadow: 0 10px 70px 0 rgba(0,0,0,.2);
}
.type-item:hover::after{
    background: rgba(237,237,237,.6)
}
.type-item:hover .title{
    background: #2c88d8;
}
.type-item:hover  .content .text{
    color: #2c88d8;
    font-size: 30px;
}
.type-item:hover  .content .link{
    border-color: #2c88d8;
    color: #2c88d8;
}
.type-item .title{
    height: 100px;
    line-height: 100px;
    background: #3e3e40;
    color: #fff;
    font-size: 36px;
    text-align: center;
}
.type-item .img{
    vertical-align: top;
    width: 100%;
    height: 408px;
}
.type-item .content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 408px;
    z-index: 4;
}
.type-item .content .text{
    position: absolute;
    bottom: 270px;
    left: 45px;
    right: 45px;
    font-size: 18px;
    color: #fff;
    /* text-align: center; */
}
.type-item .content .ul{
    position: absolute;
    top: 138px;
    left: 0;
    right: 0;
    padding-left: 45px;
}
.type-item .content .li{
    float: left;
    margin: 20px 20px 0 0;
}
.type-item .content .link{
    display: block;
    border-radius: 20px;
    text-align: center;
    width: 110px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
}
            
.service-flow{
    padding: 30px 0;
    background: #e7e7e7;
}
.service-flow .title{
    position: relative;
    font-size: 48px;
    line-height: 114px;
    border-bottom: 1px solid #c4c4c4;
    width: 500px;
    margin: 0 auto;
    text-align: center;
}
.service-flow .ul{
    width: 1200px;
    margin: 45px auto 0;
}
.service-flow .li{
    float:left;
    cursor: pointer;
}
.service-flow .content{
    position: relative;
    width: 170px;
    height: 210px;
    /* box-sizing: border-box; */
    padding-top: 90px;
    text-align: center;
    /* overflow: hidden; */
}
.service-flow .content:hover{
    background: #3ab4f2;
}
.service-flow .content:hover .text{
    color: #fff;
}
.service-flow .content:hover .subtext{
    color: #bde9ff;
    display: block;
}
.service-flow .content:hover .subtext{
    opacity: 1;
    transform: translate3d(0, -100px, 0px);
}
.service-flow .content:hover .arrow{
    background: url(../imgs/service@flow2.png) no-repeat;
}
.service-flow .content .img{
    width: 40px;
    height: 40px;
    margin: 0 auto 0;
    vertical-align: top;
    background-image: url(../imgs/service@step.png);
    background-repeat: no-repeat;
}
.service-flow .step1 .content .img{
    background-position: 0 0;
}
.service-flow .step2 .content .img{
    background-position: -40px 0;
}
.service-flow .step3 .content .img{
    background-position: -80px 0;
}
.service-flow .step4 .content .img{
    background-position: -120px 0;
}
.service-flow .step5 .content .img{
    background-position: -160px 0;
}
.service-flow .step6 .content .img{
    background-position: -200px 0;
}
.service-flow .step7 .content .img{
    background-position: -240px 0;
}
.service-flow .step1 .content:hover .img{
    background-position: 0 -40px;
}
.service-flow .step2 .content:hover .img{
    background-position: -40px -40px;
}
.service-flow .step3 .content:hover .img{
    background-position: -80px -40px;
}
.service-flow .step4 .content:hover .img{
    background-position: -120px -40px;
}
.service-flow .step5 .content:hover .img{
    background-position: -160px -40px;
}
.service-flow .step6 .content:hover .img{
    background-position: -200px -40px;
}
.service-flow .step7 .content:hover .img{
    background-position: -240px -40px;
}
.service-flow .content .text{
    font-size: 24px;
    color: #000;
    line-height: 30px;
    margin-top: 25px;
}
.service-flow .content .subtext{
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
    padding: 0 10px;
    position: relative;
    top: 100px;
    transition: all 0.4s ease-out;
    opacity: 0;
}
.service-flow .content .arrow{
    position: absolute;
    top: 50%;
    right: -22px;
    width: 22px;
    height: 44px;
    margin-top: -11px;
    background: url(../imgs/service@flow1.png) no-repeat;
}
/* 404 */
.empty-page{
    height: 100%;
}
.empty-page .page{
    height: 100%;
}
.empty-page .header{
    position: absolute;
    top: 0;
}
.empty-page .empty-box{
    padding: 150px 0 335px 0;
    height: 100%;
    min-height: 161px;
    box-sizing: border-box;
    text-align: center;
}
.empty-wrap{
    position: relative;
    height: 100%;
    width: 100%;
}
.empty-box .inner{
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -80px 0 0 -168px;
    width: 336px;
    height: 161px;
}
.empty-box .img{
    margin: 0 auto;
    width: 100%;
    height: 100%;
}
.empty-box .text{
    font-size: 16px;
    color: #666;
}
.empty-page .footer{
    position: absolute;
    bottom: 0;
    width: 100%;
}
@media screen and (max-width: 1000px) {
    html, body{
        min-width: auto;
    }
    .header{
        height: 0.71rem;
    }
    .header .tel{
        display: none;
    }
    .header .nav{
        margin-top: 0.31rem;
    }
    .header .nav-logo-wrapper .logo{
        width: 2.77rem;
        height: 0.71rem;
        margin-top: 0;
    }
    .banner-wrapper{
        padding-top: 0.36rem;
    }
    .header .nav .ul{
        height: 0.4rem;
    }
    .header .nav .li{
        min-width: 1.0rem;
        padding: 0 .25rem 0 0;
    }
    .header .nav .link{
        font-size: 0.3rem;
        line-height: 0.4rem;
    }
    .header .nav .link.active, .header .nav .link:hover{
        font-size: 0.36rem;
    }
    .footer{
        height: auto;
        padding: 0;
    }
    .footer .ul{
        width: 100%;
    }
    .footer .li{
        width: 25%;
    }
    .footer .li .title{
        font-size: 0.24rem;
        line-height: 0.8rem;
        text-align: center;
    }
    .footer .li .text{
        display: none;
    }
    .footer .beian {
        font-size: 14px;
        padding: 10px 0 10px;
    }
    .footer .beian .p1 { 
        font-size: 10px;
    }
    .side-tools{
        bottom: 0.5rem;
        right: 0.1rem;
        width: 0.8rem;
    }
    .side-tools .li{
        height: 0.78rem;
    }
    .side-tools .link{
        padding: 0.08rem 0;
        font-size: 0;
    }
    .side-tools .text{
        font-size: 0.16rem;
        margin-top: 0.1rem;
        line-height: 0.16rem;
    }
    .side-tools .icon{
        width: 0.32rem;
        height: 0.32rem;
        background-size: 2.24rem 0.32rem;
    }
    .side-tools .icon-qq{
        background-position: 0 0;
    }
    .side-tools .icon-online{
        background-position: -0.32rem 0;
    }
    .side-tools .icon-wechat{
        background-position: -0.64rem 0;
    }
    .side-tools .icon-tel{
        background-position: -0.96rem 0;
    }
    .side-tools .icon-go{
        background-position: -1.28rem 0;
    }   
    .side-tools .icon-top{
        background-position: -1.6rem 0;
    }
    .side-tools .icon-bottom{
        background-position: -1.92rem 0;
    }
    /* 首页 */
    #fp-nav{
        display: none;
    }
    .banner-wrapper .banner-img{
        height: 6rem;
    }
    .banner-wrapper .move-wrapper{
        margin-top: -1rem;
    }
    .banner-wrapper .move-wrapper .text{
        font-size: 0.9rem;
        line-height: 1rem;
        padding-right: 0;
    }
    #title1{
        top: -2rem;
    }
    #title1.active{
        transform: translate3d(0, 2rem, 0px);
    }
    #title2{
        bottom: -3rem;
    }
    #title2.active{
        transform: translate3d(0, -2rem, 0px);
    }
    .reason .title-wrapper{
        height: 1.5rem;
    }
    .reason .title-wrapper .inner{
        width: 4rem;
        padding-top: 0.5rem;
    }
    .reason .title-wrapper .inner .text{
        font-size: 0.48rem;
        line-height: 0.5rem;
    }
    .reason .title-wrapper .inner .star-wrapper{
        margin-top: 0.15rem;
    }
    .reason .title-wrapper .inner .star-wrapper .star{
        width: 0.16rem;
        height: 0.16rem;
        background-size: cover;
        margin: 0 .32rem;
    }
    .reason .detail{
        width: 100%;
    }
    .reason .detail .content{
        padding: 0.2rem 0.1rem;
    }
    .reason .detail .logo{
        width: 1rem;
        height: 1rem;
        margin: 0 auto 0.2rem;
        background-size: 4.3rem 1rem;
    }
    .reason .detail .reason-1 .logo{
        background-position: 0 0;
    }
    .reason .detail .reason-2 .logo{
        background-position: -1.1rem 0;
    }
    .reason .detail .reason-3 .logo{
        background-position: -2.2rem 0;
    }
    .reason .detail .reason-4 .logo{
        background-position: -3.3rem 0;
    }
    .reason .detail .title{
        font-size: 0.3rem;
        line-height: .5rem;
    }
    .reason .detail .desc{
        font-size: 0.18rem;
        line-height: 0.3rem;
    }
    .service{
        padding: 0.3rem 0;
    }
    .service .title{
        font-size: 0.48rem;
        line-height: 1.14rem;
        width: 5rem;
    }
    .service .title::after{
        width: .56rem;
        height: 0.04rem;
        margin-left: -0.28rem;
        bottom: -0.01rem;
    }
    .service .detail{
        width: 100%;
        margin: 0.5rem auto 0;
        overflow: hidden;
    }
    .service .detail .ul{
        float: none;
        display: flex;
        width: 7.6rem;
    }
    .service .detail .li{
        float: none;
        flex: 1 1 auto;
        /* width: 1.86rem; */
        height: 1.5rem !important;
        line-height: 1.5rem !important;
        border-right: 0.02rem solid #fff;
    }
    .service .detail .li .text{
        font-size: 0.32rem;
    }
    .service .detail .show{
        float: none;
        width: 100%;
        height: 6.03rem;
    }

    /* 关于我们 */
    .about{
        min-width: auto;
        padding-top: 0.36rem;
    }
    .about .img-wrapper{
        float: none;
        width: 100%;
        height: 6rem;
    }
    .about .content{
        float: none;
        position: absolute;
        top: 0.36rem;
        width: auto;
        left: 1.4rem;
        right: 1.4rem;
        margin-left: 0;
    }
    .about .content .title{
        position: relative;
        margin-top: 1rem;
        line-height: 0.5rem;
        font-size: 0.5rem;
        padding: 0.3rem 0 0.2rem;
        text-align: center;
        transition: all 0.7s ease-out;
        top: -2rem;
        opacity: 0;
    }
    .about .content .title.active{
        transform: translate3d(0, 2rem, 0px);
        opacity: 1;
    }
    .about .content .title::after{
        width: 1.28rem;
        height: 0.06rem;
        left: 50%;
        margin-left: -0.64rem;
    }
    .about .content .subtitle{
        position: relative;
        font-size: 0.3rem;
        line-height: 0.3rem;
        margin-bottom: 0.5rem;
        text-align: center;
        transition: all 0.7s ease-out;
        top: -2rem;
        opacity: 0;
    }
    .about .content .subtitle.active{
        transform: translate3d(0, 2rem, 0px);
        opacity: 1;
    }
    .about .content .text{
        position: relative;
        font-size: 0.18rem;
        line-height: 0.36rem;
        color: #fff;
        transition: all 0.7s ease-out;
        bottom: -3rem;
        opacity: 0;
    }
    .about .content .text.active{
        transform: translate3d(0, -3rem, 0px);
        opacity: 1;
    }
    .join{
        padding: 0 0 0.3rem 0;
    }
    .join .title{
        font-size: 0.48rem;
        line-height: 1.14rem;
        width: 5rem;
    }
    .join .title::after{
        width: .56rem;
        height: 0.04rem;
        margin-left: -0.28rem;
        bottom: -0.01rem;
    }
    .join .subtitle{
        font-size: 0.26rem;
        line-height: 0.5rem;
        margin-top: 0.1rem;
    }
    .join .content{
        margin-top: 0.2rem;
        width: 100%;
    }
    .join .content .ul{
        width: 7.6rem;
    }
    .join .content .li{
        width: 3.7rem;
        height: 0.6rem;
        margin: 0 0.1rem 0.1rem 0;
    }
    .join .content .li .text{
        line-height: .6rem;
        font-size: 0.22rem;
    }
    .join .content .show{
        /* height: 4rem; */
        margin-top: 0.1rem;
    }
    .join .content .show .item{
        padding: 0.4rem 0 0.4rem;
    }
    .join .content .show .item .item-title{
        font-size: 0.24rem;
        padding: 0.25rem 0.25rem 0.15rem 0.25rem;
        line-height: 0.24rem;
    }
    .join .content .show .item .item-title::after{
        width: 0.54rem;
        height: 0.04rem;
        left: 0.25rem;
    }
    .join .content .show .item .text{
        margin-top: 0.12rem;
        font-size: 0.2rem;
        line-height: 0.24rem;
        padding: 0 0.25rem;
    }
    .cooperation{
        padding: 0 0 0.3rem 0;
    }
    .cooperation .title{
        font-size: 0.48rem;
        line-height: 1.14rem;
        width: 5rem;
    }
    .cooperation .title::after{
        width: .56rem;
        height: 0.04rem;
        margin-left: -0.28rem;
        bottom: -0.01rem;
    }
    .cooperation .content{
        width: auto;
        margin-top: 0.3rem;
    }
    .cooperation .content .left-inner{
        width: auto;
        float: none;
    }
    .cooperation .content .right-inner{
        width: auto;
        float: none;
        margin-left: 0;
    }
    .cooperation .form .form-row{
        padding: 0 0.1rem;
        margin-top: 0.2rem;
    }
    .cooperation .form .form-row .input{
        height: 0.6rem;
        font-size: 0.2rem;
        padding: 0 0.2rem;
    }
    .cooperation .form .form-row .textarea{
        height: 2rem;
        padding: 0.2rem;
        font-size: 0.2rem;
    }
    .form .error-tip{
        right: 0.2rem;
        font-size: 0.16rem;
    }
    .cooperation .form .form-row .form-btn{
        height: 0.6rem;
        font-size: 0.3rem;
    }

    /* 服务项目 */
    .banner-service{
        padding-top: 0.36rem;
    }
    .banner-service .banner-img{
        height: 5rem;
        background-size: 100% 100%;
    }
    .banner-service .move-wrapper{
        margin-top: -1rem;
    }
    .banner-service .move-wrapper .title{
        top: -2rem;
        font-size: 0.5rem;
        line-height: 0.5rem;
    }
    .banner-service .move-wrapper .subtitle{
        font-size: 0.3rem;
        line-height: 0.7rem;
        transition: all 0.7s ease-out;
        top: 2rem;
        opacity: 0;
    }
    .banner-service .move-wrapper .subtitle::after{
        width: 1.28rem;
        height: 0.02rem;
        margin-left: -0.64rem;
    }
    .banner-service .move-wrapper .title.active{
        transform: translate3d(0, 2.3rem, 0px);
        opacity: 1;
    }
    .banner-service .move-wrapper .subtitle.active{
        transform: translate3d(0, -1.3rem, 0px);
        opacity: 1;
    }
    .type-wrapper{
        width: 100%;
        padding-top: 0.2rem;
    }
    .type-list{
        width: 100%;
    }
    .type-item{
        float: none;
        display: block;
        width: 100%;
        height: 5rem;
        margin: 0 0 0.1rem 0;
    }
    .type-item::after{
        top: 1rem;
        background: rgba(237,237,237,.6)
    }
    .type-item .title{
        height: 1rem;
        line-height: 1rem;
        font-size: 0.36rem;
        background: #2c88d8;
    }
    .type-item .img{
        height: 4rem;
    }
    .type-item .content{
        height: 4rem;
    }
    .type-item .content .text{
        line-height: 0.36rem;
        font-size: 0.3rem;
        bottom: 2.5rem;
        left: 1.2rem;
        right: 1.2rem;
        color: #2c88d8;
    }
    .type-item .content .ul{
        top: 1.7rem;
        padding-left: 1.2rem;
    }
    .type-item .content .li{
        margin: 0.2rem 0.2rem 0 0;
    }
    .type-item .content .link{
        border-radius: 0.2rem;
        width: auto;
        min-width: 1.1rem;
        height: 0.4rem;
        line-height: 0.4rem;
        font-size: 0.18rem;
        box-sizing: border-box;
        padding: 0 0.1rem;
        border-color: #2c88d8;
        color: #2c88d8;
    }
    .type-item:hover{
        transform: none;
        box-shadow: none;
    }
    .type-item:hover  .content .text{
        font-size: 0.3rem;
    }
    .service-flow{
        padding: 0.3rem 0;
    }
    .service-flow .title{
        font-size: 0.48rem;
        line-height: 1.14rem;
        width: 5rem;
    }
    .service-flow .title::after{
        width: .56rem;
        height: 0.04rem;
        margin-left: -0.28rem;
        bottom: -0.01rem;
    }
    .service-flow .ul{
        width: 100%;
        margin: 0.3rem auto 0;
        background: #fff;
        overflow: hidden;
    }
    .service-flow .content{
        background: #3ab4f2;
    }
    .service-flow .li.step1 ,.service-flow .li.step2 ,.service-flow .li.step3 ,.service-flow .li.step4{
        width: 25%;
    }
    .service-flow .li.step5 ,.service-flow .li.step6 ,.service-flow .li.step7{
        width: 33.3333333333333333333%;
    }
    .service-flow .content{
        width: 100%;
        height: 2.3rem;
        padding-top: 0.7rem;
        border-color: #fff;
        border-style: solid;
        border-width: 0 0 1px 1px;
    }
    .service-flow .li.step4 .content, .service-flow .li.step7 .content{
        border-width: 0 1px 1px 1px;
    }
    .service-flow .content .text{
        color: #fff;
        font-size: 0.24rem;
        line-height: 0.3rem;
        margin-top: 0.2rem;
    }
    .service-flow .content .subtext{
        top: auto;
        opacity: 1;
        color: #bde9ff;
        font-size: 0.18rem;
        line-height: 0.24rem;
        margin-top: 0.2rem;
    }
    .service-flow .content:hover .subtext{
        transform: none;
    }
    .service-flow .step1 .content .img{
        background-position: 0 -40px;
    }
    .service-flow .step2 .content .img{
        background-position: -40px -40px;
    }
    .service-flow .step3 .content .img{
        background-position: -80px -40px;
    }
    .service-flow .step4 .content .img{
        background-position: -120px -40px;
    }
    .service-flow .step5 .content .img{
        background-position: -160px -40px;
    }
    .service-flow .step6 .content .img{
        background-position: -200px -40px;
    }
    .service-flow .step7 .content .img{
        background-position: -240px -40px;
    }
    
    /* 404 */
    .empty-page .header{
        position: absolute;
        top: 0;
    }
    .empty-page .empty-box{
        padding: 1rem 0 1rem 0;
    }
    .empty-box .inner{
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0;
        width: 100%;
        max-width: 336px;
        transform: translate(-50%, -50%);
    }
    .empty-box .text{
        /* font-size: 0.16rem; */
    }
}