/* 文化故事 */

.cultural_box {
    display: flex;
    position: relative;
    z-index: 2;
}

.cultural_box img {
    width: 388px;
    height: 220px;
    transition: all 0.8s;
}

.cultural_box_content {
    width: 756px;
    margin-left: 60px;
}

.cultural_box:hover .cultural_box_content h2 {
    color: #0F47F3;
}

.cultural_box_content h2 {
    height: 56px;
    font-size: 40px;
    font-weight: normal;
    line-height: 56px;
    color: #333333;
}

.cultural_box_content .content_box {
    width: 756px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: #666666;
    margin-top: 20px;
    height: 72px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 这里设置为3行 */
    overflow: hidden;
}

.cultural_box_content .date_box {
    font-size: 20px;
    font-weight: 300;
    line-height: 32px;
    color: #333333;
    margin-top: 32px;
}

/* 选择除了第一个元素之外的所有元素 */
.cultural_box:not(:first-child) {
    margin-top: 100px;
}

.cultural_box .benefits_img:hover img {
    transform: scale(1.1);
}

.cultural_box .benefits_img {
    width: 388px;
    height: 220px;
    overflow: hidden;
}