123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .detail-container {
- max-height: 70vh;
- overflow-y: auto;
- }
- .detail-card {
- margin-bottom: 20px;
- }
- .detail-card:last-child {
- margin-bottom: 0;
- }
- .card-header {
- font-weight: bold;
- color: #303133;
- }
- .detail-item {
- margin-bottom: 15px;
- display: flex;
- align-items: center;
- }
- .detail-item label {
- font-weight: bold;
- color: #606266;
- min-width: 80px;
- margin-right: 10px;
- }
- .detail-item span {
- color: #303133;
- }
- .amount {
- color: #E6A23C;
- font-weight: bold;
- }
- .file-preview {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 40px;
- }
- .thumbnail-image {
- cursor: pointer;
- border-radius: 4px;
- border: 1px solid #dcdfe6;
- transition: all 0.3s;
- }
- .thumbnail-image:hover {
- border-color: #409eff;
- transform: scale(1.1);
- }
- .pdf-thumbnail,
- .file-thumbnail {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 40px;
- height: 40px;
- border: 1px solid #dcdfe6;
- border-radius: 4px;
- cursor: pointer;
- transition: all 0.3s;
- font-size: 12px;
- color: #606266;
- }
- .pdf-thumbnail:hover,
- .file-thumbnail:hover {
- border-color: #409eff;
- color: #409eff;
- }
- .pdf-thumbnail i,
- .file-thumbnail i {
- font-size: 16px;
- margin-bottom: 2px;
- }
- .error-icon {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 40px;
- height: 40px;
- border: 1px solid #dcdfe6;
- border-radius: 4px;
- color: #c0c4cc;
- font-size: 16px;
- }
- .preview-container {
- text-align: center;
- }
- .preview-image {
- max-width: 100%;
- max-height: 60vh;
- border-radius: 4px;
- }
- .dialog-footer {
- text-align: right;
- }
|