123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- @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;
- }
- }
- }
- .brand-box {
- margin-left: 30rpx;
- padding-bottom: 20rpx;
- .brand-tab-class {
- height: 52rpx;
- line-height: 52rpx;
- font-size: 24rpx;
- color: #666666;
- }
- .brand-active-class {
- border-radius: 26rpx;
- background-color: #FAFAFA;
- }
- }
- .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;
- }
|