| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /* mHome/pages/settle/list/index.wxss */
- .container {
- .list-view {
- display: flex;
- flex-direction: column;
- width: 100%;
- background-color: #f0f0f0;
- align-items: center;
- align-content: center;
- &__item {
- display: flex;
- flex-direction: column;
- width: 96%;
- background-color: #fff;
- margin: 5px 0px;
- border-radius: 10px;
- padding: 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;
- width: 90%;
- }
- }
- }
- }
- }
|