index.scss 1.55 KB
Newer Older
zhanghaozhe committed
1
@import "src/assets/css/variable";
xuzhenghua committed
2
.share-poster {
zhanghaozhe committed
3 4 5 6 7 8
  .total-container {
    width: 100%;
    background-color: $bg_000;
    height: 420px;
    overflow: hidden;
    position: relative;
xuzhenghua committed
9

zhanghaozhe committed
10 11 12 13 14 15 16 17 18
    .placard-img-container {
      width: 100%;
      height: 840px;
      background: $bg_000;
      padding-top: 20px;
      overflow: hidden;
      position: relative;
      text-align: center;
      zoom: 0.5;
xuzhenghua committed
19

zhanghaozhe committed
20 21 22 23
      img {
        width: 60%;
      }
    }
xuzhenghua committed
24

zhanghaozhe committed
25 26
    .placard-code {
      opacity: 0;
xuzhenghua committed
27
    }
zhanghaozhe committed
28
  }
xuzhenghua committed
29

zhanghaozhe committed
30 31 32 33 34
  .placard-desc {
    width: 100%;
    height: 45px;
    background: $bg_000;
    padding: 0 10px;
zhanghaozhe committed
35

zhanghaozhe committed
36 37 38 39 40 41 42
    .placard-sharetxt {
      width: 100%;
      height: 100%;
      line-height: 20px;
      display: inline-block;
      font-size: 14px;
      color: $white;
xuzhenghua committed
43

zhanghaozhe committed
44 45 46 47
      .placard-price {
        font-size: 14px;
        color: $active;
      }
xuzhenghua committed
48
    }
zhanghaozhe committed
49
  }
xuzhenghua committed
50

zhanghaozhe committed
51 52 53
  .placard-swiper {
    width: 100%;
    background-color: $white;
xuzhenghua committed
54

zhanghaozhe committed
55 56 57 58
    .placard-list {
      display: flex;
      justify-content: center;
      align-items: center;
xuzhenghua committed
59

zhanghaozhe committed
60 61 62 63 64 65
      li {
        width: 64px;
        height: 64px;
        border-radius: 5px;
        line-height: 90px;
        margin: 20px 15px;
xuzhenghua committed
66

zhanghaozhe committed
67 68 69 70 71 72 73
        img {
          display: inline-block;
          width: 64px;
          height: 64px;
          border-radius: 5px;
        }
      }
xuzhenghua committed
74

zhanghaozhe committed
75 76 77 78 79 80
      li.active {
        width: 64px;
        height: 64px;
        background: url("./image/choose_pic.png") no-repeat center;
        z-index: 1002;
        background-size: 64px;
xuzhenghua committed
81

zhanghaozhe committed
82 83
        img {
          opacity: 0.1;
xuzhenghua committed
84
        }
zhanghaozhe committed
85
      }
xuzhenghua committed
86
    }
zhanghaozhe committed
87
  }
zhanghaozhe committed
88

zhanghaozhe committed
89 90 91 92
  .hide {
    display: none;
  }
}