
.page-title {
    width: 100%;
    height: 560px;
    background-image: url(../images/centerBgImg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-title h3 {
    font-weight: bold;
    font-size: 60px;
    color: #FFFFFF;
}

.page-title p {
    font-size: 25px;
    color: #FFFFFF;
    margin-top: 40px;
}

.product {
    display: none;
}
.product.show {
    display: block;
}
.product .tabs {
    width: 100%;
    background-color: #fff;
}

.product .tabList {
    height: 70px;
    padding: 10px 0;
    display: flex;
}

.product .tabList li {
    width: 216px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #222;
    background-color: #f6f6f6;
    cursor: pointer;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product .tabList li.active {
    background-color: #E21824;
    color: #fff;
}

.productList {
    background-color: #F6F6F6;
    padding-bottom: 100px;
}

.productList h4 {
    font-weight: bold;
    font-size: 32px;
    color: #222222;
    padding: 60px 0 50px;
    text-align: center  ;
}

.productList .category {
    display: flex;
    justify-content: center;
    position: relative;
    border: 1px solid #E21824;
    border-radius: 26px;
}
/* .productList .toggleBtn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
} */

.productList .prevBtn {
    margin-right: 200px;
}
.productList .category .prev,
.productList .category .next {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 0;
}
.productList .category .prev {
    left: 0;
}
.productList .category .next {
    right: 0;
}
.productList .category .prev img ,
.productList .category .next img {
    width: 50px;
    height: 50px;
}
.productList .category .cateList {
    overflow: hidden;
    width: 1200px;
}
.productList .category ul {
    display: flex;
    flex-shrink: 0;
    transition: .3s;
}
.productList .category ul li {
    padding: 17px 0;
    width: 200px;
    box-sizing: border-box;
    flex-shrink: 0;
    text-align: center;
}

.productList .category ul li.active {
    color: #E21824;
}
.productList .category ul li:hover {
    color: #E21824;
    cursor: pointer;
}

.productList .category ul li {
    border-right: 1px solid #E21824;
}
.productList .list ul {
    display: flex;
    margin-top: 40px;
}
.productList .list ul li {
    position: relative;
}
.productList .list ul li:nth-of-type(n + 2) {
    margin-left: 40px;
}
.productList .list ul li .img {
    width: 295px;
    height: 380px;
}
.productList .list ul li .img img {
    width: 295px;
    height: 380px;
    object-fit: cover;
}
.productList .list ul li .name {
    background-color: #E21824;
    width: 295px;
    padding: 10px 16px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.productList .list ul li:hover .mask {
    opacity: 1;
}
.productList .list ul li .mask {
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .3s;
    opacity: 0;
    top: 0;
    left: 0;
}
.productList .list ul li .mask img {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.productList .pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.productList .pagination > div {
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    color: #222;
    height: 38px;
    line-height: 36px;
    text-align: center;
    margin-right: 10px;
}
.productList .pagination .item {
    width: 38px;
    cursor: pointer;
}
.productList .pagination .item.active {
    background-color: #E21824;
    border-color: #E21824;
    color: #fff;
}

.productList .prev ,
.productList .next {
    width: 74px;
    cursor: pointer;
}
.productList .disabled {
    color: #999999 !important;
    cursor: not-allowed;
}

.detailShow {
    background-color: #F6F6F6;
    padding-bottom: 40px;
    display: none;
}
.detailShow.show {
    display: block;
}
.detailShow .backList {
    padding: 40px 0;
}
.detailShow .backList .backbtn {
    background-color: #E21824;
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}
.detailShow .backList .backbtn img {
    width: 9px;
    height: 16px;
    margin-right: 8px;
    vertical-align: -3px;
}
.detailShow .backList .backbtn span {
    font-size: 16px;
    color: #FFFFFF;
}

.detailShow .line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 60px;
}
.detailShow h4 {
    font-weight: bold;
    font-size: 30px;
    color: #222222;
    text-align: center;
    margin-bottom: 43px;
}
.detailShow .thumb {
    width: 1000px;
    height: 550px;
    position: relative;
    margin: 0 auto 60px;
    background-color: #fff;
}
.detailShow .thumb img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.detailShow .detailContent figure {
    text-align: center;
}