index.wxss 908 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .container_list{
  2. background: #efefef;
  3. padding: 10px 0;
  4. }
  5. .container_list .list{
  6. width: 96%;
  7. margin: 0 auto;
  8. border-radius: 3px;
  9. padding: 10px;
  10. box-sizing: border-box;
  11. background: #ffffff;
  12. border-bottom:1px solid #e6e6e6;
  13. display: flex;
  14. align-items: center;
  15. justify-content: space-between;
  16. margin-bottom: 10px;
  17. }
  18. .container_list .list .list-left{
  19. width: 95%;
  20. }
  21. .container_list .list .list-left .list-inner{
  22. display: flex;
  23. margin-bottom: 10px;
  24. }
  25. .container_list .list .list-left .list-inner p:first-child{
  26. width: 60%;
  27. display: block;
  28. color: #222;
  29. font-size: 14px;
  30. }
  31. .container_list .list .list-left .list-inner .house{
  32. font-weight: bold;
  33. }
  34. .container_list .list .list-left .list-inner .days{
  35. font-size: 14px;
  36. color: #999;
  37. }
  38. .container_list .list .arrow{
  39. width: 20px;
  40. height: 15px;
  41. }
  42. .red{
  43. color: red;
  44. }
  45. .blod{
  46. font-weight: bold;
  47. }
  48. .normal{
  49. color: #222;
  50. }