/************************************** 以上是默认设置除了高亮和滑过别的不要动，想到可以随时添加  *******************************************/
/**************************************** css文件不要改，要改同名的less文件并重新生成css文件！！！！！！****************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*自动换行*/
  word-wrap: break-word;
  /* 英文强制换行 */
  /* word-break: break-all; */
}
/*清除元素默认样式*/
html,
body {
  min-height: 100%;
  font-family: "Microsoft YaHei";
}
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
video,
iframe {
  margin: 0;
  padding: 0;
}
.clear:after,
.clear:before {
  content: "";
  clear: both;
  overflow: hidden;
  display: table;
}
a {
  outline: none;
  text-decoration: none;
  color: inherit;
}
a img {
  border: 0;
}
img {
  vertical-align: middle;
}
ul {
  margin: 0;
}
ul li {
  margin: 0;
}
input,
textarea {
  padding-left: 10px;
}
input,
select,
textarea,
button,
img {
  outline: none;
  font-family: "Microsoft YaHei";
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: #999;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: #999;
}
/*搜索框自带填充颜色清除*/
input:-webkit-autofill {
  background-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  color: #333 !important;
  -webkit-text-fill-color: #333 !important;
}
button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
}
/*******************************************预设样式*******************************************/
.Left {
  float: left;
}
.Right {
  float: right;
}
.MarRi {
  margin-right: 0 !important;
}
.wrap {
  width: 100%;
  overflow: hidden;
}
.content {
  width: 100%;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
  height: auto;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
/*单行文字超出隐藏*/
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*多行文字超出隐藏*/
.text-line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /*要显示的行数*/
  overflow: hidden;
}
/****************************************预设样式  END******************************************/
