123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- @import '/miniprogram_npm/@vant/weapp/common/index.wxss';
- .container {
- padding-bottom: 120rpx;
- }
- /*文件夹*/
- .dir {
- padding: 20rpx 50rpx 20rpx 30rpx;
- background: #FFFFFF;
- border-radius: 30rpx;
- margin: 25rpx 30rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- }
- .dir-left {
- display: flex;
- flex-direction: row;
- align-items: center;
- font-size: 30rpx;
- color: #333333;
- }
- .dir-img {
- width: 60rpx;
- height: 60rpx;
- margin-right: 25rpx;
- }
- .hover {
- background: #ccc !important;
- }
- /*文件*/
- .file {
- padding: 25rpx 30rpx;
- display: flex;
- }
- .file-img {
- width: 55rpx;
- height: 55rpx;
- }
- .file-left {
- width: 130rpx;
- height: 130rpx;
- background: #FFF9F7;
- border: 10rpx solid #FFFFFF;
- box-shadow: 0 11rpx 21rpx 0 rgba(213, 213, 213, 0.47);
- border-radius: 30rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-right: 30rpx;
- }
- .file-center {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .file-name {
- width: 400rpx;
- font-size: 30rpx;
- color: #333333;
- }
- .file-time {
- display: flex;
- font-size: 26rpx;
- color: #999999;
- }
- .file-size {
- width: 150rpx;
- margin-left: 10rpx;
- color: #216CE9;
- }
- .file-del {
- margin: 10rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- font-size: 24rpx;
- color: #FF4330;
- }
- /*按钮*/
- .btn {
- background: #efefef;
- box-sizing: border-box;
- width: 100%;
- padding: 40rpx;
- position: fixed;
- bottom: 0rpx;
- }
|