/* Strange But Useful CSS
 * ----------------------
 * Version | 0.0.17
 * Author  | SxrDoor
 */
/* 通用元素 */
* {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* 欸嘿~你知道的太多了 */
eihei {
	background-color: black;
	color: black;
}
eihei:hover {
	background-color: rgba(0,0,0,0);
	color: inherit;
}
eihei::selection {
	background-color: black;
    color: black;
}


/* 提示信息 */
info::before {
	content: "\24d8\00A0";
	display: inline-block;
}

/* 禁止选中 */
unselectable {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* 强制居中（From MS Edge 兼容）*/
center {
	display: block;
	text-align: center;
	unicode-bidi: isolate;
}

/* 有中就有左右 */
left {
	display: block;
	text-align: left;
	unicode-bidi: isolate;
}
right {
	display: block;
	text-align: right;
	unicode-bidi: isolate;
}

/* 默认页脚 */
footer {
	display: block;
	position: fixed;
	left: 0px;
	right: 0px;
	bottom: 0px;
}

/* 注释 */
ps {
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
}

/* a标签默认样式更改 */
a {
	color: inherit;
	text-decoration: underline dashed;
}
a:hover {
	color: inherit;
	text-decoration: underline;
}

/* img标签默认样式更改 */
img {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
}

/* 文本硬换行 */
p,textarea {
	word-break: break-word;
}