/* 案例内容 */
.detailed {
    width: 1200px;
}
.detailedAll{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    width: 100%;
}
/* 每类方案的其中一个 */
.detailed_1 {
    /* width: 100%; */
    /* height: 400px; */
    /* outline: 1px solid black; */
    margin: 10px 43px;
    display: flex;
    flex-wrap: wrap;
}
.detailed_1>div{
    width: 300px;
    height: 400px;
    /* margin: 20px 43px; */
}
.detailed_img {
    width: 100%;
    height: 270px;
    /* outline: 1px solid black; */
}
.imgHover{
    width: 100%;
    height: 90%;
    z-index: 100;
}
.detailed_content {
    width: 100%;
    height: 100px;

}
/* 前面设置了首行缩进 */
.detailed_content>p {
    text-indent: 0em !important;
}

.imgHover:hover{
    transform: translate3D(20px,-20px,-20px);
    transition: all 1s;
    box-shadow: -10px 10px 10px #ccc;
}