index.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. .brand-box {
  45. margin-left: 30rpx;
  46. padding-bottom: 20rpx;
  47. .brand-tab-class {
  48. height: 52rpx;
  49. line-height: 52rpx;
  50. font-size: 24rpx;
  51. color: #666666;
  52. }
  53. .brand-active-class {
  54. border-radius: 26rpx;
  55. background-color: #FAFAFA;
  56. }
  57. }
  58. .corner-mark {
  59. position: absolute;
  60. display: inline-block;
  61. height: 28rpx;
  62. font-size: 20rpx;
  63. color: #FFFFFF;
  64. background-color: red;
  65. padding: 0 10rpx;
  66. border-radius: 14rpx;
  67. top: -45rpx;
  68. left: 0rpx;
  69. z-index: 9999;
  70. }