@charset "UTF-8";
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 14px;
    overflow: hidden;
    /*touch-action: none;
    content-zooming: none;*/
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: #333;
    /*user-select: none;*/
    font-size: 14px;
    font: 1rem/1.5 "黑体", "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "\9ED1\4F53", Arial, sans-serif;
    word-break: break-all;
}

h1, h2, h3, ul, ol, li, menu {
    cursor: default;
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    cursor: default;
    margin: 0 0 5px !important;
    padding: 0;
}

a {
    text-decoration: none;
}

video {
    display: block;
}

audio {
    display: none;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

button, input {
    outline: none;
    border: none;
    padding: 0;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.scroll {
    overflow: auto;
}
.scroll::-webkit-scrollbar
{
    width: 4px;
    height: 4px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
.scroll::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.2);
    border-radius: 5px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
.scroll::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    background-color: #949494;
}

.scroll_y {
    overflow-x: hidden;
    overflow-y: auto;
}
.scroll_y::-webkit-scrollbar
{
    width: 4px;
    height: 4px;
    background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
.scroll_y::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.2);
    border-radius: 5px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
.scroll_y::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
    background-color: #949494;
}

/*
.w-e-toolbar .w-e-menu {
    padding: 5px 8px !important;
}*/
