123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- @import "common/common.scss";
- .file-info-container {
- width: 100%;
- display: flex;
- align-items: center;
- flex-direction: column;
- padding: 0;
- .u-page{
- padding: 0;
- .u-list-item{
- margin-bottom: 20rpx;
- &:not(:last-child){
- border-bottom: 1px solid rgba(134, 134, 134, 0.47);
- }
- }
- }
- /deep/ .file-info-item {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- box-sizing: border-box;
- padding: 20rpx 0;
- .file-info-item-img {
- width: 110rpx;
- height: 145rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- image{
- width: 100%;
- height: 100%;
- }
- }
- .file-info-item-content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- margin-left: 20rpx;
- flex-grow: 1;
- .file-info-item-title {
- height: 100rpx;
- line-height: 50rpx;
- width: 500rpx;
- word-break: break-word;
- box-sizing: border-box;
- font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
- font-weight: 650;
- color: #333333;
- display: -webkit-box;
- -webkit-line-clamp: 2; /* 控制显示的行数 */
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- }
|