mp-html.wxss 877 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* 根节点样式 */
  2. ._root {
  3. padding: 1px 0;
  4. overflow-x: auto;
  5. overflow-y: hidden;
  6. -webkit-overflow-scrolling: touch;
  7. }
  8. /* 长按复制 */
  9. ._select {
  10. -webkit-user-select: text;
  11. user-select: text;
  12. }
  13. /* 提示条 */
  14. ._tooltip_contain {
  15. position: absolute;
  16. right: 20px;
  17. left: 20px;
  18. text-align: center;
  19. }
  20. ._tooltip {
  21. box-sizing: border-box;
  22. display: inline-block;
  23. width: auto;
  24. max-width: 100%;
  25. height: 30px;
  26. padding: 0 3px;
  27. overflow: scroll;
  28. font-size: 14px;
  29. line-height: 30px;
  30. white-space: nowrap;
  31. }
  32. ._tooltip_item {
  33. display: inline-block;
  34. width: auto;
  35. padding: 0 2vw;
  36. line-height: 30px;
  37. background-color: black;
  38. color: white;
  39. }
  40. /* 图片宽度滚动条 */
  41. ._slider {
  42. position: absolute;
  43. left: 20px;
  44. width: 220px;
  45. }
  46. ._tooltip,
  47. ._slider {
  48. background-color: black;
  49. border-radius: 3px;
  50. opacity: 0.75;
  51. }