

/* =======================================winter==自定义=========================================== */
/* 禁止文本复制粘贴 */
.banSelect {-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;user-select: none;}

/* 引入字体 */
@font-face {font-family: "light";src: url('../fonts/POPPINS-LIGHT.TTF');}
@font-face {font-family: "regular";src: url('../fonts/POPPINS-REGULAR.TTF');}
@font-face {font-family: "medium";src: url('../fonts/POPPINS-MEDIUM.TTF');}
@font-face {font-family: "semibold";src: url('../fonts/POPPINS-SEMIBOLD.TTF');}
@font-face {font-family: "bold";src: url('../fonts/POPPINS-BOLD.TTF');}

/* 清除浮动 */
.clearFix {*zoom:1}
.clearFix:before, .clearFix:after {display:table;content:""}
.clearFix:after {clear:both}

/* 文字竖排 */
.rowWords {writing-mode: vertical-lr;writing-mode: tb-lr;white-space: nowrap;}

/* 文字限制行数 */
/* 限制一行 */
.lineLimit {white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}
/* 【常用】限制多行 修改行数-webkit-line-clamp: 2;【兼容必须限高】 */
.lineLimits {overflow: hidden;display: -webkit-box;text-overflow: ellipsis;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
/* 【不推荐】遮挡限制多行兼容 必须限高 */
.lineLimitFit {position:relative;overflow:hidden;height: auto;}
.lineLimitFit:after {content:"...";letter-spacing: 3px;font-weight: bold;position:absolute;bottom:0;line-height: initial;right:0;padding-left:36px;background: -webkit-linear-gradient(left, transparent, #fff 55%);background: -o-linear-gradient(right, transparent, #fff 55%);background: -moz-linear-gradient(right, transparent, #fff 55%);background: linear-gradient(to right, transparent, #fff 55%);}


