123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .main {
- height: 83vh;
- background-color: var(--bgColor);
- }
- .main .zero {
- width: 96vw;
- margin: 0 0 2vw 0;
- }
- .main .zero:last-child {
- margin: 0;
- }
- .main .two .a {
- display: flex;
- flex-direction: column;
- height: 74vh;
- padding: 0 2vw;
- }
- .main .two .a .two_1 {
- width: 90vw;
- border: 1px solid #cccccc;
- border-radius: 20px;
- padding: 4px 10px;
- margin: 0 0 2vw 0;
- }
- .main .two .a .two_1 input {
- font-size: 16px;
- }
- .main .two .a .two_2 {
- width: 96vw;
- flex-grow: 1;
- position: relative;
- }
- .main .two .a .two_2 .list {
- background-color: var(--bgColor);
- margin: 0 0 2vw 0;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 91vw;
- padding: 2vw;
- border: 1px solid #cccccc;
- border-radius: 10px;
- }
- .main .two .a .two_2 .list .list_1 {
- width: 70vw;
- }
- .main .two .a .two_2 .list .list_1 .name {
- font-size: var(--titleSize);
- 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 .a .two_2 .list .list_1 .brief {
- margin: 0 0 1vw 0;
- font-size: var(--txtSize);
- color: var(--labelColor);
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 3;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- .main .two .a .two_2 .list .list_1 .other {
- font-size: var(--txtSize);
- color: var(--labelColor);
- }
- .main .two .a .two_2 .list .list_1 .other text {
- padding: 0 1vw 0 0;
- }
- .main .two .a .two_2 .list .list_2 {
- text-align: right;
- padding: 4vw 0 0 0;
- }
- .main .two .a .two_2 .list .list_2 .image {
- width: 100px;
- height: 100px;
- overflow: hidden;
- border-radius: 10px;
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- }
- .scroll-view .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
|