bargain-info.scss 1.08 KB
Newer Older
zhanghaozhe committed
1
.bargain-bind-phone {
xuzhenghua committed
2 3 4 5 6 7 8 9
  display: flex;
  flex-flow: column;
  width: 300px;
  height: 195px;
  padding: 20px;
  background: $white;
  border-radius: 3px;
  margin: 200px auto 20px auto;
zhanghaozhe committed
10

xuzhenghua committed
11 12 13 14 15
  .title {
    text-align: center;
    font-size: $font_16;
    margin-bottom: 12px;
  }
zhanghaozhe committed
16

xuzhenghua committed
17 18 19 20 21 22 23 24 25
  button, .button {
    display: inline-block;
    width: 260px;
    height: 30px;
    background: $bg_999;
    line-height: 28px;
    text-align: center;
    -webkit-appearance: none;
    border: none;
zhanghaozhe committed
26

xuzhenghua committed
27 28
    font-size: $font_16;
    color: $white;
zhanghaozhe committed
29

xuzhenghua committed
30 31 32
    &.active {
      background-color: #FADD29;
      color: #FF4000;
zhanghaozhe committed
33
    }
xuzhenghua committed
34
  }
zhanghaozhe committed
35 36


xuzhenghua committed
37 38 39 40 41 42 43 44
  input {
    width: 100%;
    height: 30px;
    -webkit-appearance: none;
    outline: 0;
    border: 1px solid #DDDDDD;
    margin-bottom: 15px;
    padding-left: 10px;
zhanghaozhe committed
45

xuzhenghua committed
46 47
    &::-webkit-input-placeholder {
      color: $color_999;
zhanghaozhe committed
48
    }
xuzhenghua committed
49 50 51 52

    &:focus {
      border: 1px solid $active;
      color: $active;
zhanghaozhe committed
53
    }
xuzhenghua committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67
  }

  label {
    display: block;
    position: relative;
  }

  .send-code {
    position: absolute;
    right: 15px;
    top: 8px;
    font-size: 13px;
    color: $color_999;
  }
zhanghaozhe committed
68
}