.serviceContainer {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.serviceContainer img {
    max-width: 100%;
    display: block;
    border: none;
    height: auto;
}

.serviceContainer * {
    box-sizing: border-box;
    transition: all 600ms ease;
}

.services_list {
    display: flex;
    height: 520px;
}

.serviceContainer .services_block {
    width: 33.34%;
    height: 100%;
    border-left: 1px solid #ffffff;
}

.serviceContainer .services_block:hover .services_icon {
    height: 0;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.serviceContainer .services_block:hover .services_info {
    top: 60px;
    padding: 0 8%;
}

.services_block a {
    display: block;
    overflow: hidden;
    height: 100%;
    position: relative;
    color: #fff;
}

.services_img {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #f6f6f6 50% 50% no-repeat;
    background-size: cover;
    position: relative;
}

.services_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services_img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .45);
}

.services_info {
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 2;
    width: 100%;
    padding: 0 10%;
}

.services_icon {
    display: block;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.services_num {
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    font-size: 0;
    font-weight: 300;
}

.services_block:hover .services_num {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    font-size: 120px;
    line-height: 1;
    color: rgba(255, 255, 255, .12);
    font-family: "helveticaneuelt";
    margin-bottom: -7%;
    transition: all 600ms ease;
}

.services_tit {
    margin-bottom: 20px;
    padding-bottom: 16px;
    position: relative;
}

.services_tit:before {
    content: "";
    width: 12px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
}

.services_tit .en_title {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 6px;
}

.services_tit .title {
    font-size: 24px;
}

.services_des {
    line-height: 30px;
    max-height: 120px;
    opacity: 0;
    visibility: hidden;
    font-size: 16px;
    padding: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
}

.services_des li {
    position: relative;
}

.services_des li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    opacity: 0;
}

.services_des:hover li {
    padding-left: 12px;
}

.services_des:hover li:before {
    opacity: 1;
    width: 6px;
}

.services_block:hover {
    width: 50% !important;
}

.services_block:hover .services_des {
    visibility: visible;
    opacity: 1;
    overflow: hidden;
}

.services_block:hover .services_more {
    opacity: 1;
}

.services_block .services_more {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    font-weight: bold;
    width: 36px;
    height: 36px;
    line-height: 34px;
    margin-top: 40px;
    opacity: 0;
}

.services_block .services_more:hover {
    border-color: #cc0001;
    background: #cc0001;
    color: #ffffff;
}