index.scss 1.94 KB
Newer Older
xuzhenghua committed
1
.share-poster {
zhanghaozhe committed
2 3 4 5 6 7
    .total-container {
        width: 100%;
        background-color: $bg_000;
        height: 420px;
        overflow: hidden;
        position: relative;
xuzhenghua committed
8

zhanghaozhe committed
9 10 11 12 13 14 15 16 17
        .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
18

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

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

zhanghaozhe committed
29 30 31 32 33 34 35 36 37 38 39 40 41
    .placard-desc {
        width: 100%;
        height: 45px;
        background: $bg_000;
        padding: 0 10px;

        .placard-sharetxt {
            width: 100%;
            height: 100%;
            line-height: 20px;
            display: inline-block;
            font-size: 14px;
            color: $white;
xuzhenghua committed
42

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

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

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

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

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

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

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

    .hide {
        display: none;
    }
xuzhenghua committed
91
}