| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .offer-list {
- position: relative;
- .action {
- position: absolute;
- right: 0;
- bottom: 30rpx;
- }
- .title {
- position: relative;
- display: flex;
- height: 42rpx;
- align-items: center;
- >text {
- display: inline-block;
- width: 80%;
- font-size: 30rpx;
- color: #333333;
- }
- .status {
- position: absolute;
- right: -20rpx;
- width: 132rpx;
- height: 40rpx;
- border-radius: 20rpx 0px 0px 20rpx;
- box-sizing: border-box;
- padding-left: 30rpx;
- line-height: 40rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- }
- }
- .tag-box {
- display: flex;
- align-items: center;
- width: 100%;
- .datatag,
- .systemtag {
- flex-shrink: 0;
- margin-top: 6rpx;
- background: #3874f6;
- color: #ffffff;
- margin-right: 10rpx;
- display: flex;
- align-items: center;
- height: 40rpx;
- font-size: 20rpx;
- padding: 0 10rpx;
- border-radius: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- }
- .datatag {
- background: #FA8C16;
- }
- }
- .exp {
- height: 34rpx;
- font-size: 24rpx;
- color: #666;
- margin-top: 8rpx;
- text {
- color: #333333;
- }
- }
- }
- .line-1 {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
|