/* PC端通用样式 */
*{
    margin: 0;
    padding: 0;
}
/* 1200容器 */
.main-container {
    width: 100%;   
    min-width: 1200px;
    color: #333;
}
.container {
    margin: 0 auto;
    width: 1200px;
    font-size: 14px;
}
/* 超出显示省略号 */
.hide_text {
    text-overflow:-o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
/* 最小高度(去除footer) */
.mh {
    min-height: calc(100vh - 80px);
}
/* 限制内容宽度 */
.richtext * {
    max-width: 100%;
}
/* 富文本图片限制 */
.richtext img {
    max-width: 100% !important;
    height: auto !important;
}
/* 单图富文本去边 */
.richtext_nogap p {
    padding: 0 !important;
    margin: 0 !important;
}
.richtext_nogap img {
    width: 100% !important;
    height: auto !important;
}
/* 默认头部样式 */
.general-header_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1200px;
    height: 200px;
    z-index: -1;
    background-color: #2196f3;
}
.general-header_container {
    padding-bottom: 60px;
    border-bottom: 3px solid #f6f6f6;
}
.general-header_wrap {
    display: flex;
    align-items: center;
    padding: 20px 0;
}
.general-header_logo {
    flex: 1;
}
.general-header_language {
    width: 140px;
    color: #fff;
}
.general-header_language a {
    color: #fff;
    text-decoration: none;
}
/* 分页 */
.pagenation-wrap {
    margin: 40px 0;
    text-align: center;
}
.pagenation {
    display: inline-block;
}
.pagenation a {
    text-decoration: none;
    color: #fff;
}
.pagenation-item {
    margin-right: 10px;
    padding: 4px 12px;
    background-color: #686868;
    border-radius: 10px;
}
.pagenation-cur {
    background-color: #1976d2;
}