/*公共样式*/
* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  display: none;
}

/* 主要样式 */
.essay-content-box {
  width: 1100px;
  margin: auto;
  padding: 50px 0 61px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

/* 中间文章part1样式 */
.content-part1 {
  width: 693px;
}

.content-part1 h1 {
  color: #000;
  font-size: 26px;
  text-align: center;
  font-family: 微软雅黑;
  margin-top: 30px;
}

.content-part1-header {
  margin-top: 40px;
  font-size: 13px;
  font-weight: 400;
}

.content-part1-introduce {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  height: 40px;
  align-items: center;
}

.content-part1-introduce h4 {
  color: #999999;
  font-weight: 400;
}

.content-part1-introduce span {
  color: #000000;
}

.content_fabulous1 {
  width: 36px;
  margin: 35px auto 0px;
  cursor: pointer;
}

.content_fabulous1 img {
  width: 100%;

}

.content_fabulous1 p {
  text-align: center;
  font-size: 15px;
}

@keyframes fab {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.2)
  }

  100% {
    transform: scale(1)
  }
}

.scalelogo {
  animation: fab 0.3s
}

.content-part1-main {
  font-size: 16px;
  color: #3f3f3f;
  text-align: justify;
  letter-spacing: 1px;
  word-wrap: break-word;
  line-height: 30px;
}


.content-part1-comment {
  margin-top: 50px;
}

.comment-title {
  display: flex;
  font-size: 15px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
  margin-bottom: 18px;
  justify-content: space-between;
}

.comment-title h3 {
  margin-right: 28px;
}

.comment-title-write {
  width: 70px;
  height: 24px;
  background: #015DF4;
  color: #fff;
  border-radius: 16px;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  border: none;
  cursor: pointer;
}

.comment-main {
  width: 692px;
  border: 1px solid #666666;
  padding: 1px 14px 14px 11px;
  box-sizing: border-box;
}

.main-aside-box :last-child {
  border: 0;
}

.comment-main aside {
  font-size: 11px;
  font-weight: 400;
  color: #666666;
  border-bottom: 1px solid #EEEEEE;
}

.comment-main aside h4 {
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  margin-top: 14px;
}

.comment-main-detail {
  display: flex;
  justify-content: space-between;
  margin: 11px 0 15px 0;
}

.comment-main-detail h5 {
  font-weight: 400;
  width: 570px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 18px;
}

.comment-main-btn {
  margin: 25px auto 0;
  width: 94px;
  height: 24px;
  background: #333333;
  font-size: 11px;
  color: #FFFFFF;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}

.content-part1-other {
  margin-top: 52px;
}

.content-part1-other h2 {
  font-size: 15px;
  color: #333333;
}

.part1-other-detail {
  font-size: 11px;
  font-weight: 400;
  color: #333333;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.part1-other-detail h4 {
  font-weight: 400;
  width: 570px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 18px;
}

/* 侧边栏part2样式 */
.content-part2 {
  width: 336px;
  background: #FAFAFA;
  padding: 15px 0 56px;
}

.acc-header-img {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  line-height: 114px;
  overflow: hidden;
  border: 2px solid #0556F9;
  margin: 20px auto 12px;
}

.content-part2 h5 {
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  color: #333333;
}

.content-part2 article h3 {
  font-size: 17px;
  text-align: center;
  margin: 50px 0 21px;
  font-weight: 500;
  color: #333333;
  font-family: Source Han Sans CN;
}

.part2-about-img {
  margin: 0 auto 10px;
  width: 177px;
}

.content-part2-about h4 {
  font-size: 13px;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #333333;
  text-align: center;
  margin: 0 auto 36px;
  width: 244px;
}

/*蒙版*/
.essay-comment-mask {
  z-index: 99;
  opacity: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: none;
}

/*右侧评论弹窗*/
.essay-comment-window {
  z-index: 100;
  width: 400px;
  height: 100%;
  background: #FFFFFF;
  position: absolute;
  right: -400px;
  overflow-y: auto;
}

.window-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E8E8ED;
  padding: 15px 24px;
  align-items: center;
}

.window-header h1 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.window-header img {
  width: 17px;
  height: 17px;
  cursor: pointer;
}

.window-main {
  padding: 20px 24px 32px 24px;
}

/*评论输入框*/
.comment-form1 {
  width: 100%;
  position: relative;
  background: rgba(245, 246, 247, 0.8);
  border-radius: 8px;
  padding: 14px 0;
}

.comment-form1 textarea {
  width: 100%;
  background: rgba(248, 249, 251, 0.8);
  border: none;
  padding: 0 16px;
  resize: none;
  height: 88px;
  font-size: 14px;
  line-height: 22px;
  box-sizing: border-box;
  outline: none;
  color: #222;
}

.comment-form1 button {
  width: 60px;
  height: 24px;
  background: #015DF4;
  color: #fff;
  border-radius: 16px;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  border: none;
  cursor: pointer;
  margin: 10px 0 0 276px;
}

/*评论内容*/
.window-comment-box aside {
  padding: 16px 0;
}

.window-comment-box h4 {
  display: inline-block;
  max-width: 280px;
  color: #777888;
  margin-right: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
}

.window-comment-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-name-fab img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  cursor: pointer;
}

.comment-name-fab span {
  font-size: 14px;
  vertical-align: middle;

}

.window-comment-detail h5 {
  font-size: 14px;
  color: #222226;
  line-height: 22px;
  word-break: break-word;
  margin: 6px 0 4px;
}

.window-comment-detail p {
  font-size: 13px;
  color: #777888;
  text-align: right;

}

/*分页样式*/
.list-Page-Con {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.list-Page-Con a {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: #f0f2f5;
  margin: 0 5px;
  cursor: pointer;
  line-height: 30px;
  padding: 0 3px;
}

.list-Page-Con strong {
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: #f0f2f5;
  margin: 0 5px;
  cursor: pointer;
  line-height: 30px;
  text-align: center;
  padding: 0 2px 0 6px;
}

.bdshare-button-style0-16 a,
.bdshare-button-style0-16 .bds_more {
  margin: 0 6px 0 0 !important;
}

.left_box {
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}

.go-yshman {
  width: 65px;
  font-size: 12px;
  text-align: center;
  background: #015DF4;
  color: #fff;
  height: 16px;
  line-height: 16px;
  padding: 3px 0 3px 5px;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 15px;

}

.arrowhead {
  border-left: 11px solid #015DF4;
  height: 0;
  width: 0;
  position: absolute;
  top: 0px;
  right: -7px;
  border-right: 11px solid rgba(0, 0, 0, 0);
  border-bottom: 11px solid rgba(0, 0, 0, 0);
  border-top: 11px solid rgba(0, 0, 0, 0);
}