| 1 | /* AgentFeatures Swiper 分页器样式 */ |
| 2 | .agent-features-swiper .swiper { |
| 3 | padding-bottom: 2.5rem !important; |
| 4 | } |
| 5 | |
| 6 | .agent-features-swiper .swiper-pagination { |
| 7 | position: absolute !important; |
| 8 | bottom: 0 !important; |
| 9 | left: 0 !important; |
| 10 | right: 0 !important; |
| 11 | display: flex !important; |
| 12 | justify-content: center !important; |
| 13 | gap: 6px !important; |
| 14 | } |
| 15 | |
| 16 | .agent-features-swiper .swiper-pagination-bullet { |
| 17 | width: 8px !important; |
| 18 | height: 8px !important; |
| 19 | background: oklch(0.6 0 0 / 0.3) !important; |
| 20 | opacity: 1 !important; |
| 21 | border-radius: 9999px !important; |
| 22 | transition: |
| 23 | width 0.3s ease, |
| 24 | background 0.3s ease !important; |
| 25 | margin: 0 !important; |
| 26 | } |
| 27 | |
| 28 | .agent-features-swiper .swiper-pagination-bullet-active { |
| 29 | width: 20px !important; |
| 30 | background: var(--primary) !important; |
| 31 | } |
| 32 |