/**
  	作者：582366190@qq.com
  	时间：2019-9-28
  	描述：公用样式
 **/
*{
	padding: 0;
	margin: 0;
}
/*网页字体和颜色*/
html{  
    font-family: "Microsoft YaHei", "微软雅黑", Tahoma, Geneva, sans-serif;
    color: #333333;
    font-size: 18px;
	background: #FFFFFF;
}
/* 去掉 table cell 的边距并让其边重合 */ 
table{  
    border-collapse:collapse;  
    border-spacing:0;  
}
/* 去除默认边框 */  
img {  
    border:none;
    vertical-align: middle; 
    border:0;
}
/*input输入文字不贴边*/
input::-webkit-input-placeholder { /* WebKit browsers */
    color: #A8A8A8;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #A8A8A8;
}
input::-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #A8A8A8;
}
input,optgroup,select,textarea{
	
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);    

-webkit-user-modify: read-write-plaintext-only;

outline:none;

}
input,textarea{
    -webkit-user-select:auto; /*webkit浏览器*/  
    user-select:auto;
}
button{
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);  
	outline:none;
}
/* 去掉列表前的标识，li 会继承 */ 
ol,ul {  
    list-style:none;  
}
/* 默认不显示下划线，保持页面简洁 */  
ins,a{  
    text-decoration:none;  
}
a{
	color: #333333;
}
a:focus {
    outline: none
}
a:hover {
    
}
/*显示隐藏*/
.hide {
    display:none;  
}  
.block {  
    display:block;  
}
/* 设置浮动，减少浮动带来的 bug */  
.fl, .fr {  
    display:inline;  
}  
/*左浮动*/
.fl {  
    float:left;  
}  
/*右浮动*/
.fr {  
    float:right;  
}
/*清除浮动*/
.clearfix:after{
	display:block;
	clear:both;
	content:"";
	visibility:hidden;
	height:0;
} 
.clearfix{
	zoom:1;
}
.center{
	text-align: center;
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}
.cursor{
	cursor: pointer;
}
.bold{
	font-weight: bold;
}
.bor0{
	border: none !important;
}
.bgnone{
	background: none !important;
}
.windows{
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
    overflow: scroll;
}
.windows::-webkit-scrollbar{
	width: 0px;
	height: 0px;
}
/*超出一行省略*/
.onep{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*超出两行省略*/
.twop{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.content{
	max-width: 1350px;
    margin: 0 auto;
}
/*颜色*/
.white{
    color: #FFFFFF;
}
.whitebg{
    background: #FFFFFF;
}
.orange{
    color: #D2611C;
}
.gary{
    color: #666666;
}
.garybg{
    background: #F0F0F0;
}
/*margin*/
.mt20{
    margin-top: 20px;
}
/*字号*/
.ft12{
    font-size: 12px;
}
.ft16{
    font-size: 16px;
}
.ft22{
    font-size: 20px;
}
.ft24{
    font-size: 24px;
}
.ft26{
    font-size: 26px;
}
.ft28{
    font-size: 28px;
}
.ft30{
    font-size: 30px;
}
.mlr30{
	margin-left: 30px;
	margin-right: 30px;
	/* margin: 0 30rpx; */
}

.pager {
	padding-left: 0;
	margin: 17px 0;
	list-style: none;
	text-align: center;
}


.pager .pagination {
	margin: 0;
}

.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 17px 0;
	border-radius: 3px;
}

.pager li {
	margin: 0 .4em;
	display: inline-block;
}

.pager li > a, .pager li > span {
	background: none;
	border: 1px solid #e6e6e6;
	border-radius: 0.25em;
	padding: .5em .93em;
	font-size: 14px;
}
