| 12345678910111213141516171819202122232425262728293031323334 |
- ion-searchbar {
- margin-top: 10px;
- }
- ion-buttons {
- margin-top: 10px;
- }
- ion-card {
- width: 100%;
- margin-bottom: 1px;
- // height: 100%;
- img {
- width: 100%;
- height: 200px;
- object-fit: cover;
- }
- ion-card-title {
- font-size: 18px;
- white-space: nowrap;
- /* 防止文字换行 */
- overflow: hidden;
- /* 隐藏溢出部分的文字 */
- text-overflow: ellipsis;
- /* 显示省略号 */
- }
- }
- .navfooter {
- width: 100%;
- height: 60px;
- }
|