html {
    min-height: 100%;
}
.content {
    padding: 10px;
    background-color: #f5f5f5;
    box-sizing: border-box;
}
.tab-label {
    height: 50px;
    line-height: 50px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
}
.tab-label span {
    display: inline-block;
    padding: 0 22px;
    cursor: pointer;
}
.tab-label span.current {
    color: #fff;
}
.seckill-time {
    align-items: center;
    margin-top: 16px;
    margin-bottom: 14px;
    height: 60px;
    overflow: hidden;
    background-color: #fff;
}
.seckill-time .item {
    width: 150px;
    border-right: 1px solid #ffeff3;
    color: #666;
    font-size: 12px;
    text-align: center;
    padding: 20px 0;
}
.seckill-time .item span.time {
    font-size: 18px;
    margin-right: 5px;
}
.seckill-time .past {
    color: #333;
}
.seckill-time .current {
    background: -webkit-linear-gradient(left, #ff3565 , #ff438c); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #ff3565, #ff438c); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #ff3565, #ff438c); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #ff3565 , #ff438c); /* 标准的语法 */
    color: #fff;
}
/*秒杀列表*/
.seckill-list {
    flex-wrap: wrap;
}
.seckill-list .item {
    width: 290px;
    padding: 18px 18px;
    margin-right: 13px;
    margin-bottom: 14px;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.seckill-list .item:nth-child(4n) {
    margin-right: 0;
}
.seckill-list .item img {
    width: 100%;
    height: 254px;
    object-fit: cover;
}
.seckill-list .item p {
    width: 100%;
    line-height: 1;
    margin-top: 12px;
    margin-bottom: 26px;
    color: #666;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.seckill-list .price {
    margin-top: 20px;
    position: relative;
    min-height: 40px;
    overflow: hidden;
    line-height: 40px;
}
.seckill-list .price .seckill-price {
    color: #378C4B;
    font-size: 18px;
    font-weight: 700;
}
.seckill-list .price .origin-price {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
}
.seckill-list .price button {
    position: absolute;
    right: 0;
    top: 0;
    width: 84px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    background: -webkit-linear-gradient(left, #ff3565 , #ff438c); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #ff3565, #ff438c); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #ff3565, #ff438c); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #ff3565 , #ff438c); /* 标准的语法 */
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.skill {
    align-items: center;
}
.skillbar {
    width: 170px;
    position: relative;
    overflow: hidden;
    height: 6px;
    background-color: #ffe1ec;
    border-radius: 3px;
    margin-right: 27px;
}
.skillbar .filled {
    z-index: 8;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: -webkit-linear-gradient(left, #ff3565 , #ff438c); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(right, #ff3565, #ff438c); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(right, #ff3565, #ff438c); /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, #ff3565 , #ff438c); /* 标准的语法 */
    border-radius: 3px;
}
.percent {
    color: #999;
    font-size: 12px;
}
/*已抢完*/
.seckill-list .price button.take {
    background: #cacaca;
}
