12345678910111213141516171819202122232425262728293031323334353637 |
- .item {
- position: relative;
- width: 100vw;
- height: 192rpx;
- padding: 20rpx 30rpx;
- background-color: #ffffff;
- border-bottom: 1rpx solid #dddddd;
- box-sizing: border-box;
- .line-1 {
- line-height: 36rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- font-weight: 400;
- color: #999999;
- }
- .title {
- max-width: 550rpx;
- height: 40rpx;
- line-height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #000000;
- margin-bottom: 6rpx;
- }
- .tag {
- position: absolute;
- top: 20rpx;
- right: 30rpx;
- height: 48rpx;
- padding: 0 15rpx;
- border-radius: 8rpx;
- }
- }
|