@charset "UTF-8";
ul.pager {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
}
ul.pager > li {
  display: inline-flex;
  min-width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin-right: 10px;
}
ul.pager > li:last-child {
  margin-right: 0px;
}
ul.pager > li a {
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0px 4px 2px 4px;
  color: #464749;
}
ul.pager > li:hover {
  background-color: #e9ecef;
}
ul.pager > li.active {
  background-color: #00aeec;
}
ul.pager > li.active a {
  color: white;
}

#app {
  width: 100%;
}
#app .main {
  width: 1200px;
  min-height: 600px;
  display: flex;
  justify-content: space-between;
}
#app .main > div > div {
  margin-bottom: 20px;
}
#app .main .left {
  width: 69%;
}
#app .main .left .selected_articles > .title .switch_article_categroy span {
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
}
#app .main .left .selected_articles > .title .switch_article_categroy span:hover {
  color: #ff9800;
}
#app .main .left .selected_articles > .title .switch_article_categroy span.active {
  color: #ff9800;
}
#app .main .left .selected_articles > .body {
  padding: 0 20px;
}
#app .main .left .selected_articles > .body > ul {
  display: flex;
  flex-wrap: wrap;
}
#app .main .left .selected_articles > .body > ul > li {
  width: 50%;
  box-sizing: border-box;
  display: flex;
  padding: 10px 0;
}
#app .main .left .selected_articles > .body > ul > li:nth-child(1), #app .main .left .selected_articles > .body > ul > li:nth-child(3), #app .main .left .selected_articles > .body > ul > li:nth-child(5) {
  border-right: 1px solid #f0eeee;
}
#app .main .left .selected_articles > .body > ul > li:nth-child(1) .right, #app .main .left .selected_articles > .body > ul > li:nth-child(3) .right, #app .main .left .selected_articles > .body > ul > li:nth-child(5) .right {
  padding-right: 10px;
}
#app .main .left .selected_articles > .body > ul > li:nth-child(2), #app .main .left .selected_articles > .body > ul > li:nth-child(4), #app .main .left .selected_articles > .body > ul > li:nth-child(6) {
  padding: 10px 0 10px 10px;
}
#app .main .left .selected_articles > .body > ul > li:nth-child(1), #app .main .left .selected_articles > .body > ul > li:nth-child(2), #app .main .left .selected_articles > .body > ul > li:nth-child(3), #app .main .left .selected_articles > .body > ul > li:nth-child(4) {
  border-bottom: 1px solid #f0eeee;
}
#app .main .left .selected_articles > .body > ul > li .left {
  width: 40%;
}
#app .main .left .selected_articles > .body > ul > li .left > div {
  width: 100%;
  height: 80px;
  overflow: hidden;
}
#app .main .left .selected_articles > .body > ul > li .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#app .main .left .selected_articles > .body > ul > li .left img:hover {
  transform: scale(1.1);
  transition: all 0.3s;
}
#app .main .left .selected_articles > .body > ul > li .right {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 10px;
  box-sizing: border-box;
}
#app .main .left .selected_articles > .body > ul > li .right h2 {
  font-size: 20px;
}
#app .main .left .selected_articles > .body > ul > li .right p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#app .main .left .selected_articles > .body > ul > li .right span {
  font-size: 14px;
  color: #555;
}
#app .main .left .all_articles > .body {
  background-color: transparent;
  padding: 0;
}
#app .main .left .all_articles > .body > ul.article_content {
  width: 100%;
}
#app .main .left .all_articles > .body > ul.article_content li {
  width: 100%;
  display: flex;
  background-color: white;
  border-radius: 5px;
  margin-bottom: 20px;
}
#app .main .left .all_articles > .body > ul.article_content li:nth-child(1) {
  border-radius: 0 0 5px 5px;
}
#app .main .left .all_articles > .body > ul.article_content li:nth-child(1) .left {
  padding: 10px 10px 20px 20px;
}
#app .main .left .all_articles > .body > ul.article_content li:nth-child(1) .right {
  padding: 10px 20px 20px 10px;
}
#app .main .left .all_articles > .body > ul.article_content li .left {
  width: 30%;
  box-sizing: border-box;
  padding: 20px 10px 20px 20px;
}
#app .main .left .all_articles > .body > ul.article_content li .left > div {
  width: 100%;
  height: 120px;
  border-radius: 5px;
  overflow: hidden;
}
#app .main .left .all_articles > .body > ul.article_content li .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#app .main .left .all_articles > .body > ul.article_content li .left img:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
#app .main .left .all_articles > .body > ul.article_content li .right {
  width: 70%;
  padding: 20px 20px 20px 10px;
}
#app .main .left .all_articles > .body > ul.article_content li .right > h2 {
  font-size: 23px;
  margin-bottom: 10px;
}
#app .main .left .all_articles > .body > ul.article_content li .right p {
  display: -webkit-box; /* 必须结合的属性，将对象作为弹性伸缩盒子模型显示 */
  -webkit-box-orient: vertical; /* 必须结合的属性，设置伸缩盒对象的子元素的排列方式 */
  -webkit-line-clamp: 2; /* 限制显示的行数 */
  overflow: hidden; /* 隐藏超出的内容 */
  text-overflow: ellipsis; /* 超出部分显示省略号 */
  margin-bottom: 10px;
}
#app .main .left .all_articles > .body > ul.article_content li .right .article_info {
  font-size: 14px;
  color: #555;
}
#app .main .left .all_articles > .body > ul.article_content li .right .article_info > span {
  margin-right: 10px;
}
#app .main .left .all_articles > .body > ul.article_content li .right .article_info i {
  margin-right: 5px;
}
#app .main .right {
  width: 29%;
}
#app .main .tags > .body {
  position: relative;
}
#app .main .tags > .body ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
@keyframes move_box {
  0% {
    left: 0;
    top: 0;
  }
  25% {
    left: calc(100% - 20px);
    top: 0;
  }
  50% {
    left: calc(100% - 20px);
    top: calc(100% - 20px);
  }
  75% {
    left: 0;
    top: calc(100% - 20px);
  }
  100% {
    left: 0;
    top: 0;
  }
}
#app .main .tags > .body ul::before {
  display: block;
  width: 20px;
  height: 20px;
  content: "";
  background-color: #ff9800;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-name: move_box;
  animation-name: move_box;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
#app .main .tags > .body ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.3333333333%;
  height: 35px;
  box-sizing: border-box;
}
#app .main .tags > .body ul li:nth-child(6n+1), #app .main .tags > .body ul li:nth-child(6n+2), #app .main .tags > .body ul li:nth-child(6n+3) {
  background-color: #f5f5f5;
}
#app .main .tags > .body ul li:nth-child(3n+1), #app .main .tags > .body ul li:nth-child(3n+2) {
  border-right: 1px solid #f5f5f5;
}

/*# sourceMappingURL=index.css.map */
