1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- .main {
- height: 80.8vh;
- }
- .main .zero {
- width: 96vw;
- margin: 0 0 2vw 0;
- }
- .main .zero:nth-child(2) {
- margin: 0 0 0 0;
- }
- .main .one {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- padding: 2vw;
- width: 92vw;
- background-color: #fff;
- }
- .main .one input {
- font-size: 14px;
- }
- .main .two {
- flex-grow: 1;
- width: 100%;
- position: relative;
- }
- .main .two .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .main .two .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- .main .two .scroll-view .list-scroll-view .list {
- border-bottom: 1px solid #cccccc;
- padding: 2vw 0;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- }
- .main .two .scroll-view .list-scroll-view .list .list_1 {
- padding: 8vw 0 0 0;
- }
- .main .two .scroll-view .list-scroll-view .list .list_1 .image {
- width: 60px;
- height: 60px;
- border-radius: 10px;
- }
- .main .two .scroll-view .list-scroll-view .list .list_2 {
- display: flex;
- flex-direction: column;
- width: 80vw;
- padding: 0 0 0 2vw;
- }
- .main .two .scroll-view .list-scroll-view .list .list_2 .name {
- font-size: 16px;
- font-weight: bold;
- margin: 0 0 1vw 0;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- .main .two .scroll-view .list-scroll-view .list .list_2 .name .status {
- background-color: #ff0000;
- color: #fff;
- padding: 0 2vw;
- font-size: 14px;
- }
- .main .two .scroll-view .list-scroll-view .list .list_2 .other .other_1 {
- margin: 0 0 1vw 0;
- color: #000000a6;
- font-size: 12px;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
|