html, body {
  padding: 0;
  margin: 0;
  background-color: #f1f1f1;
  height: 100%; }

* {
  box-sizing: border-box; }

.flex {
  display: flex; }

.inline-flex {
  display: inline-flex; }

.row {
  flex-direction: row; }

.column {
  flex-direction: column; }

.wrap {
  flex-wrap: wrap; }

.nowrap {
  flex-wrap: nowrap; }

.full {
  flex: 1; }

.j-space-between {
  justify-content: space-between; }

.j-space-around {
  justify-content: space-around; }

.j-space-evenly {
  justify-content: space-evenly; }

.j-flex-start {
  justify-content: flex-start; }

.j-flex-end {
  justify-content: flex-end; }

.j-center {
  justify-content: center; }

.center {
  align-items: center;
  justify-content: center; }

.a-center {
  align-items: center; }

.a-flex-start {
  align-items: flex-start; }

.a-flex-end {
  align-items: flex-end; }

.scroll {
  overflow: auto; }

.pop-tip {
  position: fixed;
  bottom: 0;
  z-index: 998;
  width: 5.0666666667rem;
  line-height: 1.8;
  margin: 0 auto;
  left: 0;
  right: 0;
  font-size: 0.4266666667rem;
  border-radius: 4px;
  text-align: center; }
  .pop-tip.info {
    color: #fff;
    background: rgba(0, 0, 0, 0.5); }
  .pop-tip.success {
    color: #67C23A !important;
    background: #666 !important; }
  .pop-tip.error {
    color: #f56c6c !important;
    background: #fef0f0 !important; }

.dialog-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center; }
  .dialog-box .mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10; }
  .dialog-box .dialog-body {
    position: relative;
    z-index: 11;
    transition: all .3s;
    border-radius: 10px;
    background-color: #fff;
    padding: 0.6666666667rem 0.6666666667rem 0.6666666667rem 0.6666666667rem;
    width: 90%; }
    .dialog-box .dialog-body .close {
      position: absolute;
      top: 0.2666666667rem;
      right: 0.2666666667rem;
      color: #666;
      font-size: 0.4rem; }
    .dialog-box .dialog-body .title {
      font-size: 0.48rem;
      font-weight: 700;
      color: #666;
      text-align: center;
      margin-bottom: 0.6266666667rem; }
    .dialog-box .dialog-body .content .item,
    .dialog-box .dialog-body .content .item-textarea {
      display: flex;
      align-items: center;
      border: 0.0133333333rem solid #E6E6E6;
      border-radius: 4px;
      margin-bottom: 0.2666666667rem;
      padding: 0rem 0.1333333333rem 0rem 0.1333333333rem;
      height: 0.96rem; }
      .dialog-box .dialog-body .content .item > span,
      .dialog-box .dialog-body .content .item-textarea > span {
        white-space: nowrap;
        text-align: center;
        color: #676767;
        flex: 0 0 1.3333333333rem;
        font-size: 0.3733333333rem; }
      .dialog-box .dialog-body .content .item > input, .dialog-box .dialog-body .content .item > textarea,
      .dialog-box .dialog-body .content .item-textarea > input,
      .dialog-box .dialog-body .content .item-textarea > textarea {
        font-size: 0.3733333333rem;
        flex: 1;
        border: none; }
    .dialog-box .dialog-body .content .item-textarea {
      height: 2.7733333333rem; }
    .dialog-box .dialog-body .content > button {
      margin-top: 0.32rem;
      background-color: #FB5453;
      color: #fff;
      border: none;
      width: 100%;
      border-radius: 6px;
      height: 1.1733333333rem;
      font-size: 0.4266666667rem; }
  .dialog-box.show {
    display: flex; }
    .dialog-box.show .dialog-body {
      animation-name: scaleDraw;
      animation-duration: .5s; }

@keyframes scaleDraw {
  0% {
    transform: scale(0.5); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

/*# sourceMappingURL=common.css.map */
