
.page-title {
    width: 100%;
    height: 560px;
    background-image: url(../images/searchBgImg.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;
}
.result {
    background-color: #f6f6f6;
    padding-bottom: 100px;
    display: none;
}
.result.show {
    display: block;
}
.result .tips {
    color: #222;
    padding: 40px 0;
}
.result .tips span {
    color: #E21824;
}

.result .product ul {
    display: flex;
    margin-bottom: 40px;
}
.result .product ul li {
    cursor: pointer;
}
.result .product ul li:nth-of-type(n + 2) {
    margin-left: 40px;
}
.result .product ul li .thumb {
    width: 295px;
    height: 380px;
    overflow: hidden;
}

.result .product ul li .thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.result .product ul li:hover .thumb img {
    transform: scale(1.2);
}

.result .product ul li .name {
    width: 295px;
    /* height: 40px; */
    padding: 10px 16px;
    line-height: 28x;
    text-align: center;
    background-color: #E21824;
    color: #fff;
    /* display: flex; */
}
.result .product ul li .name span {
    color: #fff;
}

.result .pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.result .pagination > div {
    border: 1px solid #CCCCCC;
    box-sizing: border-box;
    color: #222;
    height: 38px;
    line-height: 36px;
    text-align: center;
    margin-right: 10px;
}
.result .pagination .item {
    width: 38px;
    cursor: pointer;
}
.result .pagination .item.active {
    background-color: #E21824;
    border-color: #E21824;
    color: #fff;
}

.result .prev ,
.result .next {
    width: 74px;
    cursor: pointer;
}
.result .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 img {
    text-align: center;
}
.detailShow .detailContent h4 {
    font-weight: bold;
    font-size: 30px;
    color: #222222;
    text-align: center;
    padding-bottom: 40px;
    padding-top: 60px;
}