/**
 * 通用卡片样式1
 */
.card1-pack {
    width: 1200px;
    height: auto;
}

.card1-pack .c1-row {
    width: 1200px;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.card1-pack .c1-row .c1-r-col {
    width: 260px;
    height: 257px;
    border-radius: 8px;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(51, 102, 255, 0.15);
    background: #fff;
    /* background-image:url(products-photo/cass/1.png); */
    background-position: bottom 0px right 0px;
    background-repeat: no-repeat;
    transition: transform 0.3s ease-in-out, box-shadow 0.8s ease-in-out;
    -webkit-transition: transform 0.3s ease-in-out, box-shadow 0.8s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out, box-shadow 0.8s ease-in-out;
    -ms-transition: transform 0.3s ease-in-out, box-shadow 0.8s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, box-shadow 0.8s ease-in-out;
}

.card1-pack .c1-row .c1-r-col:hover {
    transform: translateY(-5%);
    box-shadow: 0px 3px 5px 5px rgba(0, 0, 0, 0.04);
    
}

.card1-pack .c1-row .c1-r-col .r-c-title {
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 28px;
    margin-bottom: 16px;
    font-size: 24px;
    height: 24px;
    line-height: 24px;
    font-weight: bold;
    color: rgb(51 102 255);
}

.card1-pack .c1-row .c1-r-col .r-c-desc {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
    color: rgba(0, 0, 0, 0.65);
}

