completeInfo.wxss 834 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. }
  5. view,text{
  6. box-sizing: border-box;
  7. color:#333;
  8. font-size: 40rpx;
  9. }
  10. .card{
  11. background:#fff;
  12. padding:0 48rpx;
  13. }
  14. .complete-item{
  15. height:106rpx;
  16. display: flex;
  17. align-items: center;
  18. justify-content: space-between;
  19. border-bottom: 2rpx solid #E3E3E3;
  20. }
  21. .card .complete-item:last-child{
  22. border-bottom:none;
  23. }
  24. .left,.right{
  25. height:106rpx;
  26. display: flex;
  27. align-items: center;
  28. }
  29. .item-img{
  30. width:42rpx;
  31. height:42rpx;
  32. margin-right:14rpx;
  33. }
  34. .xnb-img{
  35. width:42rpx;
  36. height:42rpx;
  37. align-self: flex-start;
  38. margin-top:8rpx;
  39. }
  40. .dot{
  41. margin-right:16rpx;
  42. width: 20rpx;
  43. height: 20rpx;
  44. border-radius:20rpx;
  45. background: #3C9400;
  46. }
  47. .right.alert .dot{
  48. background: #FF0505;
  49. }
  50. .status{
  51. line-height: 106rpx;
  52. margin-right:28rpx;
  53. }
  54. .right.alert view{
  55. color:#FF0505
  56. }