common.scss 1.8 KB
.flexJ {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flexX {
  display: flex;
}

.flexC {
  display: flex;
  justify-content: center;
  align-items: center;
}

.graybg{
  height: 100vh;
  background: #f7f8fa;
}

.flexCCol {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flexD {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flexA {
  display: flex;
  align-items: center;
}

.flexACol {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.flexW {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.flex1 {
  flex: 1;
}

.Alltitle {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; // 控制多行的行数
  -webkit-box-orient: vertical;
}

.zidx {
  position: relative;
  z-index: 1000;
}

.iosPadding {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}

.br24 {
  border-radius: 24rpx;
}

.bluetext {
  color: #05b8d2;
}

.graytext {
  color: #666666;
}

.Zindex {
  z-index: 10 !important;
  position: relative;
}

.ffftext {
  color: #fff;
}

.blueTag {
  border: 2rpx solid #05b8d2;
  background: #ebfdff;
  color: #05b8d2;
  border-radius: 8rpx;
}

.grayLine {
  margin: 0 auto;
  background-color: #f5f9fa;
  width: calc(100% + 64rpx);
  height: 20rpx;
  margin-left: -32rpx;
}
.flexJA {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.fixed-bottom {
  z-index: 999999;
  width: 100%;
  padding: 16rpx;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 99;
  background: rgba(255, 255, 255, 1);
  .form-btns {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}