123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- @import (css) "/app.wxss";
- .main {
- height: 91vh;
- .one {
- padding: 2vw;
- border-bottom: 1px solid #858585;
- margin: 0 0 2vw 0;
- input {
- padding: 2vw;
- font-size: 12px;
- border-radius: 5px;
- background-color: #fff;
- }
- }
- .two {
- position: relative;
- flex-grow: 1;
- .list {
- background-color: #fff;
- margin: 0 2vw 2vw 2vw;
- padding: 2vw;
- border-radius: 5px;
- .list_1 {
- display: flex;
- margin: 0 0 1vw 0;
- .list_1_1 {
- width: 20vw;
- height: 20vw;
- .image {
- width: 100%;
- height: 100%;
- border-radius: 90px;
- }
- }
- .list_1_2 {
- width: 70vw;
- padding: 0 0 0 2vw;
- .name {
- font-size: 16px;
- font-weight: bold;
- margin: 0 0 1vw 0;
- }
- .other_1 {
- font-size: 15px;
- color: #858585;
- margin: 0 0 1vw 0;
- text:last-child {
- color: #000;
- }
- }
- }
- }
- .btn {
- text-align: center;
- button {
- margin: 0 2vw;
- font-size: 14px;
- }
- }
- }
- .list:last-child {
- margin: 0;
- }
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
|