| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /* mMine/pages/myinventorys/myinventorys.wxss */
- .title-view {
- background-color: #f0f0f0;
- padding: 10px 0px;
- display: flex;
- justify-content: space-around;
- align-items: center;
- border-bottom: 1px solid #f0f0f0;
- .title-view-text {
- font-size: 12px;
- color: #666;
- text-align: center;
- border-right: 1px solid #f0f0f0;
- }
- }
- .list-item {
- display: flex;
- justify-content: space-between;
- margin: 5px 10px 15px 10px;
- flex-direction: row;
- align-content: center;
- align-items: center;
- border-bottom: 1px solid #ddd;
- .list-item-left, .list-item-right {
- display: flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- padding-bottom: 10px;
- }
- .list-item-left {
- width: 80%;
- }
- .list-item-right {
- border-left: 1px solid #ddd;
- padding-left: 15px;
- width: 100%;
- }
- .list-item-left, .list-item-right {
- text {
- margin: 2.5px;
- width: 100%;
- text-align: left;
- font-size: 14px;
- color: #333;
- }
- }
- }
|