* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
	color: #000;
}
html,
body {
	height: 100%;
}
body,
button,
input,
select,
textarea {
	font-size: 12px;
	font-family: "Microsoft Yahei", "微软雅黑" !important;
}
ul,
ol,
li,
dl,
dd,
dt {
	list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}
em,i {
	font-style: normal;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
legend {
	color: #000;
}
fieldset,
img {
	border: 0;
}
label,
button {
	cursor: pointer;
}

input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}
input:focus::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.4);
}
input,
input:focus{
    border: none;
	outline:none;
    -webkit-user-modify: read-write-plaintext-only;
}
/*清除浮动*/
.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}
.clearfix {
	zoom: 1;
}
.clear {
	clear: both;
}
/*连续英文、数字换行*/
.wordwrap {
	word-break: break-all;
	word-wrap: break-word;
}
/*单行文字超出显示省略号*/
.omg {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
[v-cloak] {
	display: none;
}
.personal-tip{
    display: inline-block;
    padding: 10px 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
}