.download {
    padding: 0 0 14.4rem;
}

.download-center {
    display: flex;
    justify-content: space-between;
    width: 140rem;
}

.download-center-for {
    width: 33.8rem;
    height: 45rem;
    border-radius: 1rem;
    position: relative;
}

.download-center-for>img {
    width: 100%;
    height: 100%;
}

.download-center-for-card {
    width: 29rem;
    height: 9.6rem;
    border-radius: 0.8rem;
    background-color: #fff;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    bottom: -6.4rem;
    left: 2.4rem;
}

.download-center-for-card span {
    color: #05173C;
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.4rem;
}

.download-center-for-card img {
    width: 2.4rem;
    height: 2.4rem;
    display: block;
}

.download-center-for-card img:nth-child(3) {
    display: none;
}

.download-center-for-card:hover {
    box-shadow: 0rem 0.4rem 1.2rem 0.1rem rgba(5, 23, 60, 0.16);
    cursor: pointer;
}

.download-center-for-card:hover img:nth-child(3) {
    display: block;
}

.download-center-for-card:hover img:nth-child(2) {
    display: none;
}

.download-center-for-card:hover span {
    color: #F16522;
}

@media screen and (max-width: 768px) {
    .download {
        padding: 0 0 2.4rem;
    }

    .download-center {
        display: flex;
        justify-content: space-between;
        width: 34.3rem;
        flex-wrap: wrap;
    }

    .download-center-for {
        width: 16.8rem;
        height: 22.4rem;
        border-radius: 1rem;
        position: relative;
        margin-bottom: 4.5rem;
    }

    .download-center-for>img {
        width: 100%;
        height: 100%;
    }

    .download-center-for-card {
        width: 15.2rem;
        height: 5.8rem;
        border-radius: 0.8rem;
        background-color: #fff;
        padding: 0.8rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        bottom: -2.9rem;
        left: 0.8rem;
    }

    .download-center-for-card span {
        color: #05173C;
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 1.8rem;
    }

    .download-center-for-card img {
        width: 1.6rem;
        height: 1.6rem;
        display: block;
    }

    .download-center-for-card img:nth-child(3) {
        display: none;
    }

    .download-center-for-card:hover {
        box-shadow: 0;
        cursor: pointer;
    }

    .download-center-for-card:hover img:nth-child(3) {
        display: block;
    }

    .download-center-for-card:hover img:nth-child(2) {
        display: none;
    }

    .download-center-for-card:hover span {
        color: #F16522;
    }
}