myinventorys.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* mMine/pages/myinventorys/myinventorys.wxss */
  2. .title-view {
  3. background-color: #f0f0f0;
  4. padding: 10px 0px;
  5. display: flex;
  6. justify-content: space-around;
  7. align-items: center;
  8. border-bottom: 1px solid #f0f0f0;
  9. .title-view-text {
  10. font-size: 12px;
  11. color: #666;
  12. text-align: center;
  13. border-right: 1px solid #f0f0f0;
  14. }
  15. }
  16. .list-item {
  17. display: flex;
  18. justify-content: space-between;
  19. margin: 5px 10px 15px 10px;
  20. flex-direction: row;
  21. align-content: center;
  22. align-items: center;
  23. border-bottom: 1px solid #ddd;
  24. .list-item-left, .list-item-right {
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. align-content: center;
  29. padding-bottom: 10px;
  30. }
  31. .list-item-left {
  32. width: 80%;
  33. }
  34. .list-item-right {
  35. border-left: 1px solid #ddd;
  36. padding-left: 15px;
  37. width: 100%;
  38. }
  39. .list-item-left, .list-item-right {
  40. text {
  41. margin: 2.5px;
  42. width: 100%;
  43. text-align: left;
  44. font-size: 14px;
  45. color: #333;
  46. }
  47. }
  48. }