/**
 * 通用卡片样式5
 */
.card5-pack {
    width: 1200px;
    height: auto;
}

.card5-pack .c5-row {
    width: 1200px;
    height: auto;
    /* display: flex;
  justify-content: space-between; */
}

.card5-pack .c5-row .c5-r-col {
    width: 100%;
    height: auto;
    display: flex;
    transition-delay: 0.3s;
}

.card5-pack .c5-row .c5-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;
}

.card5-pack .c5-row .c5-r-col .r-c-img {
    overflow: hidden;
    width: 365px;
    height: 208px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.card5-pack .c5-row .c5-r-col.left .r-c-img {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.card5-pack .c5-row .c5-r-col.right .r-c-img {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.card5-pack .c5-row .c5-r-col .r-c-img img {
    transform: scale(1);
    transition: transform 0.6s ease-in-out;
}

.card5-pack .c5-row .c5-r-col .r-c-text {
    flex: 1;
    height: 208px;
    background: url(../../image/common/bg2.png);
    background-size: cover;
    padding: 56px;
}

/* .card5-pack .c5-row .c5-r-col.left .r-c-text {
    padding-right: 0;
} */

.card5-pack .c5-row .c5-r-col .r-c-title {
    font-size: 24px;
    height: 24px;
    line-height: 24px;
    margin-bottom: 14px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.851);
}

.card5-pack .c5-row .c5-r-col .r-c-desc {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: rgba(0, 0, 0, 0.851);
}

.card5-pack .c5-row .c5-r-col .r-c-desc .desc-item {
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: rgba(0, 0, 0, 0.851);
    margin-bottom: 8px;
    /* display: flex; */
}

.card5-pack .c5-row .c5-r-col .r-c-desc .desc-item .d-i-title {
    font-weight: bold;
}

