index.scss 924 Bytes
Newer Older
xuzhenghua committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
// 地址弹窗
.address-form__desc {
  width: 238px;
  margin: 16px auto 15px;
  font-size: 12px;
  color: #999;
}

.address-form__item {
  position: relative;
  width: 250px;
  margin: 0 auto 16px;
}

.address-form__ipt {
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid rgba(221, 221, 221, 1);
  font-size: 14px;
  font-weight: 400;
  color: rgba(153, 153, 153, 1);
  text-indent: 10px;
}

.address-form__tip {
  position: absolute;
  bottom: -14px;
  width: 100%;
  font-size: 12px;
  color: #ff0000;
  line-height: 14px;
}

.address-form__submit {
  display: block;
  width: 120px;
  height: 34px;
  margin: 8px auto 0;
  border-radius: 17px;
  border-style: none;
  background-color: rgba(82, 92, 101, 0.3);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 1);
  line-height: 34px;
  cursor: pointer;
  outline: none;

  &[data-status="do"] {
    background-color: #0099FF;
  }
}