* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, 'Arial', sans-serif;
	line-height: 1.2;
	background-color: #f5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
}

a{
	text-decoration: none;
}

input:focus {
	outline: none;
	/* 通常，聚焦时会显示一个轮廓，使用outline: none;可以去掉它 */
	border: none;
	/* 完全去除边框 */
}
input::placeholder{ color:#CCC;}

.blank {
	height: 100px;
	clear: both;
}

.clear{ clear: both;}

.line-title {
	white-space: nowrap; /* 防止文本换行 */
	overflow: hidden; /* 隐藏溢出的内容 */
	text-overflow: ellipsis; /* 显示省略符号来代表被修剪的文本 */
}