| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* pages/day/day.wxss */
- page{
- background: #F4F6F8;
- }
- .part{
- background: #fff;
- padding: 30rpx 28rpx;
- margin-bottom: 16rpx;
- }
- .item{
- margin-bottom: 20rpx;
- font-weight: 500;
- }
- .item text{
- font-weight: 400;
- margin-right: 20rpx;
- }
- .item .tag{
- display: inline-block;
- color: #FFF;
- font-size: 20rpx;
- background: #333;
- border-radius: 4rpx;
- padding: 0 3px;
-
- }
- .item .red{
- background: #FF5151;
- }
- .item .blue{
- background: #4587FF;
- }
- .item .border{
- background: #fff;
- border: 1px solid #333;
- color: #333;
- }
- .list{
- display: inline-block;
- width: 88%;
- vertical-align: top;
- }
- .list view{
- display: inline-block;
- padding: 16rpx;
- background: #F4F6F8;
- border-radius: 8rpx;
- margin-bottom: 10rpx;
- margin-right: 10rpx;
- }
- .list text{
- display: block;
- color: #999;
- }
|