.ach-list  .item{
    min-height: 230px;
    margin-bottom: 40px;
    background: #fff;
    transition: all 0.3s ease-out 0s;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}


/* 列表左边 */
.ach-list  .item .item-l {
    width: 260px;
    height: 230px;
}
/* 列表右边 */
.ach-list  .item .item-r {
    flex:1;
    min-width: 300px;
    padding: 0 20px;
    box-sizing: border-box;
}
.ach-list  .item .item-r .tit{
    font-size: 28px;
    color: var(--el-text-color-primary);
    margin: 20px 0;
    -webkit-line-clamp: 1;
}

.ach-list  .item .item-r .content{
    font-size: 16px;
    line-height: 28px;
    -webkit-line-clamp: 3;
    text-align: justify;
}

/* 详情按钮 */
.ach-list .view {
    width: 100%;
    margin:20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ach-list .view-btn{
    background: var(--el-bg-color-primary);
    border-radius: 15px;
    font-size: 14px;
    width: 110px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
}