114 lines
2.3 KiB
Plaintext
114 lines
2.3 KiB
Plaintext
|
|
.mark {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-flow: row nowrap;
|
|
flex-flow: row nowrap;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
z-index: 1000;
|
|
}
|
|
.view {
|
|
width: 80vw;
|
|
height: 70vw;
|
|
background-color: white;
|
|
border-radius: 15rpx;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-flow: column;
|
|
flex-flow: column;
|
|
-webkit-box-pack: start;
|
|
-webkit-justify-content: flex-start;
|
|
justify-content: flex-start;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
}
|
|
.title {
|
|
margin-top: 20rpx;
|
|
color: #000000;
|
|
font-weight: bold;
|
|
font-size: 38rpx;
|
|
text-align: center;
|
|
}
|
|
.tip {
|
|
margin-top: 20rpx;
|
|
margin-left: 30rpx;
|
|
-webkit-align-self: flex-start;
|
|
align-self: flex-start;
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
color: black;
|
|
}
|
|
.scroll {
|
|
width: 100%;
|
|
height: 300rpx;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-flow: column;
|
|
flex-flow: column;
|
|
-webkit-box-pack: start;
|
|
-webkit-justify-content: flex-start;
|
|
justify-content: flex-start;
|
|
-webkit-box-align: start;
|
|
-webkit-align-items: flex-start;
|
|
align-items: flex-start;
|
|
}
|
|
.item {
|
|
margin-left: 50rpx;
|
|
text-align: left;
|
|
font-size: 30rpx;
|
|
}
|
|
.btns {
|
|
width: 100%;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: flex;
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
-webkit-flex-flow: row nowrap;
|
|
flex-flow: row nowrap;
|
|
-webkit-box-pack: center;
|
|
-webkit-justify-content: center;
|
|
justify-content: center;
|
|
-webkit-box-align: center;
|
|
-webkit-align-items: center;
|
|
align-items: center;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.icon {
|
|
width: 45rpx;
|
|
height: 45rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
.sure {
|
|
padding: 10rpx 0;
|
|
text-align: center;
|
|
color: #008B8B;
|
|
font-size: 30rpx;
|
|
font-weight: 500;
|
|
}
|
|
.progress {
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|