.contract_box {
    height: 242px;
    margin: 0px -6px;
    padding: 16px 0 68px 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

 .contract_content {
    width: 25%;
    height: 132px;
    padding: 0 12px 6px;
}

.contract_content .content_box {
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 32px 24px;
    font-size: 14px;
    color: #999DB1;
    transition: all ease 0.3s;
}

.content_box:hover {
    box-shadow: 0  2px 2px 0 rgba(0, 0, 0, 0.1);
}

.contract_content .contract_content_top {
    height: 30px;
    display: flex;
    justify-content:  flex-start;
    margin-bottom: 12px;
}

.contract_content .contract_content_top h3{
    color: #2dd4e0;
    font-size: 32px;
    margin-right: 5px;
    line-height: 30px;
}

 .contract_content .contract_content_top p{
    color: #393F56;
    font-size: 16px;
    line-height: 30px;
    transition: all ease 0.3s;
}

.contract_content:hover .contract_content_top p {
    color: #2dd4e0 !important;
}