123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- .main {
- height: var(--thrHeight);
- background-color: var(--mainColor);
- .one {
- display: flex;
- flex-direction: row;
- padding: 2vw;
- border-bottom: 1px solid var(--f1Color);
- margin: 0 0 2vw 0;
- .one_1 {
- flex-grow: 1;
- input {
- padding: 1vw 0 2vw 2vw;
- background-color: var(--f1Color);
- border-radius: 5px;
- }
- }
- .one_2 {
- width: 20vw;
- button {
- width: 100%;
- padding: 2vw;
- font-size: var(--font14Size);
- }
- }
- }
- .two {
- position: relative;
- flex-grow: 1;
- background-color: var(--whiteColor);
- padding: 0 2vw;
- .list {
- background-color: var(--f9Color);
- margin: 0 0 2vw 0;
- padding: 2vw;
- margin: 0 2vw 2vw 2vw;
- border-radius: 5px;
- display: flex;
- flex-direction: row;
- .list_1 {
- width: 62vw;
- .name {
- font-size: var(--font16Szie);
- font-weight: bold;
- margin: 0 0 2vw 0;
- padding: 0 2vw 0 0;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- .brief{
- font-size: var(--font14Szie);
- padding: 0 2vw 0 0;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 3;
- word-break: break-all;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- }
- }
- .list_2 {
- width: 30vw;
- swiper {
- height: 18vh;
- .image {
- width: 100%;
- height: 100%;
- border-radius: 10px;
- }
- }
- }
- // .list_1 {
- // .swiper {
- // height: 30vh;
- // }
- // .image {
- // width: 100%;
- // height: 100%;
- // }
- // }
- // .list_2 {
- // position: absolute;
- // top: 2vw;
- // width: 92vw;
- // color: var(--whiteColor);
- // .name {
- // text-align: center;
- // font-size: var(--font20Szie);
- // font-weight: bold;
- // margin: 3vw 0 1vw 0;
- // overflow: hidden;
- // text-overflow: ellipsis;
- // -webkit-line-clamp: 2;
- // word-break: break-all;
- // display: -webkit-box;
- // -webkit-box-orient: vertical;
- // -webkit-text-stroke: 1px var(--redColor);
- // }
- // .address {
- // text-align: center;
- // font-size: var(--font18Szie);
- // margin: 0 0 2vw 0;
- // overflow: hidden;
- // text-overflow: ellipsis;
- // -webkit-line-clamp: 2;
- // word-break: break-all;
- // display: -webkit-box;
- // -webkit-box-orient: vertical;
- // -webkit-text-stroke: 1px var(--blueColor);
- // }
- // .other {
- // display: flex;
- // flex-direction: row;
- // justify-content: space-around;
- // font-size: var(--font18Szie);
- // -webkit-text-stroke: 1px var(--blueColor);
- // }
- // }
- }
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
|