*{
	margin: 0;
	padding: 0;
}
a{
    display: block;
    color: transparent;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
#app{
	min-height: 600px;
	margin: 0 auto;
}
/* pc端 */
.header_pc{
    background-image: url("../assets/bg.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: 782px;
    display: flex;
    justify-content: center;
    margin-bottom: 150px;
}
.header_content{
	width: 1280px;
	height: 100%;
	position: relative;
	top: 50px;
	background-color: transparent;
}
.header_con_introduction{
	position: absolute;
	left: 30px;
	top: 120px;
	width: 360px;
	animation: 1s leftIn;
}
.header_h1{
    color: #fff;
    font-size: 50px;
    margin: 0;
    margin-bottom: 20px;
}
.header_text{
    color: #fff;
    line-height: 30px;
}
.header_toDownload{
    margin-top: 20px;
}
.header_toDownload button{
    width: 125px;
    height: 45px;
    border: none;
    border-radius: 45px;
    background-color: #fff;
    color: #327eed;
    font-size: 16px;
    outline: none;
    cursor: pointer;
    transition: all 1s;
}
.header_toDownload button:hover{
    box-shadow: 0 0 6px 3px rgba(255,255,255,0.2);
}
.header_con_phoneImg{
    position: absolute;
    top: 0px;
    right: 30px;
    background-image: url("../assets/pic1.png");
    background-repeat: no-repeat;
    width: 742px;
    height: 794px;
    transition: all 1s;
    animation: 1s rightIn;
}
.con_1{
    width: 100%;
    max-width: 1280px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: auto;
}
.con_1_item{
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 230px;
    padding: 50px 10px;
    transition: all .5s;
}
.con_1_item:hover{
    box-shadow: 2px 2px 6px 3px rgba(0,0,0,0.2);
    cursor: default;
}
.con_1_item img{
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}
.con_1_item_title{
    font-weight: bold;
    font-size: 22px;
    color: #24355A;
    margin-bottom: 10px;
}
@keyframes leftIn{
    from{
        transform: translateX(-100%);
        opacity: 0;
    }
    to{
        transform: translateX(0%);
        opacity: 1;
    }
}
@keyframes rightIn{
    from{
        transform: translateX(100%);
        opacity: 0;
    }
    to{
        transform: translateX(0%);
        opacity: 1;
    }
}
.con_2_bg{
    margin-top: 350px;
    width: 100%;
    height: 350px;
    background-color: #327eed;
}
.con_2{
    width: 100%;
    height: 100%;
    max-width: 1280px;
    position: relative;
    margin: auto;
}
.con_2_phoneImg{
    width: 518px;
    height: 568px;
    position: absolute;
    bottom: 0;
    left: 70px;
    background-image: url("../assets/pic2.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transition: all 1s;
}
.con_2_download{
    position: absolute;
    left: 700px;
    bottom: 0;
    width: 450px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 1s;
}
.con_2_qrcode img{
    width: 180px;
    height: 180px;
    margin-bottom: 10px;
}
.con_2_qrcode_text{
    display: flex;
    align-items: center;
    color: #fff;
}
.con_2_qrcode_text img{
    width: 14px;
    height: 14px;
    margin-right: 10px;
    margin-bottom: -2px;
}
.con_2_download_link{
    display: flex;
    flex-direction: column;
}
.con_2_download_link a{
    margin-top: 20px;
    width: 200px;
    height: 45px;
    cursor: pointer;
}
.con_3{
    margin: auto;
    margin-top: 150px;
    width: 750px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contactUs{
	min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contactUs_title{
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 25px;
}
.contactUs_con{
    width: 100%;
    padding-bottom: 10px;
	margin-bottom: 10px;
	text-align: center;
	box-sizing: border-box;
}
.contactUs_con img{
    width: 30px;
    height: 30px;
    margin-right: 20px;
}
.contactWays{
    width: 800px;
    padding-top: 40px;
    display: flex;
    justify-content: space-around;
}
.contactWays_item{
    position: relative;
    display: flex;
    justify-content: center;
}
.contactWays_icon{
    width: 80px;
    height: 80px;
}
.contactWays_code{
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 135px;
    height: 135px;
    display: none;
    transition: all 1s;
}
#wechat:hover>.contactWays_code{
   display: block;
}
#douyin:hover>.contactWays_code{
   display: block;
}


.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
}
.footer_text{
    font-size: 14px;
    line-height: 2em;
    color: #999999;
}


/* 移动端 */
.header_phone{
    display: none;
    background-color: #F4F8FA;
}
.header_phone_con_1{
    background-image: url("../assets/bg2.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100vw;
    height: 97.6vw;
    position: relative;
}
.header_phone_con_introduction{
    position: absolute;
    top: 18vw;
    left: 10vw;
    width: 73.3333vw;
}
.header_phone_h1{
    color: #fff;
    font-size: 7.4667vw;
    margin: 0;
    margin-bottom: 2.1333vw;
}
.header_phone_text{
    color: #fff;
    font-size: 14px;
    line-height: 1.8em;
}
.header_phone_toDownload{
    margin-top: 5.3333vw;
}
.header_phone_toDownload button{
    width: 23.4667vw;
    height: 8.5333vw;
    border: none;
    border-radius: 6vw;
    background-color: #fff;
    color: #327eed;
    font-size: 3.2vw;
    outline: none;
    cursor: pointer;
    transition: all 1s;
}
.header_phone_toDownload button:hover{
    box-shadow: 0 0 1.6vw 0.8vw rgba(255,255,255,0.2);
}
.header_phone_con_2{
    width: 100%;
    height: 120vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_phone_con_2 img{
    width: 98.9333vw;
    height: 105.8667vw;
}

.con_2_download_phone{
    display: none;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 58.6667vw;
    padding: 0 5.3333vw;
    box-sizing: border-box;
}
.con_2_qrcode_phone{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.con_2_qrcode_phone img{
    width: 24vw;
    height: 24vw;
}
.con_2_qrcode_text_phone{
    font-size: 3.2vw;
    color: #3C3C3C;
    display: flex;
    justify-content: center;
    padding-top: 1.6vw;
}
.con_2_qrcode_text_phone img{
    width: 3.2vw;
    height: 3.2vw;    
    margin-right: 1.6vw;
    margin-top: 0.5333vw;
}
.con_2_download_link_phone{
    display: flex;
    flex-direction: column;
}
.con_2_download_link_phone>a{
    margin-top: 2.6667vw;
    width: 26.6667vw;
    height: 6vw;
    cursor: pointer;
}
.con_2_download_link_phone>a>img{
    width: 100%;
    height: 100%;
}
.con_2_bg_phone{
    display: none;
    position: relative;
    height: 46.6667vw;
    width: 100%;
    margin-top: 29.3333vw;
    background-color: #327eed;
}
.con_2_bg_phone img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75.4667vw;
    height: 73.6vw;
}
.con_2_download_phone{
    display: none;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 58.6667vw;
    padding: 0 5.3333vw;
    box-sizing: border-box;
}
.con_2_qrcode_phone{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.con_2_qrcode_phone img{
    width: 24vw;
    height: 24vw;
}
.con_2_qrcode_text_phone{
    font-size: 3.2vw;
    color: #3C3C3C;
    display: flex;
    justify-content: center;
    padding-top: 1.6vw;
}
.con_2_qrcode_text_phone img{
    width: 3.2vw;
    height: 3.2vw;    
    margin-right: 1.6vw;
    margin-top: 0.5333vw;
}
.con_2_download_link_phone{
    display: flex;
    flex-direction: column;
}
.con_2_download_link_phone>a{
    margin-top: 2.6667vw;
    width: 26.6667vw;
    height: 6vw;
    cursor: pointer;
}
.con_2_download_link_phone>a>img{
    width: 100%;
    height: 100%;
}




@media screen and (max-width: 1279px) and (min-width: 1025px){
    .header_con_introduction{
        width: 380px;
    }
    .header_con_phoneImg{
        transform: scale(0.9) translate(40px,-40px);
    }
    .con_2_phoneImg{
        width: 500px;
        height: 492px;
    }
    .con_2_download{
        left: 55%;
        transform: scale(0.9);
    }
}

@media screen and (max-width: 1024px){
    .header_pc{
        display: none;
    }
    .header_phone{
        display: block;
    }
    .con_2_bg{
        display: none;
    }
    .con_2_bg_phone{
        display: block;
    }
    .con_2_download_phone{
        display: flex;
    }
    .con_1{
        flex-direction: column;
    }
    .con_1_item{
        width: 46.6667vw;
        padding: 2.6667vw;
        margin: 2.6667vw 0;
    }
    .con_1_item:hover{
        box-shadow: 0.5333vw 0.5333vw 1.6vw 0.8vw rgba(0,0,0,0.2);
    }
    .con_1_item img{
        width: 13.3333vw;
        height: 13.3333vw;
        margin-bottom: 2.6667vw;
    }
    .con_1_item_title{
        font-size: 4.2667vw;
        margin-bottom: 2.6667vw;
    }
    .con_1_item_text{
        font-size: 3.2vw;
    }
    .con_3{
        margin-top: 10.6667vw;
        width: 100vw;
        height: 53.3333vw;
    }
    .contactUs{
        width: 40vw;
    }
    .contactUs_title{
        font-size: 4.2667vw;
        margin-bottom: 3.2vw;
    }
    .contactUs_con{
        padding-left: 2.6667vw;
        padding-bottom: 1.6vw;
        font-size: 3.2vw;
    }
    .contactUs_con img{
        width: 4vw;
        height: 4vw;
        margin-right: 2.6667vw;
    }
    .contactWays{
        width: 80vw;
        padding-top: 10.6667vw;
    }
    .contactWays_icon{
        width: 10.6667vw;
        height: 10.6667vw;
    }
    .contactWays_code{
        top: unset;
        bottom: 110%;
        width: 40vw;
        height: 40vw;
    }
    .footer_text{
        font-size: 3.2vw;
    }
}