/* CSS Document */

/* nyPictures start */
.nyPictures {
  padding: 100px 0;
}

.nyPictures .nyPictures_main {
  margin: 0 auto;
}

.nyPictures_main ul li {
  height: 480px;
  background-color: #fff;
  margin-bottom: 50px;
  padding: 0 0 0 50%;
  position: relative;
}

.nyPictures_main ul li:nth-child(2n+2) {
  padding: 0 50% 0 0;
}

.nyPictures_main ul li .nyPictures_img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.nyPictures_main ul li .nyPictures_img a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.nyPictures_main ul li .nyPictures_img a img {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.nyPictures_main ul li:hover .nyPictures_img a img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.nyPictures_main ul li .nyPictures_img a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.nyPictures_main ul li:hover .nyPictures_img a::after {
  background: rgba(0, 0, 0, .7);
}

.nyPictures_main ul li .nyPictures_img a span {
  display: block;
  color: #00a662;
  font-size: 16px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.nyPictures_main ul li:hover .nyPictures_img a span {
  opacity: 1;
}

.nyPictures_main ul li .nyPictures_img a span i {
  display: block;
  width: 64px;
  height: 64px;
  overflow: hidden;
  margin: 0 auto 15px;
  padding: 18px;
  border: 2px solid #00a662;
  border-radius: 50%;
}

.nyPictures_main ul li .nyPictures_img a span i svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nyPictures_main ul li .nyPictures_img a span i svg path {
  fill: #00a662;
}


.nyPictures_main ul li .nyPictures_txt {
  width: 50%;
  height: auto;
  overflow: hidden;
  padding: 0 100px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.nyPictures_main ul li:nth-child(2n+2) .nyPictures_txt {
  left: inherit;
  right: 0;
}

.nyPictures_main ul li .nyPictures_txt .nyPictures_name a {
  display: block;
  line-height: 48px;
  color: #000;
  font-size: 36px;
  font-weight: lighter;
}

.nyPictures_main ul li:hover .nyPictures_txt .nyPictures_name a {
  color: #00a662;
}

.nyPictures_main ul li .nyPictures_txt .nyPictures_ms {
  margin: 20px 0 40px;
}

.nyPictures_main ul li .nyPictures_txt .nyPictures_ms p {
  max-height: 120px;
  overflow: hidden;
  line-height: 30px;
  color: #999;
  font-size: 16px;
  text-align: justify;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* nyPictures end */