body {
  margin: 0;
  background: #000;
  min-height: 100vh;
  position: relative;
  font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  overflow-x: hidden;
}
html {
  height: 100%;
}
.bg-texture {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  background: url('作品集切图/0.png') repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.gallery {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 1vw 120px 1vw;
  box-sizing: border-box;
}
.gallery-img {
  max-width: 100%;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px auto;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  background: #111;
  transition: transform 0.2s;
}
.gallery-img:last-child {
  margin-bottom: 0;
}
.gallery-img:hover {
  transform: scale(1.025);
}
.bottom-img {
  width: 320px;
  max-width: 80vw;
  margin: 48px auto 0 auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background: none;
}
@media (max-width: 800px) {
  .gallery-img {
    max-width: 99vw;
  }
  .gallery {
    padding-left: 1vw;
    padding-right: 1vw;
  }
} 