@import'./common.css';
@import'./footer.css';
#all-cases {
    width: 100%;
    padding-top: 40px;
    box-sizing: border-box;
    background: linear-gradient(360deg, #F9FCFD 0%, #B9D8F1 100%);
    height: 1229px;
}
#all-cases .tab-container {
    display: flex;
}
#all-cases-tab .tab-item {
    font-size: 18px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #2E3033;
    width: 210px;
    background: #E1EBF4;
    padding: 18px 24px 17px;
    box-sizing: border-box;
    margin-right: 0;
}
#all-cases-tab .tab-item:hover {
    background: #FFFFFF;

}
#all-cases-tab .tab-item-active {
    color: var(--theme-color);
    background: #FFFFFF;
}
#all-cases-tab .tab-item-active::after {
    bottom: -10px;
    display: none;
}

#all-cases-tab .tab-scroll-wrap {
    width: 210px;
    display: flex;
    height: fit-content;
    border-radius: 10px;
}

#all-cases-tab .tab-scroll-wrap > .tab-item-wrap {
    flex-direction: column;
}
#all-cases .all-cases-primary {
    color: #1979FF;
    background: #CBE5FF;
}

.all-cases-main {
    /* margin-top: 28px; */
    flex: 1;
    margin-left: 14px;
}

.all-cases-main > .more-wrap {
    margin-top: 28px;
    text-align: center;
}

.all-cases-main > .cases-wrap {
    /* width: 920px; */
    display: flex;
    flex-wrap: wrap;
    /* margin-right: -9px; */
    /* padding-top: 5px; */
}

.all-cases-main > .cases-wrap > .cases-item {
    width: 290px;
    border-radius: 10px;
    margin: 0 0 16px 15px;
    transition: all 0.2s linear;
    background: #fff;
    overflow: hidden;
}

.all-cases-main > .cases-wrap > .cases-item:hover {
    box-shadow: 0px 10px 12px 0px #D1E1EE;
    transform: translate3d(0, -5px, 0);
}

.all-cases-main > .cases-wrap > .cases-item > .cases-img-wrap {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.all-cases-main > .cases-wrap > .cases-item > .cases-img-wrap > .logo {

}

.all-cases-main > .cases-wrap > .cases-item > .cases-img-wrap > img {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.all-cases-main > .cases-wrap > .cases-item > .cases-bottom-content {
    background: #fff;
}


.all-cases-main > .cases-wrap > .cases-item > .cases-bottom-content > .describe {
    padding: 0 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 252px;
    height: 42px;
    font-size: 14px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #2E3033;
    margin-bottom: 16px;
}


.all-cases-main > .cases-wrap > .cases-item > .cases-bottom-content > .date-wrap {
    height: 43px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #1979FF;
    line-height: 43px;
    text-align: center;
    width: 100%;
    border-top: 1px solid #E2E5E9;
}