uploadFile.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. @import '/miniprogram_npm/@vant/weapp/common/index.wxss';
  2. .container {
  3. padding-bottom: 120rpx;
  4. }
  5. /*文件夹*/
  6. .dir {
  7. padding: 20rpx 50rpx 20rpx 30rpx;
  8. background: #FFFFFF;
  9. border-radius: 30rpx;
  10. margin: 25rpx 30rpx;
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: space-between;
  14. align-items: center;
  15. }
  16. .dir-left {
  17. display: flex;
  18. flex-direction: row;
  19. align-items: center;
  20. font-size: 30rpx;
  21. font-weight: 500;
  22. color: #333333;
  23. }
  24. .dir-img {
  25. width: 60rpx;
  26. height: 60rpx;
  27. margin-right: 25rpx;
  28. }
  29. .hover {
  30. background: #ccc !important;
  31. }
  32. /*文件*/
  33. .file {
  34. padding: 25rpx 30rpx;
  35. display: flex;
  36. }
  37. .file-img {
  38. width: 55rpx;
  39. height: 55rpx;
  40. }
  41. .file-left {
  42. width: 130rpx;
  43. height: 130rpx;
  44. background: #FFF9F7;
  45. border: 10rpx solid #FFFFFF;
  46. box-shadow: 0 11rpx 21rpx 0 rgba(213, 213, 213, 0.47);
  47. border-radius: 30rpx;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. margin-right: 30rpx;
  52. }
  53. .file-center {
  54. flex: 1;
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: space-around;
  58. }
  59. .file-name {
  60. width: 400rpx;
  61. font-size: 30rpx;
  62. font-weight: 500;
  63. color: #333333;
  64. }
  65. .file-time {
  66. display: flex;
  67. font-size: 26rpx;
  68. font-weight: 400;
  69. color: #999999;
  70. }
  71. .file-size {
  72. width: 150rpx;
  73. margin-left: 10rpx;
  74. color: #216CE9;
  75. }
  76. .file-del {
  77. margin: 10rpx;
  78. display: flex;
  79. flex-direction: column;
  80. justify-content: center;
  81. align-items: center;
  82. font-size: 24rpx;
  83. font-weight: 400;
  84. color: #FF4330;
  85. }
  86. /*按钮*/
  87. .btn {
  88. background: #efefef;
  89. box-sizing: border-box;
  90. width: 100%;
  91. padding: 40rpx;
  92. position: fixed;
  93. bottom: 0rpx;
  94. }