@charset "utf-8";
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang-SC-Regular";
    /*移除默认点击高亮*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-tap-highlight-color: rgba(0, 0, 0, 0);
    -o-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    /*移除文字选中*/
    /*-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;*/
}

[v-cloak] {
    display: none !important;
}

body {
    background: #DBDBDB;
}

ul,
ol,
li {
    list-style: none;
}

img {
	display: block;
}

a {
    color: #333;
    text-decoration: none;
    /* transition: all .2s ease-out 0s; */
}

a:hover * {
    color: #EE8617;
}