.wrapper{
    background-color: #FAFAFA;
    height 100%;
    padding: 50px 40px;
    box-sizing: border-box;
    overflow-x: hidden
    overflow-y: auto
    background #fff;
    margin-top: 20px;
    .title {
        Font-PF(Medium);
        line-size(36px);
    }

    .productImage{
        width: 180px;
        height: 180px;
        border-radius: 6px;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        margin-right: 24px;
    }

    .info{
        padding: 54px 0px 40px;
        background-color: #fff;
        display: flex;

        .productimg{
            size(180px);
            border-radius: 6px;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
        }

        h4 {
            font-size: 32px;
            margin-top 14px;
        }

        p {
            font-size: 32px;
            color: primary;
            margin-top: 32px;
            span{
                font-size: 26px;
            }
            &.cycle{
                font-size:26px;
                Font-PF(Regular);
                color:rgba(53,53,53,.5);
                line-height:26px;
                margin: 0;
                padding: 18px 0 16px;
            }
        }
    }

    ul{
        border-top: 1px solid alpha(primary, 0.2);
        background-color: #fff;
        position: relative;
        padding-top: 24px;

        li{
            padding: 16px 0;
            display: flex;
            font-size: 26px;

            .label{
                width: 130px 
                color: alpha(dark-color, 0.5);
            }
            .value{
                width: 600px  
                display: flex
                flex-flow: row wrap
                span{
                    display: block
                    line-height: 28px
                    color: dark-color; 
                    margin-right: 10px
                    margin-bottom: 5px;
                    &.primary{
                        color: primary;
                    }
                }
            }
        }
    }
    .payicon{
        height: 30px;
        margin-right: 15px
    }
    
}