<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* �砍�望甅撘� */
.two-line {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.three-line {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
}

.common-card-box {
    position: relative;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0.28rem 0.32rem;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

.common-card-box::after {
    content: "";
    position: absolute;
    left: 0.28rem;
    bottom: 0;
    width: calc(100% - 0.56rem);
    height: 1px;
    background-color: #E8E9EE;
}

.common-card-box .common-card-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common-card-box .common-card-line.title-line {
    align-items: flex-start;
    margin-bottom: 0.12rem;
    height: auto;
    max-height: 0.8rem;
}

.common-card-box .title-line .title {
    width: 6.4rem;
    font-weight: 500;
    font-size: 0.32rem;
    color: #020E19;
    line-height: 0.4rem;
}

.common-card-box .title-line .icon-arrow-down {
    font-size: 0.5rem;
    color: #AAACB0;
    position: relative;
    top: -0.1rem;
    right: -0.1rem;
}

.common-card-box .info-box {
    margin-top: 0.14rem;
}

.common-card-box .info-box .left,
.common-card-box .info-box .right {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.common-card-box .info-box .right {
    justify-content: flex-end;
}

.common-card-box .info-box .left .avatar {
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 50%;
    margin-right: 0.08rem;
}

.common-card-box .info-box .left .name {
    width: auto;
    font-weight: 400;
    font-size: 0.24rem;
    color: #020E19;
}

.common-card-box .info-box .right .icon-view {
    font-size: 0.28rem;
    color: #444;
    margin-right: 0.08rem;
}

.common-card-box .info-box .right .view-num {
    font-weight: 400;
    font-size: 0.24rem;
    color: #4F5A64;
}

/* ��訫㦛�㨃��� */
.single-img-card-box .content-box .content {
    width: 4.3rem;
    height: 1.38rem;
    font-size: 0.28rem;
    color: #4F5153;
    line-height: 0.48rem;
}

.single-img-card-box .content-box .content-img {
    width: 2.05rem;
    height: 1.38rem;
    border-radius: 0.08rem;
    object-fit: cover;
}


/* 憭𡁜㦛�㨃��� */
.multi-img-card-box .content-box {
    width: 100%;
    height: auto
}


.multi-img-card-box .content-box .content-img {
    width: 2.18rem;
    height: 2.18rem;
    border-radius: 0.08rem;
    object-fit: cover;
}

/* 閫�憸穃㨃��� */
.video-card-box .content-box {
    position: relative;
    width: 100%;
    height: 52vw;
    border-radius: 0.08rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.08rem;
    /* �俈甇Ｗ�𥡝器璅∠�𡃏���� 颲寧�䀝�齿��苊 */
    overflow: hidden;
}

.video-card-box .content-box .cover-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.08rem;
    z-index: 1;
    filter: blur(5px);
}

.video-card-box .content-box .cover-glass {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.08rem;
}

.video-card-box .content-box .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    border-radius: 0.08rem;
}

.video-card-box .content-box .cover-img.vertical {
    width: auto;
    border-radius: 0;
}

.video-card-box .content-box .play-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: calc((100% - 1.36rem) / 2);
    width: 100%;
    height: 1.36rem;
    z-index: 4;
}

.video-card-box .content-box .play-box .play-icon {
    width: 0.72rem;
    height: 0.72rem;
}

.video-card-box .content-box .play-time {
    position: absolute;
    left: 0.08rem;
    bottom: 0.08rem;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.4rem;
    text-shadow: 0px 6px 22px rgba(0,0,0,0.5);
    background-color: rgb(18, 20, 20, 0.5);
    border-radius: 0.22rem;
    padding: 0 0.2rem;
    height: 0.44rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
    z-index: 5;
}</pre></body></html>