/**
 * 通用卡片样式6
 */
.card6-pack {
    width: 1200px;
    height: auto;
}

.card6-pack .c6-row {
    width: 1200px;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.card6-pack .c6-row .c6-r-col {
    width: 570px;
    height: 386px;
    background: #fff;
    transition-delay: 0.3s;
}

.card6-pack .c6-row .c6-r-col .r-c-text {
    width: 100%;
    margin-bottom: 16px;
}

.card6-pack .c6-row .c6-r-col .r-c-title {
    font-size: 24px;
    line-height: 56px;
    margin-bottom: 14px;
    color: rgba(0, 0, 0, 0.851);
}

.card6-pack .c6-row .c6-r-col .r-c-desc {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: rgba(0, 0, 0, 0.851);
}

.card6-pack .c6-row .c6-r-col .r-c-img {
    overflow: hidden;
    width: 100%;
    height: 208px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.card6-pack .c6-row .c6-r-col .r-c-img img {
    transform: scale(1);
    transition: transform 0.6s ease-in-out;
}

