
.box-top-news{
  margin: 5px auto;
  padding: 10px 2px;
  font-size: 14px;
  background: #FAFAFA;
  
}

.box-top-news .center{
  justify-content: normal;
  text-align: center;
}

.control-box-top-news{
  cursor: pointer;
  color: #ffffff;
  background: #ABCAF9;
  display: inline-block;
  font-size:20px;
  width:20px;
  height:20px;
  text-align: center;
  line-height:17px;
}

.box-top-news-header{
  box-sizing: border-box;
  margin: 0px;
  min-width: 0px;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.box-top-news-header-title{
  font-size:16px;
  line-height:16px;
}

.box-top-news-header-more{
  line-height: 1.75rem;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  background-color: #eeeeee;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.box-top-news-header-more a{
  color: #000000;
}

.box-top-news-content{
  box-sizing: border-box;
  padding-left: 2px;
  padding-right: 2px;
  margin-top: 5px;
  margin-bottom: 5px;
  
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 2%;
}

.box-top-news-link{

}

.box-top-news-content-container{
  
  margin-top: 6px;
  margin-bottom: 6px;
}

.box-top-news-content-container .box-top-news-img{
  transition: all .5s;
}
.box-top-news-content-container:hover .box-top-news-img{
  transform:scale(1.1);
}

.box-top-news-content-container a{
  color:#000000;
}

.box-top-news-content-card{
  display: flex;
  flex-direction: column;
  background: #EAECF4;
}


.box-top-news-img-container{
  width: 100%;
  position:relative;
  text-align: center;
  overflow: hidden;
}

.box-top-news-img{
  width: 100%; 
  /* max-width: 100%; */
  height: 230px;
  object-fit: cover;
}



.box-top-news-item-container{
  /* display: grid; */
  /* grid-template-columns:4fr 1fr; */
  /* grid-template-rows:2fr 1fr; */
  gap: 5px;
  
  padding: 10px;
}


.box-top-news-item-container .box-top-news-item-title{
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
  
  min-height:90px;
  font-size:1.2rem;
  
}

.box-top-news-item-container .box-top-news-item-title:hover{
  text-decoration:none;
  /* text-decoration-line: underline; */
  /* text-underline-position: under; */
  /* text-underline-offset: 0px; */
  color: orange;   
}

.box-top-news-item-container .box-top-news-item-datetime{
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 3;
  grid-row-end: 4;
  
  font-size: 0.75rem;
  color: #999999;
}

.box-top-news-item-container .box-top-news-item-source{
  grid-column-start: 4;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 4;
  
  width: 60px;
}

.box-top-news-item-container .box-top-news-item-source .item-source-box{
  border-color: rgba(0, 0, 0, 0.12);
  border-width: 0px;
  border-style: solid;
  border-radius: 5px;
  box-sizing: border-box;
  
  width: 65px;
  height: 25px;
  text-align: center;
  line-height: 27px;
  
  font-size: 0.75rem;
  color: #ffffff;
  font-weight:800;
  /* transform: translateY(25%); */
  margin-bottom: 5px;
}

@media screen and (max-width:1024px){
  .box-top-news-content{
    grid-template-columns: 1fr 1fr;
    column-gap: 2%;
  }
}

@media screen and (max-width:900px){
  .box-top-news{
    width: 100%;
  }
}

@media screen and (max-width:768px){
  
  
  .box-top-news-content{
    grid-template-columns: 1fr;
  }
  
  .box-top-news-content-container{
    width: 100%;
  }
  
  .box-top-news-content-card{
    display: grid;
    grid-template-columns: 1fr 3fr;
  }
  
  .box-top-news-img-container{
    
  }
  
  .box-top-news-img{
    height:120px;
  }
  
  .box-top-news-item-container .box-top-news-item-title{
    min-height:70px;
    font-size:1rem;
  }
  
  .box-top-news-item-container .box-top-news-item-source .item-source-box{
    /* transform: translateY(25%); */
  }
}

@media screen and (max-width:600px){
  .box-top-news-content-card{
    grid-template-columns: 1fr 2fr;
  }
  
}