1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /* 分页按钮 */
- .paging-button {
- float: right;
- width: 100%;
- height: 30rpx;
- margin-top: 30rpx;
- margin-bottom: 20rpx;
- }
- .paging-button>view {
- position: relative;
- float: right;
- width: 30rpx !important;
- height: 30rpx !important;
- margin-right: 10rpx;
- overflow: hidden;
- }
- .paging-button-icon {
- position: absolute;
- font-size: 20rpx;
- color: rgba(0, 0, 0, 0.5);
- top: 2rpx;
- pointer-events: none;
- }
- .icon-left {
- left: 4rpx;
- }
- .icon-right {
- left: 6rpx;
- }
- .paging-button>text {
- float: right;
- display: block;
- height: 30rpx;
- line-height: 30rpx;
- background: #4DC2D4;
- border-radius: 4rpx;
- font-size: 20rpx;
- font-weight: 550;
- color: #FFFFFF;
- padding: 0 10rpx;
- margin-right: 10rpx;
- }
- /* 分页按钮外部样式表 */
- .paging-button-class {
- width: 100%;
- height: 100%;
- background: #F6F7F8 !important;
- border-radius: 4rpx !important;
- border: 0 !important;
- }
|