index.scss 967 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. @import "./index.skeleton.wxss";
  2. .head {
  3. display: flex;
  4. height: 100rpx;
  5. width: 100vw;
  6. background-color: #fff;
  7. box-sizing: border-box;
  8. padding: 20rpx 0 20rpx 30rpx;
  9. .search {
  10. display: flex;
  11. align-items: center;
  12. font-size: 28rpx;
  13. width: 438rpx;
  14. height: 58rpx;
  15. border-radius: 29rpx;
  16. background: #F4F5F7;
  17. color: #BBBBBB;
  18. overflow: hidden;
  19. margin-right: 10rpx;
  20. .input {
  21. color: #333;
  22. }
  23. navigator {
  24. display: flex;
  25. height: 100%;
  26. align-items: center;
  27. padding-left: 10rpx;
  28. padding-right: 15rpx;
  29. }
  30. }
  31. >navigator {
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. width: 130rpx;
  36. height: 100%;
  37. font-size: 28rpx;
  38. color: #666666;
  39. >text {
  40. margin-right: 6rpx;
  41. }
  42. }
  43. }
  44. .corner-mark {
  45. position: absolute;
  46. display: inline-block;
  47. height: 28rpx;
  48. font-size: 20rpx;
  49. color: #FFFFFF;
  50. background-color: red;
  51. padding: 0 10rpx;
  52. border-radius: 14rpx;
  53. top: -45rpx;
  54. left: 0rpx;
  55. z-index: 9999;
  56. }