| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- .top-view {
- position: sticky;
- top: 0px;
- z-index: 999;
- .nav-view {
- background-color: #407DB8;
- width: 100%;
- .tab-view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- margin-right: 12px;
- width: 75%;
- --tabs-nav-background-color: #407DB8;
- padding-bottom: 10px;
-
- van-tabs {
- width: 180px;
- }
- .van-tabs__nav {
- background-color: #407DB8;
- }
-
- image {
- margin-left: 10px;
- }
- }
- .gird-view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- align-content: center;
- &__item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-content: center;
- width: 40px;
- height: 40px;
- text {
- color: #CAE5FF;
- font-size: 12px;
- text-align: center;
- }
- image {
- width: 40px;
- height: 20px;
- }
- }
- }
- }
- .dropdown-menu {
- --dropdown-menu-title-font-size: 12px;
- }
- }
- .content-view {
- background-color: #f0f0f0;
- .vanSwipeCell-item {
- background-color: #fff;
- margin: 5px 7.5px 0px 7.5px;
- border-radius: 10px;
- display: flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- &__top, &__dwn, &__mid {
- width: 100%;
- }
- &__top {
- border-bottom: 1px solid #f0f0f0;
- padding: 10px;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- text:nth-child(1), text:nth-child(2) {
- color: #000;
- font-size: 14px;
- margin-left: 10px;
- }
- text:nth-last-child(1) {
- color: #999;
- font-size: 14px;
- margin-right: 10px;
- }
- }
- &__mid {
- padding: 10px;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- &__left, &__mid {
- margin-left: 10px;
- }
- &__left, &__mid, &__right {
- display: flex;
- flex-direction: column;
- align-content: center;
- width: 100%;
- text {
- color: #4D565D;
- font-size: 13px;
- padding: 2.5px 0px;
- }
- }
- &__right {
- margin-right: 10px;
- border: 1px solid #407DB8;
- width: 35%;
- border-radius: 10px;
- padding: 10px 0px;
- align-items: center;
- }
- }
- &__dwn {
- border-top: 1px solid #f0f0f0;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-content: center;
- align-items: center;
- padding: 10px;
- text:nth-child(1) {
- color: #000;
- font-size: 14px;
- margin-left: 10px;
- }
- text:nth-child(2) {
- color: #999;
- font-size: 12px;
- margin-right: 10px;
- }
- }
- }
- }
- .vanSwipeCell-right {
- height: inherit;
- color: white;
- display: flex;
- .item {
- width: 50px;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 12px;
- }
- }
|