html, body {
    margin: 0;
    height: 100%;
}

.container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
}

.left, .right {
    width: 100px;
    height: 100%;
}

.center {
    flex: 1;
    height: 100%;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title {
    margin-bottom: 30px;
}

.goods_con {
    width: 950px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.goods {
    width: 170px;
    height: 170px;
    margin-bottom: 20px;
    border: 1px #CCCCCC solid;
}

ul,li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    float: left;
}

.margin-top5 {
    margin-top: 5px;
}

.margin-left5 {
    margin-left: 5px;
}

.block {
    display: block;
}

.price {
    color: #DD516C;
}

.text {
    color: #6C6C6C;
}

.text-large {
    font-size: 16px;
}

.text-normal {
    font-size: 14px;
}