* {
    padding: 0;
    margin: 0;
}
html {
    min-width: 1500px;
}
body {
    background: #f8f8f8;
}

// 通用滚动条
// 轨道设为较宽尺寸，但背景透明，悬停在thumb上时thumb视觉变粗
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background-color: #cccccc;
    border: 3px solid transparent;
    background-clip: content-box;
    -webkit-border-radius: 6px;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #b8b8b8;
    border: 1px solid transparent;
    background-clip: content-box;
    -webkit-border-radius: 6px;
    opacity: 0.8;
}

.module-page {
    width: 100%;
    height: 100%;
}

.page-content {
    color: #ffffff;
}

.pointer {
    cursor: pointer;
}

.mt-10 {
    margin-top: 10px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-40 {
    margin-bottom: 20px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-24 {
    margin-right: 24px;
}

.mr-30 {
    margin-right: 30px;
}

.p-10 {
    padding: 10px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-20 {
    padding-left: 20px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-10 {
    padding-right: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.container {
    width: 1500px;
    margin: 0 auto;
}

.otherPageLeft {
    // width: 962px;
    width: 100%;
    padding-left: calc(100% - 1180px);
    box-sizing: border-box;
    float: right;
}

.bg-white {
    background: #ffffff;
}

.flex-bt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-fs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ht {
    height: 100%;
}

// 文字显示一行，超出省略号
.text-inline {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

// 文字最多显示两行，超出省略号
.text-double {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

// 文字最多显示43行，超出省略号
.text-three {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


// 文字最多显示4行，超出省略号
.text-four {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

// 列表暂无数据
.center-no-data {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    color: #9f9f9f;
    font-size: 16px;
}

// 敏感词提示
.mg-word {
    border: 1px solid red;
    border-radius: 4px;
    width: 670px;
    height: 100px;
    overflow-y: auto;
    background: rgba(220, 20, 60, .2);
    padding: 10px 25px;
}

.mg-title {
    font-size: 18px;
    font-weight: bold;
}

.mg-content {
    font-size: 16px;
    line-height: 18px;
}

.h-90{
    height: 90px;
}