You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
862 B
70 lines
862 B
5 months ago
|
/* pages/index/index.wxss */
|
||
|
page{
|
||
|
height:100%;
|
||
|
}
|
||
|
|
||
|
.head{
|
||
|
width: 100%;
|
||
|
height: 25%;
|
||
|
}
|
||
|
|
||
|
.head image{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
|
||
|
}
|
||
|
|
||
|
.banner{
|
||
|
width: 100%;
|
||
|
height: 35%;
|
||
|
}
|
||
|
|
||
|
.banner swiper{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.banner swiper image{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.grids{
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
.grids .item{
|
||
|
width: 250rpx;
|
||
|
height: 250rpx;
|
||
|
border-right:1rpx solid #eee ;
|
||
|
border-bottom:1rpx solid #eee;
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: center;
|
||
|
align-items:center;
|
||
|
}
|
||
|
|
||
|
.grids .item:nth-child(3){
|
||
|
border-right: 0;
|
||
|
}
|
||
|
|
||
|
.grids .item:nth-child(6){
|
||
|
border-right: 0;
|
||
|
}
|
||
|
|
||
|
.grids .item:nth-child(9){
|
||
|
border-right: 0;
|
||
|
}
|
||
|
|
||
|
.grids .item image{
|
||
|
width: 80rpx;
|
||
|
height: 80rpx;
|
||
|
}
|
||
|
|
||
|
.grids .item text{
|
||
|
color: rgb(14, 13, 13);
|
||
|
font-size: 28rpx;
|
||
|
margin-top: 20rpx;
|
||
|
}
|