
#news .select-wrap {
  display: flex;
  justify-content: flex-end;
  margin: 4.2vw 8.33vw 0;
  font-size: 1.04vw;
  overflow: hidden;
}
#news .selected {
  color: #0e0e0e;
  cursor: pointer;
  animation-name: fadeIn;
  animation-duration: 0.6s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}
#news .select {
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-delay: 0.1s;
  color: #6b6b6b;
  display: flex;
  margin-right: -100%;
}
#news .select li,
#news .select span {
  cursor: pointer;
  padding: 0 1vw;
}
#news .select li:hover,
#news .select span:hover {
  color: #0e0e0e;
}
#news .select li a,
#news .select li a:visited {
  color: #0e0e0e;
}
#news .select li {
  animation-name: fadeIn;
  animation-delay: 0.8s;
}
#news .select span {
  margin-top: -0.1vw;
}
#news ul.list {
  padding: 0 6vw 4vw;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
}
#news ul.list::before {
  content: '';
  width: 2.08vw;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
}
#news ul.list::after {
  content: '';
  width: 2.08vw;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 6.25vw;
  top: 0;
}
#news ul.list li {
  border-bottom: 1px solid rgba(51,51,51,.08);
  padding: 3vw 1.9vw 3vw;
}
#news ul.list .img-wrap {
  width: 25vw;
  height: 14.58vw;
  background: #979797;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2vw;
}
#news ul.list .img-wrap img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
#news ul.list .date {
  font-size: 1.5vw;
  font-weight: 400;
  color: #353636;
  letter-spacing: 1px;
  margin-bottom: 0.2vw;
}
#news ul.list .title {
  font-size: 1.04vw;
  font-weight: 400;
  color: #858585;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 25vw;
}
#news .page-wrap {
  margin-bottom: 4.58vw;
  font-size: 1.3vw;
  color: #979797;
  text-align: center;
}
#news .page-wrap ul.pagination {
  display: inline-flex;
}
#news .page-wrap li {
  padding: 0 0.7vw;
  margin: 0 0.7vw;
  cursor: pointer;
}
#news .page-wrap li.disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
#news .page-wrap li.active,
#news .page-wrap li:hover {
  transition: 0.2s;
  color: #3c0162;
}
#news .page-wrap li:first-child,
#news .page-wrap li:last-child {
  /*margin-top: -0.1vw;*/
}
#news .page-wrap li a:link {
  color: #353636;
}
#news .page-wrap li a:visited {
  color: #353636;
}
#news .page-wrap li a:hover {
   color: #3c0263;
}

