.list {
    padding: 0 30px;
    box-sizing: border-box;
    width: 100%;
}

.list .title {
    display: flex;
    align-items: baseline;
    width: 100%;
    height: 13px;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 15px;
}

.list .title div {
    font-family: FZHTK;
    font-weight: normal;
    font-size: 13px;
    color: #1B1B1B;
    position: relative;
    text-indent: 20px;
}

.list .title div::before {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    background: #8CC2F8;
    border-radius: 50%;
    left: 0;
    top: 1px;
}

.list .title .more {
    font-family: FZHTK;
    font-weight: normal;
    font-size: 10px;
    color: #7B7B7B;
}

.list .listbox {
    padding-left: 5px;
    width: 100%;
    box-sizing: border-box;
}

.list .listbox .lista {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.list .listbox .lista div,
.list .listbox .lista span {
    font-family: FZHTK;
    font-weight: normal;
    font-size: 11px;
    color: #343434;
    position: relative;
}

.list .listbox .lista div {
    width: 80%;
    text-indent: 10px;
}

.list .listbox .lista span {
    width: 20%;
    display: inline-block;
    text-align: right;
}

.list .listbox .lista div::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #56A6F1;
    border-radius: 50%;
    left: 0;
    top: 3px;
}