index.css 965 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .TUI-fileMessage {
  2. display: flex;
  3. padding: 10rpx 24rpx;
  4. background-color: #fff;
  5. border-radius: 2px 10px 10px 10px;
  6. border: 1px solid #D9D9D9;
  7. }
  8. .fileMessage {
  9. display: flex;
  10. }
  11. .fileMessage-box {
  12. display: flex;
  13. background: white;
  14. align-items: center;
  15. height: 150rpx;
  16. }
  17. .file-icon {
  18. width: 80rpx;
  19. height: 80rpx;
  20. }
  21. .pop {
  22. position: fixed;
  23. width: 50%;
  24. bottom: 400rpx;
  25. margin-left: 90rpx;
  26. background: rgba(0, 0, 0, 0.3);
  27. z-index: 99999;
  28. }
  29. .text-box {
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. height: 112rpx;
  34. }
  35. .download-confirm {
  36. font-family: PingFangSC-Regular;
  37. font-size: 16px;
  38. color: #E85454;
  39. letter-spacing: 0;
  40. text-align: center;
  41. line-height: 22px;
  42. }
  43. .abandon {
  44. opacity: 0.8;
  45. font-family: PingFangSC-Regular;
  46. font-size: 16px;
  47. color: #FFFFFF;
  48. letter-spacing: 0;
  49. text-align: center;
  50. line-height: 22px;
  51. }
  52. .file-title {
  53. max-width: 53vw;
  54. display: inline;
  55. word-wrap: break-word;
  56. word-break: break-all;
  57. }