.caseService21 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.caseService21 * {
    box-sizing: border-box;
}

.caseService21 img {
    width: 50px;
    display: block;
    border: none;
    height: 50px;
    object-fit: cover;
}

.caseService21 .case_content {
    margin-right: 66px;
	margin-right: -36px;
    border: 2px solid #f2ba02 ;
    width: 180px;
    height: 180px;
    border-radius: 15%;
    text-align: center;
	justify-content: center;
    display: flex;
    align-items: center;
    background: #fff;
    transition: all .5s;
}

.caseService21 .case_content img {
    margin-bottom: 12px;
    margin: 0 auto;
}

.caseService21 .case_content .normal_img {
    display: block;
}

.caseService21 .case_content .hover_img {
    display: none;
}

.caseService21 .case_content .title {
    padding: 24px 8px 16px 8px;
    font-size: 16px;
    color: #f2ba02;
    line-height: 1.5;
    word-break: break-all;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 70px;
}

.caseService21 .case_content .des {
    font-size: 12px;
    color: #555;
    line-height: 2;
    width: 90%;
    margin: 0 auto;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 48px;
}

.caseService21 .case_content:hover {
    background: #f2ba02 ;
    border: 2px solid #f2ba02 ;
}

.caseService21 .case_content:hover .normal_img {
    display: none;
}

.caseService21 .case_content:hover .hover_img {
    display: block;
}

.caseService21 .case_content:hover .des,
.caseService21 .case_content:hover .title {
    color: #fff;
}

.case_content_icon {
    float: left;
	margin-left: 23px;
    width: 44px;
    text-align: center;
    color: #f2ba02 ;
    transition: all .5s;
}