12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .Yl_nav_box {
- display: flex;
- width: 100vw;
- height: 90rpx;
- background-color: #fff;
- position: sticky;
- top: 0;
- border-bottom: 1px solid #ddd;
- .mian {
- flex: 1;
- display: flex;
- justify-content: space-around;
- .item {
- width: 216rpx;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- .iconfont {
- font-size: 28rpx;
- margin-right: 4rpx;
- }
- }
- }
- .search {
- width: 90rpx;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- flex-shrink: 0;
- }
- }
- .Yl_search {
- height: 80rpx !important;
- align-items: flex-start;
- }
- .Yl_history {
- width: 100vw;
- background-color: #fff;
- box-sizing: border-box;
- padding: 6rpx 30rpx 15rpx;
- .label {
- display: flex;
- justify-content: space-between;
- height: 50rpx;
- line-height: 58rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- .iconfont {
- display: inline-block;
- width: 80rpx;
- text-align: center;
- margin-right: -30rpx;
- }
- }
- }
|