123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .text-color-money {
- color: #E22020;
- font-size: 26rpx;
- font-weight: bold;
- }
- .text-link {
- text-decoration: underline;
- }
- .text-right {
- text-align: right;
- }
- /* 分享悬浮 */
- .share {
- position: absolute;
- right: 0;
- top: 79rpx;
- z-index: 99;
- }
- .share button {
- background-color: rgba(51, 51, 51, 0.58);
- height: 68rpx;
- width: 140rpx;
- display: flex;
- align-items: center;
- padding-left: 26rpx;
- border-top-left-radius: 100rpx;
- border-bottom-left-radius: 100rpx;
- }
- .share button image {
- width: 37rpx;
- height: 37rpx;
- }
- .share button text {
- font-size: 30rpx;
- color: #fff;
- margin-left: 8rpx;
- }
- /* 空数据 */
- .empty {
- height: 85rpx;
- font-size: 26rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #999;
- }
- .empty::after {
- content: '';
- width: 74rpx;
- margin-left: 14rpx;
- background: #d8d8d8;
- height: 2rpx;
- }
- .empty::before {
- content: '';
- width: 74rpx;
- margin-right: 14rpx;
- background: #d8d8d8;
- height: 2rpx;
- }
|