| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @import "/pages/tabbar-pages/supplyAndDemand/particulars.wxss";
- @import "/wxParse/wxParse.wxss";
- page {
- background-color: #ffffff;
- }
- .filesList {
- display: flex;
- flex-wrap: wrap;
- width: 620rpx;
- margin: 0 auto;
- }
- .files-item {
- display: flex;
- flex-direction: column;
- width: 25%;
- align-items: center;
- padding-top: 20rpx;
- }
- .files-item-img {
- width: 96rpx;
- height: 68rpx;
- overflow: hidden;
- }
- .files-item-img>image {
- width: 100%;
- height: 100%;
- }
- .files-item-name {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 24rpx;
- width: 100%;
- height: 34rpx;
- line-height: 34rpx;
- color: rgba(51, 51, 51, 0.6);
- margin-top: 10rpx;
- }
- .files-item-name>image {
- width: 24rpx;
- height: 24rpx;
- margin-left: 6rpx;
- }
|