You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
.selectUnit {
|
|
|
|
width: 85%;
|
|
|
|
position: relative;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
border-radius: 2px;
|
|
|
|
transition: all 0.3s;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 30px;
|
|
|
|
cursor: pointer;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-left: 10px;
|
|
|
|
|
|
|
|
.gray {
|
|
|
|
color: #C7C8C7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectUnitPopover {
|
|
|
|
position: absolute;
|
|
|
|
left: -1px;
|
|
|
|
top: 35px;
|
|
|
|
width: 520px;
|
|
|
|
height: 438px;
|
|
|
|
z-index: 9999;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid #d9d9d9;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 10px;
|
|
|
|
nz-form-item {
|
|
|
|
margin: 12px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.popoverTitle {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
span {
|
|
|
|
color: #C7CAD0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectedspan {
|
|
|
|
color: #2C4DC0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popoverContent {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.popoverContentitem {
|
|
|
|
flex: 1;
|
|
|
|
overflow-y: auto;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popoverBtn {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
margin-top: 16px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
margin-left: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|