12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @import "./index.skeleton.wxss";
- .head {
- display: flex;
- height: 100rpx;
- width: 100vw;
- background-color: #fff;
- box-sizing: border-box;
- padding: 20rpx 0 20rpx 30rpx;
- .search {
- display: flex;
- align-items: center;
- font-size: 28rpx;
- width: 438rpx;
- height: 58rpx;
- border-radius: 29rpx;
- background: #F4F5F7;
- color: #BBBBBB;
- overflow: hidden;
- margin-right: 10rpx;
- .input {
- color: #333;
- }
- navigator {
- display: flex;
- height: 100%;
- align-items: center;
- padding-left: 10rpx;
- padding-right: 15rpx;
- }
- }
- >navigator {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 130rpx;
- height: 100%;
- font-size: 28rpx;
- color: #666666;
- >text {
- margin-right: 6rpx;
- }
- }
- }
- .corner-mark {
- position: absolute;
- display: inline-block;
- height: 28rpx;
- font-size: 20rpx;
- color: #FFFFFF;
- background-color: red;
- padding: 0 10rpx;
- border-radius: 14rpx;
- top: -45rpx;
- left: 0rpx;
- z-index: 9999;
- }
|