| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* mMine/pages/myperformance/his/his.wxss */
- .topView {
- position: sticky;
- top: 0;
- z-index: 999;
- .title-view {
- margin: 10px;
- background-color: #f0f0f0;
- height: 70px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- align-content: center;
- flex-direction: column;
- padding: 5px 10px;
-
- .title-view-up, .title-view-down {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 50%;
- width: 100%;
- align-content: center;
-
- text {
- color: #666;
- font-size: 13px;
- }
- }
-
- .title-view-up {
- border-bottom: 1px solid #ddd;
- }
- }
- }
- .item-view {
- margin: 10px;
- height: 70px;
- border-radius: 10px;
- display: flex;
- align-items: center;
- align-content: center;
- flex-direction: column;
- padding: 5px 10px;
- border: 1px solid #ddd;
- .item-view-up, .item-view-down {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 50%;
- width: 100%;
- align-content: center;
- text {
- color: #333;
- font-size: 13px;
- }
- }
- .item-view-up {
- border-bottom: 1px solid #ddd;
- }
- }
- .van-swipe-cell__right {
- height: inherit;
- color: white;
- display: flex;
- .item {
- width: 50px;
- text-align: center;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 12px;
- color: white;
- }
- }
|