123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /* item */
- .item {
- width: 100%;
- height: 180rpx;
- background-color: white;
- margin-bottom: 20rpx;
- display: flex;
- flex-direction: column;
- }
- .item>view:first-child {
- display: flex;
- margin: 40rpx 30rpx auto;
- }
- .item>view:first-child text {
- font-size: 34rpx;
- color: #333333;
- }
- .item>view:first-child>text:nth-last-child(2) {
- margin-left: auto;
- }
- .item>view:first-child>view {
- width: 20rpx;
- height: 20rpx;
- border-radius: 10rpx;
- margin: 0 0 0 10rpx;
- background-color: #FF5E5E;
- }
- .item>view:first-child>image {
- width: 14rpx;
- height: 24rpx;
- margin: auto 0 auto 20rpx;
- }
- .item>view:last-child {
- display: flex;
- margin: auto 30rpx 40rpx;
- }
- .item>view:last-child text {
- font-size: 28rpx;
- }
- .item>view:last-child>text:first-child {
- color: #999999;
- }
- .status, .status-1, .status-2 {
- margin-left: auto;
- color: #999999;
- }
- .status-1 {
- color: #FF801A;
- }
|