#app .page-industryCases-wrapper .industry-cases-wrapper {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding-top: 100px;
    padding-bottom: 116px;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-left: 40px;
    margin-right: 40px;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .title {
    display: flex;
    flex-direction: column;
    align-self: center;
    font-weight: bold;
    font-size: 36px;
    color: #1755ED;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .title-en {
    font-weight: bold;
    align-self: center;
    font-size: 16px;
    color: rgba(23, 85, 237, 0.5);
    margin-top: 30px;
    margin-bottom: 95px;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .img-list-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .img-list-wrapper .image-container {
    position: relative;
    width: 380px;
    height: 270px;
    margin-bottom: 30px;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .img-list-wrapper .image-container img {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .img-list-wrapper .image-container .overlay {
    position: absolute;
    flex-direction: column;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.6); /* 蒙版背景颜色 */
    opacity: 0; /* 初始透明度 */
    transition: opacity 0.3s ease; /* 添加渐变效果 */
    display: flex;
    justify-content: center;
    align-items: center;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .img-list-wrapper .image-container:hover .overlay {
    opacity: 1; /* 鼠标移入时显示蒙版 */
    cursor: pointer;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .img-list-wrapper .image-container .overlay .desc {
    color: #333333;
    font-size: 18px;
    text-align: center;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .img-list-wrapper .image-container .overlay .sub-desc {
    color: #1755ed;
    margin-top: 20px;
    font-size: 24px;
    text-align: center;
}

#app .page-industryCases-wrapper .industry-cases-wrapper .content .img-list-wrapper .image-container .overlay .line {
    width: 44px;
    height: 5px;
    background-color: #1755ed;
    margin-top: 30px;
    text-align: center;
}
