*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #040A14;
}
.page{
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    padding-top: 32px;
  

}
.title{
    width: 100%;
    height: 256px;
}
.page-video{
    width: 100%;
}
.video-content{
    width: 100%;
    height: 360px;
}
.page-text{
    width: 100%;
    height: 402px;
}
.page-input{
margin-top: 16px;
padding: 0px 56px;
}
.input-name{
    width: 100%;
    height: 104px;
    background: url('../img/input.webp') no-repeat center center;
    background-size: 100% 100%;
    border: none;
    outline: none;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    
    text-align: center;
   
}
.input-button{
    width: 100%;
    height: 104px;
    margin-top: 32px;
    animation: button-animation 1s infinite;
}
@keyframes button-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.loading{
    display: none;
}
.mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    z-index: 100;
    padding: 32px;
    display: none;
    justify-content: center;
    align-items: center;
   
}
.result{
    width: 100%;
    height: 313px;
    background: url('../img/result.webp') no-repeat center center;
    background-size: 100% 100%;
    padding: 0px 40px;
    padding-top: 190px;
    display: none;
    
}
.result-img{
    width: 100%;
    animation: button-animation 1s infinite;
}