@charset "UTF-8";
/*
 * =========================================================================
 * AUI 框架 @author 流浪男 http://www.auicss.com
 * Verson 2.2
 * =========================================================================
 */
/*初始化类*/
.aui-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity .3s,transform .3s;
}
.aui-mask.aui-mask-in {
  visibility: visible;
  opacity: 1;
}
.aui-mask.aui-mask-out {
  opacity: 0;
}
/*actionsheet*/
.aui-actionsheet {
  width: 98%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0 1%;
  z-index: 999;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity .3s,transform .3s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.aui-actionsheet-btn {
  background-color: #ffffff;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 0.5rem;
}
.aui-actionsheet-title {
  font-size: 16px;
  color: #FF0000;
  line-height: 50px;
}
.aui-actionsheet-btn-item {
  height: 50px;
  line-height:50px;
  color: #0075f0;
  font-size: 16px !important;
}
.aui-border-b {
  border-bottom: 1px solid #dddddd;
}
.aui-font-size-12 {
  font-size: 16px !important;
}
.aui-border-t {
  border-top: 1px solid #dddddd;
}
