/* ---------------------------通用 start */
.flex,.flex1 {
    display: flex;
    justify-content: space-around;
}

.flex2 {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.boder,.boder1 {
    border: 1px solid #e7e7e2;
    border-radius: 5px;
}
.boder2 {
    border: 1px dashed #e7e7e2;
    border-radius: 5px;
}
.w100{
    width: 100%;
}
.h100{
    height: 100%;
}
.block {
    display: block;
}
.inline{
    display: inline;
}
.inline-block{
    display: inline-block;
}

/* ---------------------------通用 end */


/* ---------------------------框架微调 start */
.pagination {
    margin: 0
}
/* ---------------------------框架微调 end */

/* ---------------------------情景 start */
/* 合并行的表头 */
table.table tr.colspan th,table.table tr.colspan td{
    text-align: center;
}
.table-bordered > thead > tr.colspan > th, 
.table-bordered > tbody > tr.colspan > th, 
.table-bordered > tfoot > tr.colspan > th,
.table-bordered > thead > tr.colspan + tr > th  {
    border: 1px solid #e7e7e7;
}
.table-bordered > thead > tr.colspan > th{
    border-top: 1px solid #f3f5f6;
}
.table-bordered > thead > tr.colspan > th:first-child,
.table-bordered > thead > tr.colspan  + tr > th:first-child{
    border-left: 1px solid #f3f5f6;
}
.table-bordered > thead > tr.colspan > th:last-child,
.table-bordered > thead > tr.colspan  + tr > th:last-child{
    border-right: 1px solid #f3f5f6;
}

table.table td>.btn{font-weight: normal;}

tr .edit{
    color: #64B5F6;
}
/* tr .edit::before {
    font-family: 'icomoon';
    content: "\e605";
    color: #64B5F6;
    margin-right: 5px;
} */

/* 表标题筛选 */
.panel .panel-heading form{
    padding: 10px 0 5px 0;
}
.panel .panel-heading form .btn-group,.panel .panel-heading form .form-group{
    margin-bottom: 5px;
}

.panel .panel-heading form .panel-title{
    padding: 9px;
    min-height: 0;
}

/* 表格中图片 class加在a标签 */
.table_img_sm img{
    height: 20px;
    width: auto;
    border-radius: 5px;
}
.table_img img{
    height: 45px;
    width: auto;
    border-radius: 5px;
}
.table_img_hover:hover {
    position: fixed;
    left: 10%;
    top: 10%;
    width: 80%;
    height: 80%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table_img_hover:hover img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
}
    
/* 百分比输入框 */
input.percent {
    padding-right: 30px; /* 给‘%’符号留出空间 */
    text-align: right; /* 确保输入的数字和符号在右侧对齐 */
    background: url('data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctext x=%2210%22 y=%2215%22 font-size=%2215%22 text-anchor=%22middle%22 fill=%22gray%22%3E%25%3C/text%3E%3C/svg%3E') no-repeat right center;
    background-size: 25px; /* 控制‘%’符号大小 */
    color: #75b9e6;
}
/* ---------------------------情景 end */
