.shopBox {
    margin: 20px auto;
    width: 1226px;
    height: 660px;
    position: relative;
}
.shopLayer {
    width: 1226px;
    height: 580px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 30px 25px;

    .layerTop {
        height: 30px;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        position: relative;

        .placeButton {
            width: 90px;
            height: 26px;
            line-height: 24px;
            background: #FFFFFF;
            border-radius: 1px;
            border: 1px solid #B0B0B0;
            cursor: pointer;
            margin-right: 10px;

            &:hover {
                color: #fff;
                background-color: #FF9A00;
                border-color:#FF9A00;
            }
        }

        .sePlaceButton {
            color: #fff;
            background-color: #FF9A00;
            border-color:#FF9A00;
        }
    }

    .layerFooter {
        width: 100%;
        height: 68px;
        position: absolute;
        bottom: 0;
        display: flex;
        left: 0;
        align-items: center;
        background-color: #fff;
        box-sizing: border-box;
        padding-left: 45px;

        .replaceButton {
            margin-left: 30px;
            cursor: pointer;
        }

        .accountButton {
            position: absolute;
            right: 0;
            width: 170px;
            height: 100%;
            color: #fff;
            background: #D0121B;
            border-radius: 1px;
            cursor: pointer;
        }

        .shopTotal {
            margin-left: 400px;
            margin-right: 70px;
        }
    }

    .keyNumbers {
        color: #CC0000;
    }
}