bargain-info.scss 1.84 KB
Newer Older
FE committed
1
.bargain-phone-popup {
xuzhenghua committed
2 3
  width: 300px;
  height: 195px;
FE committed
4
  margin: 200px auto 20px;
xuzhenghua committed
5 6
  padding: 20px;
  border-radius: 3px;
FE committed
7 8
  background-color: $white;
}
zhanghaozhe committed
9

FE committed
10 11 12 13 14 15 16
.bargain-phone-popup__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  line-height: 1;
}
zhanghaozhe committed
17

FE committed
18 19 20 21 22 23 24 25
.bargain-phone-popup__item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  margin-top: 15px;
  border: 1px solid #ddd;
  box-sizing: border-box;
zhanghaozhe committed
26

FE committed
27 28 29
  &.active {
    border: 1px solid $active;
    color: $active;
xuzhenghua committed
30
  }
zhanghaozhe committed
31

xuzhenghua committed
32 33 34
  input {
    width: 100%;
    padding-left: 10px;
FE committed
35 36 37
    border-style: none;
    outline: 0;
    -webkit-appearance: none;
zhanghaozhe committed
38

xuzhenghua committed
39 40
    &::-webkit-input-placeholder {
      color: $color_999;
zhanghaozhe committed
41
    }
xuzhenghua committed
42

FE committed
43 44
    &.bargain-phone-popup__ipt {
      border-left: 1px solid #ddd;
zhanghaozhe committed
45
    }
xuzhenghua committed
46
  }
FE committed
47 48
}

xuzhenghua committed
49

FE committed
50 51 52 53 54 55 56 57 58

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

.bargain-phone-popup__button--send {
FE committed
59
  width: 136px;
FE committed
60 61 62
  border-style: none;
  font-size: 13px;
  color: $color_999;
FE committed
63
  text-align: right;
FE committed
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
  background-color: transparent;
  cursor: pointer;
  outline: none;

  &.active {
    color: $active;
  }
}

.bargain-phone-popup__button--bargain {
  display: block;
  width: 100%;
  height: 30px;
  margin-top: 20px;
  border-style: none;
  font-size: 15px;
  color: $white;
  line-height: 30px;
  text-align: center;
  background-color: $bg_999;
  outline: none;
  -webkit-appearance: none;

  &.active {
    color: #FF4000;
    background-color: #FADD29;
xuzhenghua committed
90
  }
FE committed
91
}
xuzhenghua committed
92

FE committed
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
.popup-bind--bargain {

  .popup-bind__content {
    width: 300px;
    margin: 200px auto 20px;
    padding: 20px;
    border-radius: 3px;
  }
  
  .popup-bind__title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: normal;
  }

  .popup-bind__desc {
    padding: 0;
    font-size: 12px;
  }
  
  .popup-bind__button {
    padding: 0;
xuzhenghua committed
115
  }
zhanghaozhe committed
116
}