@charset "UTF-8";

/*瀑布流*/
.article {
  display: block;
  margin: 0 0 30px 0;
  padding: 12px;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  transition: all 220ms;
}
.article:hover {
  box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.1);
  /*
  transform: translateY(-5px);
  transition: all 220ms;
  */
}
.article > img {
  display: block;
  width: 100%;
  margin: 0 0 15px 0;
}
.article h2 {
  text-align: left;
  font-size: 16px;
  color: #005da6;
  line-height: 22px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.article h3.Article_PublishDatetime {
  text-align: left;
  font-size: 14px;
  color: #807f7f;
  font-weight: normal;
  line-height: 30px;
  margin: 0;
}

.article h3.Article_Abstract {
  text-align: left;
  font-size: 14px;
  color: #515151;
  font-weight: normal;
  line-height: 25px;
  margin: 0 0 10px 0;
}

.wall {
  display: block;
  position: relative;
}
.wall-column {
  display: block;
  position: relative;
  /*width: 33.333333%;*/
  width: 25%;
  float: left;
  padding: 0 12px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .wall-column {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .wall-column {
    width: auto;
    float: none;
  }
}