/* static/nativeComponents/PopUp/index.wxss */ .pop-up{ font-size: 20rpx; position: fixed; left: 0; top: 0; z-index: 5000; width: 100%; height: 100%; } .shade { opacity: 0.7; background-color: #000; width: 100vw; height: 100vh; } .content{ z-index: 5001; width: 80%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; justify-content: center; } .content image{ width: 100%; height: 100%; } .content .back{ width: 48rpx; height: 48rpx; } .content .back em{ display: block; width: 100%; height: 4rpx; background-color: #fff; margin-top: 20rpx; box-shadow: 0 0 1rpx #fff; } em:nth-child(1) { transform: translateY(0em) rotate(45deg); } em:nth-child(2) { transform: translateY(-1.2em) rotate(-45deg); } .back-bottom { margin: 0 auto ; padding-top: 40rpx; } .back-top { position: absolute; top: 20rpx; right: 24rpx; }