.photo .list {
  margin: 0.15625rem;
}
.photo .list li {
  width: 1.734375rem;
  float: left;
  margin: 0 0.078125rem 0.078125rem 0;
  background: #fff;
  box-shadow: 0 0 0.01041667rem #ccc;
  border-radius: 0.04166667rem;
  overflow: hidden;
}
.photo .list li:nth-child(4n) {
  margin-right: 0;
}
.photo .list li .p-img {
  width: 100%;
  height: 1.40625rem;
  overflow: hidden;
  position: relative;
}
.photo .list li img {
  width: 70%;
  height: 70%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  /*过度效果*/
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.photo .list li img:hover {
  /*缩放效果*/
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.photo .list li .p-title {
  line-height: 0.3125rem;
  padding: 0.05208333rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333;
  font-size: 0.09375rem;
  background: #f5f7f9;
}
.photo .list li:hover {
  border-radius: 0.04166667rem;
}
/*# sourceMappingURL=photo.css.map */