/* 门店信息 */

.content-box {
    min-height: calc(100vh - 134px);
    padding: 80px 0 40px 0;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.store-info-title {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.store-info-title .title {
    flex-shrink: 0;
    margin-right: 34px;
    font-size: 34px;
    font-weight: 400;
    color: #0C0C0B;
    line-height: 34px;
}

.store-info-title .line {
    margin-left: auto;
    height: 1px;
    width: 100%;
    background-color: #0C0C0B;
}

.store-list {
    display: flex;
    flex-wrap: wrap;
}

.store-box {
    margin-right: 40px;
    margin-bottom: 40px;
    width: 580px;
    height: 200px;
    display: flex;
    background-color: #ffffff;
    box-shadow: 0px 2px 8px 0px rgba(203, 203, 203, 0.5);
}

.store-box:nth-of-type(2n) {
    margin-right: 0px;
}

.store-box .store-img {
    height: 200px;
    width: 300px;
}

.store-box .store-content {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
}

.store-box .store-content .title {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 400;
    color: #0C0C0B;
    line-height: 24px;
}

.store-content .content {
    margin-bottom: 20px;
    display: flex;
}

.store-content .content .content-icon {
    height: 14px;
    width: 14px;
    margin-right: 10px;
}

.store-content .content .text {
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    color: #0C0C0B;
    line-height: 18px;
    width: 190px;
    display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;

}