/* 顶部标题 */

#caseHeader {
    width: 100%;
    height: 520px;
    position: relative;
    padding-top: 170px;
    box-sizing: border-box;
    background: url(/templets/default/intl/image/case/bg_logo.png),url(/templets/default/intl/image/case/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    overflow: hidden;
}

#caseHeader img {
    position: absolute;
    top: 0%;
    display: inline-block;
    width: 100%;
    min-width: 1200px;
}

.header_title_wrap {
    width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.header_title {
    font-size: 64px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    line-height: 90px;
    margin-bottom: 20px;
}

.header_title_wrap p {
    line-height: 28px;
    font-size: 20px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
}

/* 中间内容 */

#caseContainer {
    background: #F4F7F9;
}

#caseContainer .caseList {
    width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
    transform: translateY(-152px);
    transition: width 0.2s ease-in-out;
}

.caseList .caseItem {
    width: calc(50% - 10px);
    min-height: 238px;
    padding: 32px 40px;
    background: #FFFFFF;
    border-radius: 4px;
    margin-top: 20px;
    position: relative;
}

.caseItem .caseLogo {
    width: 300px;
    height: 64px;
    margin-bottom: 30px;
}

.caseItem .caseLogo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.caseItem .caseDesc {
    font-size: 14px;
    color: #1A2736;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.caseItem .caseTitle {
    font-size: 24px;
    font-weight: 500;
    color: #1A2736;
    line-height: 32px;
    margin-bottom: 20px;
}

.caseItem .hrefIcon {
    position: absolute;
    top: 60px;
    right: 30px;
    width: 12px;
    height: 10px;
    background: url(/templets/default/images/indexn/icon_more.svg) no-repeat;
    transition: transform 0.2s ease-in-out;
}

.caseItem a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.caseItem:hover .hrefIcon {
    background-image: url(/templets/default/images/caseSelection/arrow_detail.svg);
    transform: translateX(10px);
}

@media screen and (max-width: 1280px) {
    #caseContainer .caseList {
        width: 880px;
    }
    .header_title_wrap {
        width: 80%;
    }
}

@media screen and (max-width: 980px) {
    #caseContainer .caseList {
        width: 80%;
    }
    .caseList .caseItem {
        width: 100%;
    }
}

@media screen and (max-width: 485px) {
    #caseContainer .caseList {
        width: 90%;
    }
    .caseList .caseItem {
        padding: 15px;
    }
}

@media screen and (max-width: 382px) {
    #caseContainer .caseList{
        transform: translateY(-72px);
    }
}
@media screen and (max-width: 375px) {
    #caseContainer .caseList {
        width: 95%;
    }
    .caseList .caseItem {
        padding: 10px 8px;
    }
}