@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");
.main {
  margin-top: 60px;
}

.select {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0;
}
.select li {
  margin: 0 15px;
}
.select li a {
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.select li a:hover {
  color: #e2a688;
}
.select .open a {
  color: #e2a688;
}

.news-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1400px;
  margin: auto;
}
.news-list {
  width: 30%;
  margin: 0 calc(10% / 6) 100px;
}
.news-list:hover .news-date {
  color: #e2a688;
}
.news-list:hover .news-view {
  color: #e2a688;
}
.news-list:hover .news-view:before {
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.news-list:hover .news-view:after {
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.news-list:hover .news-pic img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news-pic {
  width: 100%;
  overflow: hidden;
}
.news-pic img {
  width: 100%;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.news-content {
  position: relative;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
}
.news-date {
  color: #999;
  font-size: 12px;
  position: relative;
  height: 16px;
  -moz-transition: color 0.5s;
  -o-transition: color 0.5s;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
.news-date span {
  padding-right: 15px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.news-date:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
  z-index: 0;
}
.news-name {
  min-height: 65px;
  font-size: 14px;
  color: #000;
  padding: 20px 0;
}
.news-view {
  position: absolute;
  bottom: 20px;
  right: 40px;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news-view:before {
  content: "";
  height: 11px;
  width: 1px;
  position: absolute;
  top: 50%;
  left: -15px;
  background-color: #e2a688;
  -moz-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.news-view:after {
  content: "";
  height: 1px;
  width: 11px;
  position: absolute;
  top: 50%;
  left: -20px;
  background-color: #e2a688;
  -moz-transform: translateY(-50%) rotate(0);
  -ms-transform: translateY(-50%) rotate(0);
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
  -moz-transition: -moz-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

@media screen and (max-width: 1100px) {
  .news-box {
    justify-content: space-between;
  }
  .news-list {
    width: 48%;
    margin: 0 0 50px;
  }
  .news-content {
    background-color: #f7f7f7;
  }
  .news-date {
    color: #e2a688;
  }
  .news-date span {
    background-color: #f7f7f7;
  }
  .news-view {
    color: #ccc;
  }
}
@media screen and (max-width: 680px) {
  .news-box {
    width: 80%;
  }
  .news-list {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .select {
    display: block;
    margin: 0 10%;
    padding: 50px 0 30px;
  }
  .select li {
    margin: 0;
    padding: 5px 0;
  }
}
@media screen and (max-width: 460px) {
  .select {
    margin: 0 20px;
  }

  .news-box {
    width: unset;
    margin: 0 20px;
  }
}
