#author {
  width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  margin-bottom: 20px;
}

#top {
  width: 100%;
  min-height: 180px;
  margin: 0 0 30px;
  padding: 30px 50px 35px 60px;
  border-radius: 8px;
  background-color: #f8f8f8;
  display: flex;
}
#top img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px 30px 5px 0;
}
#top .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#top .right h4 {
  margin: 0 0 12px 0;
  font-family: "PT Serif";
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 31px;
  letter-spacing: normal;
  color: #222;
}
#top .right p {
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #666;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #top {
    width: auto;
    min-height: auto;
    margin: 0 15px 20px;
    padding: 20px 15px;
    border-radius: 8px;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #top img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 0 5px 0;
  }
  #top .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  #top .right h4 {
    margin: 0 0 12px 0;
    font-family: "PT Serif";
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 27px;
    letter-spacing: normal;
    color: #222;
  }
  #top .right p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: italic;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: #666;
    margin: 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }
}
#blog-list {
  display: flex;
  flex-wrap: wrap;
  width: 1400px;
}
#blog-list .blog_item {
  width: 335px;
  margin-right: 20px;
  margin-bottom: 40px;
}
#blog-list .blog_item:nth-child(4n) {
  margin-right: 0;
}
#blog-list .blog_item .top:hover .cover img {
  transform: scale(1.2);
  transition: transform 0.3s;
}
#blog-list .blog_item .bottom .title:hover {
  color: #ee5e22;
  cursor: pointer;
}
#blog-list .blog_item .top {
  position: relative;
}
#blog-list .blog_item .top .des_line {
  display: flex;
  align-items: baseline;
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 2px 5px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 2;
}
#blog-list .blog_item .top .des_line .eye {
  display: flex;
  align-items: center;
  justify-content: center;
}
#blog-list .blog_item .top .des_line .eye img {
  width: 16px;
  height: 11px;
}
#blog-list .blog_item .top .des_line .eye span {
  height: 19px;
  margin: 0 0 0 4px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
}
#blog-list .blog_item .top .cover {
  width: 335px;
  height: 170px;
  margin: 0 0 15px 0;
  border-radius: 8px;
  background-color: #d8d8d8;
  overflow: hidden;
}
#blog-list .blog_item .top .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#blog-list .blog_item .bottom .title {
  width: 335px;
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
#blog-list .blog_item .bottom .des {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 20px;
  letter-spacing: normal;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 15px;
}
#blog-list .blog_item .bottom span {
  height: 20px;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 20px;
  text-decoration: underline;
  letter-spacing: normal;
  color: #333;
}

.blog_load {
  width: 185px;
  height: 46px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: solid 1px #999;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 20px;
  letter-spacing: normal;
  color: #333;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #blog-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px 15px;
  }
  #blog-list .blog_item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #blog-list .blog_item .top:hover .cover img {
    transform: scale(1.2);
    transition: transform 0.3s;
  }
  #blog-list .blog_item .bottom .title:hover {
    color: #ee5e22;
    cursor: pointer;
  }
  #blog-list .blog_item .top {
    position: relative;
  }
  #blog-list .blog_item .top .des_line {
    display: flex;
    align-items: baseline;
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 2px 5px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 2;
  }
  #blog-list .blog_item .top .des_line .eye {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #blog-list .blog_item .top .des_line .eye img {
    width: 16px;
    height: 11px;
  }
  #blog-list .blog_item .top .des_line .eye span {
    height: 19px;
    margin: 0 0 0 4px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff;
  }
  #blog-list .blog_item .top .cover {
    width: 100%;
    height: 170px;
    margin: 0 0 15px 0;
    border-radius: 8px;
    background-color: #d8d8d8;
    overflow: hidden;
  }
  #blog-list .blog_item .top .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #blog-list .blog_item .bottom .title {
    width: 100%;
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #222;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  #blog-list .blog_item .bottom .des {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 20px;
    letter-spacing: normal;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-bottom: 15px;
  }
  #blog-list .blog_item .bottom span {
    height: 20px;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 20px;
    text-decoration: underline;
    letter-spacing: normal;
    color: #333;
  }
  .blog_load {
    width: 185px;
    height: 46px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: solid 1px #999;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 20px;
    letter-spacing: normal;
    color: #333;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #author {
    width: 100%;
    margin: 0 auto;
    padding-top: 20px;
    margin-bottom: 0;
  }
}

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