53 lines
834 B
Plaintext
53 lines
834 B
Plaintext
/* pages/standardRouter/standardRouter.wxss */
|
|
page {
|
|
background: #f5f5f5;
|
|
padding: 15px;
|
|
box-sizing: border-box;
|
|
}
|
|
.select-box {
|
|
transform: translateY(60rpx);
|
|
}
|
|
.select {
|
|
padding: 20rpx;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex-wrap: wrap;
|
|
}
|
|
.select-item {
|
|
position: relative;
|
|
text-align: center;
|
|
width: 25%;
|
|
margin-bottom: 30px;
|
|
}
|
|
.image-box {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.image-box .img{
|
|
width: 15pt;
|
|
height: 15pt;
|
|
}
|
|
.img-mask {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
width: 40pt;
|
|
height: 40pt;
|
|
border-radius: 50%;
|
|
background-color: #069f99;
|
|
opacity: .2;
|
|
}
|
|
|
|
.wrap {
|
|
margin: 0 auto;
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
height: 150pt;
|
|
} |