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.
43 lines
716 B
43 lines
716 B
/* 九宫格 */
|
|
.uni-grid-9 {
|
|
background: $ghostWhite;
|
|
width: 750upx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
border-top: 2upx solid $greyLight;
|
|
}
|
|
|
|
.uni-grid-9-item {
|
|
width: 250upx;
|
|
height: 200upx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-bottom: 2upx solid;
|
|
border-right: 2upx solid;
|
|
border-color: $greyLight;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.no-border-right {
|
|
border-right: none;
|
|
}
|
|
|
|
.uni-grid-9-image {
|
|
width: 100upx;
|
|
height: 100upx;
|
|
}
|
|
|
|
.uni-grid-9-text {
|
|
width: 250upx;
|
|
line-height: 4upx;
|
|
height: 40upx;
|
|
text-align: center;
|
|
font-size: 30upx;
|
|
}
|
|
|
|
.uni-grid-9-item-hover {
|
|
background: rgba(0, 0, 0, 0.1);
|
|
}
|
|
|