uploadFile.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. color: #333333;
  22. }
  23. .dir-img {
  24. width: 60rpx;
  25. height: 60rpx;
  26. margin-right: 25rpx;
  27. }
  28. .hover {
  29. background: #ccc !important;
  30. }
  31. /*文件*/
  32. .file {
  33. padding: 25rpx 30rpx;
  34. display: flex;
  35. }
  36. .file-img {
  37. width: 55rpx;
  38. height: 55rpx;
  39. }
  40. .file-left {
  41. width: 130rpx;
  42. height: 130rpx;
  43. background: #FFF9F7;
  44. border: 10rpx solid #FFFFFF;
  45. box-shadow: 0 11rpx 21rpx 0 rgba(213, 213, 213, 0.47);
  46. border-radius: 30rpx;
  47. display: flex;
  48. justify-content: center;
  49. align-items: center;
  50. margin-right: 30rpx;
  51. }
  52. .file-center {
  53. flex: 1;
  54. display: flex;
  55. flex-direction: column;
  56. justify-content: space-around;
  57. }
  58. .file-name {
  59. width: 400rpx;
  60. font-size: 30rpx;
  61. color: #333333;
  62. }
  63. .file-time {
  64. display: flex;
  65. font-size: 26rpx;
  66. color: #999999;
  67. }
  68. .file-size {
  69. width: 150rpx;
  70. margin-left: 10rpx;
  71. color: #216CE9;
  72. }
  73. .file-del {
  74. margin: 10rpx;
  75. display: flex;
  76. flex-direction: column;
  77. justify-content: center;
  78. align-items: center;
  79. font-size: 24rpx;
  80. color: #FF4330;
  81. }
  82. /*按钮*/
  83. .btn {
  84. background: #efefef;
  85. box-sizing: border-box;
  86. width: 100%;
  87. padding: 40rpx;
  88. position: fixed;
  89. bottom: 0rpx;
  90. }