| 12345678910111213141516171819202122232425 |
- /* template/couponAd/index.wxss */
- .layer{
- position: fixed;
- top: 0;
- z-index: 101;
- left: 0;
- right: 0;
- display: flex;
- bottom: 0;
- background: rgba(0,0,0,0.7);
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .layer image{
- width: 535rpx;
- height: 650rpx;
- }
- /*关闭按钮样式 */
- .layer .close{
- color:#fff;
- width: 60rpx;
- height: 60rpx;
- margin-top: 80rpx;
- }
|