/*section*/

#section {
  padding-bottom: 80px;
}

#section .background-fluid {
  position: absolute;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

#section .background-fluid img {
  max-width: 100%;
}

#section .news-content .container-fluid:before {
  height: 72vh;
  min-height: 550px;
}

#section .news-content .item {
  height: 122px;
  margin: 0 0 20px 0;
}

#section .item-content {
  height: 122px;
  border: 1px solid #303030;
  position: relative;
}

#section .border_bottom {
  width: 68px;
  height: 4px;
  background: #C5A568;
  position: absolute;
  bottom: -1px;
  left: 15px;
  -webkit-transition: all .3s ease-in .4s;
  transition: all .3s ease-in .4s;
}

#section .border_left {
  width: 4px;
  height: 0px;
  background: #C5A568;
  position: absolute;
  bottom: 0px;
  left: -1px;
  -webkit-transition: all .18s ease-in .3s;
  transition: all .18s ease-in .3s;
}

#section .border_right {
  width: 4px;
  height: 0px;
  background: #C5A568;
  position: absolute;
  bottom: 0px;
  right: -1px;
  transition: all 0.5s ease-out;
}

#section .border_top {
  width: 0px;
  height: 4px;
  background: #C5A568;
  position: absolute;
  top: -1px;
  left: 0px;
  -webkit-transition: all .18s ease-in .1s;
  transition: all .18s ease-in .1s;
}

#section .news-content .item:hover .border_bottom {
  width: 100%;
  left: 0px;
  transition: all 0.2s ease-out;
}

#section .news-content .item:hover .border_left {
  height: 120px;
  -webkit-transition: all .18s ease-in .1s;
  transition: all .18s ease-in .1s;
}

#section .news-content .item:hover .border_right {
  height: 120px;
  -webkit-transition: all .18s ease-in .3s;
  transition: all .18s ease-in .3s;
}

#section .news-content .item:hover .border_top {
  width: 100%;
  -webkit-transition: all .18s ease-in .3s;
  transition: all .18s ease-in .3s;
}

#section .text {
  padding: 20px 20px 0 20px;
  position: relative;
  z-index: 9;
  text-align: justify;
}

#section h3 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
}

#section h5 {
  font-weight: normal;
  color: #DEDEDE;
  font-size: 12px;
  padding: 15px 0 0 0;
}

#section .img {
  width: 300px;
  height: 140px;
  position: absolute;
  top: -18px;
  right: -10px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease-out;
  -webkit-transition: all .18s ease-in .3s;
  transition: all .18s ease-in .3s;
}


/**/


/*自适应*/

@media (max-width: 767px) {}

@media (min-width: 768px) {
  #section .news-content .item {
    padding: 0 30px;
  }
}

@media (min-width: 992px) {
  #section .news-content>.container-fluid>.row {
    margin-right: -20px;
    margin-left: -20px;
  }
  #section .news-content .item {
    padding: 0 5px;
  }
}

@media (min-width: 1200px) {
  #section .news-content>.container-fluid>.row {
    margin-right: -29px;
    margin-left: -29px;
  }
  #section .news-content .item {
    padding: 0 14px;
  }
}


/**/