|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- .wux-pagination {
- display: block;
- width: 100%;
- height: 88rpx;
- overflow: hidden;
- box-sizing: border-box;
- position: relative
- }
- .wux-pagination__prev {
- position: absolute;
- left: 20rpx;
- top: 0
- }
- .wux-pagination__next {
- position: absolute;
- right: 20rpx;
- top: 0
- }
- .wux-pagination__number {
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- margin: 0 auto;
- text-align: center
- }
- .wux-pagination__active {
- display: inline;
- color: #387ef5
- }
- .wux-pagination__pointer {
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- margin: 0 auto;
- text-align: center
- }
- .wux-pagination__dot {
- width: 16rpx;
- height: 16rpx;
- display: inline-block;
- margin: 0 4rpx;
- border-radius: 50%;
- background: #ccc
- }
- .wux-pagination__dot--active {
- background: #888
- }
- .wux-pagination__button {
- display: inline-block;
- margin: 0
- }
|