Open lewenweijia opened 5 years ago
.dummy-modal-wrapper {
position: absolute;
height: 100%;
width: 100%;
top: 0;
left: 0;
background: rgba(255, 255, 255, 0.8);
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
}
.dummy-modal-wrapper > .dummy-modal-body {
box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.08);
border: 1px solid rgba(230, 230, 230, 1);
background: white;
border-radius: 4px;
min-width: 540px;
font-size: 14px;
// 头部
.dummy-modal-header {
display: flex;
padding: 20px;
.left-side {
color: #4c4c4c;
}
.right-side.close {
margin-left: auto;
.icon-xiaochacha {
cursor: pointer;
font-size: 13px;
color: #999;
position: relative;
top: 1px;
}
}
}
// 内容区
.dummy-modal-content {
margin-top: 40px;
margin-bottom: 30px;
padding: 0 55px;
font-size: 16px;
display: flex;
flex-flow: column nowrap;
align-items: center;
}
// 底部按钮区
.dummy-modal-btn-actions {
display: flex;
margin: 0 95px 50px;
justify-content: center;
.btn {
width: 160px;
height: 40px;
border-radius: 2px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
&.btn-cancel {
color: #1989fa;
background: white;
border: 1px solid #1989fa;
margin-right: 30px;
&:hover {
background: rgba(25, 137, 250, 0.3);
}
&:active {
color: white;
background: #1989fa;
}
}
&.btn-confirm {
color: white;
background: #1989fa;
border: 1px solid #1989fa;
&:hover {
background: #1571ce;
}
}
}
}
}