| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* mHome/pages/presell/list/index.wxss */
- .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;
- padding: 5px 0px;
-
- &__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;
- }
- }
- }
- }
- }
|