| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .one-row{
- display: inline-block;
- white-space:nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .two-row{
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- }
- .SearchBox{
- background-color: inherit;
- }
- .pages-box{
- width: 100%;
- min-height: 100vh;
- background-color: $my-pages-bg;
- box-sizing: border-box;
- }
- .pages-bg-1{
- width: 100%;
- min-height: 100vh;
- background: linear-gradient(180deg,#f8e3de, #f7f7f7) top/100% 775rpx no-repeat, $my-pages-bg !important;
- }
- .pages-bg-2{
- width: 100%;
- background: linear-gradient(180deg,#eb5153 36%, #ffffff 69%) top/100% 453rpx no-repeat, $my-pages-bg !important;
- }
- .uv-loadmore{
- margin: 0 !important;
- padding: 10px 0 !important;
- }
-
- :deep(em img){
- width: 100%;
- }
|