.pic-li {
    margin-top: 10px;
    width: 284px !important;
    height: 215px !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-talents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-talents img {
    object-fit: cover;
    height: 100%;
    width: 80%;
    margin-left: 60px;
}

.news-title {
    position: relative;
    z-index: 2;
    font-size: 16px;
    color: var(--orange-color2);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
}

.title-shortTitle {
    position: relative;
    z-index: 2;
    font-size: 12px;
    color: #666;
    margin: 5px 10px;
}
.title-shortTitle::after {
    content: ''; /* 生成一个空的伪元素 */
    display: block; /* 使伪元素以块级元素显示 */
    width: 30px; /* 横线的宽度 */
    height: 2px; /* 横线的高度 */
    margin-top: 5px; /* 距离上方的间距 */
    margin-bottom: 15px; /* 距离下方的间距 */
    background-color: var(--orange-color2); /* 横线的颜色 */
}
/* 超出两行显示省略号 */
.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px !important;
}
.info {
    position: relative;
    z-index: 2;
    font-size: 12px;
    color: #666;
    margin: 5px 10px;
    width: 120px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.view-more {
    display: inline-block;
    font-size: 12px;
    color: var(--orange-color2);
    margin-top: 5px;
    margin-left: 10px;
}