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.
88 lines
1.5 KiB
88 lines
1.5 KiB
.box {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 999;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: flex-end;
|
|
flex-direction: column;
|
|
width: 600rpx;
|
|
}
|
|
.arrow {
|
|
width: 0;
|
|
height: 0;
|
|
margin-right: 140rpx;
|
|
border-width: 20rpx;
|
|
border-style: solid;
|
|
border-color: transparent transparent #00b0f0 transparent;
|
|
}
|
|
.body {
|
|
background-color: #00b0f0;
|
|
box-shadow: 0 5rpx 10rpx -5rpx #00b0f0;
|
|
border-radius: 12rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 84rpx;
|
|
padding: 0 20rpx;
|
|
margin-right: 40rpx;
|
|
}
|
|
.body > text {
|
|
color: #FFF;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.modal {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 999;
|
|
background-color: rgba(255, 255, 255, 0.9);
|
|
padding: 20px;
|
|
}
|
|
.modal > view {
|
|
margin: 10px 0;
|
|
display: flex;
|
|
/* align-items: center; */
|
|
flex-direction: column;
|
|
}
|
|
.modal > view > text {
|
|
font-size: 16px;
|
|
font-weight: 400;
|
|
margin-bottom: 5px;
|
|
color: #333;
|
|
}
|
|
.modal > view > image {
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.ok-btn {
|
|
width: 100%;
|
|
margin-top: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.ok-btn > view {
|
|
height: 40px;
|
|
width: 120px;
|
|
background-color: #00b0f0;
|
|
box-shadow: 0 5px 10px -px #00b0f0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 40px;
|
|
}
|
|
.ok-btn > view > text {
|
|
font-size: 14px;
|
|
color: #fff;
|
|
font-weight: 400;
|
|
}
|
|
.btn-hover {
|
|
opacity: 0.6;
|
|
} |