| 12345678910111213141516171819202122232425262728293031323334 |
- /* mHome/pages/settle/list/index.wxss */
- .container {
- .list-view {
- display: flex;
- flex-direction: column;
- width: 100%;
- background-color: #f0f0f0;
- &__item {
- display: flex;
- flex-direction: column;
- width: 100%;
- background-color: #fff;
- margin-bottom: 5px;
- padding-top: 10px 0px;
-
- &__row {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- margin: 5px 10px;
- text {
- text-align: left;
- color: #333;
- font-size: 14px;
- }
- }
- }
- }
- }
|