.ontop .logo img, .ontop .logo svg {
  -webkit-filter: none;
  filter: none;
}
.ontop .hamburger-bar {
  background: #000;
  box-shadow: none;
}
.ontop .nav a {
  color: #666;
  text-shadow: none;
}
.ontop .nav a:hover {
  color: #000;
}
.ontop .nav .tw:after, .ontop .nav .en:after {
  background: #ccc;
}

.container {
  margin-top: 0;
  -moz-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

.news {
  min-height: calc(100vh - 160px - 160px - 60px);
}
.news-wrap {
  padding: 0 10vw;
}
.news-content {
  position: fixed;
  top: 160px;
  width: 35%;
}
.news-title {
  color: #000;
  font-weight: normal;
  font-size: 1.25rem;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .news-title {
  opacity: 1;
}
.news-line {
  margin: 20px 0;
  width: 1px;
  height: 0px;
  background: #ccc;
  -moz-transition: height 0.6s;
  -o-transition: height 0.6s;
  -webkit-transition: height 0.6s;
  transition: height 0.6s;
}
.show .news-line {
  height: 60px;
}
.news-text a {
  text-decoration: underline;
}
.news-img {
  margin-left: auto;
  width: 40%;
  max-width: 885px;
}
.news-img img {
  width: 100%;
  border: #ccc solid 1px;
  box-sizing: border-box;
  margin-bottom: 20px;
  opacity: 0;
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -moz-transition: opacity 0.6s, -moz-transform 0.6s;
  -o-transition: opacity 0.6s, -o-transform 0.6s;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
}
.news-img img.show {
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}
.news-close {
  position: fixed;
  bottom: 80px;
  font-size: 0.875em;
}
.news-close:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 0;
  background: #666;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.news-close:hover:after {
  width: 100%;
}

@media screen and (max-width: 1920px) {
  .news-wrap {
    padding: 0 50px;
  }
  .news-img {
    width: 50%;
  }
  .news-content {
    width: 40%;
  }
}
@media screen and (max-width: 1100px), screen and (max-height: 600px) {
  .news-content {
    position: static;
    width: auto;
    max-width: 885px;
    margin: 0 auto 40px;
  }
  .news-img {
    width: auto;
    margin: auto;
  }
  .news-close {
    position: relative;
    bottom: auto;
    width: fit-content;
    margin: 60px auto 0;
    opacity: 0;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  .news-close.show {
    opacity: 1;
  }
}
@media screen and (max-width: 640px) {
  .news-wrap {
    padding: 80px 20px 0;
  }
  .show .news-line {
    height: 40px;
  }
  .news-title {
    font-size: 1rem;
  }
}
