/*
*功能:读取本地文件
*作者:evening water
*日期:2017/8/10
*/
body,
html,
div,
input,
button,
span {
	margin: 0;
	padding: 0;
	user-select: none;
	box-sizing: border-box;
	overflow-y: auto;
	overflow-x: hidden;
}

input,
button {
	outline: none;
}

.input-file {
	width: 100%;
	position: relative;
	padding: 0 10px;
}

.input-file .seeFileText {
	width: calc(100% - 85px);
	height: 25px;
	background-color: transparent;
	display: inline-block;
	border: 1px solid #1b1818;
	border-right: none;
	vertical-align: middle;
	margin-top: 10px;
	font-size: 12px;
	cursor: pointer;
}

.input-file button {
	width: 100%;
	height: 25px;
	background-color: rgba(131, 196, 228, 0.7);
	color: #fff;
	vertical-align: middle;
	border: 1px solid #000;
	text-align: center;
	cursor: pointer;
	letter-spacing: 2px;
	margin-top: 10px;
}
.input-file button:hover {
	color: #535353;
}
.input-file button:first-of-type {
	width: 85px;
	margin-left: -5px;
}

.input-file .readBtn {
	font: 16px "方正兰亭";
}

.input-file input[type='file'] {
	display: none;
}

#showInput {
	width: 100%;
	height: auto;
	position: absolute;
	top: 150px;
}

::-webkit-scrollbar {
	width: 0;
}