/* download */

html, body, #app {
  height: 100%;
  background-color: #f5f5f5;
}
.top {
  border-bottom: 1px solid #D5D5D5;
}
.content-download-inner {
  justify-content: space-between;
}
.download-item {
  padding: 40px;
  margin: 20px 0;
  border-right: 4px;
  background: none;
  box-shadow: none;
  animation: fadeOut 0.5s ease forwards;
}
.download-item:hover {
  background-size: cover;
  animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  from {
    background: none;
    box-shadow: none;
  }
  to {
    background: url(../img/download-icon-bg.png) no-repeat;
    box-shadow: 0px 4px 28px 0px rgba(0,0,0,0.12);
  }
}
@keyframes fadeOut {
  from {
    background: url(../img/download-icon-bg.png) no-repeat;
    box-shadow: 0px 4px 28px 0px rgba(0,0,0,0.12);
  }
  to {
    background: none;
    box-shadow: none;
  }
}
.download-item-img {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-item-title {
  font-size: 24px;
  margin-bottom: 4px;
}
.download-item-text {
  color: #666;
  font-size: 14px;
  line-height: 20px;
}
.download-item-nav {
  margin: 15px 0;
  padding: 4px 20px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  background-color: #007D92;
  cursor: pointer;
}
.download-item-log {
  color: #047DED;
}

.content-copyright {
  padding: 50px 0;
  color: #666;
  background-color: #EBEBEB;
}

@media only screen and (max-width: 991px) {
  .content-download-inner {
    justify-content: center;
  }
}
