123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /* 根节点样式 */
- ._root {
- padding: 1px 0;
- overflow-x: auto;
- overflow-y: hidden;
- -webkit-overflow-scrolling: touch;
- }
- /* 长按复制 */
- ._select {
- -webkit-user-select: text;
- user-select: text;
- }
- /* 提示条 */
- ._tooltip_contain {
- position: absolute;
- right: 20px;
- left: 20px;
- text-align: center;
- }
- ._tooltip {
- box-sizing: border-box;
- display: inline-block;
- width: auto;
- max-width: 100%;
- height: 30px;
- padding: 0 3px;
- overflow: scroll;
- font-size: 14px;
- line-height: 30px;
- white-space: nowrap;
- }
- ._tooltip_item {
- display: inline-block;
- width: auto;
- padding: 0 2vw;
- line-height: 30px;
- background-color: black;
- color: white;
- }
- /* 图片宽度滚动条 */
- ._slider {
- position: absolute;
- left: 20px;
- width: 220px;
- }
- ._tooltip,
- ._slider {
- background-color: black;
- border-radius: 3px;
- opacity: 0.75;
- }
|