/* components/file/index.wxss */
|
.file {
|
background-color: #f2f2f2;
|
font-size: 28rpx;
|
padding: 24rpx;
|
margin-bottom: 16rpx;
|
border-radius: var(--border-radius-card);
|
}
|
|
.file-header {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
line-height: 44rpx;
|
}
|
|
.file-header-link {
|
color: var(--main-color);
|
font-size: 24rpx;
|
}
|
|
.file-main {
|
display: flex;
|
justify-content: space-between;
|
margin-top: 8rpx;
|
font-size: 24rpx;
|
line-height: 40rpx;
|
}
|
|
.file-main-content {
|
overflow: hidden;
|
display: flex;
|
align-items: center;
|
flex: 1;
|
justify-content: flex-end;
|
padding-left: 32rpx;
|
}
|
|
.file-main-content-text {
|
overflow: hidden;
|
text-overflow: ellipsis;
|
white-space: nowrap;
|
}
|