index.scss 547 B

12345678910111213141516171819202122232425262728293031
  1. @import "./mixin";
  2. @import "./variable";
  3. :root{
  4. --screenWidth: 1080;
  5. }
  6. $screenWidth:375;
  7. @function rpx($value){
  8. @return $screenWidth / 750 * $value + px;
  9. }
  10. // 图片预览去除下载和翻转
  11. .PhotoSlider__BannerWrap {
  12. .PhotoSlider__BannerRight {
  13. svg {
  14. &:nth-child(1),
  15. &:nth-child(4),
  16. &:nth-child(5) {
  17. display: none;
  18. }
  19. }
  20. }
  21. }
  22. .PhotoSlider__FooterWrap {
  23. display: none;
  24. }
  25. .PhotoSlider__Wrapper {
  26. z-index: 9999 !important;
  27. }
  28. .el-message {
  29. z-index: 10000 !important;
  30. }