.p_datum {
    background-color: #f7f7f5;
    padding-top: 100px;
}

.p_datum .p_datum_list_box {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 80vh;
}

.p_datum .p_datum_list_box .left {
    /* 设置两列比例 */
    width: 75%;
}

.p_datum .p_datum_list_box .left .tags {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}

.p_datum .p_datum_list_box .left .tags .title {
    font-weight: bold;
    margin-bottom: 10px;
}

.p_datum .p_datum_list_box .left .tags .tags_item_list {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 10px;
}

.p_datum .p_datum_list_box .left .tags .tags_item {
    background: rgba(16, 140, 218, 0.1098);
    border-radius: 6px 6px 6px 6px;
    color: #108CDA;
    padding: 5px;
    text-align: center;
    cursor: pointer;
}

.p_datum .p_datum_list_box .left .left_item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #ffffff;
    border-radius: 6px 6px 6px 6px;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.p_datum .p_datum_list_box .left .left_item .content {
    min-width: 100%;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    color: #808180;
}

/* ------- */
.p_datum .p_datum_list_box .right {
    /* 设置两列比例 */
    width: 20%;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.p_datum .p_datum_list_box .right .input_box {
    position: relative;
}

.p_datum .p_datum_list_box .right .input_box .i_b_input {
    width: 100%;
    padding: 10px;
    border: 1px solid #eaeaea;
    border-radius: 2rem;
}

.p_datum .p_datum_list_box .right .input_box .i_b_input:focus {
    outline: none;
}

.p_datum .p_datum_list_box .right .input_box .i_b_btn {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0 10px;
    border: none;
    background-color: #108cda;
    color: #fff;
    width: 5rem;
    border-radius: 2rem;
}

.p_datum .p_datum_list_box .right .title {
    padding: 10px 10px;
    color: #108cda;
    font-weight: bold;
}

.p_datum .p_datum_list_box .right .keywords {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
}

.p_datum .p_datum_list_box .right .keywords .keywords_item {
    border-radius: 6px 6px 6px 6px;
    border: 1px solid #eaeaea;
    text-align: center;
}

/* ---------- */
.p_datum .pages_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}

.p_datum .pages_box .pages_start,
.p_datum .pages_box .pages_item {
    margin-right: 20px;
    padding: 10px 20px;
    border: 1px #e5e5e5 solid;
    background-color: #fff;
    border-radius: 10px;
}

.p_datum .pages_box .pages_end {
    padding: 10px 20px;
    border: 1px #e5e5e5 solid;
    background-color: #fff;
    border-radius: 10px;
}

.keywords_item.active {
    background-color: #108CDA !important;
    color: #FFFFFF !important;
}

.keywords_item:hover {
    background: #108CDA;
    color: #FFFFFF;
}

.p_datum .p_datum_list_box .left .tags .tags_item.active {
    background-color: #108CDA !important;
    color: #FFFFFF !important;
}

.p_datum .p_datum_list_box .left .tags .tags_item:hover {
    background: #108CDA;
    color: #FFFFFF;
}

.but1 {
    width: 75px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 45px;
    border: 1px solid #108CDA;
    font-weight: 400;
    font-size: 12px;
    color: #108CDA;
    cursor: pointer;
}
.but2 {
    width: 75px;
    height: 30px;
   background: #108CDA;
    border-radius: 45px;
    border: 1px solid #108CDA;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    cursor: pointer;
}