/**
  	作者：582366190@qq.com
  	时间：2020.4.23 16:00
  	描述：公用样式
 **/
* {
	padding: 0;
	margin: 0;
}

/*网页字体和颜色*/
html {
	font-family: "Microsoft YaHei", "微软雅黑", Tahoma, Geneva, sans-serif;
	color: #333333;
	font-size: 16px;
	background: #FFFFFF;
	line-height: 30px;
}

/* 去掉 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 {
	color: #0082df;
}

/*显示隐藏*/
.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: 1200px;
	margin: 0 auto;
}

/*颜色*/
.white {
	color: #FFFFFF;
}

.whitebg {
	background: #FFFFFF;
}

.orange {
	color: #D2611C;
}

.gary {
	color: #666666;
}

.garybg {
	background: #F0F0F0;
}

.blue {
	color: #0082df;
}

.bluebg {
	background-color: #0082df;
}

.focus {
	color: #0082df;
}

/*margin*/
.mt20 {
	margin-top: 20px;
}

.mt100 {
	margin-top: 100px;
}
.mt50 {
	margin-top: 50px;
}

.ml10 {
	margin-left: 10px;
}

/*字号*/
.ft12 {
	font-size: 12px;
}

.ft14 {
	font-size: 14px;
}

.ft16 {
	font-size: 16px;
}

.ft22 {
	font-size: 20px;
}

.ft24 {
	font-size: 24px;
}

.ft26 {
	font-size: 26px;
}

.ft28 {
	font-size: 28px;
}
