﻿*{
    margin: 0px;
    padding: 0px;
    font-family: "微软雅黑";
    list-style: none;
    outline: none;
}
.clearfix:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}
.left{
    float: left;
}
.right{
    float: right;
}
.wrap{
    width: 1260px;
    min-width: 1260px;
    box-sizing: border-box;
    padding: 0 30px;
    margin: 0 auto;
}

.index-banner{
    width: 100%;
    min-width: 1260px;
    height: 974px;
    background: url(../img/index-banner.jpg) no-repeat center center;
    background-size: cover;
}

.header{
    height: 50px;
    padding: 42px 0;
}
.logo{
    width: 155px;
    height: 50px;

}
.nav{
    height: 50px;
    line-height: 50px;
    margin-right: 10px;
}
.nav a{
    display: inline-block;
    margin: 0 20px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
}
.nav a:hover{
    border-bottom: 2px solid #fff;
}
.nav-btn{
    width: 112px;
    text-align: center;
    height: 34px;
    line-height: 34px;
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    font-size: 14px;
    margin-top: 8px;
    cursor: pointer;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
}
.nav-btn:hover{
    background-color: #fff;
    color: #333;
}
.index-banner-main{
    text-align: center;
}
.index-banner-main img{
    width: 128px;
    height: auto;
    margin-bottom: 50px;
    margin-top: 100px;
    opacity: 0;
    animation: bannerShow 1s;
    -moz-animation: bannerShow 1s; 
    -webkit-animation: bannerShow 1s; 
    -o-animation: bannerShow 1s;
    -ms-animation: bannerShow 1s;
    opacity: 1;
}
.index-banner-main h1{
    font-size: 50px;
    color: #fff;
    font-weight: normal;
    
    text-align: center;
    margin: 0 auto;
    line-height: 55px;
    opacity: 0;
    animation: bannerShow 1.5s;
    -moz-animation: bannerShow 1.5s; 
    -webkit-animation: bannerShow 1.5s; 
    -o-animation: bannerShow 1.5s;
    -ms-animation: bannerShow 1.5s;
    opacity: 1;
}
.index-banner-main span{
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #F05F40;
    margin: 30px 0;
    opacity: 0;
    animation: bannerShow 2s;
    -moz-animation: bannerShow 2s; 
    -webkit-animation: bannerShow 2s; 
    -o-animation: bannerShow 2s;
    -ms-animation: bannerShow 2s;
    opacity: 1;
}
.index-banner-main p{
    width: 800px;
    font-size: 18px;
    color: rgba(255,255,255,.5);
    line-height: 27px;
    margin: 0 auto;
    margin-bottom: 50px;
    opacity: 0;
    animation: bannerShow 2.5s;
    -moz-animation: bannerShow 2.5s; 
    -webkit-animation: bannerShow 2.5s; 
    -o-animation: bannerShow 2.5s;
    -ms-animation: bannerShow 2.5s;
    opacity: 1;
}
.index-banner-main a{
    display: inline-block;
    width: 172px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    color: #fff;
    background-color: #f05f40;
    font-size: 14px;
    font-weight: 700;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    opacity: 0;
    animation: bannerShow 3s;
    -moz-animation: bannerShow 3s; 
    -webkit-animation: bannerShow 3s; 
    -o-animation: bannerShow 3s;
    -ms-animation: bannerShow 3s;
    opacity: 1;
}
.index-banner-main a:hover{
    background-color: #eb3812;
}
.index-item01{
    width: 100%;
    min-width: 1260px;
    padding: 100px 0;
    background-color: #333742;
}
.index-item01-content{
    width: 90%;
    min-width: 1134px;
    margin: 0 auto;
}
.index-item-title{
    text-align: center;
}
.index-item-title h1{
    font-size: 25px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}
