| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* 一行显示 */
- .clamp {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: block;
- }
- /* 二行显示 */
- .ellipsis{
- overflow:hidden;
- text-overflow:ellipsis;
- display:-webkit-box;
- -webkit-box-orient:vertical;
- -webkit-line-clamp:2;
- }
- html {
- overflow-y: scroll;
- }
- /* 鼠标显示为手 */
- .hand {
- cursor:pointer;
- }
- .moren {
- cursor: default;
- }
- .content-img {
- max-width: 100%;
- }
- .new-detail {
- max-width: 100%;
- }
- .new-detail * {
- max-width: 100%;
- }
- .new-detail table {
- min-width: 100%;
- }
- .new-detail td {
- display:table-cell;
- vertical-align:middle;
- }
- .new-detail table,th,td {
- border: 1px solid #000;
- text-align: center;
- }
- .flex {
- display: flex;
- }
- .content {
- img {
- max-width: 100%;
- }
- }
- h1 {
- font-weight: bold;
- }
|