.portal-tweet {
    width: 100%;
    height: 583px;
    background: #ffffff;
}

.portal-tweet-box {
    display: flex;
    align-items: center;
    gap: 24px;
}

.portal-tweet-box-item {
    width: 384px;
    height: 327px;
    border: 1px solid #deddeb;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 0px rgba(82, 73, 182, 0.03);
    padding: 16px 16px 20px;
}

.tweet-item-img-box {
    overflow: hidden;
    border-radius: 14px;
}

.tweet-item-img {
    width: 352px;
    height: 150px;
    overflow: hidden;
    object-fit: cover;
    border-radius: 14px;
}

.tweet-item-content {
    margin-top: 20.85px;
    height: 68px;
    font-size: 18px;
    font-family: Microsoft YaHei UI, Microsoft YaHei UI-600;
    font-weight: 500;
    text-align: LEFT;
    color: #17171a;
    line-height: 34px;
    letter-spacing: 0.05px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tweet-item-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.tweet-item-btn-left {
    width: 56px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #786df2;
    border-radius: 21px;
    transition: all 0.15s linear;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}


/* btn变大跟改变颜色的css */
.tweet-item-btn-left-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
}

.tweet-item-btn-left-info {
    transition: all 0.15s linear;
    transform: scaleX(0);
    opacity: 0;
}

.portal-tweet-box-item:hover .tweet-item-btn-left-info {
    transform: scaleX(1);
    opacity: 1;
}


.portal-tweet-box-item:hover .tweet-item-btn-left {
    width: 120px;
    background: #786df2;
}

.portal-tweet-box-item:hover .tweet-item-btn-left-img {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0);
    filter: brightness(100);
    margin-left: 6.78px;
}

/* btn变大跟改变颜色的css */

/* 放大图片 */
.tweet-item-img-box .tweet-item-img{
    transition: all .2s linear;
}

.tweet-item-img-box:hover .tweet-item-img {
    transform: scale(1.2);
}

/* 放大图片 */
.tweet-item-btn-time {
    font-size: 16px;
    font-family: Arial, Arial-400;
    font-weight: 400;
    text-align: LEFT;
    color: #8e8d99;
    line-height: 26px;
    letter-spacing: 0.08px;
}

