index.scss 542 B

123456789101112131415161718192021222324
  1. /* 弹窗 */
  2. .popup {
  3. .header {
  4. position: relative;
  5. width: 100%;
  6. height: 100rpx;
  7. line-height: 100rpx;
  8. text-align: center;
  9. border-bottom: 1px solid #EEEEEE;
  10. font-size: 28rpx;
  11. font-family: PingFang SC-Regular, PingFang SC;
  12. color: #333333;
  13. .close {
  14. position: absolute;
  15. width: 100rpx;
  16. height: 100rpx;
  17. text-align: center;
  18. line-height: 100rpx;
  19. top: 0;
  20. right: 0;
  21. }
  22. }
  23. }