cf-wx-app/src/pages/shop/shop.scss

113 lines
1.8 KiB
SCSS
Raw Normal View History

2018-12-03 17:32:48 +08:00
2018-12-04 17:32:30 +08:00
.shop{
.search-button{
.at-search-bar__action{
background-color:#FF9900
}
}
}
2018-12-03 17:32:48 +08:00
.banner-box{
position: relative;
.shop-name{
position: absolute;
top:100px;
left:60px;
font-size: 50px
}
}
.nav-box{
background-color: black;
.nav{
display: flex;
line-height: 55px;
.text{
color:white;
font-size: 28px
}
.shop-cate{
flex:1
}
.home-link{
flex:1
}
}
2018-12-04 17:32:30 +08:00
}
.filter-box{
display: flex;
flex-wrap: nowrap;
flex-direction: row;
.filter-title{
box-sizing:border-box;
flex:1;
text-align: center;
font-size: 28px;
margin: 5px;
color:#999;
border: 1px solid #999
}
.actived{
color:#b10000
}
}
.side-filter{
z-index: 10;
position: fixed;
top:0;
right:0;
width:0%;
height:100%;
transition:width 1s;
display: flex;
.left{
width:30%;
}
.right{
width: 70%;
2018-12-05 17:30:18 +08:00
background: white;
.filter-box{
height: 100%;
width: 100%;
margin-top: 30px;
overflow: scroll;
display: block;
.title{
margin-left: 20px;
font-size: 30px;
}
.button-box{
margin:20px
}
.confirm-button{
margin: 80px;
.button{
margin:0 20px
}
}
}
2018-12-04 17:32:30 +08:00
}
}
.show{
width: 100%
}
.container{
display: flex;
flex-wrap: wrap;
flex-direction: row;
.shop-item{
box-sizing:border-box;
width: 50%;
padding:5px;
}
}