| 12345678910111213141516171819202122232425262728293031 |
- @import "./mixin";
- @import "./variable";
- :root{
- --screenWidth: 1080;
- }
- $screenWidth:375;
- @function rpx($value){
- @return $screenWidth / 750 * $value + px;
- }
- // 图片预览去除下载和翻转
- .PhotoSlider__BannerWrap {
- .PhotoSlider__BannerRight {
- svg {
- &:nth-child(1),
- &:nth-child(4),
- &:nth-child(5) {
- display: none;
- }
- }
- }
- }
- .PhotoSlider__FooterWrap {
- display: none;
- }
- .PhotoSlider__Wrapper {
- z-index: 9999 !important;
- }
- .el-message {
- z-index: 10000 !important;
- }
|