html {
    margin: 0;
    padding: 0;
}



.btn-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.box {
    display: 1;
    position: relative;
    width: 380px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    color: white;
    text-align: center;
    user-select: none;
    margin: 5px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

.box .box_content {
    margin-top: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.box .box_content .box_tite {
    color: #fff;
    font-size: 26px;
}

.box .box_content .box_text {
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    margin-top: 20px;
    font-size: 16px;
    line-height:20px;
}

.box .box_content .box_text span:after {
    content: "";
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid #fff;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
}

.box:nth-of-type(1) {
    background: linear-gradient(150deg,
            rgb(246, 105, 82), rgb(253, 103, 80));
}

.box:nth-of-type(2) {
    background: linear-gradient(150deg,
            rgb(241, 43, 84),
            rgb(237, 11, 125));
}

.ripple {
    display: block;
    position: absolute;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
}


.animation {
    animation: ripple 0.5s ease-in;
}

@keyframes ripple {
    100% {
        transform: scale(3);
        opacity: 0;
    }
}