广州市综治平台前端
liuwh
3 days ago 07a9468ec9e069828b1e6527cffbb63b05296e24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.template-content {
  position: relative;
  
  .content-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    height: 63px;
    word-break: break-all;
    margin-bottom: 4px;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  .view-more-row {
    height: 22px;
    line-height: 22px;
  }
  
  .view-more {
    color: #1A6FB8;
    cursor: pointer;
    
    &:hover {
      color: #40a9ff;
    }
  }
}
 
.operate-link {
  color: #1A6FB8;
  cursor: pointer;
  
  &:hover {
    color: #40a9ff;
  }
}
 
// 模板详情弹窗样式
:global(.template-detail-modal) {
  .ant-modal-confirm-title {
    margin-bottom: 0 !important;
    color: #1A6FB8 !important;
  }
 
  .modal-title-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    height: 32px;
    
    .modal-title-label {
      color: #1A6FB8;
      border: 1px solid #1A6FB8;
      padding: 2px 8px;
      border-radius: 2px;
      font-size: 16px;
      line-height: 22px;
      height: 28px;
      display: flex;
      align-items: center;
    }
    
    .template-name {
      font-size: 16px;
      color: #333;
      line-height: 28px;
      height: 28px;
      display: flex;
      align-items: center;
    }
  }
 
  .template-detail-content {
    padding: 0 24px;
    
    .template-text {
      margin-top: 16px;
      white-space: pre-wrap;
      color: #666;
      line-height: 1.5;
      max-height: 300px;
      overflow-y: auto;
      padding: 16px;
      background: #f5f5f5;
      border-radius: 4px;
    }
  }
  
  .ant-modal-confirm-btns {
    text-align: center;
    margin-top: 24px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    
    .confirm-cancel-btn {
      margin-left: 8px;
      order: 2;
      min-width: 88px;
    }
    
    .confirm-ok-btn {
      order: 1;
      min-width: 88px;
    }
  }