.basic-info {
  background: url(/static/images/news.jpg) no-repeat center center;
  background-attachment: fixed;
  padding-top: 160px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
.basic-info ul {
  overflow: hidden;
}
.basic-info li.item {
  width: 100%;
  height: 160px;
  margin-bottom: 40px;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  visibility: visible;
  animation-delay: 0.2s;
  animation-name: slideInUp;
}
.basic-info li.item .img-box {
  display: block;
  width: 240px;
  height: 160px;
  overflow: hidden;
}
.basic-info li.item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.36s ease;
}

.basic-info li.item .content {
  width: 700px;
  position: relative;
  padding-left: 40px;
  transition: 0.36s ease;
  overflow: hidden;
}

.basic-info li.item .title {
  font-size: 20px;
  padding-top: 30px;
  line-height: 28px;
  color: #fff;
}

.basic-info li.item .date {
  color: #929292;
  line-height: 18px;
  margin: 10px 0;
}

.basic-info li.item .desc {
  width: 100%;
  color: #929292;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  color: #fff;
}

.basic-info li.item .more {
  position: absolute;
  bottom: 60px;
  right: 40px;
  font-size: 14px;
  text-transform: uppercase;
  width: 160px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #929292;
  transition: 0.36s ease;
}

.basic-info li.item .more:after {
  content: '';
  z-index: -1;
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  opacity: 0;
  background: #1088d5;
  border-radius: 40px;
  transition: all 0.36s ease;
}
.basic-info li.item .more span {
  padding-left: 20px;
  transition: 0.36s ease;
}
.basic-info li.item:hover .img-box img {
  transform: scale(1.08);
}
.basic-info li.item:hover .content {
  padding-left: 50px;
}
.basic-info li.item:hover .more span {
  padding-left: 0;
  color: #fff;
}
.basic-info li.item:hover .more:after {
  opacity: 1;
  width: 100%;
  color: #fff;
}

.basic-info .page {
  text-align: center;
}
.basic-info .page .lists {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  margin: 10px 0;
  font-size: 0;
}
.basic-info .page .lists span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  padding: 0 15px;
  height: 28px;
  line-height: 28px;
  margin: 0 -1px 5px 0;
  background-color: #fff;
  color: #333;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid #e2e2e2;
}
.basic-info .page .lists span.on {
  background-color: #f26000;
  color: #fff;
  border-color: #f26000;
  cursor: default;
}
.basic-info .page .lists .prev {
  border-radius: 2px 0 0 2px;
}
.basic-info .page .lists .next {
  border-radius: 0 2px 2px 0;
}
.basic-info .page .lists span.disable-btn {
  color: #d2d2d2;
  cursor: default;
}
