common.scss 613 B

1234567891011121314151617181920212223242526272829303132
  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. //字体
  15. @font-face {
  16. font-family: "PangMenZhengDao";
  17. src: url("https://birdseye-img.sysuimars.com/youwei-uniapp/font/PangMenZhengDao.TTF");
  18. }
  19. .ellipsis-l2 {
  20. white-space: pre-line;
  21. overflow: hidden;
  22. text-overflow: ellipsis;
  23. word-break: break-all;
  24. display: -webkit-box !important;
  25. -webkit-line-clamp: 2;
  26. -webkit-box-orient: vertical !important;
  27. }