| 1234567891011121314151617181920212223 |
- .footer-fixed {
- position: fixed;
- z-index: 999;
- width: 100%;
- bottom: 0;
- left: 0;
- }
- .footer-fixed.foot-pb {
- padding-bottom: calc(env(safe-area-inset-bottom) / 2);
- }
- .theme-bg-color {
- background-color: #5a3ee8;
- }
- .theme-color {
- color: #5a3ee8;
- }
- .text-cut-2 {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
|