123456789101112131415161718192021222324252627282930 |
- .base-container {
- width: 100%;
- min-height: 100vh;
- background: #f7f7f7;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- position: relative;
- }
- /* #ifdef H5 */
- .base-container{
- min-height: calc(100vh - 100rpx - 88rpx);
- }
- /* #endif */
- @font-face {
- font-family: "PangMenZhengDao";
- src: url("https://birdseye-img.sysuimars.com/youwei-uniapp/font/PangMenZhengDao.TTF");
- }
- .ellipsis-l2 {
- white-space: pre-line;
- overflow: hidden;
- text-overflow: ellipsis;
- word-break: break-all;
- display: -webkit-box !important;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical !important;
- }
|