* {
    /* 全局默认字体颜色 */
    color: rgb(51, 51, 51);
    /* 腾讯地图分层异常对策 */
    /* z-index: auto !important; */
    /* 清除所有元素背景 */
    background-color: transparent;
    /* 将所有内容都纳入边框盒 */
    box-sizing: border-box;
    /* 字体继承 */
    font-family: inherit;
    /* 默认裁剪溢出部分 */
    /* overflow: hidden; */
    /* 默认行高 */
    line-height: 1;
    /* 默认去除轮廓 */
    outline: none;
    /* 默认去除边框 */
    border: none;
    /* 默认最小宽度为零 */
    min-width: 0;
    /* 清除默认内距 */
    padding: 0;
    /* 清除默认外距 */
    margin: 0;
    /* 消除IE、Edge滚动条 */
    -ms-overflow-style: none;
    /* 消除Firefox滚动条 */
    overflow: -moz-scrollbars-none;
}

::-webkit-scrollbar {
    /* 消除Chrome滚动条 */
    display: none;
}

img, div {
    /* 默认块元素 */
    display: block;
}

input, button, textarea {
    /* 默认行块元素 */
    display: inline-block;
}

button {
    /* 按钮默认鼠标状态 */
    cursor: pointer;
    /* 清除按钮弧度 */
    border-radius: 0;
}

a, p {
    /* 颜色继承 */
    color: inherit;
    /* 阻止换行 */
    white-space: nowrap;
}

textarea {
    /* 禁用大小调整 */
    resize: none
}

/* -------------------------------------------------------------- */

.Fixed {
    /* 页面定位模式 */
    position: fixed;
}

.HW {
    /* 全高宽 */
    height: 100%;
    width: 100%;
}

.H {
    /* 全高 */
    height: 100%;
}

.W {
    /* 全高 */
    width: 100%;
}

.FL {
    /* 左浮动 */
    float: left;
}

.FR {
    /* 右浮动 */
    float: right;
}

.TAL {
    /* 文字靠左 */
    text-align: left;
}

.TAC {
    /* 文字居中 */
    text-align: center;
}

.TAR {
    /* 文字靠右 */
    text-align: right;
}

.Shadow {
    /* 阴影  */
    box-shadow: 0 0 1vmin rgba(0, 0, 0, 0.3);
}

.Radius {
    /* 圆角 */
    border-radius: 1vmin;
}