* {
    margin: 0;
    padding: 0;
}

.box {
    width: 98%;
    height: 100px;
    /* position: fixed;
    bottom: 50px; */
    border: 2px solid #048ade;
    border-radius: 5px;
    display: flex;
    margin: auto;

}

.left {
    display: flex;
    align-items: center;
}

.left-img {
    width: 80px;
    height: 80px;
    background: ffffff;
    margin-left: 10px;
    margin-right: 20px;
}

.left-img img {
    width: 80px;
    height: 80px;
}

.left-box {
    /* width: 50%; */
}

.left-box-title {
    font-size: 20px;
    margin-bottom: 5px;
}

.left-box-con {
    width: 95%;
    font-size: 15px;
    color: #000;
    opacity: 0.6;
}

.right {
    display: flex;
    align-items: center;
}

.right a {
    width: 200px;
    height: 55px;
    line-height: 55px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
}

.downloadd {
    background: #61a932;
    margin-right: 20px;
}

.registered {
    background: #333333
}

@media screen and (max-width:600px) {
    .box {
        width: 90%;
        height: auto;
        display: flex;
        flex-direction: column;
        padding-bottom: 10px;
    }

    .right {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .left-img {}

    .left-box-title {
    }

    .left-box-con {
        font-size: 13px;
    }

    .right a {
        width: 43%;
        height: 40px;
        line-height: 40px;
        border-radius: 5px;
        color: #fff;
        text-decoration: none;
        text-align: center;
        font-size: 15px;
    }
    
    .download {
        background: #61a932;
        margin-right: 20px;
    }
    
    .registered {
        background: #333333
    }

    .left-box {
        width: 65%;
    }
    
}