1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* 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;
- }
- .note{
- font-size:22rpx;
- padding:10rpx 0rpx;
- color:#999;
- }
|