
/* 新闻列表 */
.article-info {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 73rem;
  background: linear-gradient(180deg, #8D8D9F 0%, #484955 100%);
  
}
.article-info-container {
  width: var(--maxWidth);
  min-width: 1180px;
  min-height: 73rem;
  z-index: 1;
  padding: 1.875rem 2.5rem 5.625rem 2.5rem;
}
.article-info-tab-list {
  min-width: 1180px;
}
.article-info-tab {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 10px 0px 10px 0px;
  padding: 10px 20px;
  margin-right: 20px;
  cursor: pointer;
}
.article-info-tab-on {
  background: #D41B19;
  border: none;
}
.article-info-search {
  width: 12.5rem;
  height: auto;
  overflow: hidden;
  padding-bottom: 9px;
  border-bottom: 1px solid #fff;
}
.article-info-search input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  margin-left: 5px;
  font-size: 14px;
}
.article-info-search input::placeholder{
  color: #B8B8B8;
}
.article-news {
  position: relative;
  min-width: 1180px;
  padding: 30px 0 50px 0;
}
.article-news-content {
  flex-wrap: wrap;
  display: flex;
  /* justify-content: space-between; */
}


.article-news-item {
  position: relative;
  width: 340px;
  height: 370px;
  background: #FFFFFF;
  box-shadow: 10px 10px 20px 1px rgba(0,0,0,0.25);
  border-radius: 20px 0px 20px 0px;
  cursor: pointer;
  overflow: hidden;
  margin: 0 calc((100% - 1020px) / 2) 50px 0;
  opacity: 0;
}
.move-ani {
  animation: news-ani .6s normal both;
}
/* .move-ani:nth-of-type(3n+1) {
  animation-delay: .5s;
}
.move-ani:nth-of-type(3n+2) {
  animation-delay: .8s;
}
.move-ani:nth-of-type(3n+3) {
  animation-delay: 1s;
} */

@keyframes news-ani {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.article-news-item:nth-of-type(3n) {
  margin: 0 0 50px 0;
}
.article-news-item-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.8);
  z-index: 1;
  font-size: 1.125rem;
  color: #fff;
  cursor: pointer;
  padding: 25px 20px;
  line-height: 28px;
  opacity: 0;
  /* transform: translate3d(0px, 0px, 0px) translateZ(0px); */
}
.new-item-ani-1 {
  transform: translate3d(0px, 0px, 0px) translateZ(0px);
  animation: hover-show-ani .8s ease;
  opacity: 1;
}
@keyframes hover-show-ani {
  from {
    transform: translate3d(0px, 300px, 0px) translateZ(0px);
    opacity: 0;
  }

  to {
    border-radius: 20px 0px 20px 0px;
    transform: translate3d(0px, 0px, 0px) translateZ(0px);
    opacity: 1;
  }
}
.new-item-ani-2 {
  transform: translate3d(0px, 300px, 0px) translateZ(0px);
  animation: hover-hide-ani .8s ease;
  opacity: 0;
}
@keyframes hover-hide-ani {
  from {
    border-radius: 20px 0px 20px 0px;
    transform: translate3d(0px, 0px, 0px) translateZ(0px);
    opacity: 1;
  }

  to {
    transform: translate3d(0px, 300px, 0px) translateZ(0px);
    opacity: 0;
  }
}
.article-news-item-hover-title {
  width: 300px;
  min-height: 56px;
  font-weight: bold;
}
.article-news-item-hover-desc {
  width: 300px;
  min-height: 200px;
  display: block;
  overflow:hidden; 
  text-overflow:ellipsis;
  display:-webkit-box; 
  -webkit-box-orient:vertical;
  -webkit-line-clamp:7;
  padding-top: 1rem;
  border-top: 1px solid #777777;
  margin-top: 1rem;
  text-align: justify;
}
.article-news-item-img {
  width: 100%;;
  height: 220px;
  border-radius: 20px 0px 20px 0px;
  object-fit: cover;
}

.article-news-item-content {
  width: 100%;
  height: 150px;
}

.article-news-item-title {
  font-size: 16px;
  width: 90%;
  font-weight: 600;
}
.article-news-item-red {
  color: #D41B19;
}
.article-news-item-yellow {
  color: #EF9D1A;
}
.article-news-item-date {
  color: #A5A5AA;
}
.article-news-item-desc {
  width: 90%;
  height: 50px;
  text-align: left;
  font-size: 18px;
  margin: 10px 0;
  color: #111;
}
.article-news-item-icon {
  width: 90%;
  text-align: left;
  z-index: 2;
}
.article-build {
  position: absolute;
  bottom: 0;
  width: var(--maxWidth);
  height: auto;
}

.article-build-1 {
  position: absolute;
  width: 153px;
  height: 511px;
  left: 0;
  bottom: 0;
}

.article-build-2 {
  position: absolute;
  width: 438px;
  height: 119px;
  right: 0;
  bottom: 0;
}

.ariticle-empty {
  position: relative;
  width: 100%;
  height: 40rem;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 32px;
  margin-top: 20rem;
  opacity: 0;
}
.ariticle-empty-ani {
  animation: empty-ani .5s ease .5s  normal both;
}
@keyframes empty-ani {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.ariticle-desc {
  font-size: 16px;
  font-weight: 400;
}

.loading {
  position: relative;
  width: 100%;
  height: 40rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.circle-loading {
  position: relative;
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  border-top-color: rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  animation: circle infinite 1s linear;
}

@keyframes circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}



@media screen and (min-width: 0px) and (max-width: 768px) {
  .article-info-container{
    min-width: 100%;
    max-width: var(--maxWidth);
    padding: 1.875rem 1.25rem 11rem 1.25rem
  }
  .article-news{
    min-width: 0;
    max-width: var(--maxWidth);
    margin: 0 auto;
    padding: 30px 0;
  }
  .article-info-tab-list{
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .article-info-tab{
    padding: 10px 20px;
    margin-right: 10px;
  }
  .article-info-search{
    order: -1;
    width: 100%;
  }
  .article-tab-list{
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }
  .pagination-item-li {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 10px 0px 10px 0px;
  }
  .article-news-content {
    flex-direction: column;
    align-items: center;
  }
  .article-news-item{
    margin: 0 auto 1.25rem auto;
    width: 350px;
  }
  .article-build-1 {
    width: 5rem;
    height: 10.25rem;
    left: 1.5rem;
    bottom: 0;
  }
  .article-build-2 {
    width: 16.375rem;
    height: 5rem;
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 959px) {
  .article-info-container {
    min-width: 100%;
    max-width: var(--maxWidth);
  }
  .article-news {
    min-width: var(--maxWidth);
    max-width: var(--maxWidth);
  }
  .article-info-tab-list {
    min-width: 0;
  }
  .article-news-content {
    width: 100%;
    min-width: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .article-news-item {
    margin: 0 max(calc((100% - 1020px) / 2),30px) 50px 0;
  }
}



@media screen and (min-width: 960px) and (max-width: 1399px) {
  .article-info-container{
    min-width: 100%;
    max-width: var(--maxWidth);
  }
  .article-news{
    min-width: 100%;
  }
  .article-info-tab-list {
    min-width: 0;
  }
  .article-news-content {
    min-width: 0;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1900px) {
}

@media screen and (min-width: 1901px) and (max-width: 5000px) {

}