liuyn
2024-03-22 e8be4d964c6b336ed39dba5900b1b9a8f3181b96
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
.THIS .bottom .slds-form-element__control {
    display: inline-flex;
}
/*合同:xxx 一行输出*/
.vmItems{
    display: flex;
    align-items: center;
}
 
.vmItems span{
    width: 122px;
}
.c-container span{
    display: inline-block;
    padding: 10px 0;
    font-weight: bold;
}
.custom-box lightning-button{
    margin-top: 10px;
}
.pdfCheck{
    display: inline-flex;
}
/*button 样式改动*/
.bottomBtn button {
    border: 1px solid #0176d3;
    background-color: #fff;
    color: #0176d3;
    width: 90px;
    height: 35px ;
    /*overflow: hidden;
    white-space: nowrap ;
    text-overflow: ellipsis ;*/
    margin: 5px;
    border-radius: 5px;
}
.bottomBtn button:disabled,
.bottomBtn button[disabled]{
  border: 1px solid #c9c9c9;
  color: #c9c9c9;
}
/*底部 合同开始日 合同结束日*/
.bottomVMItem{
    display: flex;
    align-items: center;
    margin-left: 10px;
}
.bottomVMItem span{
    width: 90px;
}
/*.bottomVMItem  lightning-input-field{
    width: 230px;
}*/
 
.accordion {
    --slds-c-accordion-summary-color-background:#f3f3f3;
    /*--slds-c-accordion-heading-text-color:white;*/
    --slds-c-accordion-heading-font-size:18px;
}
/*覆盖原有padding*/
.accordion .slds-accordion__summary{
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
/*合同信息*/
.line{
    display: flex;
}
.line div{
    margin-right: 5px;
}
/*table 样式*/
.list tr th,.list tr td{
    border: 1px solid #ededed;
    white-space: normal;
}
.headerRow{
    background-color: #f2f3f3;
    font-weight: bold;
    font-size:.9em;
    
    border-width: 0 0 1px 1px;
    border-color: #e0e3e5;
 
}
/*必填*/
.required{
    display: inline !important;
    float: none;
    font-weight: var(--lwc-fontWeightBold,700) !important;
}