common.scss 605 B

123456789101112131415161718192021222324252627282930
  1. .base-container {
  2. width: 100%;
  3. min-height: 100vh;
  4. background: #f7f7f7;
  5. padding: 20rpx 24rpx;
  6. box-sizing: border-box;
  7. position: relative;
  8. }
  9. /* #ifdef H5 */
  10. .base-container{
  11. min-height: calc(100vh - 100rpx - 88rpx);
  12. }
  13. /* #endif */
  14. @font-face {
  15. font-family: "PangMenZhengDao";
  16. src: url("https://birdseye-img.sysuimars.com/youwei-uniapp/font/PangMenZhengDao.TTF");
  17. }
  18. .ellipsis-l2 {
  19. white-space: pre-line;
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. word-break: break-all;
  23. display: -webkit-box !important;
  24. -webkit-line-clamp: 2;
  25. -webkit-box-orient: vertical !important;
  26. }