@charset "UTF-8";
main {
  position: relative;
  justify-content: initial;
}

.slider_bar {
  width: 200px;
  min-height: 100px;
  border-radius: 5px;
  position: absolute;
  right: 120px;
  transition: all 0.3s;
}
.slider_bar .title {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider_bar .title span {
  margin-right: 6px;
}
.slider_bar .body {
  padding: 10px 20px 20px 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  background-color: white;
  font-size: 16px;
  transition: all 0.6s;
}
.slider_bar .body p {
  width: 100%;
  transition: all 0.3s;
  height: 27px;
  line-height: 27px;
  cursor: pointer;
  overflow: hidden; /* 超出部分不显示 */
  white-space: nowrap; /* nowrap不允许文字折行 initial换行显示 */
  text-overflow: ellipsis; /* 文本溢出时省略标记 */
  color: #333;
  box-sizing: border-box;
}
.slider_bar .body p:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.slider_bar .body p.active {
  color: #ff9800;
}
.slider_bar .body p[tagname=H1] {
  padding-left: 0px;
}
.slider_bar .body p[tagname=H2] {
  padding-left: 10px;
}
.slider_bar .body p[tagname=H3] {
  padding-left: 15px;
}
.slider_bar .body p[tagname=H4] {
  padding-left: 20px;
}

.slider_bar.show {
  width: 250px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.slider_bar.show ~ .article {
  width: calc(100% - 270px);
}
.slider_bar.show .title {
  box-shadow: none;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid #f0eeee;
}
.slider_bar.show .body {
  border-radius: 0 0 5px 5px;
  opacity: 1;
  visibility: visible;
  height: 300px;
}

.slider_bar.fixed {
  position: fixed;
  right: 120px;
  top: 80px;
}

.article {
  width: calc(100% - 220px);
  position: relative;
  transition: all 0.3s;
}
.article .article_artions {
  position: fixed;
  bottom: 50px;
  right: 20%;
  z-index: 2;
}
.article .article_artions .item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: white;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
}
.article .article_artions .item i {
  font-size: 23px;
  cursor: pointer;
  color: #333;
}
.article .article_artions .item i.show {
  color: #ff9800;
}
.article .article_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.article .article_title h2 {
  margin: 10px 0;
}
.article .article_title p {
  font-size: 14px;
  color: #333;
}
.article .article_title p span {
  margin-right: 10px;
}
.article .article_title p span:last-child {
  margin-right: 0px;
}
.article .article_title > div {
  margin: 10px 0;
}
.article .article_title > div i {
  font-size: 14px;
  margin-right: 5px;
}
.article .article_title > div i:last-child {
  margin-right: 0;
}
.article .article_title > div i {
  color: #ff9800;
}
.article .article_title > div i:first-child {
  color: #333;
}
.article .article_content {
  margin-top: 1px;
  min-height: 200px;
  background-color: white;
  width: calc(100% - 40px);
}
.article .comment_submit {
  margin-top: 20px;
  min-height: 200px;
  background-color: white;
  padding: 20px 20px 10px 20px;
}
.article .comment_submit .title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0eeee;
  color: #555;
  position: relative;
}
.article .comment_submit .title::after {
  display: block;
  content: "";
  width: 170px;
  height: 1px;
  background-color: #333;
  position: absolute;
  left: 0;
  bottom: 0;
}
.article .comment_submit .body {
  width: calc(100% - 40px);
  margin: 0 auto;
  height: 190px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  border-radius: 6px;
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.08);
  position: relative;
}
.article .comment_submit .body textarea {
  width: 100%;
  height: 100%;
  padding: 18px 20px;
  box-sizing: border-box;
  background-color: transparent;
  border: none;
  resize: none;
}
.article .comment_submit .body textarea:focus {
  border: none;
  outline: none;
}
.article .comment_submit .body .submin_comment {
  width: 100px;
  height: 40px;
  border-radius: 10px;
  background-color: #ff9800;
  font-size: 15px;
  color: white;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.article .comment_submit .footer {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}
.article .comment_submit .footer p > span {
  color: #ff9800;
}
.article .comment_list {
  margin-top: 20px;
}
.article .comment_list ul {
  list-style: none;
}
.article .comment_list > ul > li {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}
.article .comment_list > ul > li > .left {
  width: 70px;
}
.article .comment_list > ul > li > .left img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  transition: 0.3s;
}
.article .comment_list > ul > li > .left img:hover {
  transform: scale(1.1);
}
.article .comment_list > ul > li > .right {
  width: calc(100% - 70px);
  border-radius: 5px;
  background-color: white;
  position: relative;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  padding: 7px 14px;
}
.article .comment_list > ul > li > .right .deleat {
  color: red;
}
.article .comment_list > ul > li > .right::after {
  display: block;
  content: "";
  position: absolute;
  left: -21px;
  top: 15px;
  width: 1px;
  height: 1px;
  border: 10px solid transparent;
  border-right-color: white;
}
.article .comment_list > ul > li > .right .comment_content {
  margin: 5px 0;
}
.article .comment_list > ul > li > .right .comment_content img {
  margin-top: 5px;
  margin-right: 10px;
  height: 120px;
  border-radius: 5px;
}
.article .comment_list > ul > li > .right .comment_info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.article .comment_list > ul > li > .right .comment_info > div > span {
  cursor: pointer;
  display: inline-block;
  margin-right: 7px;
}
.article .comment_list > ul > li > .right .comment_info > div > span:last-child {
  margin-right: 0px;
}
.article .comment_list > ul > li > .right .sub_comment_list {
  display: none;
}
.article .comment_list > ul > li > .right .sub_comment_list > div {
  display: flex;
  margin: 5px 0;
}
.article .comment_list > ul > li > .right .sub_comment_list > div .left {
  width: 50px;
}
.article .comment_list > ul > li > .right .sub_comment_list > div .left img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  transition: 0.3s;
}
.article .comment_list > ul > li > .right .sub_comment_list > div .left img:hover {
  transform: scale(1.1);
}
.article .comment_list > ul > li > .right .sub_comment_list > div .right {
  width: calc(100% - 50px);
}
.article .comment_list > ul > li > .right .sub_comment_list > div .right .sub_comment_content {
  padding: 5px 0;
}
.article .comment_list > ul > li > .right .sub_comment_list > div .right .sub_comment_info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.article .comment_list > ul > li > .right .sub_comment_list > div .right .sub_comment_info > div > span {
  cursor: pointer;
  display: inline-block;
  margin-right: 7px;
}
.article .comment_list > ul > li > .right .sub_comment_list > div .right .sub_comment_info > div > span:last-child {
  margin-right: 0px;
}
.article .comment_list > ul > li > .right .sub_comment_list .sub_comment_textarea {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
.article .comment_list > ul > li > .right .sub_comment_list .sub_comment_textarea > textarea {
  resize: none;
  width: 100%;
  padding: 10px;
  border: 1px solid #f0eeee;
  border-radius: 5px;
  background-color: #f5f5f5;
}
.article .comment_list > ul > li > .right .sub_comment_list .sub_comment_textarea > textarea:focus {
  border: none;
  outline: none;
}
.article .comment_list > ul > li > .right .sub_comment_list .sub_comment_textarea button {
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 82px;
  height: 33px;
  border-radius: 10px;
  background-color: #ff9800;
  font-size: 15px;
  color: white;
  border: none;
  cursor: pointer;
}

pre {
  position: relative;
}
pre:hover i.code_copy {
  opacity: 1;
}
pre i.code_copy {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 18px;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
}

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