confirm.scss 1.87 KB
Newer Older
FE 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 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 94 95 96 97 98
.bargain-bind-confirm {
  width: 290px;
  padding-top: 10px;
  padding-bottom: 8px;
}

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

.bargain-bind-confirm__desc {
  margin: 0;
  padding: 0 20px;
  font-size: 12px;
  color: #666;
}

.bargain-bind-confirm__list {
  padding: 0 0 10px;
}

.bargain-bind-confirm__account {
  display: flex;
  align-items: center;
  height: 30px;
  margin: 0 52px;
  padding: 0 4px;
  text-align: left;

  &:nth-child(n+2) {
    border-top: 1px solid #E5E5E5;
  }
}

.bargain-bind-confirm__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;

  &[data-plat="email"] {
    background-image: url('https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/newyear20/H5/icon-mail.png');
  }

  &[data-plat="sina"] {
    background-image: url('https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/newyear20/H5/icon-sina.png');
  }

  &[data-plat="qq"] {
    background-image: url('https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/newyear20/H5/icon-qq.png');
  }

  &[data-plat="wechat"] {
    background-image: url('https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/newyear20/H5/icon-wechat.png');
  }
}

.bargain-bind-confirm__name {
  margin: 0;
  padding-left: 7px;
  font-size: 12px;
  color: #999;
}

.bargain-bind-confirm__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.bargain-bind-confirm__button {
  width: 105px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 15px;
  font-size: 14px;
  cursor: pointer;
  outline: none;

  &[data-type="cancle"] {
    border: 1px solid #0099FF;
    color: #0099FF;
    background-color: transparent;
  }

  &[data-type="confirm"] {
    border-style: none;
    color: #fff;
    background-color: #0099FF;
  }
}