@charset "utf-8";
/**
 * Created by henian.xu on 2018/4/18.
 *
 */

.price {
    color: $color-price;
    &:before {
        content: '￥';
        font-size: 66.666%;
    }
    > .old {
        font-weight: normal;
        color: $gray6;
        font-size: 66.666%;
        text-decoration: line-through;
        margin-left: .2em;
    }
}

.page-subtitle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    color: $gray5;
    padding: 0 $padding;
    text-align: center;
    margin: $margin-big 0;

    > span {
        padding: 0 $padding;
    }
    &:before,
    &:after {
        display: block;
        width: 1%;
        flex-grow: 1;
        content: '';
        height: 1px;
        background-color: $gray5;
    }
}
