index.wxss 726 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .main {
  2. position: relative;
  3. width: 100%;
  4. }
  5. .main .one {
  6. float: left;
  7. width: 95%;
  8. padding: 0 10px;
  9. overflow-x: hidden;
  10. margin: 10px 0 0 0;
  11. }
  12. .main .one .list {
  13. float: left;
  14. width: 95%;
  15. background-color: #fff;
  16. border-radius: 5px;
  17. padding: 10px;
  18. margin: 0 0 10px 0;
  19. }
  20. .main .one .list .name {
  21. float: left;
  22. width: 100%;
  23. font-size: 14px;
  24. font-weight: bold;
  25. margin: 0 0 5px 0;
  26. }
  27. .main .one .list .other {
  28. float: left;
  29. width: 100%;
  30. margin: 0 0 5px 0;
  31. }
  32. .main .one .list .other .otherInfo {
  33. float: left;
  34. width: 100%;
  35. font-size: 12px;
  36. margin: 0 0 5px 0;
  37. }
  38. .main .one .list .other .otherInfo text:nth-child(1) {
  39. color: #666;
  40. }