.caseXq {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #dedede;
    border-left: 1px solid #dedede;
    /* justify-content: space-between; */
}
.caseItem{
    width: 20%;
    position: relative;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 20px;
}
.indCpImg{
    width: 100%;
    padding-top: 100%;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.48s;
}
.indCpImg img{
    width: 80%;
    height: 80%;
    object-fit: contain;
    position: absolute;
    left: 10%;
    top: 10%;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.caseItem:hover .indCpImg img{
    transform:scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}
.caseItem p{
    opacity: 0;
    width: 100%;
    padding: 0 20px;
    font-size: 20px;
    /* font-weight: 600; */
    z-index: 2;
    text-align: center;
    color: #fff;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    font-family: SangBleu;
}
.indCpImg::after{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    content: '';
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
    background: rgba(0,0,0,0);
}
.caseItem:hover .indCpImg::after{
    background: rgba(0,0,0,.4);
}
.caseItem:hover p{
    opacity: 1;
}



/* 产品详情 */
.prDTbox{
    margin-top: 70px;
    overflow: hidden;
}
.prDTbox .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prDTLeft{
    width: 50%;
    display: flex;
    position: relative;
}
.prDISciper{
    width: calc(100% - 120px);
    margin-left: 20px;
    background: #f7f8f9;
    height: 550px;
}
.prDImg{
    position: relative;
    width: 100%;
    height: 100%;
}
.prDImg .imgBox{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #dedede;
    background: #f7f8f9;
    object-fit: contain
}
.prDImg .imgBox img{
    /*width: 100%;*/
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    object-fit: cover;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.prDcSciper{
    width: 100px;
}
.prDIcon{
    height: auto;
}
.prDIcon.swiper-slide-thumb-active .imgBox{
    border: 1px solid #999;
}
.prDIcon .imgBox{
    width: 100%;
    height: 100px;
    position: relative;
    overflow: hidden;
    border: 1px solid #dedede;
    background: #f7f8f9;
}
.prDIcon .imgBox img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    object-fit: contain;
}
.prDTRig{
    width: auto;
    width: 45%;
}
.prDTit{
    font-size: 32px;
    color: #333;
    font-weight: 600;
}
.prDText {
    margin: 20px 0;
}
.prDText p{
    font-size: 16px;
    color: #333;
   display: block;
   margin-bottom: 20px;
}
.prDText span{
    font-size: 15px;
    color: #666;
   display: block;
   margin-bottom: 10px;
}




.frame{
    width:180px;
    height:180px;
    position:absolute;
    /* border: 1px solid #333; */
    top:0;
    left:0;
    /* 在鼠标移入原始框的时候才显现,所以初始值为隐藏 */
    display: none;
    /* 在放大镜中插入背景图,根据背景图定位,改变放大镜中和原始框中的图片一一对应 */
    /* 0 0 即为background-position的值 */
    /* background: url(img/timg.jpg) no-repeat 0 0; */
    /* CSS2中的内容要和CSS3中的分开 */
    background-size: 400px 400px ;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .frame img{
    width: 100%;
    height: 100%;
  }
.prFImg{
    width:500px;
    height:500px;
    position:absolute;
    right: -500px;
    top: 30px;
    border: 1px solid #eee;
    z-index: 222;
    /* 因为放大框中的内容
    与放大镜是16：1放大的,
    所以原始框与放大框相同大小的情况下
    使用overflow: hidden;用放大框截取插入图片的大小 */
    overflow: hidden;
    /* 在鼠标移入原始框的时候才显现,所以初始值为隐藏 */
    display: none;
  }

.prFImg img {
    width: 2250px;
     height: 1830px;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}
.prFImg img:first-child{
    display: block;
}
@media(max-width:1366px) {
    .caseItem{
        width: 25%;
    }
    .caseItem p{
        font-size: 18px;
    }
    .prDTit {
        font-size: 28px;}
        .prDText p{
            font-size: 15px;
        }
        .prDText span{
            font-size: 14px;
        }
        .prDIcon .imgBox {
            height: 90px;
        }
        .prDcSciper {
            width: 90px;
        }
}
@media(max-width:900px) {
    .prFImg {
        width: 400px;
        height: 400px;
        position: absolute;
        right: 0;
        top: 100%;
    }
    .caseItem{
        width: 33.3%;
    }
    .caseItem p{
        font-size: 16px;
    }
    .prDTbox .inner{
        flex-wrap: wrap;
    }
    .prDTLeft {
        width: 100%;
        display: flex;
    }
    .prDTRig {
        width: 100%;
        margin-top: 50px;
    }
    .prDIcon .imgBox {
        height: 80px;
    }
    .prDcSciper {
        width: 80px;
    }
    .prDTit {
        font-size: 24px;
    }
    #frame {
        width: 100px;
        height: 100px;
        display: none;
        opacity: 0;
    }
    .frame {
        opacity: 0;
    }
    .prFImg{
        opacity: 0;
    }
    .prDISciper{
        height: 450px;
    }
    
}
@media(max-width:680px) {
    /* #frame {
        width: 60px;
        height: 60px;
    } */
    .prFImg {
        width: 300px;
        height: 300px;
        position: absolute;
        right: 0;
        top: 100%;
    }
    .caseItem{
        width: 50%;
    }
    .caseItem p{
        font-size: 14px;
    }
    .prDIcon .imgBox {
        height: 70px;
    }
    .prDcSciper {
        width: 70px;
    }
    .prDISciper {
        width: calc(100% - 90px);
    }    
    .prDText p {
        font-size: 14px;
    }
    .prDText span {
        font-size: 13px;
    }
}
@media(max-width:500px) {
    .prDIcon .imgBox {
        height: 60px;
    }
    .prDcSciper {
        width: 60px;
    }
    .prDTit {
        font-size: 20px;
    }
    .prDISciper{
        height: 350px;
    }
}