html,
body {
  margin: 0;
  font-family: 'Open Sans', Arial, sans-serif;
}

[v-cloak] {
  display: none;
}

img {
  max-width: 100%;
}

#app {
  margin: 50px auto;
}
#app .search-box {
  margin-bottom: 20px;
  border: 1px solid #d1d1d1;
  padding: 5px 30px;
  border-radius: 40px;
}
#app .search-box label {
  margin-right: 1%;
}
#app .search-box label i {
  line-height: 26px;
  color: #0AB38D;
}
#app .search-box input {
  line-height: 26px;
  border: none;
  width: 90%;
}
#app .search-box input:focus {
  outline: none;
}
#app .news-wrappe__item {
  border-bottom: 1px solid #d1d1d1;
  overflow: hidden;
}
#app .news-wrappe__item:last-child {
  border: none;
}
#app .news-wrappe__item--text h2 {
  margin: 0;
}
#app .news-wrappe__item--text h2 a {
  color: #212121;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
#app .news-wrappe__item--text h2 a:hover {
  color: #0AB38D;
}
#app .news-wrappe__item--text p {
  color: #606060;
}
#app .news-wrappe__item--text span {
  color: #606060;
  font-size: 0.9rem;
}
#app .news-wrappe__item--text span i {
  color: #0AB38D;
}

#footer {
  margin-top: 50px;
  background: #f2f2f2;
  padding: 15px 0;
  text-align: center;
  color: #606060;
  font-size: 0.9rem;
}
#footer a {
  color: #606060;
}
#footer a:hover {
  color: #0AB38D;
}

@media screen and (min-width: 1024px) {
  #app {
    width: 800px;
  }

  .news-wrappe__item {
    padding: 20px 0;
  }
  .news-wrappe__item img {
    float: left;
    display: block;
    width: 30%;
    margin-right: 5%;
  }
  .news-wrappe__item--text {
    float: left;
    width: 65%;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .search-box {
    margin: 20px;
  }

  .news-wrappe__item {
    padding: 20px;
    overflow: hidden;
  }
  .news-wrappe__item img {
    float: left;
    display: block;
    width: 30%;
    margin-right: 5%;
  }
  .news-wrappe__item--text {
    float: left;
    width: 65%;
  }
}
@media screen and (max-width: 480px) {
  .search-box {
    margin: 20px;
  }

  #app .news-wrappe__item {
    padding: 15px;
  }
  #app .news-wrappe__item img {
    width: 100%;
  }
  #app .news-wrappe__item--text {
    width: 100%;
  }
}