41 lines
674 B
SCSS
41 lines
674 B
SCSS
// page {
|
|
// background-color: #e9eef4;
|
|
// }
|
|
|
|
// .container {
|
|
// background-color: #e9eef4;
|
|
// }
|
|
|
|
.picker {
|
|
padding: 30rpx 30rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.exit {
|
|
height: 100rpx;
|
|
line-height: 40px;
|
|
border-bottom: solid 0.5px #ebebf7;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.exitItem {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.iconoscope {
|
|
z-index: 9999;
|
|
width: 8px;
|
|
height: 8px;
|
|
display: inline-block;
|
|
border: solid 2px #c2c2c2;
|
|
margin-left: 10px;
|
|
transform: rotate(45deg);
|
|
border-bottom: white;
|
|
border-left: white;
|
|
}
|
|
}
|