﻿@font-face {
    font-family: 'price';
    src: url('/css/price.TTF') format('truetype');
}
.price_alert {
    border: 1px solid #ebebeb;
    background-image: url('//m.zhuangku.com/images/price1.png');
    background-position: center 20px;
    background-repeat: no-repeat;
    background-size: 354px 16px;
    padding-top:40px;
    margin-top:15px;
    background-color:#fff;
}
    .price_alert *{
        box-sizing:border-box;
    }
    .price_alert .price_content {
        padding: 15px;
    }
.price_top {
    background-color: #d9d4d4;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
}
    .price_top .price_change {
        height: 40px;
        border: 3px solid #3a3a38;
        display: flex;
        display: -webkit-flex;
        flex-direction: row;
        justify-content: flex-end;
    }
        .price_top .price_change .price {
            font-size: 12px;
            line-height: 30px;
            margin-right: 5px;
        }
            .price_top .price_change .price span {
                display: inline-flex;
                line-height: 30px;
                font-family: 'price';
                font-size: 30px;
                color: #000;
            }
    .price_list li {
        position: relative;
        margin-bottom: 15px;
        width: 100%;
    }

        .price_list li input, .price_list li select {
            width: 100%;
            height: 46px;
            line-height: 46px;
            border: 1px solid #d5d5d5;
            border-radius: 5px;
            padding: 0 10px;
            outline: 0;
            font-size: 12px;
        }

        .price_list li input {
            -webkit-appearance: none;
            padding-left:75px;
        }

        .price_list li .meter {
            color: #999;
            font-size: 12px;
            position: absolute;
            right: 10px;
            top: 50%;
            margin-top: -9px;
        }
        .price_list li span.tips{
            color: #555;
            font-size: 14px;
            position: absolute;
            left: 10px;
            top: 50%;
            margin-top: -11px;
        }
        .price_list li input[type='button'] {
            height: 46px;
            line-height: 46px;
            border: 0;
            background-color: #ff6702;
            color: #fff;
            font-size: 16px;
            padding-left:10px;
        }

        .price_list li em {
            display: block;
            width: 31px;
            height: 45px;
            position: absolute;
            background-image: url('//m.zhuangku.com/images/handmove.png');
            background-size: 100%;
            right: 35%;
            top: 25px;
            animation: figerscale 500ms linear infinite alternate;
            -webkit-animation: figerscale 500ms linear infinite alternate;
        }
 .calus{
            cursor:pointer;
        }
@keyframes figerscale {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2)
    }
}

@-webkit-keyframes figerscale {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }

    100% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2)
    }
}