* {
    margin: 0;
    padding: 0;
    font-family: '思源黑体';
}

:root {
    --titleColor:rgba(255, 255, 255, 1);
    --moreColor: rgba(255, 255, 255, 1);
    --navColor: rgba(255, 255, 255, 1);
    --bg: rgba(255, 198, 77, 1);
    --bgbox: rgba(255, 172, 0, 1);
    --fontColor: rgba(244, 104, 25, 1);
    --contColor: rgba(51, 51, 51, 1);
    --borderBotColor: rgba(238, 238, 238, 1);
}

ul {
    list-style: none;
}

.flex {
    display: flex;
}

.omit {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.multi_text {

    white-space: wrap;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.transition02s {
    transition: .2s;
}

/* 
    pc尺寸属性:layui-col-lg*
    h5尺寸属性:layui-col-xs*
    尺寸限制隐藏:layui-hide-*
    尺寸限制显示:layui-show-*-block
    平移:layui-col-*-offset1-12
*/
.box {
    max-width: 1200px;
    margin: 0 auto;
}