/* 公共样式 */
* {
   margin: 0;
   padding: 0;
   font-style: normal;
   list-style: none;
}

pre {
    padding: 10px;
    min-height: 300px;
    max-height: 600px;
}

.layui-click {
    color: #333;
    cursor: pointer;
}

.layui-click:hover {
    color: #777;
}

.layui-form-select .layui-flow-more {
    display: none !important;
}

/* 解决没有src属性时出现的边框 */
img[src=""], img:not([src]){
    opacity:0;
}

/* 解决弹出框中select显示难看 */
.to-fix-select .layui-layer-content {
    overflow: visible !important;
}

/* 公共布局 */
.home-icon {
    width: 30px;
    height: 30px;
    margin-top: 16px;
    margin-left: 20px;
    cursor: pointer;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #23262E;
}

.center {
    position: fixed;
    width: 100%;
    top: 60px;
    bottom: 44px;
    overflow: auto;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 44px;
    line-height: 44px;
    background-color: #f5f7fa;
}

.main {
    padding: 15px 15px 200px;
}

.logout-btn {
    margin-top: 20px;
    margin-right: 20px;
    float: right;
}

.no-data-bg {
    background-image: url('../images/no_data.svg');
    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: 25%;
}