index.less 516 B

1234567891011121314151617181920212223242526272829
  1. .header {
  2. position: relative;
  3. .headerBg {
  4. position: absolute;
  5. z-index: -2;
  6. width: 100%;
  7. height: 100%;
  8. background-color:#F2F6FC;
  9. }
  10. .swiper {
  11. margin: 0 auto;
  12. width: 700rpx;
  13. height: 250rpx;
  14. border-radius: 30rpx;
  15. overflow: hidden;
  16. box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  17. .swiper-item {
  18. width: 100%;
  19. height: 100%;
  20. border-radius: 20rpx;
  21. overflow: hidden;
  22. object-fit: cover;
  23. }
  24. }
  25. }