73 lines
1.6 KiB
Plaintext
73 lines
1.6 KiB
Plaintext
|
/* template/open-ad/open-ad.wxss */
|
||
|
.pop {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
background-color: rgba(0, 0, 0, 0.8);
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
z-index: 9999999;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
.btn {
|
||
|
position: absolute;
|
||
|
// top: 180rpx;
|
||
|
// right: 20rpx;
|
||
|
top: 80rpx;
|
||
|
left: 20rpx;
|
||
|
width: 130rpx;
|
||
|
height: 45rpx;
|
||
|
line-height: 45rpx;
|
||
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
border-radius: 40rpx;
|
||
|
color: #FFFFFF;
|
||
|
font-size: 26rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
.num {
|
||
|
width: 45rpx;
|
||
|
height: 45rpx;
|
||
|
border-radius: 50%;
|
||
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.text {
|
||
|
flex: 1;
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.img {
|
||
|
width: 80vw;
|
||
|
max-height: 100vh;
|
||
|
}
|
||
|
|
||
|
.skip {
|
||
|
position: fixed;
|
||
|
left: 50%;
|
||
|
transform: translateX(-50%);
|
||
|
bottom: 300rpx;
|
||
|
width: 45vw;
|
||
|
height: 80rpx;
|
||
|
line-height: 80rpx;
|
||
|
border-radius: 40vh;
|
||
|
background-color: rgba(0, 0, 0, 0.7);
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
color: rgba(255, 255, 255, 0.8);
|
||
|
font-size: 32rpx;
|
||
|
|
||
|
.icon {
|
||
|
width: 24rpx;
|
||
|
height: 24rpx;
|
||
|
margin-left: 15rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|