/**
 * 通用卡片样式2
 */
.card2-pack {
    width: 1200px;
    height: auto;
}

.card2-pack .c2-row {
    width: 1200px;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.card2-pack .c2-row .c2-r-col {
    width: 212px;
    height: 451px;
    padding: 16px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid rgba(51, 102, 255, 0.45);
    background: #fff;
}

.card2-pack .c2-row .c2-r-col:hover .r-c-img {
    transform: translateY(-10%);
}

.card2-pack .c2-row .c2-r-col .r-c-img {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease-in-out;
}

.card2-pack .c2-row .c2-r-col .r-c-title {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
    font-size: 24px;
    height: 24px;
    line-height: 24px;
    font-weight: bold;
    color: rgb(51 102 255);
}

.card2-pack .c2-row .c2-r-col .r-c-desc {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: rgba(0, 0, 0, 0.651);
}

