/* 右侧文章内容 */
.list-container .right-content {
  background-color: #fafafa;
  padding: 0;
}
.right-content .menu-title-box {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #f3f5f8;
  cursor: pointer;
}
.right-content .menu-title-box .menu-title {
  color: #1B3A70;
  font-size: 18px;
  margin-left: 5px;
  font-weight: bold;
}
/* 文章内容 */
.arti-content {
  padding: 30px 20px;
}
.arti-content .arti-title{
  margin: 0 auto;
  font-size: 24px;
  color: #1B3A70;
  text-align: center;
}
.arti-content .arti-desc {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
  color: #333;
}
.arti-content .arti-desc .desc-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 25px;
}
.arti-content .arti-box {
  padding-top: 20px;
  font-size: 12pt;
  color: #333;
}
/* 文章相关操作 */
.arti-actions {
  width: 65%;
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 8rem;
  background-color: hsla(0,0%,100%,0);
}
.arti-actions .actions-item {
  margin: .5rem;
  text-align: center;
}
.arti-actions .actions-item .scan-me {
  display: none;
  position: absolute;
  background-color: #fff;
  top: -210px;
  left: -70px;
  padding: 0 10px 5px;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
}
.arti-actions .actions-item > div {
  width: 38px;
  height: 38px;
  line-height: 31px;
  cursor: pointer;
  border-radius: 50%;
  opacity: .25;
}
.arti-actions .actions-item > div:hover {
  transition: .2s;
  opacity: 1;
}
@media screen and (max-width: 576px){
  /* 主体内容边距 */
  .list-container {
    margin: 0;
  }
  .list-container .container {
    padding: 0 15px;
  }
  .menu-title-box {
    display: none !important;
  }
  /* 取消文章描述边距 */
  .arti-content .arti-desc .desc-item {
    margin: 0 5px;
    font-size: 1rem;
  }
}