/*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: #6485d9;
}

/*适配PC容器*/
.page-article {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*头部*/
.articles-header {
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 23.46vw;
  padding: 0 5.33vw 4.26vw 5.33vw;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 1.06vw 2.13vw 0 rgba(0, 0, 0, 0.1);
}

.articles-header-flat {
  height: 17.06vw !important;
}

.articles-header .header-back {
  width: 4.8vw;
  height: 4.8vw;
  position: absolute;
  left: 6.4vw;
  bottom: 5.33vw;
}

.articles-header .header-text {
  font-size: 4.26vw;
  font-weight: 600;
  color: #333;
  line-height: 6.93vw;
}

/*内容*/
.article-content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 33.4vw 6.4vw 11.2vw 6.4vw;
  background-color: #fff;
  overflow-x: hidden;
}

.article-content-flat {
  padding: 27vw 6.4vw 11.2vw 6.4vw !important;
}

.article-content-browser {
  padding: 6.4vw 6.4vw 11.2vw 6.4vw !important;
}

.article-content .article-type {
  margin-bottom: 20.26vw;
  font-size: 3.73vw;
  font-weight: bold;
  color: #333;
  line-height: 5.33vw;
}

.article-content .article-title {
  margin-bottom: 6.4vw;
  font-size: 5.86vw;
  font-weight: bold;
  color: #333;
  line-height: 8vw;
}

.article-content .article-text {
  margin-bottom: 5.33vw;
  font-size: 4.26vw;
  font-weight: 400;
  color: #333;
  line-height: 6.4vw;
}

.article-content .article-text-bold {
  font-weight: bold;
}

.article-content .article-bold {
  margin-bottom: 5.33vw;
  font-size: 4.26vw;
  font-weight: bold;
  color: #333;
  line-height: 6.4vw;
}

.article-content .article-no-margin {
  margin-bottom: 0;
}

.article-content .article-text-right {
  text-align: right;
}
