@charset "utf-8";

.content-help{
    width: 1200px;
    margin: 60px auto;
}
.content-help .content-head{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}
.content-help .content-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.content-help .content-list .content-item {
    box-sizing: content-box;
    width: 560px;
    padding-left: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.content-help .content-list .content-item::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #636c78;
    border-radius: 7px;
    position: absolute;
    left: 0;
    top: 13px;
}
.content-help .content-list .content-item a{
    color: #333333;
    font-size: 15px;
    width: 470px;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.content-help .content-list .content-item span{
    color: #999999;
    font-size: 14px;
}

