body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
.fl {
  float: left;
}
.clearfix::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
}
.clearfix {
  zoom: 1;
}
ul {
  list-style: none;
}
.cmz-select {
  width: 65px;
  position: relative;
  min-height: 26px;
  height: 100%;
  -webkit-border-radius: 0.3em;
  -moz-border-radius: 0.3em;
  border-radius: 0.3em;
  border: none;
}
.cmz-select input {
  width: 65px;
  font-weight: bold;
  background: transparent;
  display: inline-block;
  outline: none;
  cursor: pointer;
  /*width: 100%;*/
  height: 100%;
  min-height: 26px;
  border: 1px solid #dcdef6;
  font-size: 16px;
  color: #112C5C;
  padding: 0 5px;
  -webkit-border-radius: 0.3em;
  -moz-border-radius: 0.3em;
  border-radius: 0.3em;
  position: absolute;
  line-height: 1.8em;
  border: none;
}
/*.cmz-select input:hover {*/
/*  border-color: #c0c4cc;*/
/*}*/
.cmz-select input:focus {
  border-color: #409eff;
}
.cmz-select input::-webkit-input-placeholder {
  color: #dcdfe6;
}
.cmz-select input::-moz-placeholder {
  color: #dcdfe6;
}
.cmz-select input:-ms-input-placeholder {
  color: #dcdfe6;
}
.cmz-select ul {
  display: none;
  /*color: #606266;*/
  color: #112C5C;
  font-size: 14px;
  position: absolute;
  overflow: hidden;
  max-height: 150px;
  overflow-y: auto;
  z-index: 10001;
  margin-top: 8px;
  width: 330px;
  height: 183px;
  background: #FFFFFF;
  box-shadow: 0px 2px 4px 0px rgba(202,206,212,0.44);
  border-radius: 10px;
}
.cmz-select ul.listT {
  text-align: center;
  color: #999;
  font-size: 14px;
}
.cmz-select ul li {
  display: flex;
  align-items: center;
  line-height: 34px;
  overflow: hidden;
  padding: 0 10px;
  cursor: pointer;
}
.cmz-select ul li.on {
  background-color: #f5f7fa;
}
.cmz-select ul li.selected {
  background: #F5F7F9;
  /*color: #409eff;*/
  /*font-weight: bold;*/
}
.cmz-select .inputImg {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -moz-transform: translateY(-50%);
  /* Firefox */
  -webkit-transform: translateY(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateY(-50%);
  /* Opera */
  color: #dcdef6;
  cursor: pointer;
  z-index: 999;
}
.cmz-select .delImg:hover {
  color: #ccc;
}
.cmz-select .delImg:hover + .cmz-input {
  border-color: #c0c4cc;
}
.cmz-select .arrowIcon {
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  /* Firefox 4 */
  -webkit-transition: all 0.3s;
  /* Safari and Chrome */
  -o-transition: all 0.3s;
  /* Opera */
}
.cmz-select .arrowIcon.selected {
  transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  /* IE 9 */
  -moz-transform: translateY(-50%) rotate(-180deg);
  /* Firefox */
  -webkit-transform: translateY(-50%) rotate(-180deg);
  /* Safari 和 Chrome */
  -o-transform: translateY(-50%) rotate(-180deg);
  /* Opera */
}
.hide {
  display: none;
}
