
.Times {
    /* white-space: nowrap; */
    flex-wrap: wrap;
    display: flex;
}

.Times a {
    margin-right: 20px;
    color: #888888;
    font-size: 14px;
    font-family: OPPOSans-Regular, OPPOSans;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.Times a:last-child {
    margin-right: 0;
}

.Times a:last-child {
    margin-right: 0;
}
.Times a:hover{
    color: #0CC263;
}
.Times a.active {
    color: #0CC263;
}

.Times a.active::after {
    content: '';
    width: 50%;
    height: 2px;
    background-color: #0CC263;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

/* 拼团列表 */
.groups {
    margin-top: 20px;
    display: block;
    flex-wrap: wrap;
    column-count: 2;
    column-gap: 20px;
}

.group {
    border-radius: 6px;
    border: 1px solid #07C160;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    -webkit-column-break-inside: avoid;
    break-inside: avoid-column;
}
.group:nth-child(2n){
    margin-right: 0px;
}
.groups-item {
    display: flex;
    justify-content: center;
    padding: 15px;
}

.groups-item:nth-child(2n) {
    margin-right: 0px;
}
.goods .goods-item .left{
    font-size: 0;
}
.groups-item .left img {
    width: 115px;
    height: 115px;
    border-radius: 6px;
}

.groups-item .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 10px;
}

.groups-item .title {
    width: 303px;
    font-size: 14px;
    font-family: OPPOSans-Medium, OPPOSans;
    font-weight: 500;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 4px;
}

.groups-item .desc {
    width: 303px;
    font-size: 10px;
    font-family: OPPOSans-Regular, OPPOSans;
    font-weight: 400;
    color: #888888;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 这里是超出几行省略 */
    overflow: hidden;
}

.groups-item .time {
    font-size: 10px;
    font-family: OPPOSans-Regular, OPPOSans;
    font-weight: 400;
    color: #888888;
    flex: 1;
    display: flex;
    align-items: center;
}

.groups-item .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.groups-item .info .endTime {
    display: flex;
    font-family: OPPOSans-Medium, OPPOSans;
    font-size: 14px;
    font-weight: 500;
    color: #FF3434;
    align-items: center;
}
.groups-item .info .glyphicon {
   top: 0;
   margin-right: 2px;
}

.groups-item .info .g-btn {
    width: 76px;
    height: 26px;
    background: #FF3434;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 商品列表 */
.goods {

}

.goods .title {
    height: 38px;
    font-size: 14px;
    font-family: OPPOSans-Medium, OPPOSans;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    background: #C8FCE1;
    padding-left: 15px;

}

.goods .list {
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.goods .goods-item {
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #EEEEEE;
}
.goods .goods-item:last-child{
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.goods .goods-item .left img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
}

.goods .goods-item .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 10px;
    flex: 1;
}
.goods .goods-item .right .goods-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #000000;
}
.goods .goods-item .right .goods-price{
    display: flex;
    align-items: baseline;
}
.goods .goods-item .right .price{
    font-size: 20px;
    color: #FF3434;
    display: flex;
    align-items: baseline;
}
.goods .goods-item .right .oprice{
    font-size: 10px;
    color: #888888;
    text-decoration:line-through;
    margin-left: 8px;
}
.goods .goods-item .right .unit{
    font-size: 10px;
}

