#flashBoxu_u4_ img {
 
    object-fit: cover;}
/*  */
.img-lists ul {
  overflow: hidden;
  margin-left: -2%;
  margin-right: -2%;}

.img-lists ul li {
  float: left;
  width: 29%;
  margin: 20px 2% 0 2%;
  border: .01rem solid #eee;
  transition: all 0.3s;
  position: relative;
  top: 0;}

.img-lists ul li:hover {
  box-shadow: 0 0 1px rgba(51, 51, 51, 0.16);
  top: -0.1rem;}

.img-lists ul li a {
  display: block;
  width: 100%;}

.img-lists ul li a .pic {
  padding-top: 70%;}

.img-lists ul li a>img {
  display: block;
  width: 100%;
  height:190px;}

.img-lists ul li a>div.info {
  padding: .1rem;
  font-size: 0;
  text-align: center;}

.img-lists ul li a>div.info p {
  color: #333;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;}

.img-lists ul li:hover a>div.info p {
     color: #004377;}
.pic {
  padding-top: 75%;
  position: relative;
  overflow: hidden;}

.pic::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  opacity: .25;
  pointer-events: none;
  /* background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .53) 100%); */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 53) 50%, rgba(255, 255, 255, 0) 70%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 3;}

.pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
      object-fit: cover;
  transition: all 1s;}

a:hover .pic img {
  transform: scale(1.05);}

a:hover .pic:before {
  -webkit-animation: shine 1s;
  animation: shine 1s
;}

