index.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .detail-container {
  2. max-height: 70vh;
  3. overflow-y: auto;
  4. }
  5. .detail-card {
  6. margin-bottom: 20px;
  7. }
  8. .detail-card:last-child {
  9. margin-bottom: 0;
  10. }
  11. .card-header {
  12. font-weight: bold;
  13. color: #303133;
  14. }
  15. .detail-item {
  16. margin-bottom: 15px;
  17. display: flex;
  18. align-items: center;
  19. }
  20. .detail-item label {
  21. font-weight: bold;
  22. color: #606266;
  23. min-width: 80px;
  24. margin-right: 10px;
  25. }
  26. .detail-item span {
  27. color: #303133;
  28. }
  29. .amount {
  30. color: #E6A23C;
  31. font-weight: bold;
  32. }
  33. .file-preview {
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. height: 40px;
  38. }
  39. .thumbnail-image {
  40. cursor: pointer;
  41. border-radius: 4px;
  42. border: 1px solid #dcdfe6;
  43. transition: all 0.3s;
  44. }
  45. .thumbnail-image:hover {
  46. border-color: #409eff;
  47. transform: scale(1.1);
  48. }
  49. .pdf-thumbnail,
  50. .file-thumbnail {
  51. display: flex;
  52. flex-direction: column;
  53. align-items: center;
  54. justify-content: center;
  55. width: 40px;
  56. height: 40px;
  57. border: 1px solid #dcdfe6;
  58. border-radius: 4px;
  59. cursor: pointer;
  60. transition: all 0.3s;
  61. font-size: 12px;
  62. color: #606266;
  63. }
  64. .pdf-thumbnail:hover,
  65. .file-thumbnail:hover {
  66. border-color: #409eff;
  67. color: #409eff;
  68. }
  69. .pdf-thumbnail i,
  70. .file-thumbnail i {
  71. font-size: 16px;
  72. margin-bottom: 2px;
  73. }
  74. .error-icon {
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. width: 40px;
  79. height: 40px;
  80. border: 1px solid #dcdfe6;
  81. border-radius: 4px;
  82. color: #c0c4cc;
  83. font-size: 16px;
  84. }
  85. .preview-container {
  86. text-align: center;
  87. }
  88. .preview-image {
  89. max-width: 100%;
  90. max-height: 60vh;
  91. border-radius: 4px;
  92. }
  93. .dialog-footer {
  94. text-align: right;
  95. }