/*图片列表*/
.pic_list li a .title {
  font-size: 1.125rem;
 }
.pic_list li a .cover {
  transition: all 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pic_list li a .cover .title {
  font-size: 1.25rem;
  color: #ffffff;
  position: relative;
  padding: 0.625rem 0;
  max-width: 80%;
}
.pic_list li a:hover .cover {
  opacity: 1;
}
.pic_list li a .cover .title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 0.0625rem;
  background: #fff;
  transition: all 0.5s ease;
}
.pic_list li a .cover .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 0.0625rem;
  background: #fff;
  transition: all 0.5s ease;
}
.pic_list li a:hover .cover .title:before,
.pic_list li a:hover .cover .title:after {
  width: 0.625rem;
}
/*图片列表*/
