html,body,body * {
    margin: 0;
    padding: 0;
}
body {
    background: #F6F6F6;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Helvetica Neue",sans-serif,"Din condensed","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

/* 通用标签清除默认样式 */
i,em {
    font-style: normal;
}
li,ol,ul {
    list-style: none;
}
a,a:hover,a:active {
    text-decoration: none;
    color: inherit;
}
/* 清除禁用表单标签默认样式 */
button[disabled],input[type="button"][disabled],input[type="submit"][disabled] {
    background: #e0e0e0 !important;
    color: #ffffff !important;
    cursor: not-allowed;
    border-color: #e0e0e0 !important;
}
button[disabled='false'],input[type="button"][disabled='false'],input[type="submit"][disabled='false']{
    background: transparent;
}
/* 清除搜索框默认样式 */
input[type="search"]::-webkit-search-cancel-button {
    display: none;
    -webkit-appearance: none;
}
/* 清除表单默认样式 */
input,button,select,textarea {
    outline: none;
    border: none;
}
/* 清除自动填入浏览器记住内容背景 */
input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
    transition: background-color 50000s ease-in-out 0s;
}
/*隐藏ie小眼睛和x*/
input::-ms-reveal,
input::-ms-clear {
	display: none;
}
/* 设置按钮表单默认样式 */
input[type="submit"],input[type="button"],button,input[type="radio"],input[type="checkbox"] {
    cursor: pointer;
}
input[type="radio"],input[type="checkbox"] {
    display: none;
}
/* 清除数字输入框默认样式 */
input[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0;
    -moz-appearance: textfield;
}
input[type="number"] {
    -moz-appearance: textfield;
}
input::-webkit-input-placeholder {
    color: rgb(211, 211, 211);
}
/* html5 标签兼容 */
header, section, footer, aside, nav, main, article, figure {
    display: block;
}
/* 浮动 */
.fl {
    float: left;
}
.fr {
    float: right;
}
/* 清除浮动 */
.clear::after {
    content: '';
    display: block;
    clear: both;
}
/* 禁止选中 */
.user-select-no {
    -moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select:none;
    -khtml-user-select:none;
    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
/* 超出一行隐藏 */
.text-one-ellipsis {
    width: 100%;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/* 超出两行隐藏、可改多行 */
.text-two-ellipsis {
    width: 100%;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.self_scroll_bar {
  scrollbar-width: thin;
}
.self_scroll_bar::-webkit-scrollbar {
    visibility: hidden;
    width: 4px;
    height: 4px;
    border-radius: 2px;
}
.self_scroll_bar::-webkit-scrollbar-button,
.self_scroll_bar::-webkit-scrollbar-track-piece,
.self_scroll_bar::-webkit-resizer {
    display: none;
}
.self_scroll_bar:hover::-webkit-scrollbar,
.self_scroll_bar:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}
.self_scroll_bar::-webkit-scrollbar-thumb {
    visibility: hidden;
    background-clip: padding-box;
    background-color: #e4e3e3;
    min-height: 28px;
}
/* flex布局样式 */
.flex {
    display: flex;
    display: -webkit-flex;
}
.inline-flex {
    display: inline-flex;
    display: -webkit-inline-flex;
}
.justify-center {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
}
.justify-between {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
}
.justify-around {
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
}
.align-center {
    -webkit-align-items: center;
    -moz-align-items: center;
    -o-align-items: center;
    align-items: center;
}
.align-start {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -o-align-items: flex-start;
    align-items: flex-start;

}
.flex-column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}
.flex-row {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
}
.flex-wrap{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-nowrap{
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
/* 全局上传图片容器的大小 */

/* .upload-button {
    width: 160px;
    height: 160px;
}

.upload-img {
    width: 100%;
    height: initial;
    max-height: 100%;
}

.red {
    color: red;
}

.upload_img_box img {
    width: 150px;
    height: 150px;
}

.error_msg {
    color: red;
    display: none;
}

.show_error_msg {
    display: initial;
}
 */

