1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .tui-loadmore-none {
- width: 50%;
- margin: 1em auto;
- line-height: 1.5em;
- font-size: 24rpx;
- display: flex;
- justify-content: center;
- }
- .tui-nomore {
- width: 100%;
- height: 100%;
- position: relative;
- display: flex;
- justify-content: center;
- margin-top: 10rpx;
- padding-bottom: 6rpx;
- }
- .tui-nomore::before {
- content: ' ';
- position: absolute;
- border-bottom: 1rpx solid #e5e5e5;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- width: 100%;
- top: 18rpx;
- left: 0;
- }
- .tui-nomore-text {
- color: #999;
- font-size: 24rpx;
- text-align: center;
- padding: 0 18rpx;
- height: 36rpx;
- line-height: 36rpx;
- position: relative;
- z-index: 1;
- }
- .tui-nomore-dot {
- position: relative;
- text-align: center;
- -webkit-display: flex;
- display: flex;
- justify-content: center;
- margin-top: 10rpx;
- padding-bottom: 6rpx;
- }
- .tui-nomore-dot::before {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid #e5e5e5;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- width: 360rpx;
- top: 18rpx;
- }
- .tui-dot-text {
- position: relative;
- color: #e5e5e5;
- font-size: 10px;
- text-align: center;
- width: 50rpx;
- height: 36rpx;
- line-height: 36rpx;
- -webkit-transform: scale(0.8);
- transform: scale(0.8);
- -webkit-transform-origin: center center;
- transform-origin: center center;
- z-index: 1;
- }
|