#article {
  background-color: var(--backColor);
}

#article .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#article .top .home-title {
  width: 400px;
  color: #fff;
  text-align: left;
}

#article .top .home-title b {
  border-bottom: 0;
  max-width: 100%;
  text-align: left;
}

#article .top .home-title b::after {
  content: "_";
  display: block;
  border-top: 0;
  width: auto;
  left: 0;
  transform: none;
}

#article .top .home-title p {
  color: #fff;
  width: 100%;
  text-align: left;
}

#article .top .right {
  width: calc(100% - 400px);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--titleColor);
  border-top: 1px solid var(--titleColor);
  padding: 40px 0 0;
}

#article .top .right .item {
  width: 25%;
  box-sizing: border-box;
  padding: 0 10px;
  margin-bottom: 40px;
}

#article .top .right .item .title {
  color: #fff;
}

#article .top .right .item span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  min-height: 3em;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--titleColor);
}

#article .top .right .item a {
  color: var(--dataColor);
}

#article .top .p12-pagination-1-main {
  width: 100%;
}

#article #map {
  width: 100%;
  height: 550px;
  font-size: 12px;
}

@media screen and (max-width: 600px) {
  #article .top {
    flex-direction: column;
  }
  #article .top .right {
    width: 100%;
  }
  #article .top .right .item {
    width: 50%;
  }
}
