/* 内容开始 */
.newsContentArea {
    padding: 0;
    padding-top: 60px;
    margin: 0;
    background-color: #F5F5F5;
}

.newsContentAreaBox {
    display: flex;
    font-size: 14px;
    background: rgba(50, 95, 235, 0.05);
    border-radius: 50px;
    border: 4px solid #ebeef5
}

.newsContentAreaBox span {
    display: block;
    height: 36px!important;
    line-height: 36px!important;
    padding: 0px;
    cursor: pointer;
    margin: 0 !important;
    font-size:14px!important;
		width:204px;
		text-align: center;
}

.newsContentAreaBox span.activeCRJSP {
    cursor: pointer;
    color: #ffffff;
    background: #325feb;
    border-radius: 50px
}

.newsBox {
    width: 1200px;
    margin: 0 auto
}

.contentCRJSP {
    display: none;
    background-color: #F5F5F5;
}


/* 内容结束*/
.thumbnail {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: 0px 4px 8px 0px rgba(6, 0, 1, 0.13);
    transition: transform 0.3s ease;
}

.box_4_image-wrapper {
    border-radius: 12px 12px 0px 0px;
    height: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box_4_image-wrapper img {
    object-fit: cover;
    border-radius: 12px 12px 0px 0px;
    display: block;
    height: 100%;
    width: 100%;
}
.thumbnail .caption {
    padding: 24px;
}
.thumbnail .caption h3 {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    line-height: 29px;
}

.thumbnail .caption p {
    margin: 0;
    padding: 0;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-weight: 400;
    font-size: 14px;
    color:#666666;
    line-height: 27px;
    height:81px
}

.contentCRJSP .thumbnail:hover {
    animation: floatUp 1s ease-in-out;
    box-shadow: 0px 3px 40px 0px rgba(0, 0, 0, 0.1);
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}