| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .offer-list {
- width: 690rpx;
- margin: 0 auto 20rpx;
- padding: 20rpx;
- border-radius: 8rpx;
- box-sizing: border-box;
- background-color: #fff;
- font-family: PingFang SC-Regular, PingFang SC;
- .tag-box {
- margin-top: 10rpx;
- .tag {
- height: 40rpx;
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- padding: 0 12rpx;
- margin-right: 8rpx;
- }
- }
- .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;
- }
- }
- .exp {
- height: 34rpx;
- font-size: 24rpx;
- color: #666;
- margin-top: 8rpx;
- text {
- color: #333333;
- }
- }
- }
- .line-1 {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
|