1234567891011121314151617181920212223242526272829303132 |
- /* component/fileItem/fileItem.wxss */
- .fileitem_bg {
- width: 667rpx;
- height: 99rpx;
- margin-bottom: 48rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .fileitem_icon {
- width: 54rpx;
- height: 44rpx
- }
- .fileitem_content {
- flex: 1;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: flex-start;
- justify-content: center;
- margin-left: 18rpx;
- }
- .fileitem_more_icon {
- width: 32rpx;
- height: 7rpx;
- align-self: flex-start;
- margin-top: 21rpx;
- }
|