/*!
 * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
 * 项目自定义的公共CSS，可覆盖jeesite.css里的样式
 */

/* 让 Bootstrap3 也能拥有 borderless 效果（Bootstrap 4 才首次加入） */
.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > thead > tr > th,
.table-borderless > thead > tr > td {
    border: none !important;
}

/* 查询条件区域-表格 */
#searchTable {
    /* 砍掉整张表的外边距（上下左右外间距）
    margin: 0 !important; */

    margin-top: 0 !important;
    /* margin-bottom: 0 !important; */
    margin-left: 0 !important;
    margin-right: 0 !important;
}
#searchTable > tbody > tr > td {
    /* 让单元格紧凑，不挤爆内容（上下 2px  左右 4px） */
    padding: 2px 4px !important;
}

.search-group {
    display: inline-flex;
    white-space: nowrap;
}

/* 查询条件区域-标签 */
.search-label {
    font-weight: normal;
    text-align: right;
    padding-top: 3px;
    padding-right: 0
}

.search-label .required {
    color:#e02222
}

/* 日期输入框（开始时间、结束时间） */
.date-range {
    display: inline-flex;
    align-items: center;
    /* 控件间距 */
    gap: 4px;
}
