75 lines
1.4 KiB
CSS
75 lines
1.4 KiB
CSS
|
* {
|
||
|
font-weight: normal;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
.mask-layer {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
right: 0;
|
||
|
background: rgba(0, 0, 0, 0.6);
|
||
|
}
|
||
|
|
||
|
.model-container {
|
||
|
width: 360px;
|
||
|
height: 150px;
|
||
|
background: #fff;
|
||
|
border-radius: 10px;
|
||
|
/* box-shadow: 0px 0px 12px 4px #ff3; */
|
||
|
text-align: center;
|
||
|
font-size: 18px;
|
||
|
color: #333;
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
-webkit-transform: translate(-50%, -50%);
|
||
|
-moz-transform: translate(-50%, -50%);
|
||
|
-ms-transform: translate(-50%, -50%);
|
||
|
-o-transform: translate(-50%, -50%);
|
||
|
transform: translate(-50%, -50%);
|
||
|
z-index: 99999999999;
|
||
|
}
|
||
|
|
||
|
.model-container .model-title {
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
.model-container .controls {
|
||
|
position: absolute;
|
||
|
bottom: 10px;
|
||
|
width: 100%;
|
||
|
padding: 12px;
|
||
|
padding-top: 40px;
|
||
|
}
|
||
|
|
||
|
.model-container a {
|
||
|
display: inline-block;
|
||
|
width: 49%;
|
||
|
text-align: center;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.model-container .confirm {
|
||
|
width: 60px;
|
||
|
height: 30px;
|
||
|
background: #0087ff;
|
||
|
border-radius: 0.04rem !important;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
color: #fff;
|
||
|
line-height: 30px;
|
||
|
}
|
||
|
|
||
|
.model-container .cancel {
|
||
|
width: 60px;
|
||
|
height: 30px;
|
||
|
background: #0087ff;
|
||
|
border-radius: 0.04rem !important;
|
||
|
font-size: 14px;
|
||
|
font-weight: 400;
|
||
|
color: #fff;
|
||
|
line-height: 30px;
|
||
|
margin-left: 100px;
|
||
|
}
|