44 lines
836 B
Plaintext
44 lines
836 B
Plaintext
.Fixed {
|
|
position: fixed;
|
|
left: 0;
|
|
width: 100%;
|
|
padding: 0 30rpx;
|
|
z-index: 99;
|
|
}
|
|
.search {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
.search_left {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
justify-content: start;
|
|
font-weight: bold;
|
|
font-size: 40rpx;
|
|
color: #232323;
|
|
height: 86rpx;
|
|
}
|
|
.search_left_img {
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
margin-right: 15rpx;
|
|
}
|
|
.search .opacityLeft {
|
|
background: rgba(255, 255, 255, 0.27);
|
|
border-radius: 10rpx 10rpx 10rpx 10rpx;
|
|
padding: 0 10rpx;
|
|
}
|
|
.search_right {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
justify-content: start;
|
|
height: 86rpx;
|
|
background: #ffffff;
|
|
box-shadow: inset 0rpx 0rpx 22rpx 2rpx #f9fbff;
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
} |