| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- .offer-list {
- width: 100%;
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- background-color: #fff;
- border-bottom: 1rpx solid #ddd;
- 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: -30rpx;
- 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;
- }
|