.wrap {
  width: 1000px;
  margin: 0 auto;
}
.page-title {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.9);
}
.news-page {
  margin-bottom: 100px;
}
.news-section .main {
  /*display: flex;
        justify-content: space-around;*/
  padding: 0 40px;
}
.news-section .main .news {
  width: 100%;
}
.news-section .main .news .item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  cursor: pointer;
  transition: all 0.4s;
}
.news-section .main .news .item .time-label {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  top: -20px;
  left: 13px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
}
.news-section .main .news .item .time-label .time-num {
  font-size: 46px;
  margin-right: 6px;
  line-height: 42px;
  color: #0080ff;
}
.news-section .main .news .item .cover {
  width: 200px;
  border-radius: 0px 16px 16px 16px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.news-section .main .news .item .cover .cover-img {
  height: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.news-section .main .news .item .cover .cover-img:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  background: rgba(255, 255, 255, 0);
  height: 24px;
  width: 24px;
  border-top-left-radius: 15px;
  box-shadow: -5px -5px 0 2px #000;
}
.news-section .main .news .item .cover .cover-img a {
  border-radius: 18px;
  overflow: hidden;
}
.news-section .main .news .item .cover .cover-img a img {
  width: 100%;
  height: 100%;
}
.news-section .main .news .item .cover .cover-img .cover-border {
  border-bottom-right-radius: 10px;
  height: 30px;
  width: 50px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  transform: skew(-34deg);
  box-shadow: -10px -10px 0 0 #000;
}
.news-section .main .news .item .cover .cover-img .cover-border:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  right: -15px;
  background: rgba(255, 255, 255, 0);
  border-top-left-radius: 10px;
  box-shadow: -5px -5px 0 2px #000;
}
.news-section .main .news .item .info {
  position: relative;
  margin-left: 30px;
  width: 100%;
}
.news-section .main .news .item .info .ften {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 16px;
}
.news-section .main .news .item .info .ften .word-count {
  width: 90px;
  margin-left: 60px;
  flex-shrink: 0;
}
.news-section .main .news .item .info .ften .word-count .num {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}
.news-section .main .news .item .info .ften .word-count .text {
  font-size: 12px;
  color: #b3b3b3;
}
.news-section .main .news .item .info .ften .new-title {
  font-size: 22px;
  font-weight: 700;
}
.news-section .main .news .item .info .ften .new-title a {
  transition: all 0.4s;
}
.news-section .main .news .item .info .new-desc {
  font-size: 13px;
  color: #aaa;
  margin-top: 10px;
  width: 80%;
}
.news-section .main .news .item .info .time {
  font-size: 12px;
  letter-spacing: 0;
  color: #ccc;
  position: absolute;
  bottom: 8px;
  left: 0;
}
.news-section .main .news .item .info .time .label-title {
  font-size: 12px;
  font-weight: 500;
  color: #FFF;
  background-color: #0080ff;
  padding: 4px 8px;
  font-style: normal;
  border-radius: 6px;
  margin-right: 16px;
}
.news-section .main .news .item .info .time i {
  font-size: 12px;
  margin: 0 4px 0 20px;
}
.news-section .main .news .item .info .go-btn {
  background-color: #000;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 8px;
  position: absolute;
  right: 10px;
  bottom: 4px;
  font-size: 13px;
  opacity: 0;
  transition: all 0.4s;
}
.news-section .main .news .item .info .go-btn i {
  color: #ffffff;
  font-size: 13px;
  margin: 2px 0 0 4px;
  display: inline-block;
}
@keyframes goRead {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(3px);
  }
}
.news-section .main .news .item:hover {
  transform: translateX(-10px);
}
.news-section .main .news .item:hover .info .ften .new-title a {
  color: #0080ff;
}
.news-section .main .news .item:hover .go-btn {
  opacity: 1;
}
.news-section .main .news .item:hover .go-btn i {
  animation: goRead 1s infinite;
}
