.case_tabs_wrapper {
    overflow: hidden;
    width: 1264px;
    margin: 0 auto;
    padding: 20px 0;
}

.case_tabs_wrapper * {
    box-sizing: border-box;
}

.case_tabs_wrapper .case_tabs_bar {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    background: #0071bd;
    padding: 0;
}

.case_tabs_wrapper .case_tabs_bar li {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    padding: 26px 0;
    border-top: 3px solid transparent;
}

.case_tabs_wrapper .case_tabs_bar li .case_icon {
    display: block;
    width: 46px;
    height: 48px;
    overflow: hidden;
    position: relative;
}

.case_tabs_wrapper .case_tabs_bar li .case_icon i {
    display: block;
    width: 100%;
    height: 100%;
    transition: all 360ms;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
}

.case_tabs_wrapper .case_tabs_bar li .case_icon i:nth-child(2) {
    opacity: 0;
    transform: translate3d(0, 65px, 0) rotate3d(1, 0, 0, -90deg);
}

.case_tabs_wrapper .case_tabs_bar li.active .case_icon i:last-of-type {
    opacity: 1;
    transform: rotate3d(1, 0, 0, 0deg);
}

.case_tabs_wrapper .case_tabs_bar li .case_title {
    margin: 12px 0 0 0;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
}

.case_tabs_wrapper .case_tabs_bar li.active {
    background: #F6FBFF;
    border-top: 6px solid #0071bd;
}

.case_tabs_wrapper .case_tabs_bar li.active .case_title {
    color: #505050;
}

.case_tabs_wrapper .case_tabs_body {
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    display: none;
    box-shadow: 0 2px 4px rgb(0 0 0 / 12%), 0 0 6px rgb(0 0 0 / 4%);
    background: #fff;
}

.case_tabs_wrapper .case_tabs_body .content:after {
    content: "";
    height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.case_tabs_wrapper .case_tabs_body .content .leftContent {
    float: left;
    width: 60%;
    height: 480px;
}

.case_tabs_wrapper .case_tabs_body .content .leftContent img {
    max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: scale-down;
}

.case_tabs_wrapper .case_tabs_body .content .rightContent {
    float: left;
    width: 40%;
    padding: 60px;
    color: #505050;
}

.case_tabs_wrapper .case_tabs_body .content .rightContent .title {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    position: relative;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    height: 30px;
    line-height: 1.1;
}

.case_tabs_wrapper .case_tabs_body .content .rightContent .subTitle {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 50px;
    line-height: 1.1;
}

.case_tabs_wrapper .case_tabs_body .content .rightContent .title:before {
    content: "";
    height: 18px;
    width: 3px;
    display: block;
    background: #0071bd;
    position: absolute;
    left: 0;
    top: 13px;
}

.case_tabs_wrapper .case_tabs_body .content .rightContent .titleDec {
    padding: 10px 10px;
    font-size: 14px;
    line-height: 2;
    margin-bottom: 20px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    height: 128px;
}

.case_tabs_wrapper .case_tabs_body .content .rightContent .viewDetails {
    padding: 20px 0;
    font-size: 14px;
    color: #FFFFFF;
    background: #0071bd;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

.case_tabs_wrapper .case_tabs_body .content .rightContent .viewDetails:hover {
    background: rgba(1, 146, 239, 0.8);
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .case_tabs_wrapper {
        width: 100%;
    }
    .case_tabs_wrapper .case_tabs_bar {
        flex-wrap: wrap;
    }
    .case_tabs_wrapper .case_tabs_bar li {
        padding: 26px;
        flex: 1 1 50%;
    }
    .case_tabs_wrapper .case_tabs_body {
        margin-top: 20px;
    }
    .case_tabs_wrapper .case_tabs_body .content .leftContent {
        width: 100%;
        height: auto;
    }
    .case_tabs_wrapper .case_tabs_body .content .rightContent {
        width: 100%;
        padding: 20px;
    }
}