@charset "UTF-8";
.article-container {
  background: url("../image/article-page.png") no-repeat;
  background-size: cover;
  min-height: 500px;
  padding: 30px 60px;
  border-radius: 16px;
}

.article-container .box {
  padding-bottom: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px 10px 10px 10px;
}

.article-container .title {
  text-align: center;
  font-weight: 600;
  height: 85px;
  padding: 0 30px;
  background: #F25A30;
  border-radius: 10px 10px 0px 0px;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 85px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-container .info {
  margin-top: 15px;
  text-align: center;
}

.article-container .info span {
  display: inline-block;
  margin: 0 5px;
  font-weight: 600;
}

.article-container .content-box {
  padding: 0px 30px;
}

.article-container .content {
  max-height: 700px;
  margin-top: 20px;
  padding: 0 20px;
  overflow-y: auto;
  color: #333;
}

.article-container .content::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
}

.article-container .content::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  background: #f25a30;
}

.article-container .content::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  background: rgba(204, 204, 204, 0.2);
  box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 1px 1px 1px 1px;
}
