/* 自定义swiper */

.swiper {
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
}

.swiper-wrapper,
.swiper-slide,
.swiper_item {
  /* important 不是乱用 防止 swiper 宽度过大 */
  width: 100% !important;
  height: 100%;
}


.swiper_item {
  display: block;
}

.swiper_title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 10px 80px 10px 14px;
  user-select: none;
  text-align: left;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.swiper_title .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 18px;
  color: #fff;
  font-size: 0.97rem;
}

.swiper-pagination_container {
  position: absolute;
  width: 200px;
  bottom: 0px;
  right: 20px;
  z-index: 999;
  background-color: #fff;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 12px;
  border-radius: 10px;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.swiper_navigation {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper_button_prev {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 10px;
  top: 50%;
  width: 27px;
  height: 44px;
  transform: translateY(-50%);
  z-index: 99;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.swiper_button_prev i {
  color: #fff;
  font-size: 22px;
}

.swiper_button_next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 27px;
  height: 44px;
  transform: translateY(-50%);
  z-index: 99;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.swiper_button_next i {
  color: #fff;
  font-size: 22px;
}

.swiper:hover .swiper_navigation.hide {
  display: block;
}

/* 通知 */

.noticeHead {
  /* box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2); */
  border: 1px solid #e6ebf5;
  color: gray;
  border-radius: 4px;
  background-color: #fff;
  padding: 0 10px;
  margin: 10px 0;
}

.noticeHead .icon-lingdang {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ul1 {
  padding-left: 30px;
}

.ul1 li a {
  overflow: hidden;
  text-overflow: ellipsis;
  color: gray;
  font-size: 14px;
}

.ul1 li:first {
  margin-top: -20px;
}

/* 文章列表 */
.yublog_list {
  margin-top: 10px;
}

.yulog_item {
  background-color: #fff;
  padding: 15px;
  border-bottom: 1px solid #eaf2ff;
}

.yulog_item>a {
  display: block;
}

.yulog_item .article_desc {
  font-size: 14px;
  color: #999;
}

.yulog_item .article_cover img {
  height: 300px;
}

.yulog_item .article_imgs {
  display: flex;
  margin: 6px 0;
}

.yulog_item .article_imgs img {
  width: calc(100% / 3 - 4px);
  height: 160px;

}

.yulog_item .article_imgs img:nth-child(1) {
  border-radius: 4px 0 0 4px;
}

.yulog_item .article_imgs img:nth-child(2) {
  margin: 0 6px;
}

.yulog_item .article_imgs img:nth-child(3) {
  border-radius: 0 4px 4px 0;
}

.yulog_item .meta {
  display: flex;
  justify-content: space-between;
  color: #909399;
}

.yulog_item .meta .item {
  display: flex;
}

.yulog_item .meta .author_name a {
  color: #909399;
}


/* 封面文章 */

.article_log_cover {
  display: flex;
}

.article_log_cover .log_cover {
  flex-shrink: 0;
  width: 30%;
  height: 160px;
  margin-right: 20px;
  border-radius: 4px;
}

.article_log_cover .article_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* page */



.author_page_info {
  background-color: #fff;
  margin-bottom: 20px;
  height: 600px;
}

.author_page_bg {
  height: 80%;
}

.author_page_info .author_data {
  position: relative;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.author_page_info .author_avatar {
  width: 100px;
  height: 100px;
  margin-top: -40px;
  margin-right: 30px;
  border-radius: 6px;
  border: 4px solid #fff;
  transition: all .5s ease-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
}

.author_page_info .author_user_info {
  flex: auto;
}

.author_page_info .author_user_info .author_name {
  display: flex;
  align-items: center;
}

.author_page_info .author_user_info .author_name .name {
  font-weight: 900;
  font-size: 18px;
}

.author_page_info .author_desc {
  color: #909399;
  font-size: 14px;
  margin: 5px 0;
}

.achievements {
  text-align: center;
}

.achievements .achievements_item {
  margin: 6px 0;
}

/* 分类 */


.article_topbg {
  position: relative;
  width: 100%;
  padding: 70px 50px 50px 50px;
  background-color: #394048;
  color: #eee;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 4px;
}

/* .article_topbg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001529;
  content: '';
  opacity: .6;
} */

.topbg_image {
  position: absolute;
  left: -50px;
  top: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  filter: blur(30px);
}

.topbg_mask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(76, 80, 87, .6);
}

.topbg_container {
  position: relative;
  color: #fff;
  font-size: 16px;
  background: 0 0;
}

.topbg_container .title a {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.topbg_container .info {
  margin-top: 20px;
}

.sort_page_card {
  background-color: #fff;
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
}

.sort_page_card .yulog_item {
  border-bottom: 1px solid #ebeef5;
}



.sort_info_banner {
  display: flex;
  justify-content: space-between;

}

.sort_info_banner .sort_info_left {
  width: 50%;
}

.sort_info_left .webmaster,
.submint_post {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 88px;
  padding: 2px 4px;
  margin: 0 4px;
  border-radius: 4px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.sort_info_left .webmaster .webmaster_img {
  display: flex;
  align-items: center;
}

.sort_info_left .webmaster img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.sort_info_left .webmaster .webmaster_num {
  margin-left: 4px;
}

.sort_info_admin {
  display: flex;
}

.sort_info_left>div {
  margin: 10px 0;
}

.sort_info_right .sort_info_right-icon {
  width: 100px;
  height: 100px;
  padding: 4px;
}

.link_container {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 8px;
  max-width: 1440px;
  width: 100%;
  margin: 20px auto 0;
}

.home_link {
  padding: 15px;
}

.link_list a {
  margin: 0 6px;
}