global.scss 3.15 KB
.text-center {
  text-align: center;
}

.font-13 {
  font-size: 13px;
}

.font-12 {
  font-size: 12px;
}

.font-11 {
  font-size: 11px;
}

.text-grey1 {
  color: #888;
}

.text-grey2 {
  color: #aaa;
}

.list-cell-arrow::before {
  content: ' ';
  height: 10px;
  width: 10px;
  border-width: 2px 2px 0 0;
  border-color: #c0c0c0;
  border-style: solid;
  -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 30rpx;
}

.list-cell {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
  padding: 26rpx 30rpx;
}

.list-cell:first-child {
  border-radius: 8rpx 8rpx 0 0;
}

.list-cell:last-child {
  border-radius: 0 0 8rpx 8rpx;
}

.list-cell::after {
  content: '';
  position: absolute;
  border-bottom: 1px solid #eaeef1;
  -webkit-transform: scaleY(0.5) translateZ(0);
  transform: scaleY(0.5) translateZ(0);
  transform-origin: 0 100%;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
}


.menu-list {
  margin: 15px 15px;

  .menu-item-box {
    width: 100%;
    display: flex;
    align-items: center;

    .menu-icon {
      color: #007AFF;
      font-size: 16px;
      margin-right: 5px;
    }

    .text-right {
      margin-left: auto;
      margin-right: 34rpx;
      color: #999;
    }
  }
}

.action-button {
  width: fit-content;
  line-height: 60rpx;
  text-align: center;
  padding: 0 26rpx;
  border-radius: 41px;
  box-sizing: border-box;
  font-family: '苹方 中等', '苹方', sans-serif;
  margin: 0 0 10rpx 20rpx;
}

.button-default {
  @extend .action-button;
  border: 1px solid #999999;
  background-color: #ffffff;
  color: #666666;
}

.button-primary {
  @extend .action-button;
  border: 1px solid #cf000d !important;
  background-color: #cf000d !important;
  color: #ffffff;
}

.list-finish-text {
  text-align: center;
}

.app-container {
  background-color: #F2F4F3;
  height: calc(100vh - 44px);
}

.form-container {
  padding: 20rpx 24rpx;

  .form {

    .u-form-item {
      margin: 0 0 0 20rpx;
    }

    .u-form-item__body__left {
      width: 100% !important;
    }

    .u-form-item__body__right {
      margin-left: -10px;
    }

    .row-form-item {
      .u-form-item__body {
        justify-content: space-between;

        .u-form-item__body__left {
          width: 100px !important;
          margin-bottom: 0 !important;
        }

        .u-form-item__body__right__content__slot {
          display: flex;
          justify-content: flex-end;
        }
      }
    }

    .u-form-item__body__left {
      margin-bottom: 14rpx !important;
    }
  }

  .attachment-item {
    .attachment-table {
      position: relative;
      top: -30px;
    }
  }
}

.detail-container {
  padding: 20rpx 24rpx;
}

.info-panel {
  .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 32rpx 0;
    font-size: 26rpx;

    .info-label {
      color: #999db0;
      max-width: 70%;
    }

    .info-value {
      color: #2b3950;
    }

    &:last-child {
      margin: 0;
    }
  }
}

.u-picker {
  .u-toolbar__wrapper__confirm {
    color: #cf000d !important;
  }
}