style.h5.scss 627 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* H5的时候,隐藏滚动条 */
  2. ::-webkit-scrollbar {
  3. display: none;
  4. width: 0 !important;
  5. height: 0 !important;
  6. -webkit-appearance: none;
  7. background: transparent;
  8. }
  9. /* 双标签 start*/
  10. .capsule {
  11. display: inline-flex;
  12. vertical-align: middle;
  13. width: 20%;
  14. min-width: 136rpx;
  15. height: 45rpx;
  16. .capsule-tag {
  17. margin: 0;
  18. &:first-child {
  19. border-top-right-radius: 0rpx;
  20. border-bottom-right-radius: 0rpx;
  21. }
  22. &:last-child {
  23. &::after {
  24. border-top-left-radius: 0rpx;
  25. border-bottom-left-radius: 0rpx;
  26. }
  27. }
  28. }
  29. }
  30. /* 双标签 end*/