body {
    @font-face {
        font-family: "fosung"; /* Project id 2839306 */
        src: url('../font/ttf/SourceHanSansCN-ExtraLight.ttf') format('truetype')
        /*url('iconfont.woff?t=1691052538438') format('woff'),*/
        /*url('iconfont.woff2?t=1691052538438') format('woff2'),*/
    }
}
html, body ,#app {
    font-family: "fosung", "Source Han Sans CN", '微软雅黑', "PingFang SC", serif !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
}
input,
textarea {
    line-height: normal;
    /* for non-ie */
    line-height: 22px \9;
    /* for ie */
}
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.tab-pane.active {
    display: block;
}
.tab-pane {
    display: none;
}
.w-100 {
    width: 100% !important;
}
.p-0-5 {
    padding: 0 5px !important;
}
.p-0 {
    padding: 0 !important;
}
.m-0 {
    margin: 0 !important;
}
.m-t0 {
    margin-top: 0 !important;
}
.m-t20 {
    margin-top: 20px !important;
}

.hide {
    display: none;
}
.e-hide {
    display: none;
}
.over-hidden {
    overflow: hidden;
}
.text-center {
    text-align: center !important;
}

.truncate-2 {
     word-break: break-all;
     text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 2; /* 这里是超出几行省略 */
     overflow: hidden;
}

.truncate-3 {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 这里是超出几行省略 */
    overflow: hidden;
}


.truncate-4 {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 这里是超出几行省略 */
    overflow: hidden;
}

.el-loading-spinner > svg {
    display: inline;
}

.el-loading-mask {
    background-color: rgba(248, 248, 248, 0.65) !important;
}
.common-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 37px;
    line-height: 22px;
}
.common-title .title {
    height: 100%;
    font-size: 22px;
    font-weight: 500;
    text-align: left;
    color: #c50405;
    border-bottom: 4px solid #c50405;
}
.common-title .more {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #666666;
    border-bottom: 1px solid #f5bcbc;
}
.common-title .more a:hover {
    color: #c50405;
}
.common-line {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #333333;
    line-height: 38px;
    height: 38px;
}
.common-line:hover {
    cursor: pointer;
    color: #c50405;
    background: rgba(197, 4, 5, 0.06);
}
.common-line:hover:before {
    color: #c50405;
}
.common-line:before {
    content: "\2022";
    /* Unicode编码的圆点字符 */
    color: #999999;
    /* 圆点颜色 */
    font-size: 12px;
    /* 圆点大小 */
    margin-right: 5px;
    /* 圆点与div之间的间距 */
}


/* 图片移入鼠标时展示蒙层 */
.mask-hover {
    position: relative;
}

