/* 园区列表 */
.parkArea {
  position: relative;
  padding: 60px 0 20px;
  overflow: hidden;
}
.parkArea .section-decorate-left {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 900px;
  z-index: 2;
  opacity: 0.1;
}
.parkArea .section-decorate-right {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 900px;
  z-index: 2;
  opacity: 0.1;
}
.parkArea .section-decorate-title {
  position: absolute;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.15em;
  font-size: 100px;
  color: rgba(142, 142, 142, 0.1);
  top: 30%;
  left: 9%;
  font-size: 360px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-15deg);
  z-index: 3;
}
.parkArea .title-block {
  text-align: center;
}
.parkArea .title-block h5 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.parkArea .title-block p {
    width: 1100px;
    font-size: 18px;
    line-height: 28px;
    color: #999;
    margin: 0 auto 45px;
}
.parkList {
  position: relative;
  z-index: 3;
}
.parkList .items {
  position: relative;
  display: block;
  padding-top: 15px;
  margin-bottom: 40px;
  cursor: pointer;
  overflow: hidden;
}
.parkList .items .imgs {
  width: 100%;
  overflow: hidden;
}
.parkList .items .imgs img {
  display: block;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.parkList .items .texts {
  position: absolute;
  display: inline-block;
  font-weight: 700;
  left: 35px;
  top: 0;
  text-align: center;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: 8px 15px 10px rgba(0, 0, 0, 0.25);
  background: #427c4b;
  z-index: 10;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s;
}
.parkList .items .describe {
  position: absolute;
  bottom: -100%;
  left: 15px;
  width: calc(100% - 30px);
  font-size: 14px;
  line-height: 28px;
  padding: 35px 15px 15px;
  color: #f5f5f5;
  z-index: 9;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.parkList .items::after {
  content: '';
  display: block;
  position: absolute;
  left: 15px;
  top: 15px;
  right: 15px;
  bottom: -100%;
  width: calc(100% - 30px);
  height: calc(100% - 15px);
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.parkList .items:hover .imgs img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.parkList .items:hover .describe {
  bottom: 0;
}
.parkList .items:hover::after {
  bottom: 15px;
  opacity: 1;
}