.index-item-title span{
    display: inline-block;
    width: 66px;
    height: 6px;
    background-color: #80b53f;
}
.index-item01-desc{
    margin-top: 36px;
    margin-bottom: 60px;
    color: #8a909f;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}
.index-item01-content ul:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}
.index-item01-content li{
    width: 20%;
    float: left;
    text-align: center;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
    

.index-item01-content ul.animate li{
    opacity: 1;
    transform: none;
}
.index-item01-content ul.animate li:nth-child(2){
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.index-item01-content ul.animate li:nth-child(3){
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}
.index-item01-content ul.animate li:nth-child(4){
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
}
.index-item01-content ul.animate li:nth-child(5){
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}
.index-item01-content li .pic{
    display: inline-block;
    width: 81px;
    height: 81px;
    overflow: hidden;
}
.index-item01-content li .pic img{
    width: 100%;
    height: auto;
    cursor: pointer;
}
.index-item01-content li h2{
    color: #b0b5c3;
    font-size: 13px;
    font-weight: 700;
    line-height: 15.6px;
    cursor: pointer;
    margin-top: 10px;
}
.index-item02{
    width: 100%;
    min-width: 1260px;
}
.index-item02-title{
    width: 100%;
    min-width: 1260px;
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}
.index-item02-title h1{
    color: #000;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 40px;
}
.index-item02-title p{
    font-size: 18px;
    line-height: 27px;
    color: #686868;
}
.index-item02-body{
    width: 100%;
    min-width: 1260px;
    position: relative;
    height: 720px;
}
.index-item02-bg{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
.index-item02-bg i{
    display: block;
    width: 50%;
    float: left;
    height: 360px;
}
.index-item02-content{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    min-width: 1260px;
    height: 720px;
overflow:hidden;
}
.index-item02-content .wrap{
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -630px;
    height: 720px;
}
.index-item02-detial{
    width: 50%;
    height: 360px;
    float: left;
    box-sizing: border-box;
    padding: 40px 20px 45px 80px;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
    

.index-item02-content.animate .index-item02-detial{
    opacity: 1;
    transform: none;
}
.index-item02-content.animate .index-item02-detial:nth-child(2){
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.index-item02-content.animate .index-item02-detial:nth-child(3){
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}
.index-item02-content.animate .index-item02-detial:nth-child(4){
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
}

.index-item02-detial h1{
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 41px;
    height: 82px;
}
.index-item02-detial p{
    width: 270px;
    color: #ececec;
    font-size: 14px;
    line-height: 20px;
    margin-top: 15px;
}
.index-item02-detial a{
    display: block;
    width: 100px;
    height: 32px;
    line-height: 32px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    margin-top: 30px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
}
.index-item02-detial a:hover{
    background-color: #fff;
    color: #333;
}
.index-item03{
    width: 100%;
    min-width: 1260px;
    padding: 100px 0;
    background-color: #252830;
}
.index-item03-content ul{
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    border-bottom: 1px solid #31353e;
}
.index-item03-content li{
    float: left;
    width: 25%;
    box-sizing: border-box;
    padding: 42px;  
    border-left: 1px solid #31353e;

}
.index-item03-content li:first-child{
    border-left: none;
}
.index-item03-content li .num{
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    height: 47px;

}
.index-item03-content li h2{
    color: #52be7f;
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 6px;
    line-height: 27px;
}
.index-item03-content li p{
    color: #626775;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.index-item04{
    width: 100%;
    min-width: 1260px;
    padding: 100px 0;
    background-color: #f05f40;
    text-align: center;
}


    


.index-item04.animate span{
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.index-item04.animate p{
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.index-item04.animate a{
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}
.index-item04 h1{
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
.index-item04.animate h1,
.index-item04.animate p,
.index-item04.animate span,
.index-item04.animate a{
    opacity: 1;
    transform: none;
}
.index-item04 span{
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #fff;
    margin: 20px 0;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
.index-item04 p{
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255,255,255,.7);
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
.index-item04 a{
    display: inline-block;
    width: 172px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 700;
    /*transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;*/
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
.index-item04 a:hover{
    background-color: #f05f40;
    color: #fff;


}
.footer{
    width: 100%;
    min-width: 1260px;
    padding: 100px 0;
    background-color: #292929;
}
.footer ul{
    overflow: hidden;
}
.footer li{
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding-right: 100px;
}
.footer li:last-child{
    padding-right: 0;
}
.footer li h2{
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 20px;
   
    transition: color .2s ease-in-out;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
}
.footer li h2:hover{
    color: #e4264f;
    text-decoration: underline;
}
.footer li a:hover{
    color: #e4264f;
    text-decoration: underline;
}
 
.footer li a{
    display: block;
    margin: 15px 0; 
    color: #666;
    font-size: 16px; 
    text-decoration: none;
    transition: color .2s ease-in-out;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
}
.footer li p{
    color: #b2b2b2;
    font-size: 16px;
    margin: 15px 0;
}
.footer li p i{
    font-size: 16px;
    width: 25px;

}




.software-banner{
    width: 100%;
    min-width: 1260px;
    height: 856px;
    background: url(../img/software-banner.jpg) no-repeat center center;
    background-size: cover;
}
.soft-banner-content{
    text-align: center;
}
.soft-banner-content h1{
    font-size: 48px;
    font-weight: normal;
    color: #fff;
    margin-top: 135px;
    opacity: 0;
    animation: bannerShow 1s;
    -moz-animation: bannerShow 1s; 
    -webkit-animation: bannerShow 1s; 
    -o-animation: bannerShow 1s;
    -ms-animation: bannerShow 1s;
    opacity: 1;
}
.soft-banner-content p{
    width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    margin-top: 20px;
    opacity: 0;
    animation: bannerShow 1.5s;
    -moz-animation: bannerShow 1.5s; 
    -webkit-animation: bannerShow 1.5s; 
    -o-animation: bannerShow 1.5s;
    -ms-animation: bannerShow 1.5s;
    opacity: 1;
}
.soft-banner-content a{
    display: inline-block;
    width: 226px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #fff;
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-top: 35px;
    text-decoration: none;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    opacity: 0;
    animation: bannerShow 2s;
    -moz-animation: bannerShow 2s; 
    -webkit-animation: bannerShow 2s; 
    -o-animation: bannerShow 2s;
    -ms-animation: bannerShow 2s;
    opacity: 1;
}
.soft-banner-content a:hover{
    background-color: #fff;
    color: #333;
}
.soft-item01{
    width: 100%;
    min-width: 1260px;
    padding: 100px 0;
    background-color: #fff;
}
.soft-item01-top h1{
    font-size: 36px;
    font-weight: normal;
    color: #282828;
    margin-bottom: 35px;
}
.soft-item01-top p{
    font-size: 17px;
    line-height: 30px;
    color: #282828;
}
.soft-item01 ul{
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
.soft-item01.animate ul{
    opacity: 1;
    transform: none;
}
.soft-item01 ul:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}
.soft-item01 li{
    width: 33.33333333333333%;
    float: left;
    box-sizing: border-box;
    padding: 0 10px;
    overflow: hidden;
    margin-top: 80px;
    
   
}
.soft-item01 li .icon{
    float: left;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    text-align: center;
    line-height: 70px;
    color: #fff;
    font-size: 40px;
}
.soft-item01 li .icon01{
    background-color: #58da82;
}
.soft-item01 li .icon02{
    background-color: #61d3e2;
}
.soft-item01 li .icon03{
    background-color: #df608e;
    font-size: 30px;
}
.soft-item01 li .icon04{
    background-color: #209986;
    font-size: 34px;
}
.soft-item01 li .icon05{
    background-color: #ff6a56;
    font-size: 36px;
}
.soft-item01 li .icon06{
    background-color: #8d65b3;
    font-size: 26px;
}
.soft-item01 li .desc{
    margin-left: 100px;
}
.soft-item01 li .desc h2{
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: normal;
    color: #21252b;
    margin-top: 10px;
}
.soft-item01 li .desc p{
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 22.4px;
    color: #666e70;
}
.soft-item01 li .desc a{
    color: #00affd;
    text-decoration: none;
    font-size: 14px;
}
.soft-item01 li .desc i{
    padding-left: 10px;
}
.soft-item02{
    width: 100%;
    min-width: 1260px;
    min-height: 742px;
    box-sizing: border-box;
    padding: 50px 0;
    background: url(../img/softpic01.jpg) no-repeat;
    background-position: 50% 50%;
    background-size: cover;
overflow:hidden;
}
.soft-item02.animate .soft-item02-content{
    opacity: 1;
    transform: none;
}
.soft-item02 .soft-item02-content{
    width: 49%;
    height: 642px;
    background: rgba(0,102,153,0.6);
    box-sizing: border-box;
    padding: 40px;
    
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
.soft-item02-content h1{
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
}
.soft-item02-content .desc{
    font-size: 16px;
    color: #fff;
    line-height: 26px;
    margin-bottom: 50px;
}
.soft-item02-content p{
    font-size: 16px; 
    color: #fff;
    line-height: 26px;
    border-bottom: #eee 1px solid ;
    padding-bottom: 10px;
    margin-top: 10px;
}
.anim-left {
    -webkit-transform: translate(-60px);
    -ms-transform: translate(-60px);
    transform: translate(-60px);
}
.anim-right {
    -webkit-transform: translate(60px);
    -ms-transform: translate(60px);
    transform: translate(60px);
}
.soft-item03{
    width: 100%;
    min-width: 1260px;
    background-color: #fff;
    padding: 100px 0;
    text-align: center;
}
.soft-item03 h1{
    font-size: 36px;
    font-weight: normal;
    color: #282828;
    margin-bottom: 35px;
}
.soft-item03 p{
    font-size: 17px;
    line-height: 30px;
    color: #282828;
}
.soft-item04{
    width: 100%;
    min-width: 1260px;
    height: 350px;
    background: url(../img/softpic02.jpg) no-repeat;
    text-align: center;
}
.soft-item04 h1{
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    color: #fff;
    padding-top: 70px;
}
.soft-item04 span{
    display: inline-block;
    text-align: center;
    width: 480px;
    height: 1px;
    background: rgba(255,255,255,.5);
}
.soft-item04 li{
    display: inline-block;
    height: 100px;
    line-height: 100px;
    color: #fff;
    font-size: 30px;
    font-weight: normal;
    margin-top: 50px;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
    margin-right: 76px;
}
.soft-item04 li:last-child{
    margin-right: 0;
}
.soft-item04-picarea{
    margin-top: 50px;
}
.soft-item04-picarea img{
    margin-left: 40px;
    margin-right: 40px;
    cursor: pointer;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    /*transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;*/
    opacity: .7;
}
.soft-item04.animate li{
    opacity: 1;
    transform: none;
}
.soft-item04.animate li:nth-child(2){
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.soft-item04.animate li:nth-child(3){
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.soft-item04.animate li:nth-child(4){
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}
.soft-item04.animate li:nth-child(5){
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
}
.soft-item04.animate li:nth-child(6){
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}
.soft-item04.animate li:nth-child(7){
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}


.anim-bottom {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.app-banner{
    width: 100%;
    min-width: 1260px;
    min-height: 620px;
    background-image: linear-gradient(270deg,#e86867 0,#8f2b84 100%);
}
.app-banner-text h1{
    width: 600px;
    font-size: 56px;
    font-weight: normal;
    color: #fff;
    line-height: 70px;
    margin-top: 70px;
    opacity: 0;
    animation: bannerShow 1s;
    -moz-animation: bannerShow 1s; 
    -webkit-animation: bannerShow 1s; 
    -o-animation: bannerShow 1s;
    -ms-animation: bannerShow 1s;
    opacity: 1;
    
  
}
.app-banner-text p{
    margin-top: 12px;
    font-size: 24px;
    color: rgba(255,255,255,.5);
    opacity: 0;
    animation: bannerShow 1.5s;
    -moz-animation: bannerShow 1.5s; 
    -webkit-animation: bannerShow 1.5s; 
    -o-animation: bannerShow 1.5s;
    -ms-animation: bannerShow 1.5s;
    opacity: 1;
}
.app-banner-btn{
    margin-top: 50px;
    width: 300px;
    height: 52px;
    line-height: 52px;
    overflow: hidden;
    border-radius: 52px;
    color: #fff;
    background: rgba(0,0,0,.1);
    font-size: 18px;
    box-sizing: border-box;
    padding-left: 23px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    cursor: pointer;
    opacity: 0;
    animation: bannerShow 2s;
    -moz-animation: bannerShow 2s; 
    -webkit-animation: bannerShow 2s; 
    -o-animation: bannerShow 2s;
    -ms-animation: bannerShow 2s;
    opacity: 1;
}
.app-banner-btn:hover{
    width: 310px;
    background: rgba(0,0,0,.2);
}
.app-banner-btn i{
    float: right;
    margin-right: 20px;
    line-height: 52px;
    font-size: 20px;

}
.app-item01{
    width: 100%;
    min-width: 1260px;
    background: #fff;
    padding: 100px 0;
}
.app-item01 ul:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}
.app-item01 li{
    width: 33.3333333333333%;
    box-sizing: border-box;
    padding: 40px;
    float: left;
    text-align: center;
    margin-top: 50px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}
.app-item01 li:nth-child(1){
    background-color: #ecb2cf;
}
.app-item01 li:nth-child(2){
    background-color: #ffc1bf;
}
.app-item01 li:nth-child(3){
    background-color: #9f5fbb;
}
.app-item01 li:nth-child(1):hover{
    background-color: #dc8bd3;
}
.app-item01 li:nth-child(2):hover{
    background-color: #ff8c72;
}
.app-item01 li:nth-child(3):hover{
    background-color: #29243c;
}
.app-item01 li h2{
    font-size: 24px;
    color: #fff;
    padding: 20px 0;
    font-weight: normal;
}
.app-item01 li p{
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}
.app-item01-top h1{
    width: 80%;
    margin: 0 auto;
    font-weight: 300;
    color: #383838;
    font-size: 40px;
    text-align: center;
    line-height: 60px;
}
.app-item01-top p{
    margin: 0 auto;
    margin-top: 30px;
    width: 70%;
    text-align: center;
    color: #818792;
    font-size: 24px;
    line-height: 36px;
}
.app-item02{
    width: 100%;
    min-width: 1260px;
    height: 950px;
    background-image: linear-gradient(270deg,#f8cfcb 0,#dc8bd3 67%,#dc8bd3 100%);
    box-sizing: border-box;
    padding: 150px 0;
overflow:hidden;
}

.app-item02.animate .app-item-content{
    opacity: 1;
    transform: none;
}
.app-item03.animate .app-item-content{
    opacity: 1;
    transform: none;
}

.app-item-pic{
    margin-top: 50px;
}
.app-item-content{
    width: 50%;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}
.app-item-content h1{
    font-size: 40px;
    color: #fff;
    font-weight: 300;
    padding-bottom: 20px;
}
.app-item-content ul{
    margin-left: -20px;
}
.app-item-content li{
    padding: 10px 21px 11px;
    background-color: rgba(0,0,0,.1);
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-left: 5px;
    display: inline-block;
    border-radius: 19px;
    margin-bottom: 20px;
}
.app-item-content li:first-child{
    background-color: transparent;
    opacity: .4;
    color: #000;
    text-transform: uppercase;
}
.app-item-content p{
    padding-bottom: 6px;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    color: #383838;
    padding-top: 10px;
}
.app-item03{
    width: 100%;
    min-width: 1260px;
    height: 1000px;
    background-image: linear-gradient(to right,#ffc8c8 0,#ff8a6f 100%);
    box-sizing: border-box;
    padding: 170px 0;
overflow:hidden;
}
.app-item03 .app-item-pic{
    margin-top: -80px;
}
.app-item04{
    width: 100%;
    min-width: 1260px;
    background-color: #29243c;
    
     
    padding: 120px 0 200px;
overflow:hidden;
}
.app-item04.animate .app-item04-content{
    opacity: 1;
    transform: none; 
}
.app-item04-content{
    width: 45%;    
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}

.app-item-pic{
    margin-top: 50px;
}
.app-item-content{
    width: 50%;
    
}
  
.app-item04-content h1{
    font-size: 40px;
    color: #f7706f;
    font-weight: 300;
    padding-bottom: 40px;
    margin-top: 100px;
}
.app-item04-content p{
    font-size: 18px;
    color: #fff;
    line-height: 27px;
    padding: 10px 0;
}
.app-item04-content .app-banner-btn{
    background-color: #f7706f;
}
.app-item04-content .app-banner-btn:hover{
    background-color: #f7706f;
}
.app-item05{
    width: 100%;
    min-width: 1260px;
    padding: 50px 0;
    background-color: #29243c;
}
.app-item05 h1{
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    color: #fff;
}
.app-item06{
    width: 100%;
    min-width: 1260px;
    padding: 80px 0;
    background-color: #241f34;
}
.app-item06 ul:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
}
.app-item06 li{
    float: left;
    width: 20%;
    color: #fff;
    text-align: center;
    font-size: 30px;
    transition: transform 0.5s ease, opacity 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 0;
}

.app-item06.animate li{
    opacity: .7;
    transform: none;
}
.app-item06.animate li:nth-child(2){
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.app-item06.animate li:nth-child(3){
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.app-item06.animate li:nth-child(4){
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}
.app-item06.animate li:nth-child(5){
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
}

.innerpage-banner{
    width: 100%;
    min-width: 1260px;
    padding-bottom: 90px;
    background-image: linear-gradient(270deg,#7d57bc 0,#f7706f 100%);
}
.inner-banner-content h1{
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    padding-top: 30px;
    opacity: 0;
    animation: bannerShow 1s;
    -moz-animation: bannerShow 1s; 
    -webkit-animation: bannerShow 1s; 
    -o-animation: bannerShow 1s;
    -ms-animation: bannerShow 1s;
    opacity: 1;
}
.contact-banner{
    width: 100%;
    min-width: 1260px;
    height: 910px;
    background: url(../img/contact-banner.jpg) no-repeat center center;
    background-size: cover;
}
.contact-banner-content{
    text-align: center;
    margin-top: 260px;
}
.contact-banner-content h1{
    color: #fff;
    font-size: 50px;
    font-weight: normal;
    margin-bottom: 20px;
    opacity: 0;
    animation: bannerShow 1s;
    -moz-animation: bannerShow 1s; 
    -webkit-animation: bannerShow 1s; 
    -o-animation: bannerShow 1s;
    -ms-animation: bannerShow 1s;
    opacity: 1;
}
.contact-banner-content p{
    color: #fff;
    font-size: 20px;
    opacity: 0;
    animation: bannerShow 1.5s;
    -moz-animation: bannerShow 1.5s; 
    -webkit-animation: bannerShow 1.5s; 
    -o-animation: bannerShow 1.5s;
    -ms-animation: bannerShow 1.5s;
    opacity: 1;
}
.animation01{
    animation: bannerShow 5s;
    -moz-animation: bannerShow 5s; 
    -webkit-animation: bannerShow 5s; 
    -o-animation: bannerShow 5s;
    -ms-animation: bannerShow 5s;
}
@keyframes bannerShow{
    0% {
        opacity: 0;
        transform: translateY(160px);
        -webkit-transform: translateY(160px);
        -ms-transform: translateY(160px);
        -moz-transform: translateY(160px);
        -0-transform: translateY(160px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -0-transform: translateY(0px);
    }
}
@-webkit-keyframes bannerShow{
    0% {
        opacity: 0;
        transform: translateY(160px);
        -webkit-transform: translateY(160px);
        -ms-transform: translateY(160px);
        -moz-transform: translateY(160px);
        -0-transform: translateY(160px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -0-transform: translateY(0px);
    }
}
@-o-keyframes bannerShow{
    0% {
        opacity: 0;
        transform: translateY(160px);
        -webkit-transform: translateY(160px);
        -ms-transform: translateY(160px);
        -moz-transform: translateY(160px);
        -0-transform: translateY(160px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -0-transform: translateY(0px);
    }
}
@-ms-keyframes bannerShow{
    0% {
        opacity: 0;
        transform: translateY(160px);
        -webkit-transform: translateY(160px);
        -ms-transform: translateY(160px);
        -moz-transform: translateY(160px);
        -0-transform: translateY(160px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -0-transform: translateY(0px);
    }
}
@-moz-keyframes bannerShow{
    0% {
        opacity: 0;
        transform: translateY(160px);
        -webkit-transform: translateY(160px);
        -ms-transform: translateY(160px);
        -moz-transform: translateY(160px);
        -0-transform: translateY(160px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -0-transform: translateY(0px);
    }
}







