@import "../js/layui/css/layui.css";
.mescroll{
  position: fixed;
  top: 60px;
  bottom: 0;
  height: auto;
}
body{
  padding: 0;
  margin: 0;
}
.all-container{
  width: 100%;
  height: 100%;
}
.toast{
  background: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff;
  width: inherit !important;
}
.toast .layui-m-layercont{
  padding: 20px;
}
/* 字体大小 */
.font-12{
  font-size: 12px;
}
.font-14{
  font-size: 14px;
}
.font-16{
  font-size: 16px;
}
.font-18{
  font-size: 18px;
}
.font-20{
  font-size: 20px;
}
.font-22{
  font-size: 22px;
}
.font-24{
  font-size: 24px;
}
.font-26{
  font-size: 26px;
}
.font-28{
  font-size: 28px;
}
/* 加粗字体 */
.font-bold{
  font-weight: bold;
}
/* 字体颜色 */
.color-red{
  color: #ff0000;
}
.color-white{
  color: #ffffff;
}
.color-black{
  color: #000000;
}
.color-3b8377{
  color: #3b8377;
}
.color-333{
  color: #333333 !important;
}
.color-666{
  color: #666666 !important;
}
.color-999{
  color: #999999 !important;
}
.color-0062c6{
  color: #0062c6 !important;
}
.color-ff3333{
  color: #ff3333 !important;
}
.color-ffad5c{
  color: #ffad5c !important;
}
/* 背景颜色 */
.bg-3b8377{
  background-color: #3b8377;
}
.bg-39AF6F{
  background-color: #39AF6F;
}
.bg-EF9051{
  background-color: #EF9051;
}
.bg-EA6948{
  background-color: #EA6948;
}
.bg-EA4848{
  background-color: #EA4848;
}
.bg-25B4B0{
  background-color: #25B4B0;
}
.bg-FFFFFF{
  background-color: #FFFFFF;
}
.bg-000000{
  background-color: #000000;
}
/* 间距 */
.mt-10{
  margin-top: 10px;
}
.ml-10{
  margin-left: 10px;
}
.mr-10{
  margin-right: 10px;
}
.mb-10{
  margin-bottom: 10px;
}

.mt-15{
  margin-top: 15px;
}
.ml-15{
  margin-left: 15px;
}
.mr-15{
  margin-right: 15px;
}
.mb-15{
  margin-bottom: 15px;
}

.mt-20{
  margin-top: 20px;
}
.ml-20{
  margin-left: 20px;
}
.mr-20{
  margin-right: 20px;
}
.mb-20{
  margin-bottom: 20px;
}
/* 文本对齐 */
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-justify{
  text-align: justify;
}
/* 浮动 */
.float-l{
  float: left;
}
.float-r{
  float: right;
}
.float-clear{
  clear: both;
}
/* 边框线 */
.border{
  border: 1px solid #e0e0e0;
}
.border-b{
  border-bottom: 1px solid #e0e0e0;
}
/* 省略号 */
.text-ellipsis{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/* block */
.disblock{
  display: block;
}
/* flex布局 */
.flex-none{
  flex: none;
}
.flex-justify-start{
  display: flex;
  justify-content: flex-start;
}
.flex-justify-center{
  display: flex;
  justify-content: center;
}
.flex-justify-end{
  display: flex;
  justify-content: flex-end;
}
.flex-align-start{
  display: flex;
  align-items: flex-start;
}
.flex-align-center{
  display: flex;
  align-items: center;
}
.flex-align-end{
  display: flex;
  align-items: flex-end;
}
.flex-center{
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between{
  display: flex;
  justify-content: space-between;
}
.flex-around{
  display: flex;
  justify-content: space-around;
}
.one-line{
  overflow: hidden;
  white-space: nowrap; 
  text-overflow: ellipsis;
}
.layui-m-layercont{
  line-height: 0 !important;
}
/*头部*/
.header{
  position: relative;
  z-index: 999999;
  top: 0;
  width: 100%;
  height: 24px;
  padding: 18px 0;
  background: #0062C5;
  /* display: flex;
  align-items: center; */
}
.header-title{
  color: #ffffff;
  font-size: 16px;
  position: relative;
  line-height: 26px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-back{
  position: absolute;
  left: 18px;
  display: flex;
  align-items: center;
}
.header-right{
  position: absolute;
  color: #ffffff;
  font-size: 14px;
  right: 18px;
  display: flex;
  align-items: center;
}
.header-tabs-m{
  margin-bottom: 43px;
}
.header-tabs{
  position: fixed;
  top: 60px;
  height: 22px;
  width: 100%;
  z-index: 999999;
  padding: 10px 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ececec;
}
.header-tabs-item{
  color: #999999;
  text-align: center;
  font-size: 16px;
  width: 50%;
  position: relative;
}
.actived{
  color: #0062C5 !important;
  font-weight: 600;
}
.actived::after{
  position: absolute;
  display: block;
  content: '';
  height: 3px;
  background: #0062C5;
  width: 10%;
  left: 45%;
  bottom: -10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
/*底部按钮*/
.footer-h{
  margin-top: 98px;
}
.footer{
  position: fixed;
  bottom: 0;
  background: #ffffff;
  width: 100%;
  display: flex;
}
.footer div{
  height: 44px;
  margin: 20px 15px;
  background: #0062c6;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-h-two{
  margin-top: 128px;
}
.total{
  background: #f5f5f5;
  color: #666666;
  position: fixed;
  bottom: 84px;
  padding: 10px 15px;
  height: 20px;
  width: calc(100% - 30px);
}
.footer-left{
  width: 45%;
}
.footer-right{
  background: #f5f5f5 !important;
  color: #666666 !important;
  width: 45%;
}
.logout-btn{
  color: #ff0000;
  font-size: 16px;
  padding: 15px;
  width: 100%;
  text-align: center;
}
/*输入框样式*/
.input-item{
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 56px;
  border-bottom: 1px solid #ececec; 
}
.input-item div:first-of-type{
  width: 40%;
  font-size: 16px;
  color: #333333;
}
.input-item-right{
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.input-item input{
  border: 0;
  text-align: right;
  font-size: 16px;
  color: #333333;
}
.input-item input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}

.input-item input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}

.input-item input:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}

.input-item input:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}

input[type=text]:focus{ outline: 0px solid #AFECAB;}

.app-footer{
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
  left: 0;
  border-top: 1px solid #ececec;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-footer-item{
  width: 20%;
  text-align: center;
}
.app-footer-item > img{
  width: 26px;
  height: 26px;
  /* vertical-align: 0; */
}
.app-footer-item > p{
  margin-block-start: 0em;
  margin-block-end: 0em;
}
.message-tips{
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30%;
  padding: 10px;
  background-color: rgba(0, 0, 0, .3);
  border-radius: 6px;
  color: #ffffff;
}