.wmcode-view {
	border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 18px 0 rgba(0, 0, 0, 0.05);
}

.wmcode-qrcode img {
	width: 80px;
	height: 80px;
}

.wmcode-inner {
    flex: 1;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: visible;
}

.wmcode-img {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.wmcode-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wmcode-content {
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 14px;
    flex: 1;
    box-sizing: border-box;
}

.wmcode-text-title {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wmcode-text-des {
    color: #999;
    font-size: 12px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.wmcode-btn-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wmcode-price {
    color: #fe645a;
    font-size: 16px;
    font-weight: 500;
}

.wmcode-btn-goods {
    height: 30px;
    padding: 0 16px;
    border-radius: 16px;
    background-color: #fe645a;
    box-shadow: 0 4px 4px #fdc5c1;
    color: #fff;
    font-size: 12px;
    line-height: 30px;
}

.wmcode-btn {
    height: 32px;
    padding: 0 20px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-sizing: border-box;
    color: #666;
    font-size: 12px;
    line-height: 30px;
}

@media (max-width: 768px) {
    .wmcode-qrcode {
        text-align: center;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dotted #EEE;
    }

    .wmcode-img {
        flex-shrink: 0;
        width: 100px;
        height: 100px;
    }

    .wmcode-qrcode-tip {
        font-size: 12px;
        text-align: center;
        color: #999;
        margin: 0;
    }
}

@media (min-width: 768px) {
    .wmcode-view {
        display: flex;
    }

    .wmcode-qrcode {
        margin-left: 120px;
        position: relative;
    }

    .wmcode-qrcode::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -60px;
        width: 1px;
        height: 100%;
        transform: translateY(-50%);
        background: #EEE;
    }

    .wmcode-qrcode-tip {
        font-size: 12px;
        text-align: center;
        color: #999;
        margin-top: 12px;
    }
}