/* 图片铺满 */
.pic_full img {
  width: 100%;
}

/* 图片经过放大 */
.pic_magnify {
  overflow: hidden;
}

.pic_magnify img {
  width: 100%;
  height: 100%;
  transition: transform 300ms linear;
}

.pic_magnify:hover img {
  transform: scale(1.1);
}

/* 遮罩层 */
.has_shade {
  position: relative;
}

.has_shade::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
}

.has_shade .blow_out {
  position: relative;
  z-index: 1;
}

/* 字体 */
@font-face {
  font-family: "sans";
  src: url("../fonts/sans.ttf");
}

@font-face {
  font-family: "Krona";
  src: url("../fonts/Krona.ttf");
}