@charset "UTF-8";
/**!
 * @Description: 信息共享
 * @Autor: qianyuting
 * @LastEditors: qianyuting
 * @LastEditTime: 2021-12-28
*/

body {
    background-color: #f2f5fa;
}

.main-hd {
    background-image: url('../images/information_sharing/header_bg.jpg');
}

.main-tt {
    line-height: 112px;
}

/* 内容 */

.subview {
    margin: 19px 0 40px;
}

/* 右 */

.right-tit {
    height: 80px;
    line-height: 80px;
    padding: 0 20px;
    border-bottom: 1px solid #e8ecf1;
}

.right-tit-txt {
    position: relative;
    padding-left: 16px;
    font-size: 22px;
    font-weight: 600;
}

.right-tit-txt::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 22px;
    width: 4px;
    margin-top: -11px;
    background-color: #487dd4;
}

/* 搜索框 */

.query-box {
    position: relative;
    width: 350px;
    height: 38px;
    line-height: 36px;
    margin-top: 22px;
    padding: 0 45px 0 12px;
    border: 1px solid #c9cbd6;
    box-sizing: border-box;
}

.query-input {
    width: 100%;
    height: 35px;
    line-height: 35px;
    vertical-align: top;
}

.query-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45px;
    background: url("../images/query_ico.png") center center no-repeat;
}

.query-btn:hover {
    background-image: url("../images/query_icoh.png");
}

/* 表格 */

.right-content {
    padding: 20px 20px 35px;
}

table {
    width: 100%;
    min-width: 600px;
    table-layout: fixed;
}

th,
td {
    padding: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}

th {
    height: 42px;
    font-size: 16px;
    background-color: #eff3f7;
}

td {
    height: 40px;
    border-bottom: 1px dotted #cfcfcf;
}

tr:hover td {
    background-color: #f1f9fd;
    color: #0f60cd;
}

.see-btn {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../images/see_ico.png") center center no-repeat;
}

.see-btn:hover {
    background-image: url("../images/see_icoh.png");
}