.bg-black {
  background-color: rgba(36, 40, 44, 0.99);
  height: 400px;
}
.bg-ligray {
  background-color: #2c2c2c;
}

.news-top {
  background-image: url("../../img/news/news_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 66.667%;
  position: relative;
}

.news-top-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
}

.news-top-content h3 {
  font-size: 32px;
  color: #f3f3f3;
  text-align: center;
  margin-top: 0;
}

.news-top-content p {
  font-size: 14px;
  color: #f3f3f3;
  text-align: center;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .news-top {
    background-image: url("../../img/news/news_bg.jpg");
    padding-top: 23.4375%;
  }

  .news-top-content h3 {
    font-size: 50px;
    /* font-family: "黑体"; */
  }

  .news-top-content p {
    font-size: 18px;
  }
}

.content-main-wrap {
  padding: 0;
}
.content-main {
  padding: 0px;
}

.reco-wrap {
  background-color: #3e3e3e;
  padding: 10px 10px 30px;
  min-height: 500px;
  position: relative;
}
.reco-title {
  margin: 0;
  padding-bottom: 20px;
  color: #d8d8d8;
}
.reco-list {
}
.reco-list a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 20px 0;
  border-top: 1px solid #4d4d4d;
}
.reco-list li:last-child a {
  padding-bottom: 0;
}
.reco-list a > img,
.reco-list a > span {
  /*float: left; display: block;*/
}
.reco-list a > img {
  width: 30%;
}
.reco-list a > span {
  width: 70%;
  padding-left: 20px;
  color: #d8d8d8;
  vertical-align: middle;
  display: inline-block;
}
.near a {
  color: #333;
}
.reco-list a[href]:hover > span,
.near a[href] {
  color: #028be6 /*#00c1de*/;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3e3e3e;
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  -moz-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  -ms-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  -o-transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.mask.hideing {
  opacity: 0;
}
.mask.hide {
  display: none;
}
.mask .loading {
  padding: 10% 0;
  text-align: center;
}
.mask .loading .circle {
  display: inline-block;
  height: 30px;
  width: 30px;
  background-color: #ccc;
  margin-right: 15px;
  border-radius: 50%;
}

.loading .circle {
  -webkit-animation: ripple 1.8s infinite ease-in-out;
  -moz-animation: ripple 1.8s infinite ease-in-out;
  -ms-animation: ripple 1.8s infinite ease-in-out;
  animation: ripple 1.8s infinite ease-in-out;
}
.loading .circle:nth-child(1) {
  -webkit-animation-delay: -0.32s;
  -moz-animation-delay: -0.32s;
  -ms-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loading .circle:nth-child(2) {
  -webkit-animation-delay: -0.16s;
  -moz-animation-delay: -0.16s;
  -ms-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loading .circle:nth-child(3) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  animation-delay: 0s;
}
@-webkit-keyframes ripple {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes ripple {
  0%,
  80%,
  100% {
    -moz-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@-ms-keyframes ripple {
  0%,
  80%,
  100% {
    -ms-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ripple {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@media (min-width: 768px) {
  .content-main,
  .reco-wrap {
    padding: 60px 20px;
  }
}
@media (min-width: 992px) {
  .content-main {
    padding: 80px 60px;
  }
  .reco-wrap {
    padding: 20px;
  }
}

.pagination ul li a {
  color: #666;
  height: 38px;
  width: 38px;
  line-height: 38px;
  padding: 0 0;
  background-color: transparent;
  border: 1px solid #666;
}

.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  background-color: transparent;
  border-color: #666;
}

.pagination ul li.active a,
.pagination ul li a.active,
.pagination ul li a:hover {
  color: #fff;
  background-color: #028be6;
  border-color: #028be6;
}
