/* 重置元素样式 */
html { overflow-x: hidden; overflow-y: auto;}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,button,input,textarea{
    font-family: Microsoft YaHei;
}
ul,li{
    list-style: none;
}
a{
    text-decoration: none;
}
h1, h2, h3, h4{
    font-weight: normal;
}
button,
input,
textarea{
    padding: 0;
    margin:0;
    background: none;
    outline: none;
    border:none;
}
textarea{
    resize: none;
}
button{
    cursor: pointer;
}
/* 布局 */
.flex{
    display: flex;
}
.flexCon{
    flex-direction: column;
}
.vCenter{
    align-items: center;
}
.cBetween{
    justify-content: space-between;
}
.cAround{
    justify-content: space-around;
}
.cCenter{
    justify-content: center;
}
.canWrap{
    flex-wrap: wrap;
}
.flex1{
    flex: 1;
}
/* 全局 */
.mb50{
    margin-bottom: 3vh;
}
/* .hoverBig:hover{
    -moz-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition:all 0.3s;
    -moz-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
} */
.maxWidth{
    width: 62.5vw;
    margin-left: auto;
    margin-right: auto;
}
/* 头部 */
#versionTips{
    background: #F1544A;
    width: 100vw;
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    line-height: 20px;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 69;
}
.header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100px;
    padding-left: 6.25vw;
    padding-right: 6.25vw;
    background: #fff;
    z-index: 69;
}
.logo{
    width: 180px;
    height: 63px;
    display: block;
    margin-right: 3.3vw;
}
/* 菜单 */
.menu-img{
    display: none;
    width: 50px;
    height: auto;
}
.menu{
    max-width: 42.7vw;
}
.menu a {
    width: 90px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 0.18rem;
    color: #000;
    display: block;
}
.menu .active a {
    background:rgba(0,97,255,1);
    border-radius: 18px;
    color:#fff;
}
.enter-btn{
    width: 140px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    display: block;
    background:rgba(0,97,255,1);
    font-size: 0.2rem;
    color:rgba(255,255,255,1);
    text-align: center;
}
/* 页面标题 */
.title{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title h2{
    font-size: 0.46rem;
    color:rgba(26,26,26,1);
    text-align: center;
    line-height: 0.66rem;
}
.title small{
    font-size:0.24rem;
    color:rgba(153,153,153,1);
    font-weight: 100;
}
.thirdPage .fp-tableCell,
.explore .fp-tableCell{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.thirdPage .fp-tableCell{
    margin-top: -3vh;
}
.section{
    /* 防止未使用js，高度未赋值之前样式错乱 */
    height: 100vh;
}
/* 第一屏 首页 */
.firstPage{
    position: relative;
    background: url('../images/first-bg1.png') no-repeat right top;
    background-size: 58vw auto;
}
.first-cont{
    position: absolute;
    left: 13.6vw;
    top: 50%;
    margin-top: -16vh;
    z-index: 110;
}
.first-cont p{
    font-size: 0.58rem;
    color:rgba(0,0,0,1);
}
.first-cont p:not(:last-child){
    margin-bottom: 0.2rem;
}
.firstPage img{
    position: absolute;
    right: 0;
    top: 20vh;
    /* 1132px */
    width: 54.5vw;
    height: auto;
    display: block;
    z-index: 100;
}
.firstImg{
    -webkit-animation: breathe 2s ease-out;
    -moz-animation: breathe 2s ease-out;
    animation: breathe 2s ease-out;
}
@keyframes breathe {
    0% {
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}
/* 第一屏按钮 */
.container {
    position: relative;
    width: 282px;
    height: 76px;
}
.dot {
    position: absolute;
    width: 266px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    left: 8px;
    top: 8px;
    background: #0061FF;
    z-index: 200;
    font-size: 0.2rem;
    color:#fff;
    text-align: center;
}
.pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 282px;
    height: 76px;
    border: 1px solid #0061FF;
    border-radius:  38px;
    z-index: 100;
    opacity: 0;
}
.container:hover .pulse{
    -webkit-animation: warn 2s ease-out;
    -moz-animation: warn 2s ease-out;
    animation: warn 2s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes warn {
    0% {
        -moz-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        -moz-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    100% {
        -moz-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0;
    }
}
/* DEMO样式 */
.goMsys{
    width: 266px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    display: block;
    background: #fff;
    border:1px solid rgba(0,97,255,1);
    font-size:0.2rem;
    color:rgba(0,97,255,1);
    text-align: center;
    margin-left: 8px;
    margin-top: 20px;
}
/* 第二屏 */
.experience{
    background-image:url("../images/second-bg1.png"),url("../images/second-bg2.png"),url("../images/second-bg3.png");
    background-repeat: no-repeat, no-repeat, no-repeat;  
    background-position: 42vw 10.4vh, 8.9vw 11.6vh, 80vw 70vh;
    background-size: 55.5vw auto, 39.5vw auto, 9.1vw auto;
}
.experience-img{
    width: auto;
    height: 70vh;
    display: block;
    margin-right: 1.72rem;
}
.mini-pro{
    text-align: center;
}
.miniCode{
    /*width: 17.7vw;*/
    width: 31.25vw;
    /*height: 17.7vw;*/
    height: 16.66vw;
    display: block;
}
.mini-pro span{
    font-size: 0.28rem;
    color:rgba(0,0,0,1);
    margin-top: 5.9vh;
}
/* 第三屏 服务 */
.thirdPage{
    background:url("../images/third-bg1.png") no-repeat right 23vh;
    background-size: 6.8vw auto;
    padding-top: 50px;
}
.serves{
    /* margin-top: 7.8vh; */
    margin-top: 6.8vh;
    margin-left: auto;
    margin-right: auto;
}
.serves ul {
    position: relative;
    max-width:300px;
    /* height:559px; */
    height: 58.3vh;
    width: 15.6vw;
    display: block;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100%;
    border-radius: 16px;
}
.serves ul:not(:last-child){
    margin-right: 0.5vw;
}
.serves ul.item1{
    background-image: url('../images/third-big-img1.png');
}
.serves ul.item2{
    background-image: url('../images/third-big-img2.png');
}
.serves ul.item3{
    background-image: url('../images/third-big-img3.png');
}
.serves ul.item4{
    background-image: url('../images/third-big-img4.png');
}
.serves ul li{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10.4vh;
    background: rgba(0, 0, 0, 0.5);
    border-radius:0 0 0.16rem 0.16rem;
    color: #fff;
    padding: 1.5vw 2.5vh 0;
}
.serves ul li h3{
    font-size: 0.24rem;
    text-align: center;
    margin-bottom: 1vh;
}
.serves ul li small{
    font-size: 0.16rem;
    margin-bottom: 4.8vh;
    display: none;
    text-align: center;
}
.serves ul li p{
    font-size: 0.16rem;
    line-height: 48px;
    display: none;
}
/* 第四屏 探索 */
.explore{
    background-image:url("../images/fourth-bg1.png"),url("../images/fourth-bg2.png");
    background-repeat: no-repeat, no-repeat;  
    background-position: 80vw 46vh, 0 4.1vh;
    background-size: 17.5vw 38.5vh, 12.3vw 40.9vh;
}
.explore video{
    width: 62.5vw;
    height: auto;
    display: none;
}
.explorePoster{
    position: relative;
}
.explorePoster .poster-img{
    width: 62.5vw;
    height: auto;
    display: block;
}
.explorePoster .play-btn{
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    cursor: pointer;
}
/* 第五屏 共赢 */
.win-win{
    position: relative;
    background-image:url("../images/fifth-bg2.png"),url("../images/fifth-bg1.png");
    background-repeat: no-repeat, no-repeat;  
    background-position: 0 13.5vh, center 48vh;
    background-size: 174px auto, 760px auto;
}
.win-win .wrapper{
    height: calc(100vh - 19.2vh - 100px);
}
.win-win .cont{
    justify-content: space-between;
}
.particulars{
    width: 22.2vw;
}
.particulars li{
    display: block;
    width: 7.8vw;
}
/* .particulars li:nth-child(odd){
    margin-right: 6.6vw;
} */
.particulars li strong{
    display: block;
    min-width: 134px;
    font-size: 0.42rem;
    color:#000;
    margin-bottom: 0.6vh;
}
.particulars li span{
    display: block;
    color:#999;
    font-size: 0.15rem;
}
.userInfo{
    width: 6rem;
}
.userInfo li:first-child{
    margin-bottom: 2vh;
}
.userInfo span{
    /* width: 8.3vw; */
    width: 1.5rem;
    font-size: 0.28rem;
    color:#000;
    margin-right: 15px;
}
.userInfo input{
    width: 20.8vw;
    height: 6.8vh;
    max-height: 66px;
    background:rgba(245,245,245,1);
    border:1px solid rgba(153,153,153,1);
    border-radius: 33px;
    border-radius: calc(6.8vh / 2);
    display: block;
    padding: 1vw;
    outline: none;
}
.userInfo button{
    display: block;
    font-size: 0.22rem;
    color:#fff;
    width: 12.5vw;
    height: 6.8vh;
    max-height: 66px;
    background:rgba(0,97,255,1);
    border-radius: 33px;
    border-radius: calc(6.8vh / 2);
    /* margin-left: 1.5rem; */
    margin-top: 2.25vh;
    min-width: 120px;
}
.footer{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 19.2vh;
    color: #fff;
    background:rgba(91,91,91,1);
    padding-top: 2.2vh;
}
.footer ul:nth-child(2){
    margin-left: 6vw;
    /* margin-right: 2.5vw; */
}
.footer .cont,
.footer span{
    font-size: 0.16rem;
}
.footer span{
    display: block;
    text-align: center;
}
.footer .cont li:first-child,
.footer span:first-child{
    margin-bottom: 1.8vh;
}
.footer .code{
    width: 6.4vw;
    height: 6.4vw;
    background: #fff;
    border-radius: 6px;
    margin-left: 0.8vw;
}
.ICP{
    margin-top: 2.2vh;
    margin-bottom: 1.8vh;
    text-align: center;
    font-size: 0.14rem;
}
.ICP a{
    color: white;
}
/* 弹窗 */
.submitInfo{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    z-index: 300;
    display: none;
}
.submitInfo .cont{
    position: relative;
    width: 790px;
    height: 500px;
    background: #fff;
    overflow: hidden;
}
.submitInfo .cont img{
    width: 339px;
    height: auto;
    margin-left: -2px;
    margin-right: 1.5vw;
}
.submitInfo .cont li{
    width: 370px;
}
.submit-form strong,
.submit-form textarea{
    font-size: 0.32rem;
    color:#000;
}
.submit-form textarea{
    font-family: Microsoft YaHei;
    /* width: 120px; */
    flex: 1;
    height: 44px;
    line-height: 44px;
    font-weight: bold;
    overflow: auto;
}
.submit-form .copy-btn{
    width: 80px;
    height: 34px;
    background:#fff;
    border:1px solid rgba(30,106,241,1);
    border-radius: 17px;
    font-size:0.2rem;
    color:rgba(30,106,241,1);
    /* margin-left: 0.33rem; */
}
.submit-form .tips{
    font-size:0.2rem;
    font-weight:300;
    color:rgba(239,0,0,1);
    margin-top: 1vh;
    /*margin-bottom: 4.7vh;*/
    margin-bottom: 2.7vh;
}
.submit-form input{
    display: block;
    width: 370px;
    height: 54px;
    line-height: 54px;
    background:#fff;
    border:1px solid rgba(30,106,241,1);
    border-radius: 27px;
    padding-left: 2vh;
    padding-right: 2vh;
    margin-bottom: 1.4vh;
    font-size:0.2rem;
    font-weight:100;
    color:rgba(153,153,153,1);
}
.submit-form input::-webkit-input-placeholder,
.submit-form input:-moz-placeholder,
.submit-form input:-ms-input-placeholder {
    font-size:0.2rem;
    font-weight:300;
    color:rgba(153,153,153,1);
}
.submitInfo .submit-btn{
    font-size:0.24rem;
    color:rgba(255,255,255,1);
    width: 370px;
    height: 54px;
    background:rgba(30,106,241,1);
    border:1px solid rgba(30,106,241,1);
    border-radius: 27px;
    margin-top: 2vh;
    font-weight: 300;
}
.submit-suc{
    display: none;
}
.submit-suc h2{
    font-size:0.32rem;
    color:rgba(0,0,0,1);
    margin-bottom: 2.6vh;
}
.submit-suc p{
    font-size:0.2rem;
    font-weight:300;
    color:rgba(153,153,153,1);
    margin-bottom: 9.5vh;
}
.submitInfo .cont img.close-btn {
    position: absolute;
    right: 0;
    top: 20px;
    width: 24px;
    height: 24px;
    display: block;
    cursor: pointer;
}
/* 防止第一屏图片过大与文字重叠 */
/* @media screen and (min-width:1679px) {
    .firstPage img,
    .firstPage img.hoverBig:hover{
        top: 50%;
        transform: translateY(-44%);
    }
} */
@media screen and (min-height:580px) {
    /* 页面标题 */
    .title{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .title h2{
        font-size: 0.50rem;
        color:rgba(26,26,26,1);
        text-align: center;
        line-height: 0.88rem;
    }
    .title small{
        font-size:0.32rem;
        color:rgba(153,153,153,1);
        font-weight: 100;
    }
    .mb50{
        margin-bottom: 5vh;
    }
    /* 第五屏 共赢 */
    .win-win{
        position: relative;
        background-image:url("../images/fifth-bg2.png"),url("../images/fifth-bg1.png");
        background-repeat: no-repeat, no-repeat;  
        background-position: 0 13.5vh, center 42.2vh;
        background-size: 174px auto, 760px auto;
    }
    .win-win .wrapper{
        height: calc(100vh - 25vh - 160px);
    }
    .win-win .cont{
        justify-content: space-between;
    }
    .particulars{
        width: 28.2vw;
    }
    .particulars li{
        display: block;
        width: 11.8vw;
    }
    /* .particulars li:nth-child(odd){
        margin-right: 6.6vw;
    } */
    .particulars li strong{
        display: block;
        min-width: 134px;
        font-size: 0.48rem;
        color:#000;
        margin-bottom: 1vh;
    }
    .particulars li span{
        display: block;
        color:#999;
        font-size: 0.24rem;
    }
    .userInfo li:first-child{
        margin-bottom: 2vh;
    }
    .userInfo span{
        width: 8.3vw;
        min-width: 168px;
        font-size: 0.32rem;
        color:#000;
        margin-right: 1vw;
    }
    .userInfo input{
        width: 20.8vw;
        height: 6.8vh;
        max-height: 66px;
        background:rgba(245,245,245,1);
        border:1px solid rgba(153,153,153,1);
        border-radius: 33px;
        border-radius: calc(6.8vh / 2);
        display: block;
        padding: 1vw;
        outline: none;
    }
    .userInfo button{
        display: block;
        font-size: 0.22rem;
        color:#fff;
        width: 12.5vw;
        height: 6.8vh;
        max-height: 66px;
        background:rgba(0,97,255,1);
        border-radius: 33px;
        border-radius: calc(6.8vh / 2);
        /* margin-left: 9.8vw; */
        margin-top: 6.25vh;
        min-width: 120px;
    }
    .footer{
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100vw;
        height: 25vh;
        color: #fff;
        background:rgba(91,91,91,1);
        padding-top: 4.1vh;
    }
    .footer ul:nth-child(2){
        margin-left: 6vw;
        /* margin-right: 2.5vw; */
    }
    .footer .cont,
    .footer span{
        font-size: 0.18rem;
    }
    .footer span{
        display: block;
        text-align: center;
    }
    .footer .cont li:first-child,
    .footer span:first-child{
        margin-bottom: 3.7vh;
    }
    .footer .code{
        width: 6.4vw;
        height: 6.4vw;
        background: #fff;
        border-radius: 6px;
        margin-left: 0.8vw;
    }
    .ICP{
        margin-top: 3.9vh;
        margin-bottom: 2vh;
        text-align: center;
        font-size: 0.14rem;
    }
}
@media screen and (max-width:1485px) {
    .first-cont{
        left: 10vw;
    }
    .first-cont p{
        font-size: 0.48rem;
    }
}
/* 第五屏兼容 */
@media screen and (max-width:1272px) {
    .mb50{
        margin-bottom: 35px;
    }
    .win-win .cont{
        justify-content: space-around;
    }
    .particulars{
        flex: 1;
        min-width: 350px;
    }
    .particulars li{
        display: block;
        width: auto;
    }
    .particulars li:nth-child(odd){
        margin-right: 0;
    }
    .userInfo button{
        margin-top: 3vh;
        height: 5vh;
    }
}
/* 简单适配移动端 */
@media screen and (max-width:750px) {
    .menu-img{
        display: block;
    }
    .menu{
        flex-direction: column;
        position: absolute;
        right: 6.25vw;
        top: 70px;
        display: none;
        background: #fff;
    }
    .menu a{
        width: 50px;
        font-size: 14px;
    }
    .menu .active a{
        background: none;
        color: #0061FF;
    }
    .enter-btn{
        display: none;
    }
    .first-cont{
        left: 50%;
        transform: translateX(-50%) translateY(-10%);
    }
    .particulars{
        justify-content: center;
    }
    .mb50{
        margin-bottom: 20px;
    }
    .userInfo button{
        margin-bottom: 1vh;
    }
}
