html,body {
  padding: 0;
  margin: 0
}
body{
  min-width: 1200px;
  font-family: "Avenir", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
}
a{
  text-decoration: none;
  color: inherit;
}
*{
  box-sizing: border-box;
}
.w1400{
  width: 1400px;
  margin: auto;
}

/* .footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #1c1c1c;
  text-align: center;
  height: 146px;
  width: 100%;
  bottom: 0;
  min-width: 1220px
}

.footer a,.footer div {
  font-size: 12px;
  color: #555
}

.footer a {
  margin: 0 10px;
  display: inline-block;
  margin-top: 35px;
  margin-bottom: 10px
}

.footer div {
  margin-bottom: 5px
} */

.oh {
  overflow: hidden
}
.clearfloat:after{display:block;clear:both;content:"";visibility:hidden;height:0}
.clearfloat{zoom:1}

.fl {
  float: left
}

.fr {
  float: right
}

.db {
  display: block
}

.tac {
  text-align: center
}

.tal {
  text-align: left
}

.tar {
  text-align: right
}

.cp {
  cursor: pointer
}

.ma {
  margin: auto
}
/*更改元素的 diplay*/
.ds_block{
  display: block;
}
.ds_inline_block{
  display: inline-block;
}
.ds_flex{
  display: flex;
}
/*超出一行省略号*/
.ellipsis_one{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/*超出两行省略号*/
.ellipsis_two {
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 2;
  -moz-box-orient: vertical;
  word-break: break-all!important;
}
/*超出三行省略号*/
.ellipsis_three {
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-line-clamp: 3;
  -moz-box-orient: vertical;
  word-break: break-all!important;
}

/*分页的样式*/
#fenye {
  font-size: 14px;
}
#fenye a{
  display: inline-block;
  cursor: pointer;
  padding: 0 12px;
  border-radius: 2px;
  background-color: #f1eff0;
  margin: 0 3px 6px;
  height: 26px;
  line-height: 26px;
  color: #666;
}
#fenye a:hover{
  color: #337ab7;
  text-decoration:underline;
}
#fenye .active{
  background-color: #409eff;
  color: #ffffff!important;
}

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
  -webkit-appearance: none !important; 
 }
/* chrome */
 
input[type="number"]{
  -moz-appearance:textfield;/* firefox */
}
.el-input__inner {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  border-top-color: rgb(220, 223, 230);
  border-right-color: rgb(220, 223, 230);
  border-bottom-color: rgb(220, 223, 230);
  border-left-color: rgb(220, 223, 230);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #606266;
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 15px;
  -webkit-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  -o-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  width: 100%;
}
.el-input__inner:hover {
  border-color: #c0c4cc;
}
.el-input__inner:focus {
  border-color: #409eff;
  outline: 0;
}
.el-input__inner::placeholder {
  color: #c0c4cc;
}
.el-input{
  position: relative;
  width: 100%;
}
.el-input__inner.is-error{
  border-color: #F56C6C;
}
.el-input__error {
  color: #F56C6C;
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
}
.el-radio__inner, .el-radio__input {
  position: relative;
  display: inline-block;
  color: #606266;
}
.el-radio__input.is-checked .el-radio__inner{
  border-color: #409eff;
  background: #409eff;
}
.el-radio__input.is-checked label{
  color: #409eff;
}
.el-radio__input {
  line-height: 1;
  white-space: nowrap;
  outline: 0;
}
.el-radio__inner {
  vertical-align: -2px;
  border: 1px solid #dcdfe6;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  background-color: #fff;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.el-radio__inner::after {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #fff;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%) scale(0);
  -ms-transform: translate(-50%,-50%) scale(0);
  transform: translate(-50%,-50%) scale(0);
  -webkit-transition: -webkit-transform .15s ease-in;
  transition: -webkit-transform .15s ease-in;
  -o-transition: transform .15s ease-in;
  transition: transform .15s ease-in;
  transition: transform .15s ease-in,-webkit-transform .15s ease-in;
}
.el-radio__input.is-checked .el-radio__inner::after {
  -webkit-transform: translate(-50%,-50%) scale(1);
  -ms-transform: translate(-50%,-50%) scale(1);
  transform: translate(-50%,-50%) scale(1);
}
.el-radio__original {
  opacity: 0;
  outline: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
select{
  -webkit-appearance: none;
　-moz-appearance: none;
  background-color: #FFF;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #DCDFE6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* color: #606266; */
  display: inline-block;
  font-size: inherit;
  height: 40px;
  line-height: 40px;
  outline: 0;
  padding: 0 10px;
  -webkit-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  -o-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  transition: border-color .2s cubic-bezier(.645,.045,.355,1);
  width: 100%;
  background: url(/img/bottom_jian.png) no-repeat left center;
  background-position-x: calc(100% - 10px);
  background-size: 20px;
}
select:focus {
  border-color: #409eff;
  outline: 0;
}
select::-ms-expand {display: none;}
option{
  font-size: 14px;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  height: 40px;
  line-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  background: #fff;
  -moz-appearance:none; /* Firefox */ 
  -webkit-appearance:none; /* Safari 和 Chrome */ 
  appearance:none;
}
#searchTips{
  scrollbar-color: rgba(144,147,153,.5) #ffffff; /* 第一个方块色彩，第二个轨道色彩(用于更改火狐浏览器款式) */
  scrollbar-width: thin; /* 火狐滚动条无奈自定义宽度，只能通过此属性使滚动条宽度变细 */
  -ms-overflow-style: none; /* 暗藏滚动条（在IE和Edge两个浏览器中很难更改款式，固采取暗藏形式） */
}
/* 以下是chrome浏览器自定义滚动条款式形式 */
#searchTips::-webkit-scrollbar {
  /*滚动条整体款式*/
  width: 4px; /*高宽别离对应横竖滚动条的尺寸*/
  height: 1px;
}
#searchTips::-webkit-scrollbar-thumb {
  /*滚动条外面小方块*/
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
  background: #dfdfdf;
}
#searchTips::-moz-scrollbar {width:15px; } 
#searchTips::-webkit-scrollbar-track {
  /*滚动条外面轨道*/
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
  border-radius: 4px;
  background: #fff;
}