*{padding:0;margin:0;font-family: "微软雅黑";}
body{
	/*min-width: 1200px;*/
	height:100%;
	font-family: "微软雅黑";
	margin: auto;
	font-size: 14px;
	background:#F5F5F5 ;

	}
.lt{float: left;}
.rt{float: right;}
a{text-decoration: none;color: black;-webkit-tap-highlight-color:rgba(0,0,0,0);}
ul{padding: 0;margin: 0;}
li{list-style: none;}
input{outline: none;}
h1,h2,h3,h4,h5,h6{font-weight:normal}
/*隐藏IE浏览器自带的文本删除按钮和密码查看按钮*/
::-ms-clear,::-ms-reveal{display:none;}
input[type=number] {  
    -moz-appearance:textfield;  
}  
input[type=number]::-webkit-inner-spin-button,  
input[type=number]::-webkit-outer-spin-button {  
    -webkit-appearance: none;  
    margin: 0;  
}  

/*单行溢出*/
.one-txt-cut{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*多行溢出 手机端使用*/
.txt-cut{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
}