test.wxss 757 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .ABox {
  2. color: #666;
  3. padding: 15px;
  4. border-radius: 6px;
  5. width: 45%;
  6. margin: 0 2.5% 20px;
  7. background-image: url(https://image.weilanwl.com/color2.0/cardBg.png);
  8. background-size: cover;
  9. background-position: center;
  10. position: relative;
  11. z-index: 1;
  12. }
  13. .ABox::after {
  14. content: "";
  15. position: absolute;
  16. z-index: -1;
  17. background-color: inherit;
  18. width: 100%;
  19. height: 100%;
  20. left: 0;
  21. bottom: -10%;
  22. border-radius: 5px;
  23. opacity: 0.2;
  24. transform: scale(0.9, 0.9);
  25. }
  26. .Box {
  27. color: #666;
  28. padding: 15px;
  29. border-radius: 6px;
  30. width: 45%;
  31. margin: 0 2.5% 20px;
  32. background-image: url(https://image.weilanwl.com/color2.0/cardBg.png);
  33. background-size: cover;
  34. background-position: center;
  35. position: relative;
  36. z-index: 1;
  37. }