
@charset "UTF-8";
/*依赖 base 里的动画*/
.sq-actionsheet-mark {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
.sq-actionsheet-content {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  text-align: center;
  background-color: #EFEFF4;
}
.sq-actionsheet-row {
  color: #333;
  background-color: #fff;
  font-size: 16px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 14px 0;
  position: relative;
}
.sq-actionsheet-row::after {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transform: scaleY(0.5);
        -ms-transform: scaleY(0.5);
            transform: scaleY(0.5);
}
.sq-actionsheet-row:last-child {
    margin-top: 6px;
    border-top: 0;
}
