/*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: #333;
}

/*适配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: 11.2vw 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;
}
