* {
    padding: 0;
    margin: 0;
}
label {
    font-size: 12px;
}
.input {
    border: 1px solid #E8EAED;
    padding-left: 4px;
    height: 26px;
    font-size: 12px;
}
.input:focus {
    outline-color: rgba(63, 102, 224, .5);
}
.select-single {
    border: 1px solid #dfdfdf;
    height: 30px;
    color: #444;
    padding-left: 8px;
    padding-right: 2px;
    font-size: 12px;
    outline: none;
}
.btn {
    height: 34px;
    margin: 0;
    padding: 0 15px;
    transition-property: background-color;
    transition-duration: .5s;
    font-size: 12px;
    background-color: #ffffff;
    color: #5e5e5e;
    border: 1px #d2d2d2 solid;
    cursor: pointer;
    border-radius: 4px;
    outline: none;
}
.btn:hover {
    background-color: #e5e4eb;
}
.btn.blue-btn {
    background-color: #257ee6;
    color: #ffffff;
    border: none;
    font-size: 14px;
}
.btn.blue-btn:hover {
    background-color: #2071ce;
}
.searchDiv {
    display: inline-block;
}
.goods-list-wrap {
    box-sizing: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.goods-list-wrap .goods-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.goods-list-wrap .goods-list .item {
    width: 345px;
    position: relative;
    cursor: pointer;
    margin: 10px;
    padding: 5px;
    border: 1px solid #f3f3f4;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
}
.goods-list .item:hover {
    box-shadow: 0 0 5px 0 hsl(0deg 0% 58% / 40%);
}
.goods-list-wrap .goods-list .item .img {
    background: #f8f8f8;
    line-height: 0;
    position: relative;
}
.goods-list-wrap .goods-list .item .img img {
    width: 100%;
    height: 100%;
}
.goods-list-wrap .goods-list .item .cont {
    margin-top: 8px;
}
.goods-list-wrap .goods-list .item .cont .title {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*height: 30px;*/
    flex-wrap: wrap;
}
.goods-list-wrap .goods-list .item .cont .title > span {
    padding-left: 10px;
}
.goods-list-wrap .goods-list .item .cont .title .price {
    padding-left: 0;
    padding-right: 10px;
}
.goods-list-wrap .goods-list .item .cont .title .price .price-title {
    font-size: 11px;
}
.goods-list-wrap .goods-list .item .cont .title .price .price-icon {
    font-size: 12px;
    color: #ff0200;
}
.goods-list-wrap .goods-list .item .cont .title .price strong {
    color: #ff0200;
    font-size: 17px;
}
.goods-list-wrap .goods-list .item .cont .infoUl {
    font-size: 12px;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}
.goods-list-wrap .goods-list .item .cont .infoUl li {
    padding: 5px;
    width: 50%;
}
.tag {
    position: absolute;
    right: 10px;
    top: 6px;
    background-color: #dc2cfa;
    color: #ffffff;
    display: block;
    height: 22px;
    width: 66px;
    line-height: 22px;
    text-align: center;
    border-radius: 6px;
    font-size: 12px;
}
.tag.wx {
    background-color: red;
}
/*.goods-list-wrap .goods-list .item .cont .infoUl li:nth-of-type(odd) {*/
/*    text-align: right;*/
/*    width: 15%;*/
/*}*/
/*.goods-list-wrap .goods-list .item .cont .infoUl li:nth-of-type(even) {*/
/*    text-align: left;*/
/*    width: 27%;*/
/*}*/
/*下方还是2排显示*/
@media screen and (max-width: 900px) {
    .searchDiv {
        margin-top: 10px;
    }
    .btn {
        font-size: 12px;
        height: 26px;
        padding: 0 8px;
    }
    .goods-list-wrap .goods-list .item {
        width: 46%;
        margin: 5px;
    }
}
/*下方变成单排显示*/
@media screen and (max-width: 600px){
    .goods-list-wrap .goods-list .item .cont .title {
        height: 60px;
    }
    .goods-list-wrap .goods-list .item .cont .title .price {
        margin-top: -7px;
        padding-left: 10px;
    }
    .goods-list-wrap .goods-list .item .cont .infoUl li {
        width: 100%;
    }
}
@media screen and (max-width: 300px) {
    .goods-list-wrap .goods-list .item .cont .infoUl li {
        width: 100%;
    }
    .goods-list-wrap .goods-list .item {
        width: 41%;
    }

    .goods-list-wrap .goods-list .item .cont .title .price {
        padding-left: 10px;
    }
}

.pagination {}

.pagination li {
    display: inline-block;
    margin-right: -1px;
    padding: 5px;
    border: 1px solid #e2e2e2;
    min-width: 20px;
    text-align: center;
}

.pagination li.active {
    background: #009688;
    color: #fff;
    border: 1px solid #009688;
}

.pagination li a {
    display: block;
    text-align: center;
}