/* 头部 */
.wrapper .hd {
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.wrapper .hd a {
    padding: 5px 10px;
    font-size: 15px;
    border: 1px solid rgba(78, 179, 239, .7);
    box-shadow: 0 0 10px 0 rgba(78, 179, 239, .7);
    border-radius: 5px;
    background-color: #60e9a5;
}

/* 筛选 */
.wrapper .bd .search {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.wrapper .bd .search span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    width: 62px;
    height: 28px;
}

.wrapper .bd .search input,
.wrapper .bd .search select {
    width: 165px;
    height: 28px;
    margin-right: 5px;
}

.wrapper .bd .search a {
    padding: 3px 10px;
    font-size: 15px;
    border: 1px solid rgba(78, 179, 239, .7);
    box-shadow: 0 0 10px 0 rgba(78, 179, 239, .7);
    border-radius: 5px;
    color: #fff;
    background-color: #5DB7E5;
}

/* 内容列表 */
.wrapper .bd table {
    border: 1px solid #ddd;
    border-collapse: collapse;
}

.wrapper .bd th,
.wrapper .bd td {
    padding: 5px;
    min-width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    overflow-wrap: break-word;
}

/* 表头 */
.wrapper .bd thead {
    height: 32px;
    background-image: url("../images/thead.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

/* 表格 */
.wrapper .bd tbody {
    background-color: #fff;
}

.wrapper .bd tbody tr:hover {
    background-color: #e9e9e9;
}

.wrapper .bd tbody td a {
    padding: 5px;
    border-radius: 3px;
    background-color: #ffd074;
}

/* 总数提示 */
.wrapper .bd .total_count {
    display: flex;
    justify-content: flex-end;
}

.wrapper .bd .total_count i {
    color: red;
}

/* 页码 */
.wrapper .bd .list ul {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.wrapper .bd .list ul li a {
    display: block;
    margin: 0 2px 2px 2px;
    padding: 5px 15px;
    height: 30px;
    text-align: center;
    border-radius: 5px;
    background-color: #f4f5f9;
}

.wrapper .bd .list ul li a.active {
    color: #fff;
    background-color: #ff6000;
}