/* base.css */ /* 部分代码参考reset.css */ * { margin: 0; padding: 0; box-sizing: border-box; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } body, html { height: 100% } body{ font-family: Helvetica Neue,Tahoma,Arial,PingFangSC-Regular,Hiragino Sans GB,Microsoft Yahei,sans-serif; line-height: 1; font-size: 16px; color: #222; text-rendering: optimizeLegibility; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: rgba(0,0,0,0); } a { color: inherit; cursor: default; text-decoration: none } img{ width: 100%; height: 100%; vertical-align: middle; } ol, ul{ list-style: none } table { border-collapse: collapse; border-spacing: 0; } /* 单行文本溢出 */ .ellipsis-1{ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } /* 多行文本溢出 */ .ellipsis-2{ overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }