index.less 476 B

123456789101112131415161718192021222324252627282930
  1. .layer {
  2. display: flex;
  3. align-items: center;
  4. justify-content: center;
  5. position: relative;
  6. width: 100%;
  7. >image{
  8. width: 34rpx;
  9. height: 34rpx;
  10. }
  11. text {
  12. font-size: 32rpx;
  13. color:#4C2508;
  14. display: inline-block;
  15. vertical-align: middle;
  16. margin: 0 20rpx;
  17. &.active {
  18. color: #4C2508;
  19. font-weight: bold;
  20. }
  21. }
  22. .number text {
  23. margin: 0 10rpx;
  24. cursor: pointer;
  25. &:first-of-type{
  26. margin-left: 0;
  27. }
  28. }
  29. }