index.scss 1.37 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
FE committed
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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
.bargain-bind-phone {
  padding: 10px 20px;
}

.bargain-bind-phone__title {
  margin: 0 0 12px;
  font-size: 15px;
  color: #333;
  font-weight: normal;
  text-align: center;
  line-height: 1;
}

.bargain-bind-phone__item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  margin-top: 15px;
  border: 1px solid #ddd;
  box-sizing: border-box;

  input {
    width: 100%;
    padding-left: 10px;
    border-style: none;
    outline: 0;
    -webkit-appearance: none;

    &::-webkit-input-placeholder {
      color: $color_999;
    }

    &.bargain-bind-phone__ipt {
      border-left: 1px solid #ddd;
    }
  }
}

.bargain-bind-phone__button--num {
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
  color: $color_999;
}

.bargain-bind-phone__button--send {
  width: 136px;
  border-style: none;
  font-size: 13px;
  color: $active;
  text-align: right;
  background-color: transparent;
  cursor: pointer;
  outline: none;

  &:disabled {
    color: $color_999;
  }
}

.bargain-bind-phone__button--bargain {
  display: block;
  width: 100%;
  height: 30px;
  margin-top: 20px;
  border-style: none;
  font-size: 15px;
zhanghaozhe committed
70
  color: #ff4000;
FE committed
71 72
  line-height: 30px;
  text-align: center;
zhanghaozhe committed
73
  background-color: #fadd29;
FE committed
74 75 76 77 78 79 80
  outline: none;
  -webkit-appearance: none;

  &:disabled {
    color: $white;
    background-color: $bg_999;
  }
zhanghaozhe committed
81
}