@charset "utf-8";

/*------------------------------------------------------------
------------------------------------------------------------*/
.main {
   /* margin:80px 0 80px;*/
}
.main .photoUl {
    width: 1350px;
    margin-right: -70px;
}
.main .photoUl li {
    float: left;
    width:380px;
    height:250px;
    font-size: 18px;
    margin: 0 70px 55px 0;
    overflow: hidden;
}
.main .photoUl li a {
   width:100%;
   height:100%;
    display: block;
    position: relative;
}
.main .photoUl li span {
    opacity: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 22px;
    color:#fff;
    left:0;
    top:0;
    display: flex;
    align-items: center;
     justify-content: center;
     transition: all 0.3s;
}
.main .photoUl li a:hover span {
     opacity: 1;
}
.main .photoUl li img {
     width:100%;
     height:100%;
     transition: all 0.3s;
}
.main .photoUl li a:hover img {
   transform: scale(1.1); 
}
