.turn-page {
    margin-bottom: 30px;
    padding-top: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.turn-page .prev,
.turn-page .next {
    width: 32px;
    height: 32px;
    border: 1px solid #D5DAE4;
    border-radius: 8px;
    font-size: 14px;
    color: #383F4A;
    line-height: 32px;
    text-align: center;
}

.turn-page .num {
    margin: 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.turn-page .num a {
    width: 32px;
    height: 32px;
    opacity: 1;
    border-radius: 8px;
    text-align: center;
    line-height: 32px;
    color: #383F4A;
}

.turn-page .num a.now {
    background: #42B06E;
    color: #fff;
}

.issue-list {
    padding-top: 20px;
}

.issue-list .list-cont li {
    margin-bottom: 16px;
}

.issue-list .list-cont li>a {
    padding-left: 29px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    border: 1px solid #D5D5D5;
    border-radius: 10px;
    box-sizing: border-box;
}

.issue-list .list-cont .fl {
    padding-left: 26px;
    position: relative;
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 400;
    color: #4A4A4A;
    box-sizing: border-box;
}

.issue-list .list-cont .fl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -5px;
    width: 11px;
    height: 11px;
    background: #40AF6E;
    border-radius: 50%;
}

.issue-list .list-cont .fr {
    font-size: 18px;
    font-weight: 400;
    color: #4A4A4A;
    opacity: 0.52;
    
}