/* 图册列表 */

.atlas {
}

.atlas ul {
  display: flex;
  flex-flow: wrap;
}

.atlas li {
  width: 50%;
  padding: 4px;
}

.atlas li a {
  display: block;
  color: #000;
  text-align: center;
}

.atlas li i {
  display: block;
  overflow: hidden;
}

.atlas li a img {
  width: 100%;
}

.atlas li p {
  position: relative;
  font: 400 14px/36px "微软雅黑";
  text-align: center;
  color: #000;
  background: #fff;
}

@media (min-width: 1200px) {
  .atlas-main {
    width: 62.4vw;
    margin: 0 auto;
  }
  .atlas ul {
    margin: -0.8vw -0.8vw 0;
  }
  .atlas li {
    width: 25%;
    padding: 0.8vw;
  }

  .atlas li i img {
    transition: 0.6s;
  }
  .atlas li p {
    position: relative;
    font: 400 16px/36px "微软雅黑";
    border: 0;
    background: #eee;
  }
  .atlas li a:hover img {
    transform: scale(1.1);
  }
  .atlas li a:hover p {
    color: #fff;
    background: #3a3738;
  }
}
