coin-intro.scss 1.51 KB
.coin-intro-box {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.coin-intro {
    position: absolute;
    height: 600px;
    background-color: #fff;
    padding: 30px;
    bottom: 0;
    left: 0;
    right: 0;

    .coin-li {
        line-height: 120px;
        border-bottom: 1px solid #ccc;
        height: 120px;

        .vip-img {
            width: 53px;
            height: 32px;
            margin-right: 40px;
            display: inline-block;
            padding-left: 8px;
            padding-top: 5px;
            vertical-align: middle;
            line-height: 88px;
        }

        &:nth-child(1) {
            .vip-img {
                background: url("img/product/silver.png") no-repeat;
                background-size: contain;
            }
        }

        &:nth-child(2) {
            .vip-img {
                background: url("img/product/golden.png") no-repeat;
                background-size: contain;
            }
        }

        &:nth-child(3) {
            .vip-img {
                background: url("img/product/platinum.png") no-repeat;
                background-size: contain;
            }
        }

        .return-coin-num {
            color: #d0021b;
            margin: auto 10px;
        }
    }

    .tip {
        position: absolute;
        bottom: 30px;
        text-align: center;
        margin-right: 30px;
        font-size: 22px;
        color: #ccc;
    }
}

.hide {
    display: none;
}