.page{
    position: relative;
    /* background: #070F38; */
    background: linear-gradient(to left, #634ae5 15%,#a974f9);
}
#topImg, #lineImg{
    position: absolute;
    top: 0;
}
#lineImg{
    width: 100%;
    max-height: 300px;
}
#leftImg{
    position: absolute;
    top: 16%;
}
#rightImg{
    position: absolute;
    top: 12%;
    right: 0;
}
.header{
    height:100px ;
    line-height: 100px;
    color: #fff;
    font-size: 24px;
    /* background: rgba(22, 31, 76, 0.5); */
}
.header .logo{
    display: inline-block;
    height: 60px;
}
.logo img{
    height: 100%;
    width: auto;
}
.logo .name{
    display: inline;
    margin-left: 20px;
}
.mainContent{
    text-align: center;
    color: white;
    margin:80px auto 80px;
}
.textBox h1{
    font-size: 40px;
}
.textBox p{
    font-size: 20px;
    margin: 30px 0 0px;
}
.buttonBox{
    margin: 70px auto 0;
    max-width: 600px;
}
.buttonBox button{
    min-width: 180px;
    height: 50px;
    border-radius: 90px;
    text-align: center;
    line-height: 50px;
    background: linear-gradient(45deg, #2E0AFF, #6B04FF);
    border: none;
    cursor: pointer;
    margin-bottom: 30px;
}
.imageBox{
    margin: 80px auto 0;
}
.imageBox div{
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 230px;
}
.imageBox p{
    font-size: 17px;
    margin: 10px 0 0px;
}
.imageBox img{
    width: 200px;
}
.introduceBox img{
    width: 80%;
    margin-top: 40px;
}
.footer{
    min-height:130px ;
    color: #fff;
    font-size: 17px;
    /* background: rgba(21, 30, 77, 0.5); */
    padding: 30px 0;
    text-align: center;
}
.footerContent{
    max-width: 600px;
}
.footerContent a{
    /* border-bottom: 1px solid #fff; */
    margin-bottom: 10px;
    display: inline-block;
}
.copy{
    font-size: 14px;
    color:rgba(255,255,255,0.5)
}
.codeBox{
    position: relative;
}
.codeBox:hover .code{
    height: 200px;
    top: -230px;
}
.code{
    position: absolute;
    width: 200px;
    height: 0px;
    top: 0px;
    left: 30px;
    background: url(../images/code.png) no-repeat center;
    background-size: contain;
    border-radius: 10px;
    transition: all .3s;
}
.privacyContent {
    text-align: left;
}
.privacyContent h1{
    font-size: 20px;
    margin: 0 auto 40px;
    text-align: center;
}
.data{
    margin-bottom: 30px;
}
.privacyContent .data h4{
    margin: 0;
    line-height: 30px;
}
.privacyContent h4{
    margin-top: 30px;
    font-size: 17px;
}
.privacyContent p{
    font-size: 14px;
    margin-bottom: 0;
    color: #ddd;
    line-height: 26px;
}
.thanks{
    margin-top: 30px;
}
.privacy:visited {
    color: #fff;
}
a:hover {
    color: #fff !important;
    text-decoration: none !important;
}
.tips{
    display: none;
}
@media screen and (max-width: 1200px){
    #topImg{
        width: 75%;
    }
}
@media screen and (max-width: 768px){
    #topImg{
        width: 75%;
    }
    #leftImg{
        top: 5%;
        height: 220px;
    }
    #rightImg{
        top: 3%;
        height: 360px;
    }
    .tips{
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.5);
        text-align: right;
    }
    .tips img{
        width: 150px;
        position: absolute;
        right: 30px;
        top: 10px;
    }
}