| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- .container {
-
- .tab-view {
- display: flex;
- flex-direction: column;
-
- .filter-view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- padding: 0px 10px;
- border-top: 1px solid #f0f0f0;
-
- van-tabs {
- width: 100%;
- }
- }
- }
-
- &__list {
- margin-top: 5px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- background-color: #f0f0f0;
- width: 100%;
- align-content: center;
- align-items: center;
-
- &__item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- background-color: #fff;
- margin-bottom: 10px;
- width: 96%;
- border-radius: 10px;
- margin: 5px 0px;
- padding-bottom: 10px;
-
- &__top, &__row {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- padding: 2.5px 15px;
- text {
- color: #333;
- font-size: 13px;
- width: 100%;
- }
- }
- &__row {
- text {
- text-align: left;
- }
- }
- &__top {
- margin-top: 10px;
-
- text {
- text-align: center;
- }
- :nth-child(1) {
- text-align: left;
- }
- :nth-last-child(1) {
- text-align: right;
- }
- }
- }
- }
- }
|