

#pic_collection_image li{
    float:left;
    border:1px solid #eee;
    margin:8px;
    position: relative;
}

#pic_collection_image li img{
    width:150px;
    height:150px;
}


#pic_collection_image li i{
    position:absolute;
    top:-15px;
    right:-15px;
    font-size:30px;
    display:none;
}



#pic_collection_image li i{
    color:#999;
    position:absolute;
    top:-15px;
    right:-15px;
    font-size:30px;
    display:none;
}



#pic_collection_image li:hover i{
    display:block;
}







.pic-collection-list {
    width:100%;
    min-height: 43.75rem;
    background: rgba(244, 246, 246, 1);
    padding:3rem 0;
}
.pic-collection-list-box {
    max-width: 1300px;
    width:100%;
    margin: 0px auto;
    padding: 2rem;
    display: flex;
    background: rgb(244, 246, 246, 1);
    box-shadow: none; 
    min-height: 300px;
}

.pic-collection-list-box ul{
    width: 100%;
}

.pic-collection-list-box li{
    display: flex;
    width: 30%;
    height: 400px;
    justify-content: center;
    opacity: 0;
    transform: translateY(-3rem);   
    float: left;
    margin: 10px;
    
    
   
}




.pic-collection-box .pic-img{
    width:100%;
    height:90%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    position: relative;
}

.pic-collection-box .pic-img img{
    width:100%;
    height:90%;
    padding:10px;   
    border: 1px #ddd solid;
    background: rgb(255, 255, 255);
    box-shadow: none; 
    box-sizing: border-box;
    z-index: 10;
    transition: box-shadow 0.3s ease; /* 添加过渡效果 */
}



.pic-collection-box img:hover{
    box-shadow: 10px 0 10px grey; /* 阴影 */   
}



.pic-collection-box .pic-img::before {
    content: "";
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
    border: 8px solid rgba(255, 255, 255, 0.9); /* 描边的背景，可以根据需要调整宽度和颜色 */
    box-sizing: border-box;
    z-index: -1;
    transition: transform 0.3s ease; /* 添加过渡效果 */
    transform-origin: right bottom; /* 设置变换的原点为右下角 */
  
}

.pic-collection-box  .pic-img:hover::before {
    transform: rotate(4deg);
    box-shadow: 4px -4px 4px grey; /* 分别在上边和右边添加阴影 */ 

    
}


.pic-collection-box .pic-img::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
    border: 8px solid rgba(255, 255, 255, 0.8); /* 描边的背景，可以根据需要调整宽度和颜色 */
    box-sizing: border-box;
    z-index: -2;
    transition: transform 0.3s ease; /* 添加过渡效果 */
    transform-origin: right bottom; /* 设置变换的原点为右下角 */
}

.pic-collection-box .pic-img:hover::after {
    transform: rotate(8deg);
    box-shadow: 4px -4px 4px grey; /* 分别在上边和右边添加阴影 */ 

}


.pic-collection-box .pic-title{
    display: flex;     
    align-items: center; /* 垂直居中 */
    justify-content: center;
    height:1rem;
    font-size: 1rem;
    color: #666;
    text-align: center;
 
}







.con .pic-list {
    width:100%;
    min-height: 43.75rem;
    background: rgba(244, 246, 246, 1);
    padding:3rem 0;
}
.pic-list-box {
    max-width: 1300px;
    width:100%;
    margin: 0px auto;
    padding: 2rem;
    display: flex;
    background-color: rgba(255, 255, 255, 1);
    min-height: 300px;
}

.pic-list-box ul{
    width:100%;
    height: 100%;
}

.pic-list-box li{
    display: flex;
    width: 100%;
    height: 300px;
    justify-content: center;
    opacity: 0;
    transform: translateY(-3rem)        
}

.pic-box{
    width:30%;
    height:90%;
    margin: 20px;
    border: 1px #e8e8e8 solid;  /* 描边 */
    box-shadow: 0 0 10px grey; /* 阴影 */    
    padding:10px;    
}

.pic-box .pic-img{
    width:100%;
    height:90%;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.pic-box .pic-img img{
    max-width:95%;
    max-height:200px;
    transition: all ease-out .3s;
    -moz-transition: all ease-out .3s;
    -webkit-transition: all ease-out .3s;
    -o-transition: all ease-out .3s;
}


.pic-box .pic-img img:hover {
    transform: scale(1.1, 1.1);
    /* -webkit-transform: scale(1.1, 1.1); */
    -o-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
}


.pic-box .pic-title{
    display: flex;     
    align-items: center; /* 垂直居中 */
    justify-content: center;
    height:1rem;
    font-size: 1rem;
    color: #666;
    text-align: center;
 
}



#case {
    background: rgba(244, 246, 246, 1);
}






#pic-collection-image .pic-list-box {
    background: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}


#pic-collection-image .pic-list-box .pic-display{
    width: 80%;
    height:100%;
    opacity: 0;
    transform: translateY(-3rem)  
}
#pic-collection-image .pic-list-box .pic-display li{
    width:100%;
    min-height:600px;
}

#pic-collection-image .pic-list-box .pic-display .pic-box{
    box-shadow: none;
    width: 70%;
    height: 95%;
    background: rgba(255, 255, 255, 1);
    padding:0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    border: none;
}

#pic-collection-image .pic-list-box .pic-display .pic-box .pic-title{
    height: 10%;
    font-size: 1.5rem;
    margin-top: 2rem;
}

#pic-collection-image .pic-list-box .pic-display .pic-img{
    width:100%;
    height:90%;
}

#pic-collection-image .pic-list-box .pic-display .pic-img img{
    border: 1px #e8e8e8 solid;  /* 描边 */
    box-shadow: 0 10px 20px grey; /* 阴影 */    
    width:auto;
    max-height:100%;
}

#pic-collection-image .pic-list-box .pic-omit{
    width: 20%;
    opacity: 0;
    margin-top: 1rem;
    transform: translateY(-3rem)  
}

#pic-collection-image .pic-list-box .pic-omit .pic-box{
    box-shadow: none;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    padding:0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    border: none;
}


#pic-collection-image .pic-list-box .pic-omit li{
    width: 100px;
    height: 200px;
}

#pic-collection-image .pic-list-box .pic-omit .pic-img {
    width: 100%;
    height: 100%;
    border-radius: 0 100px 100px 0;
}
  
#pic-collection-image .pic-list-box .pic-omit .pic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 2px 5px grey; /* 阴影 */    
}

#pic-collection-image .pic-list-box .pic-omit .pic-img img:hover {
    transform: none;
}

#pic-collection-image .pic-list-box  li{
    display: flex;
    width: 100%;
    height: 300px;
    justify-content: center;
    opacity: 1;
    transform: translateY(0rem) ;    
}

#pic-collection-image .pic-list-box .slick-prev:before,#pic-collection-image .pic-list-box  .slick-next:before{
    color:#666;
}