html {
    -webkit-text-size-adjust: none;
}

body {
    margin: 0 auto;
    color: #444;
    font-family: "微软雅黑", "宋体", Arial, Helvetica, sans-serif;
    background: #fff;
    font-size: .24rem;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    padding: constant(safe-area-inset-top) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}


div,
p,
table,
tr,
td,
form,
ul,
ol,
dl,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
input {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 全局设定 */


dt,
li {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    border: none;
    vertical-align: middle;
}

.w {
    width: 93.75%;
    margin: 0 auto;
}

/*超链全局接样式*/

a {
    color: #2b292f;
    outline: none;
}

i {
    font-style: normal;
}

s,
a,
a:hover {
    text-decoration: none;
}

/* 去除某些区域点击出现阴影 */
a,
button,
input,
img,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

/* 禁止用户长按选中 */
* {
    -webkit-user-select: none;
    user-select: none;
}

/* 禁止用户长按出现菜单栏 */
a,
img {
    -webkit-touch-callout: none
}

a.mui-active {
    background-color: #fff !important;
}

.overfl {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 修改表单元素的默认样式 */
input,
button,
select,
textarea {
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-user-select: text;
    user-select: text;
}
input::-webkit-input-placeholder {
    color: #ABABAB;
}
/* 超出n行时显示省略号 */
.hide-text-n {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: n;
    -webkit-box-orient: vertical
}

/* 某些安卓机圆角失效 */
.radius {
    background-clip: padding-box;
}

/* 兼容横屏 */
@media screen and (orientation: landscape) {

    html {
        font-size: 50px !important
    }

    body {
        margin: 0 auto;
        max-width: 1200px;
    }

}