
.where{
    padding:5px;
    margin-bottom: 30px;
    align-items: center;
    background-color: #fafafa;
}
.where .find{
    flex-shrink: 0;
    padding-left: 50px;
}
.where .find .btn{
    padding:8px 20px;
    background-color: var(--theme);
    color:#fff;
    border:none;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.9;
}
.where .find .btn:hover{
    opacity: 1;
}

.where .param{
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
}
.where .item{
    display: flex;
    align-items: center;
    width:100%;
}
.where .item label{
    background-color: #F2F3F4;
    width: 70px;
    height: 100%;
    min-height: 36px;
    line-height: 36px;
    text-align: right;
    padding:0 10px;
    font-weight: 700;
    font-family: sans-serif;
    flex-shrink: 0;
}
.where .item ul{
    display: flex;
    flex-wrap: wrap;
}
.where .item ul li{
    margin:4px 10px;
    height: 28px;
    line-height: 28px;
    padding:0 10px;
    background-color: #fafafa;
    color:#666;
    border-radius: 3px;
    cursor: pointer;
}
.where .item ul li:hover{
    color:#666;
    background-color: #eee;
}
.where .item ul li.on{
    background-color: #bb6d50;
    color:#fff;
}

.flex{
    display: flex;
    align-items: flex-start;
    margin:30px 0;
}
.flex-left{
    width:300px;
    flex-shrink: 0;
    position: sticky;
    top:90px;

}
.flex-right{
    width:100%;
    padding-left:30px;
}
.dressSearch{
    background-color: #F2F3F4;
    display: flex;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
    margin-bottom: 15px;
}
.dressSearch.on{
    box-shadow: 0px 0px 0px 3px rgba(123, 48, 71, 0.3);
}
.dressSearch input{
    border:none;
    height: 42px;
    background-color: #F2F3F4;
    padding:0 10px;
    width:100%;
    font-size:15px;
    outline: none;
}
.dressSearch .icon{
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
    cursor: pointer;
    border:none;
    outline: none;
}
.dressSearch .icon:hover{
    background-color: var(--theme);
    color:#fff;
}
.dressSearch .icon .iconfont{
    font-size:22px;
}

.category{
    position: relative;
    padding: 25px;
    border: 1px solid #ececec;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}
.category .title{
    position: relative;
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}
.category .title::after{
    content: "";
    width: 80px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #dfc2b7;
}
.category ul li a{
    border: 1px solid #F2F3F4;
    padding: 9px 18px;
    margin:15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
    color:#333;
    background-color: #fff;
}
.category ul li a:hover{
    border: 1px solid #dfc2b7;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.category ul li:last-child a{
    margin-bottom: 0px;
}
.category ul li a .iconfont{
    width:24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    color: #253D4E;
}
.category ul li a.on{
    background-color: var(--theme);
    color:#fff;
}
.category ul li a.on .iconfont{
    background-color:var(--theme);
    color:#fff;
}


.dressList .top {
    display: flex;
    align-items: flex-end;
    margin-bottom: 15px;
}
.dressList .top .title{
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    margin-right: 30px;
    
}
.dressList .top .more{
    font-size: 16px;
    line-height: 16px;
    color: #7E7E7E;
}
.dressList .list{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    margin:0 -12px 20px -12px;
}
.dressList .list .item{
    width:20%;
    padding:12px;
    box-sizing: border-box;
}
.dressList .list .item .box{
    display: block;
    position: relative;
    background-color: #fff;
    border: 1px solid #ececec;
    padding:20px;
    border-radius: 15px;
    color: #333;
}
.dressList .list .item .box .imgbox{
    overflow: hidden;
    margin-bottom: 5px;
    width:185px;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dressList .list .item .box img{
    display: block;
    max-width:185px;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
}
.dressList .list .item .box:hover img{
    transform:scale(1.1); 
}
.dressList .list .item .box .info h3{
     font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: sans-serif;
}
.dressList .list .item .box .info p{
    color:#B6B6B6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: sans-serif;
    margin:5px 0;
}
.dressList .list .item .box .info p:last-child{
    color:#6c757d;
    margin-bottom:0px;
}

.common_page .count{
    margin-left: 10px;
}