* {
  box-sizing: border-box;
}
.flow {
  position: relative;
}
.flow::after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}
.news-filter {
  margin: 80px 0;
}
.news-filter .content {
  display: flex;
  justify-content: space-between;
}
.news-filter .content .el-input {
  width: 200px;
}
.news-list-item {
  border-top: 1px solid #e5e5e5;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-start;
}
.news-list-item:hover .date {
  background-color: #A58F5A;
  color: white;
}
.news-list-item:hover .info {
  color: #A58F5A;
}
.news-list-item .date {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  background-color: rgba(165, 143, 90, 0.3);
  transition: 0.3s all;
  color: #333;
}
.news-list-item .date .date-d {
  font-size: 32px;
}
.news-list-item .date .date-y {
  font-size: 22px;
  width: 80px;
  text-align: center;
  padding-left: 10px;
}
.news-list-item .date .date-y p {
  margin: 20px 0;
}
.news-list-item .info {
  padding: 30px 0 0 50px;
  width: calc(100% - 150px);
  display: flex;
  cursor: pointer;
  color: #333;
}
.news-list-item .info .info-l {
  width: 80%;
}
.news-list-item .info .info-l .info-l-title {
  transition: 0.3s all;
  font-size: 22px;
  line-height: 1.5;
}
.news-list-item .info .info-l .info-l-name {
  margin-top: 15px;
  font-size: 18px;
  transition: 0.3s all;
}
.news-list-item .info .info-l .info-l-desc {
  margin-top: 20px;
  transition: 0.3s all;
  line-height: 2;
}
.news-list-item .info .info-r {
  width: 20%;
  text-align: right;
  margin-top: 3vw;
}
.news-list-item .info .info-r .link-btn {
  background-image: none;
  background-color: white;
  border: 1px solid #A58F5A;
  color: #A58F5A;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.3s all;
}
.news-list-item .info .info-r .link-btn:hover {
  background-image: linear-gradient(#dbae6d, #A58F5A);
  color: white;
  border: 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}
.page_div {
  padding: 80px 0;
}
.new-detail {
  padding: 100px 0;
}
.new-detail .title {
  font-size: 24px;
}
.new-detail .date {
  margin-top: 15px;
  display: flex;
}
.new-detail .date span {
  margin-right: 50px;
  color: #999;
}
.new-detail .inner {
  margin-top: 50px;
  line-height: 1.5;
}
.new-detail .link {
  display: flex;
  justify-content: space-around;
  margin-top: 100px;
}
.new-detail .link a {
  width: 45%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: 20px;
}
.new-detail .link a.no {
  color: #999;
}
.new-detail .hots {
  margin-top: 100px;
}
.new-detail .hots .host-title {
  font-size: 24px;
}
.new-detail .hots .host-list {
  margin-top: 50px;
}
.new-detail .hots .host-list a {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  width: 50%;
  display: flex;
  justify-content: space-between;
}
.new-detail .hots .host-list a:hover {
  color: #A58F5A;
}
.new-detail .hots .host-list a span {
  width: calc(100% - 110px);
}
.new-detail .hots .host-list a span:last-child {
  width: 100px;
  text-align: right;
}
@media (max-width: 800px) {
  .news-filter {
    margin: 5vw 0;
  }
  .news-filter .content {
    display: flex;
    justify-content: space-between;
  }
  .news-filter .content .el-input {
    width: 30vw;
  }
  .news-list-item {
    border-top: 1px solid #e5e5e5;
    padding-bottom: 5vw;
    display: flex;
    align-items: flex-start;
  }
  .news-list-item:hover .date {
    background-color: #A58F5A;
    color: white;
  }
  .news-list-item:hover .info {
    color: #A58F5A;
  }
  .news-list-item .date {
    padding: 2vw;
    display: flex;
    align-items: center;
    background-color: rgba(165, 143, 90, 0.3);
    transition: 0.3s all;
    color: #333;
  }
  .news-list-item .date .date-d {
    font-size: 4vw;
  }
  .news-list-item .date .date-y {
    font-size: 3.5vw;
    width: 12vw;
    text-align: center;
    padding-left: 2vw;
  }
  .news-list-item .date .date-y p {
    margin: 2vw 0;
  }
  .news-list-item .info {
    padding: 3vw 0 0 5vw;
    width: calc(100% - 15vw);
    display: flex;
    cursor: pointer;
    color: #333;
    flex-wrap: wrap;
  }
  .news-list-item .info .info-l {
    width: 100%;
  }
  .news-list-item .info .info-l .info-l-title {
    transition: 0.3s all;
    font-size: 4vw;
    line-height: 1.5;
  }
  .news-list-item .info .info-l .info-l-name {
    margin-top: 3vw;
    font-size: 3.5vw;
    transition: 0.3s all;
  }
  .news-list-item .info .info-l .info-l-desc {
    margin-top: 3vw;
    transition: 0.3s all;
    line-height: 2;
  }
  .news-list-item .info .info-r {
    width: 100%;
    text-align: right;
  }
  .news-list-item .info .info-r .link-btn {
    background-image: none;
    background-color: white;
    border: 1px solid #A58F5A;
    color: #A58F5A;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: 0.3s all;
  }
  .news-list-item .info .info-r .link-btn:hover {
    background-image: linear-gradient(#dbae6d, #A58F5A);
    color: white;
    border: 0;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
  }
  .page_div {
    padding: 6vw 0;
  }
  .new-detail {
    padding: 8vw 0;
  }
  .new-detail .title {
    font-size: 5vw;
  }
  .new-detail .date {
    margin-top: 3vw;
    display: flex;
  }
  .new-detail .date span {
    margin-right: 3vw;
    color: #999;
  }
  .new-detail .inner {
    margin-top: 5vw;
    line-height: 1.5;
  }
  .new-detail .link {
    display: flex;
    justify-content: space-around;
    margin-top: 5vw;
  }
  .new-detail .link a {
    width: 45%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    font-size: 4vw;
  }
  .new-detail .link a.no {
    color: #999;
  }
  .new-detail .hots {
    margin-top: 5vw;
  }
  .new-detail .hots .host-title {
    font-size: 4vw;
  }
  .new-detail .hots .host-list {
    margin-top: 5vw;
  }
  .new-detail .hots .host-list a {
    margin-bottom: 3vw;
    font-size: 3.5vw;
    color: #333;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .new-detail .hots .host-list a:hover {
    color: #A58F5A;
  }
  .new-detail .hots .host-list a span {
    width: calc(100% - 110px);
  }
  .new-detail .hots .host-list a span:last-child {
    width: 100px;
    text-align: right;
  }
}
