/** 针对layui-input-inline 的宽度为190的补丁 */

.layui-form-item .w350 {
    width: 350px;
}

.layui-input-block textarea {
    width: 450px;
    height: 150px;
}

/** 权限选择的样式 */
.rulesUl {
    width: 100%;
    height: auto;
    /* Firefox */
    -moz-column-count: 4;
    /* Safari 和 Chrome */
    -webkit-column-count: 4;
    column-count: 4;
    -moz-column-gap: 2em;
    -webkit-column-gap: 2em;
    column-gap: 2em;
}
.rulesUl li {
    margin: 5px;
    border: 1px solid #eee;
    padding: 1rem;
    background: #FFF;
    overflow: hidden;
    -moz-page-break-inside: avoid;
	-webkit-column-break-inside: avoid;
    break-inside: avoid;
    font-weight: 800;
}
.rulesUl li ul li {
    margin: 0 0 0 2rem;
    border: 0px;
    padding: 0px;
    font-weight: 100;
    color: #666;
}
@media screen and (min-width:1000px) { 
    .rulesUl { 
        column-count: 4;
        -moz-column-count: 4;
        -webkit-column-count: 4;
    } 
} 
@media screen and (max-width: 999px) { 
    .rulesUl { 
        column-count: 3;
        -moz-column-count: 3;
        -webkit-column-count: 3;
    } 
} 
@media screen and (max-width: 749px) { 
    .rulesUl { 
        column-count: 2;
        -moz-column-count: 2;
        -webkit-column-count: 2;
    } 
} 
@media screen and (max-width: 499px) { 
    .rulesUl { 
        column-count: 1;
        -moz-column-count: 1;
        -webkit-column-count: 1;
    } 
}