28 lines
531 B
SCSS
28 lines
531 B
SCSS
|
|
.station_body{
|
|
width: 100vw;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
background-color: #F2F2F2;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.station_header{
|
|
background-color: #FFFFFF;
|
|
overflow: hidden;
|
|
padding: 30rpx 0;
|
|
.station_input_container {
|
|
flex-shrink: 0;
|
|
width: 690rpx;
|
|
position: relative;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
.station_list_container{
|
|
overflow: hidden;
|
|
flex-shrink: 0;
|
|
::-webkit-scrollbar {width: 0;height: 0;background-color: transparent;}
|
|
}
|
|
} |