| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- @import "./base.css";
- #app {
- height: 100vh;
- }
- a {
- text-decoration: none;
- transition: 0.4s;
- }
- .el-card {
- --el-card-padding: 16px;
- }
- ::-webkit-scrollbar {
- z-index: 11;
- width: 4px;
- height: 4px;
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 5px;
- width: 4px;
- background: #E5E5E5;
- }
- ::-webkit-scrollbar-corner {
- background: #fff;
- }
- ::-webkit-scrollbar-track {
- background: #fff;
- }
- ::-webkit-scrollbar-track-piece {
- background: #fff;
- width: 4px;
- }
- .line2{
- max-height: 46px;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
|