/* 对第二个选卡的css样式 */
/* 公共 */
body,ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

/* 整个tab选卡 */
#t-2 {
    width: 1190px;
    height: 307px;

    /* background-color: ghostwhite; */
    background-color: #fff;
    margin: 0 auto;

    margin-top:108px;
}

#t-2>ul>li:nth-child(1) {
    margin-top: 10px;
    height: 45px;
    border-bottom: 1px solid rgb(228, 226, 226);
    line-height: 45px;
}

.nav span {
    font-size: 15px;
}

/* 限时抢购 */
.nav>span:nth-child(1) {
    color: rgb(209, 38, 38);
    font-family: '隶书';
    font-size: 25px;
    font-weight: bold;
    margin-right: 20px;
    margin-left: 20px;
    line-height: 45px;
}

/* 倒计时 */
#showtime span {
    background-color: #000;
    color: #fff;
    margin-left: 3px;
    padding: 1px;
    border-radius: 3px;
}

/* 导航栏 */
.nav span:nth-child(4),
.nav span:nth-child(5),
.nav span:nth-child(6) {
    margin-left: 35px;
    margin-right: 35px;
}

.nav span:nth-child(7) {
    float: right;
    color: rgb(167, 167, 167);
}

.selected {
    padding: 2px 8px;
    background-color: rgb(245, 94, 94);
    color: #fff;
    border-radius: 8px;
}

/* 内容 */
.content-box {
    display: none;
}

.content-box:nth-child(1) {
    display: block;
}

.content {
    display: flex;
}


#t-2>ul>li:nth-child(2) {
    padding-top: 10px
}

.content li {
    height: 245px;
    margin-right: 4px;
    border-right: 1px solid rgb(228, 226, 226);
}

.content li:nth-child(6) {
    border-right: 1px solid #fff;
    margin: 0 auto;
}

.content img {
    width: 190px;  
}
.content img:nth-last-child(){
    width:160px;
}

.title {
    font-size: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 12px;
}

.price {
    padding-left: 12px;
}
/* 现价 */
.price span:nth-child(1) {
    font-size: 18px;
    color: rgb(255, 100, 38);
    font-weight: bold
}
/* 旧价 */
.price span:nth-child(2) {
    text-decoration: line-through;
    color: rgb(187, 183, 183);
    font-size: 14px
}