<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 图册列表 */

.atlas {
}

.atlas ul {
  display: flex;
  flex-flow: wrap;
}

.atlas li {
  width: 100%;
  padding: 4px;
}

.atlas li a {
  display: block;
  color: #000;
  text-align: center;
}

.atlas li i {
  display: block;
  border: 2px solid #f5f5f5;
}

.atlas li a img {
  width: 100%;
}

.atlas li p {
  position: relative;
  font: 400 14px/36px "微软雅黑";
  text-align: center;
  color: #000;
  background: #f5f5f5;
}

@media (min-width: 1200px) {
  .atlas ul {
    padding: 0;
  }
  .atlas li {
    width: 33.3%;
    padding: 5px;
  }
  .atlas ul li {
    width: 33.3%;
    padding: 0.6vw 0.3vw;
  }
  .atlas li a {
    position: relative;
  }
  .atlas li i {
    display: block;
    overflow: hidden;
  }
  .atlas li i img {
    transition: 0.6s;
  }
  .atlas li p {
    position: relative;
    font: 400 16px/48px "微软雅黑";
    border: 0;
  }
  .atlas li a:hover img {
    transform: scale(1.1);
  }
  .atlas li a:hover p {
    color: #fff;
    background: #c90213;
  }
}
</pre></body></html>