/* ========== 列表 start ========== */
.base_list {
    display: flex;
    flex-direction: column;
}

.base_list .ant-list-pagination {
    margin: 0;
    padding: 16px;
    background: #f5f7fa;
}

.base_list .ant-list-pagination .ant-pagination-total-text {
    float: left;
}

.base_list .ant-list-pagination .ant-pagination-item-link,
.base_list .ant-list-pagination .ant-pagination-item {
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    padding: 0;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
}

.base_list .ant-list-pagination .ant-pagination-item-active {
    background-color: #1890ff !important;
}

.base_list .ant-list-pagination .ant-pagination-item a {
    color: #606266;
}

.base_list .ant-list-pagination .ant-pagination-item-active a {
    color: #fff !important;
}

.base_list .ant-list-pagination .ant-pagination-item-ellipsis {
    letter-spacing: unset !important;
    text-indent: unset !important;
}

.base_list .ant-spin-nested-loading {
    flex: 1;
    height: 0;
    overflow: hidden;
    overflow-y: auto;
}

.base_list .ant-spin-container {
    overflow: hidden;
}

.listPage_base {
    background-color: #f9f9f9;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    border: 1px solid #eee;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 16px;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.listPage_actions {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(229, 242, 243, .5);
    transition: 0.2s;
    -webkit-transition: 0.2s;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 16px;
}

.listPage_actions .ant-btn>span {
    font-size: 12px;
}

.listPage_base:hover {
    background-color: #fff;
}

.listPage_base:hover .listPage_actions {
    opacity: 1;
}

.listPage_actions_dropdown .ant-dropdown-menu {
    border: 1px solid #65a9ff;
    padding: 0;
}

.listPage_actions_dropdown .ant-dropdown-menu-item {
    padding: 0;
}

.listPage_actions_dropdown .ant-dropdown-menu-item .ant-btn {
    border: none;
    font-size: 12px;
    width: 100%;
}

.listPage_actions_dropdown .ant-dropdown-menu-item+.ant-dropdown-menu-item {
    border-top: 1px solid #65a9ff;
}

.listPage_base .pic {
    position: relative;
    overflow: hidden;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    text-align: center;
    font-size: 0;
    height: 100px;
    margin-bottom: 10px;
}

.listPage_base .pic::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.listPage_base .pic img {
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.listPage_base .text1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    text-align: center;
    height: 30px;
    line-height: 30px;
}

.listPage_base .text2 {
    font-size: 14px;
    color: #58666e;
    text-align: center;
    max-height: 48px;
    line-height: 24px;
    overflow: hidden;
}

.listPage_base .text3 {
    font-size: 12px;
    color: #999;
    max-height: 48px;
    line-height: 24px;
    text-align: center;
    overflow: hidden;
}

.listPage_base .text4 {
    text-align: right;
    font-size: 12px;
    color: #999;
    min-height: 18px;
}

.listPage_style1 .listPage_base .text1 {
    margin-bottom: 10px;
}

.listPage_style1 .listPage_base .text2 {
    margin-bottom: 32px;
}

.listPage_style2 .listPage_base .text3 {
    margin-bottom: 4px;
}

.listPage_style2 .listPage_base .pic {
    height: 100px;
}

.listPage_style2 .listPage_base .text1 {
    font-size: 14px;
}

.listPage_style3 .listPage_base .text1 {
    font-size: 14px;
    margin-bottom: 10px;
}

.listCon_style1 {
    background: #f9f9f9;
    border: 1px solid #eee;
    cursor: pointer;
    transition: .3s;
    -webkit-transition: .3s;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

.listCon_style1:hover {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(229, 229, 229, .5);
}

.listCon_style1 .title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}

.listCon_style1 .text {
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}

.listCon_style1 .time {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}

.listCon_style2 {
    -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    border-radius: 4px;
    border: 1px solid #ebeef5;
    background-color: #fff;
    overflow: hidden;
    color: #303133;
    -webkit-transition: .3s;
    transition: .3s;
    padding: 20px;
}

.listCon_style2:hover {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
}

.listCon_style2 .listTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.listCon_style2 .title {
    font-weight: 600;
}

/* ========== 列表 end ========== */