index.css 409 B

12345678910111213141516171819202122232425
  1. /* template/couponAd/index.wxss */
  2. .layer{
  3. position: fixed;
  4. top: 0;
  5. z-index: 101;
  6. left: 0;
  7. right: 0;
  8. display: flex;
  9. bottom: 0;
  10. background: rgba(0,0,0,0.7);
  11. justify-content: center;
  12. align-items: center;
  13. flex-direction: column;
  14. }
  15. .layer image{
  16. width: 535rpx;
  17. height: 650rpx;
  18. }
  19. /*关闭按钮样式 */
  20. .layer .close{
  21. color:#fff;
  22. width: 60rpx;
  23. height: 60rpx;
  24. margin-top: 80rpx;
  25. }