common.scss 584 B

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