day.wxss 865 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* pages/day/day.wxss */
  2. page{
  3. background: #F4F6F8;
  4. }
  5. .part{
  6. background: #fff;
  7. padding: 30rpx 28rpx;
  8. margin-bottom: 16rpx;
  9. }
  10. .item{
  11. margin-bottom: 20rpx;
  12. font-weight: 500;
  13. }
  14. .item text{
  15. font-weight: 400;
  16. margin-right: 20rpx;
  17. }
  18. .item .tag{
  19. display: inline-block;
  20. color: #FFF;
  21. font-size: 20rpx;
  22. background: #333;
  23. border-radius: 4rpx;
  24. padding: 0 3px;
  25. }
  26. .item .red{
  27. background: #FF5151;
  28. }
  29. .item .blue{
  30. background: #4587FF;
  31. }
  32. .item .border{
  33. background: #fff;
  34. border: 1px solid #333;
  35. color: #333;
  36. }
  37. .list{
  38. display: inline-block;
  39. width: 88%;
  40. vertical-align: top;
  41. }
  42. .list view{
  43. display: inline-block;
  44. padding: 16rpx;
  45. background: #F4F6F8;
  46. border-radius: 8rpx;
  47. margin-bottom: 10rpx;
  48. margin-right: 10rpx;
  49. }
  50. .list text{
  51. display: block;
  52. color: #999;
  53. }
  54. .note{
  55. font-size:22rpx;
  56. padding:10rpx 0rpx;
  57. color:#999;
  58. }