*{
    margin: 0;
    padding: 0;
}
body,html{
    width: 100%;
    height: 100%;
}
body{
    background: #010000;
}
.page-box{
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
    background:  url(../img/bg.png) no-repeat center;
    background-size: 100% 100%;
}
.title-img{
    width: 100%;
    margin: 5px auto;
}
.title-img img{
    width: 30%;
    display: block;
    margin: 0 auto;
}
.banner-box{
    width: 100%;
    margin-top: 10px;
}
.banner-box img{
    width: 80%;
    display: block;
    margin: 0 auto;
}
.banner-text{
    width: 100%;
    margin-top: 0px;
}
.banner-text img{
    width: 100%;
    display: block;
    margin: 0 auto;
}
.btn-box{
    width: 94%;
    margin: 10px auto;
    margin-top: 10px;
    height: 30px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.btn01{
    width: 49%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.btn01 img{
    width: 20px;
    float: left;
    margin-right: 5px;
}
.btn01 span{
    font-size: 12px;
    float: left;
    color: #fff;
}
.btn-list{
    width: 85%;
    margin: 0 auto;
}
.btn-list a{
    width: 100%;
    height: 40px;
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 40px;
    font-weight: 900;
    color: #fff;
    border-radius: 20px;
    background: red;
    margin: 15px auto;
    font-style: normal;
    text-decoration: none;
}
.btn-list a:nth-of-type(1){
    background-image: linear-gradient(to right, #0F9D58 , #4285F4);
}
.btn-list a:nth-of-type(2){
    background-image: linear-gradient(to right, #007AFF , #0A84FF);
}
.kefu-icon{
    width: 80px;
    position: fixed;
    top: 15%;
    right: 0px;
    z-index: 99;
}
.kefu-icon img{
    width: 100%;
    display: block;
}
.icon-icon{
    width: 80px;
    position: fixed;
    top: 25%;
    right: 0px;
    z-index: 99;
}
.icon-icon img{
    width: 100%;
    display: block;
}
@keyframes xing {
    0% {
        transform: scale(0.9);
    }
    25% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
    75% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.9);
    }
}
.my_xing {
    -webkit-animation-name: xing;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
}