/**
 * 通用卡片样式4
 */
.card4-pack {
    width: 1200px;
    height: auto;
}

.card4-pack .c4-row {
    width: 1200px;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.card4-pack .c4-row .c4-r-col {
    width: 570px;
    height: 386px;
    background: #fff;
    transition-delay: 0.3s;
}

.card4-pack .c4-row .c4-r-col:hover .r-c-img img {
    transform: scale(1.4);
    transition: transform 0.6s;
    -webkit-transition: transform 0.6s;
    -moz-transition: transform 0.6s;
    -ms-transition: transform 0.6s;
    -o-transition: transform 0.6s;
}

.card4-pack .c4-row .c4-r-col .r-c-img {
    overflow: hidden;
    width: 100%;
    height: 208px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card4-pack .c4-row .c4-r-col .r-c-img img {
    transform: scale(1);
    transition: transform 0.6s ease-in-out;
}

.card4-pack .c4-row .c4-r-col .r-c-text {
    width: 100%;
    height: 178px;
    background: url(../../image/common/bg2.png);
    
    border: 1px solid rgba(51, 102, 255, 0.15);
    background-size: cover;
    padding: 40px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card4-pack .c4-row .c4-r-col .r-c-title {
    font-size: 24px;
    height: 24px;
    line-height: 24px;
    margin-bottom: 14px;
    color: rgba(0, 0, 0, 0.851);
}

.card4-pack .c4-row .c4-r-col .r-c-desc {
     font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: rgba(0, 0, 0, 0.851);
}

