@import url("https://fonts.googleapis.com/css?family=DM+Sans&display=swap");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");
.top-pic {
  background-position: 15% top;
}

.news {
  padding: 100px 0 50px;
}
.news-box {
  padding: 120px 0;
}
.news-box a {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
}
.news-box a .point {
  width: 80px;
  height: 80px;
  font-size: 18px;
  color: #fff;
  background-color: rgba(226, 215, 150, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  cursor: none;
  z-index: 5;
  opacity: 0;
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -moz-transition: opacity 0.2s, -moz-transform 0.2s;
  -o-transition: opacity 0.2s, -o-transform 0.2s;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
}
.news-box a:hover {
  color: #666;
}
.news-box a:hover .point {
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.news-box:nth-child(odd) .news-content {
  border-right: 1px solid #c1b067;
}
.news-box:nth-child(even) a {
  flex-direction: row-reverse;
}
.news-box:nth-child(even) .news-content {
  border-left: 1px solid #c1b067;
}
.news-inner {
  width: 80%;
  max-width: 1100px;
  margin: auto;
}
.news-pic {
  width: 60%;
}
.news-pic img {
  width: 100%;
}
.news-title {
  font-size: 18px;
  padding: 0px 0px 10px 0px;
  color: #000;
}
.news-content {
  max-width: 28%;
  padding: 0 50px;
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.news li {
  margin: 5px 0;
  position: relative;
}
.news .num {
  color: #888;
}
.news .line {
  padding-left: 33px;
}

a {
  color: #292b33;
}

.news-title:after {
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -moz-transition: -moz-transform 0.8s;
  -o-transition: -o-transform 0.8s;
  -webkit-transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.news-title.show:after {
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.team-title:after {
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -moz-transition: -moz-transform 0.8s;
  -o-transition: -o-transform 0.8s;
  -webkit-transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.team-title.show:after {
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

@media screen and (max-width: 1100px) {
  .news-box {
    padding: 50px 0;
  }
  .news-box a {
    display: block;
  }
  .news-box a .point {
    display: none;
  }
  .news-box:nth-child(odd) .news-content {
    border-right: none;
    border-left: 1px solid #c1b067;
  }
  .news-pic {
    width: 100%;
  }
  .news-content {
    width: 100%;
    max-width: unset;
    box-sizing: border-box;
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .news-box {
    padding: 20px 0;
  }
  .news-content {
    width: 100%;
    max-width: unset;
    padding: 0 30px;
    box-sizing: border-box;
    margin-top: 25px;
  }
}
@media screen and (max-width: 460px) {
  .news-inner {
    width: 90%;
  }
  .news-box {
    padding: 30px 0;
  }
  .news-mtext {
    font-size: 30px;
  }
  .news-mtext span {
    font-size: 25px;
  }
}
