.movie {
  padding-top: 120px;
}

@media only screen and (max-width: 960px) {
  .movie {
    padding-top: 80px;
  }
}

.movie .title {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 80px;
}

@media only screen and (max-width: 960px) {
  .movie .title {
    font-size: 30px;
  }
}

.movie .title::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -12px;
  width: 40%;
  height: 1px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(30%, white), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), white 30% 70%, rgba(0, 0, 0, 0));
}

.movie_list {
  max-width: 1000px;
  width: 80%;
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 960px) {
  .movie_list {
    width: 88%;
    margin: 40px auto 0;
  }
}

.movie_list-item {
  width: 32%;
  margin-top: 3.6%;
  cursor: pointer;
}

@media only screen and (min-width: 961px) {
  .movie_list-item {
    margin-left: 2%;
  }
  .movie_list-item:nth-child(3n+1) {
    margin-left: 0;
  }
  .movie_list-item:nth-child(n+1):nth-child(-n+3) {
    margin-top: 0;
  }
  .movie_list-item:hover .movie-image-bg {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  .movie_list-item:hover .in-image-icon img {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media only screen and (max-width: 960px) {
  .movie_list-item {
    width: 100%;
    margin-top: 10%;
  }
  .movie_list-item:first-child {
    margin-top: 0;
  }
}

.movie-image {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.movie-image-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

.in-image-icon {
  width: 20.5%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.in-image-icon img {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
  transition: transform 0.6s cubic-bezier(0.5, 1, 0.89, 1), -webkit-transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}

.movie-title {
  margin-top: 10px;
  line-height: 1.4em;
  font-size: 14px;
}

@media only screen and (max-width: 960px) {
  .movie-title {
    font-size: 13px;
    margin-top: 6px;
  }
}
/*# sourceMappingURL=luoxiaohei-movie-2nd_movie.css.map */