index.scss 1.53 KB
Newer Older
FE committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// 地址弹窗
[data-skip="default"] {
  .address-form__item {
    width: 250px;
  }

  .address-form__submit {
    width: 120px;
    height: 34px;
    margin: 8px auto 0;
    border-style: none;
    border-radius: 17px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(82, 92, 101, 0.3);

    &[data-status="do"] {
zhanghaozhe committed
17
      background-color: #0099ff;
FE committed
18 19 20 21 22
    }
  }
}

[data-skip="year"] {
FE committed
23 24 25 26 27 28 29 30
  .address-form__title {
    margin: 10px 0 0;
    font-size: 18px;
    color: #111;
    text-align: center;
    line-height: 1;
  }

FE committed
31 32 33 34 35 36 37 38
  .address-form__subtitle {
    margin: 0 15px;
  }

  .address-form__item {
    width: 270px;
    margin: 0 15px 10px;
  }
zhanghaozhe committed
39

FE committed
40 41 42 43 44 45 46 47 48 49 50
  .address-form__ipt {
    border-radius: 3px;
  }

  .address-form__submit {
    width: 270px;
    height: 44px;
    margin: 15px auto 0;
    border: 1px solid #090909;
    border-radius: 5px;
    color: #090909;
zhanghaozhe committed
51
    background-color: #ffe319;
FE committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
  }
}

.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;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
zhanghaozhe committed
94
}