layout.wxss 829 B

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