index.scss 942 Bytes
Newer Older
xuzhenghua committed
1 2 3 4 5 6 7 8
.share__container {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
zhanghaozhe committed
9
  background: rgba(0, 0, 0, 0.6);
xuzhenghua committed
10 11 12 13 14 15 16 17 18 19 20
  z-index: 999;

  .share__row {
    width: 60px;
    height: 44px;
    position: absolute;
    right: 16px;
    top: 10px;
  }

  .share__content {
zhanghaozhe committed
21 22 23 24
    width: 290px;
    height: 71px;
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
xuzhenghua committed
25 26 27 28 29 30 31 32 33 34
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .share__text {
zhanghaozhe committed
35 36 37
      font-size: 16px;
      font-weight: 400;
      color: rgba(82, 92, 101, 1);
xuzhenghua committed
38 39 40 41 42 43 44 45
    }
    .share__rule {
      height: 18px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      font-size: 12px;
zhanghaozhe committed
46
      color: #525c65;
xuzhenghua committed
47
    }
zhanghaozhe committed
48
    .share__add2 {
xuzhenghua committed
49 50 51
      width: 95px;
    }
  }
zhanghaozhe committed
52
}