12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- body,
- ol,
- ul,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- th,
- td,
- dl,
- dd,
- form,
- fieldset,
- legend,
- input,
- textarea,
- select {
- margin: 0;
- padding: 0;
- }
- body {
- margin: 0px;
- font-size: 14px;
- font-family: 'Hiragino Sans GB', 'Microsoft YaHei', Helvetica, Tahoma, Arial, SimSun, Heiti,
- sans-serif;
- }
- a {
- text-decoration: none;
- }
- em {
- font-style: normal;
- }
- li {
- list-style: none;
- }
- img {
- border: 0;
- vertical-align: middle;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- p {
- word-wrap: break-word;
- }
- .limit-line {
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- word-break: break-all;
- word-wrap: break-word;
- }
- .line-2 {
- -webkit-line-clamp: 2;
- }
- .line-3 {
- -webkit-line-clamp: 3;
- }
|