* {
  margin: 0;
  padding: 0;
  font-size: 0;
  font-family: "microsoft yahei";
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}

html,
body {
  height: 100%;
}

.body {
  height: 100%;
  position: relative;
  overflow: auto;
}

.hide {
  display: none !important;
}

.radiobox input[type="radio"]+label::before {
  content: "\a0";
  display: inline-block;
  vertical-align: 2px;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background-color: #fff;
  border: 0.01rem solid #999;
  text-indent: 2px;
  line-height: 0.65;
  /*行高不加单位，子元素将继承数字乘以自身字体尺寸而非父元素行高*/
  padding: 0.02rem;
}

.radiobox input[type="radio"]:checked+label::before {
  background-color: #409eff;
  padding: 0.02rem;
  background-clip: content-box;
}

.radiobox input[type="radio"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.radiolabel {
  font-size: 0.118rem;
}

.radiobox {
  display: inline-block;
  position: relative;
  margin-right: 0.4rem;
}

.radioname {
  font-size: 0.118rem;
  position: absolute;
  top: 0;
  margin-left: 0.2rem;
  color: #a8a8a8;
}

.clabel {
  display: block;
  width: 0.118rem;
  height: 0.118rem;
  line-height: 0.118rem;
  cursor: pointer;
  /* position: absolute; */
  border: 1px solid #ccd0db;
  border-radius: 0.01rem;
  top: 0;
}

select,
textarea,
input[type="date"],
input[type="text"] {
  outline: none;
  border: none;
  -webkit-appearance: none;
}

:active {
  outline: none;
}

input[type="checkbox"],
input[type="radio"] {
  visibility: hidden;
}

.ck {
  position: absolute;
}

.ck:checked+.clabel:before {
  display: block;
  content: "\2713";
  text-align: center;
  font-size: 0.118rem;
  color: #fff;
  background: #409eff;
}

.checkboxtext {
  /* position: absolute; */
  display: block;
  font-size: 0.118rem;
  /* margin-left: 5px; */
  line-height: 0.118rem;
  color: #454545;
  top: 0;
  /* left: 0.12rem; */
}

.checkboxarea {
  display: flex;
  position: relative;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 100;
  display: none;
}

.hide {
  display: none !important;
}

.row-nowrap {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.flex-con {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex-tow {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  flex: 2;
}

.flex-vertical {
  -webkit-box-orient: vertical;
  -webkit-flex-flow: column;
  flex-flow: column;
}

.flex-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-flex-flow: row;
  flex-flow: row;
}

.box-pack {
  -webkit-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.box-pack-left {
  -webkit-box-pack: start;
  box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.box-pack-right {
  -webkit-box-pack: end;
  box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.box-pack-justify {
  -webkit-box-pack: justify;
  box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.box-align {
  -webkit-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.flex-rowWrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.border-t,
.border-b {
  position: relative;
}

.border-t:before,
.border-b:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: #ddd;
  right: 0;
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.border-b:after {
  top: auto;
  bottom: 0;
}

.border-l,
.border-r {
  position: relative;
}

.border-l:before,
.border-r:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: #ddd;
  bottom: 0;
  width: 1px;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.border-r:after {
  left: auto;
  right: 0;
}

@font-face {
  font-family: HarmonyOSSansSC;
  src: url(../font/HarmonyOSSansSC.ttf);
}