common.scss 690 B

1234567891011121314151617181920212223242526272829303132333435
  1. .base-container,.sub-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. .sub-base-container{
  14. min-height: calc(100vh - 88rpx);
  15. }
  16. /* #endif */
  17. //字体
  18. @font-face {
  19. font-family: "PangMenZhengDao";
  20. src: url("https://birdseye-img.sysuimars.com/youwei-uniapp/font/PangMenZhengDao.TTF");
  21. }
  22. .ellipsis-l2 {
  23. white-space: pre-line;
  24. overflow: hidden;
  25. text-overflow: ellipsis;
  26. word-break: break-all;
  27. display: -webkit-box !important;
  28. -webkit-line-clamp: 2;
  29. -webkit-box-orient: vertical !important;
  30. }