bargain-info.scss 1.12 KB
Newer Older
zhanghaozhe 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
.bargain-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column;
    width: 300px;
    height: 195px;
    padding: 20px;
    background: $white;
    border-radius: 3px;

    .title {
        text-align: center;
        font-size: $font_16;
        margin-bottom: 12px;
    }

    .list {
        .am-list-item {
            height: 30px;
            min-height: 30px;
            border: 1px solid $border_ddd;

            input {
                font-size: $font_12;
            }
        }

        .am-list-item {
            margin-bottom: 15px;
        }

        .am-list-line {
            &::after {
                display: none;
            }
        }

        .am-list-body {
            &::after {
                display: none;
            }
        }
    }

    button {
        display: inline-block;
        width: 260px;
        height: 30px;
        background: $bg_999;

        -webkit-appearance: none;
        border: none;

        font-size: $font_16;
        color: $white;
        text-align: center;
        line-height: 30px;
    }
}