.index-box {
    display: flex;
    flex-direction: column;
}

.list_content {
    flex: 1;
    display: flex;
    background: #FFF;
    border-radius: 5px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    background: url("../img/jzxx/bg.png") center center no-repeat;
    background-size: 100% 100%;
}

.list_content .left {
    width: 75%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.list_content .left .header,
.list_content .left .header a {
    color: #0A5CAA;
    font-size: 22px;
}

.list_content .left .mail-list {
    flex: 1;
    height: 100%;
}

.list_content .left .mail-list p:not(.empty p) {
    width: 100%;
    height: 55px;
    font-size: 18px;
    display: flex;
    border-bottom: 1px solid #AAAAAA;
    position: relative;
    padding: 0 11px 0 30px;
    align-items: center;
    box-sizing: border-box;
}

.list_content .left .mail-list p:not(.empty p)::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #999999;
    border-radius: 50%;
}

.list_content .left .mail-list p:not(.empty p) a {
    flex: 1;
}

.list_content .left .mail-list p:not(.empty p) span {
    min-width: 120px;
    white-space: nowrap;
    display: block;
    margin-left: 20px;
    font-size: 17px;
    color: #AAAAAA;
}

.list_content .left .mail-list p:not(.empty p) .name {
    color: #333333;
}

.list_content .right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.list_content .right div {
    cursor: pointer;
    margin-top: 130px;
    width: 195px;
    height: 60px;
}

.list_content .right div img {
    width: 100%;
    height: 100%;
}

.empty {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty img {
    width: 252px;
}

.empty p {
    font-size: 18px;
    margin-top: 15px;
    color: #999999;
}

@media (max-width: 767px) {
    .list_content {
        flex-direction: column-reverse;
    }

    .list_content .left,
    .list_content .right {
        width: 100%;
    }

    .list_content .left {
        height: 500px;
        box-sizing: border-box;
    }

    .list_content .left .name {
        min-width: auto !important;
    }

    .list_content .left .time {
        max-width: 110px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .list_content .right {
        justify-content: flex-start;
        padding-left: 20px;
    }

    .list_content .right div {
        margin-top: 20px;
        width: 120px;
        height: 45px;
    }
}