.newsPage {
  background: #fff;
}
.newsPage .webPage {
  margin-top: 5%;
}
.list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.list .item {
  width: 100%;
  position: relative;
  background: transparent;
  transition: 0.5s;
  margin-bottom: 18px;
}
.list .item .indexPage-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list .item .name {
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 24px;
  transition: 0.5s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.list .item .desc {
  margin-top: 18px;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.list .item .time-outer {
  width: 100px;
  height: 100px;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.list .item .time-outer .day {
  font-weight: bold;
  font-size: 30px;
  color: #333333;
  line-height: 32px;
  font-family: 'Montserrat-Bold';
  transition: 0.5s;
}
.list .item .time-outer .time {
  font-weight: 400;
  font-size: 14px;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid #EFEFEF;
  color: #666666;
  line-height: 24px;
  font-family: 'Montserrat-Regular';
  transition: 0.5s;
}
.list .item .item-main {
  width: calc(95% - 100px);
  padding: 50px 0;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
.list .item .item-main .newsMore {
  position: absolute;
  right: 0;
  opacity: 0;
  bottom: -18px;
  transform: translateX(-12px);
  transition: 0.5s;
}
.list .item:hover .time-outer {
  border: 1px solid #E6252D;
  background: #E6252D;
  transition: 0.5s;
}
.list .item:hover .time-outer .day {
  color: #fff;
  transition: 0.5s;
}
.list .item:hover .time-outer .time {
  opacity: 0.8;
  border-top: 1px solid rgba(239, 239, 239, 0.5);
  color: #fff;
  transition: 0.5s;
}
.list .item:hover .item-main .newsMore {
  opacity: 1;
  transform: translateX(0);
  transition: 0.5s;
}
.list .item:nth-of-type(1) .item-main {
  border-top: 1px solid #DDDDDD;
}
@media (max-width: 1281px) {
  .list .item .item-main {
    padding: 40px 0;
  }
}
@media (max-width: 1025px) {
  .list .item .time-outer .time {
    margin-top: 6px;
    padding-top: 4px;
  }
  .list .item .time-outer .day {
    font-size: 26px;
    line-height: 30px;
  }
  .list .item .item-main {
    padding: 30px 0;
  }
  .list .item .desc {
    margin-top: 14px;
  }
  .newsPage .webPage {
    margin-top: 50px;
  }
}
@media (max-width: 921px) {
  .list .item .name {
    font-size: 16px;
  }
  .list .item .item-main {
    padding: 22px 0;
  }
  .list .item .desc {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .list .item .item-main {
    width: calc(95% - 76px);
  }
  .list .item .time-outer {
    width: 76px;
    height: 76px;
    border-radius: 6px;
  }
  .list .item .time-outer .day {
    font-size: 20px;
    line-height: 24px;
  }
  .list .item .time-outer .time {
    font-size: 12px;
    line-height: 22px;
  }
  .list .item .desc {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 521px) {
  .list .item .item-main {
    width: calc(95% - 62px);
  }
  .list .item .time-outer {
    width: 62px;
    height: 62px;
    border-radius: 4px;
  }
  .list .item .time-outer .day {
    font-size: 18px;
    line-height: 20px;
  }
  .list .item .time-outer .time {
    margin-top: 4px;
    padding-top: 2px;
  }
  .list .item .name {
    font-size: 14px;
  }
  .list .item .desc {
    margin-top: 8px;
  }
}
@media (max-width: 340px) {
  .list .item .name {
    -webkit-line-clamp: 2;
  }
  .list .item .desc {
    -webkit-line-clamp: 3;
  }
}
