.box{
    display: flex;
    justify-content: center;
}

.card {
    max-width: 200px;
    height: 250px;
    margin-bottom: 20px;
    box-shadow: 0 0 5px 1px #999;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}
.card > img {
    width: 80px;
    height: 80px;
    margin-top: 30px;
}
.card > span {
    margin-top: 10px;
    font-size: 20px;
    color: #e4393c;
}
.card > span > i {
    font-style: normal;
}
.card > p {
    margin-top: 10px;
    font-size: 18px;
}
.card-btn {
    width: 200px;
    height: 30px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.card-btn > button {
    width: 92px;
    background-color: #e4393c;
    font-weight: bold;
    color: #ffffff;
    border: 0;
}