@import url(./common.css);

.newsList{
  background-color: #F0F0F0;
}
.newsList .content{
  width: 92rem;
  margin: 0 auto;
  padding-top: 17.7rem;
  padding-bottom: 13rem;
}
.newsList .content > .title{
  font-size: 9rem;
  color: #28A7E1;
  margin-bottom: 6rem;
}
.newsList .content .list .item{
  border-bottom: 2px solid #28A7E1;
  padding: 3rem 0;
  display: flex;
}
.newsList .content .list .item:first-child{
  border-top: 2px solid #28A7E1;
}
.newsList .content .list .item .img{
  flex: 0 0 19.8rem;
  height: 19.8rem;
  background-color: #fff;
  margin-right: 2rem;
  overflow: hidden;
  position:relative;
}
.newsList .content .list .item .img a{
	position:absolute;
	top:50%;
	transform: translateY(-50%);
}
.newsList .content .list .item .text .timer{
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.newsList .content .list .item .text .timer span{
  background-color: #28A7E1;
  color: #fff;
  padding: 1px 1rem;
  border-radius: 2rem;
  margin-left: 1rem;
  font-size: 1.2rem;
}
.newsList .content .list .item .text .title{
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.6rem;
  color: #218fc1;
  display:block;
}
.newsList .content .list .item .text .desc{
  font-size: 1.4rem;
  display:block;
}
.newsList .content .list .item .moreBtn{
  flex: 0 0 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.newsList .content .list .item .moreBtn span{
  width: 3rem;
  height: 3rem;
  background-color: #28A7E1;
  color: #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsList .content .pager{
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 6rem;
}
.newsList .content .pager .num{
  margin-right: 2rem;
  color: #28A7E1;
  cursor: pointer;
}
.newsList .content .pager .num.active{
  color: #BCBCBC;
}
.newsList .content .pager .num:hover{
  opacity: .8;
}
@media (max-width: 1200px){
  .newsList .content{
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 1000px){
  .newsList .content{
    padding-top: 6rem;
    padding-bottom: 6rem;
    width: 100%;
  }
  .newsList .content > .title{
    font-size: 7rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 750px){
  .newsList .content{
    padding-top: 4rem;
    padding-bottom: 4rem;
    width: 100%;
  }
  .newsList .content > .title{
    font-size: 5rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px){
  .newsList .content{
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
  }
  .newsList .content > .title{
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
  .newsList .content .list .item .img{
    flex: 0 0 15rem;
    height: 15rem;
  }
  .newsList .content .list .item .text .title{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .newsList .content .list .item .text .desc{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.newsInfo{
  background-color: #F0F0F0;
}
.newsInfo .top{
  width: 138rem;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 21rem;
}
.newsInfo .top .backBtn{
  cursor: pointer;
}
.newsInfo .top .backBtn a{
  display: flex;
  align-items: center;
}
.newsInfo .top .backBtn a span{
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #28A7E1;
  color: #fff;
  border-radius: 100%;
  margin-right: 1rem;
}
.newsInfo .content{
  width: 84rem;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 6rem;
  padding-bottom: 13rem;
}
.newsInfo .content .date{
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.newsInfo .content .date span{
  background-color: #28A7E1;
  padding: 1px 1rem;
  font-size: 1.2rem;
  color: #fff;
  margin-left: 1rem;
  border-radius: 20px;
}
.newsInfo .content .title{
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 4.6rem;
}
@media (max-width: 1200px){
  .newsInfo .top{
    padding-top: 5rem;
  }
  .newsInfo .content{
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 1000px){
  .newsInfo .content{
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
  .newsInfo .content .title{
    margin-bottom: 3rem;
  }
}
@media (max-width: 750px){
  .newsInfo .top{
    padding-top: 3rem;
  }
  .newsInfo .top .backBtn a span{
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
  .newsInfo .content{
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
  .newsInfo .content .title{
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}