min-project/component/open-ad/open-ad.wxss
2024-12-12 12:14:09 +08:00

66 lines
1.2 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;
}
.pop .btn {
position: absolute;
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;
}
.pop .btn .num {
width: 45rpx;
height: 45rpx;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}
.pop .btn .text {
flex: 1;
text-align: center;
}
.pop .img {
width: 80vw;
max-height: 100vh;
}
.pop .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;
}
.pop .skip .icon {
width: 24rpx;
height: 24rpx;
margin-left: 15rpx;
}