86 lines
1.4 KiB
Plaintext
86 lines
1.4 KiB
Plaintext
button {
|
|
background: #fff;
|
|
font-size: 30rpx;
|
|
color: #50b33c;
|
|
line-height: 100rpx;
|
|
width: 50%;
|
|
}
|
|
|
|
button:after {
|
|
display: none;
|
|
}
|
|
|
|
.model {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0,0,0,0.5);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.model .inner {
|
|
width: 624rpx;
|
|
height: 380rpx;
|
|
background: #fff;
|
|
border-radius: 8rpx;
|
|
margin: 260rpx auto;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.model .inner .title {
|
|
font-size: 36rpx;
|
|
color: #000;
|
|
line-height: 100rpx;
|
|
text-align: center;
|
|
margin-top: 20rpx;
|
|
border-bottom: 1rpx solid #ebebeb;
|
|
}
|
|
|
|
.model .inner .image {
|
|
text-align: center;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.model .inner image {
|
|
width: 342rpx;
|
|
height: 202rpx;
|
|
}
|
|
|
|
.model .inner .subtitle {
|
|
margin-top: 36rpx;
|
|
padding: 0 80rpx;
|
|
color: #888;
|
|
font-size: 26rpx;
|
|
line-height: 40rpx;
|
|
}
|
|
|
|
.model-btns {
|
|
border-top: 1rpx solid #ebebeb;
|
|
height: 100rpx;
|
|
margin-top: 42rpx;
|
|
display: flex;
|
|
text-align: center;
|
|
font-size: 30rpx;
|
|
color: #000;
|
|
line-height: 100rpx;
|
|
}
|
|
|
|
.model-btns .cancel {
|
|
width: 50%;
|
|
position: relative;
|
|
}
|
|
|
|
.model-btns .cancel:after {
|
|
content: " ";
|
|
position: absolute;
|
|
top: -1rpx;
|
|
right: 0;
|
|
width: 1px;
|
|
height: 210rpx;
|
|
border-right: 1px solid #ebebeb;
|
|
color: #ebebeb;
|
|
transform-origin: 0 0;
|
|
transform: scaleY(0.5);
|
|
} |