#news {
    padding: 50px 0;
    background: #f2f2f2;
}

#news .box {
    display: flex;
    flex-wrap: wrap;
}

#news .box .tab {
    background: #ffffff;
}

#news .box .tab .logo {
    border-bottom: 1px solid #f2f2f2;
    padding: 10px 15px;
}


#news .box .tab .logo img {
    height: 68px;
    width: 100%;
    display: block;
}

#news .box .tab .item {
    display: block;
    line-height: 60px;
    font-size: 17px;
    color: #303133;
    border-bottom: 1px solid #f2f2f2;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

#news .box .tab .tab-active {
    color: #e74c3c;
}

#news .box .content .box {
    display: none;
}

#news .box .content .content-active {
    display: block;
}

#news .box .content .item {
    text-decoration: none;
    display: flex;
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px 0 rgb(0 0 0 / 6%);
}

#news .box .content .item .position {
    height: 150px;
    position: relative;
}

#news .box .content .item img {
    width: 100%;
    height: 150px;
    display: block;
}

#news .box .content .item .position .title {
    font-size: 20px;
    font-weight: 600;
    color: #606266;
    margin-top: 0;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#news .box .content .item .position .desc {
    line-height: 1.25;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #909399;
    margin: 0;
    font-size: 16px;
}

#news .box .content .item .position .bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;

}

#news .box .content .item .position .bottom .tag {
    background-color: #ecf5ff;
    display: inline-block;
    height: 32px;
    padding: 0 10px;
    line-height: 30px;
    font-size: 12px;
    color: #409EFF;
    border: 1px solid #d9ecff;
    border-radius: 4px;
    box-sizing: border-box;
    white-space: nowrap;
}
#news .box .content .item .position .bottom .create_time{
    font-size: 14px;
    color: #909399;
}
