/*CSS初始化*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-touch-callout: none;
}

a,
a:link,
a:hover,
a:active,
a:visited {
  outline: none;
  text-decoration: underline;
  color: #333333;
}

/*适配PC容器*/
.page-article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*内容*/
.article-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 42px 24px;
  background-color: #fff;
  overflow-x: hidden;
}

.article-content-flat {
  padding: 101px 24px 42px 24px !important;
}

.article-content-browser {
  padding: 24px 24px 42px 24px !important;
}

.article-content .article-type {
  margin-bottom: 76px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  line-height: 20px;
}

.article-content .article-title {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  line-height: 30px;
}

.article-content .article-text {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 24px;
}

.article-content .article-text-bold {
  font-weight: bold;
}

.article-content .article-bold {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 24px;
}

.article-content .article-no-margin {
  margin-bottom: 0;
}

.article-content .article-text-right {
  text-align: right;
}

.article-content .article-margin-left-15 {
  margin-left: 15px;
}

.article-content .article-margin-left-30 {
  margin-left: 30px;
}
