homeTwo.wxss 468 B

123456789101112131415161718192021222324252627
  1. .flex-1px-r,.flex-1px-b {
  2. position: relative;
  3. }
  4. .flex-1px-r::after {
  5. content: "";
  6. position: absolute;
  7. right: 0;
  8. top: 0;
  9. bottom: 0;
  10. width: 2rpx;
  11. background: #c7c7c7;
  12. z-index: 5;
  13. transform: scaleX(0.5);
  14. -webkit-transform: scaleX(0.5);
  15. }
  16. .flex-1px-b::after{
  17. content: "";
  18. position: absolute;
  19. right: 0;
  20. left: 0;
  21. bottom: 10rpx;
  22. height: 2rpx;
  23. background: #c7c7c7;
  24. z-index: 5;
  25. transform: scaleY(0.5);
  26. -webkit-transform: scaleY(0.5);
  27. }