*{
	margin: 0;
	padding: 0;
}
[v-cloak]{
	display: none;
}
html{
	background-color: #f1f2f3;
}
.container{
	width: 1200px;
	margin: 20px auto;
}
.container .center{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.container .epsis{/*单行隐藏*/
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.container .clamp{/*2行隐藏*/
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp:2;
	overflow: hidden;
}
.container .title{
	font-size: 22px;
	color: #333;
	overflow: hidden;
	margin: 10px auto;
	text-align: center;
}
.container .tit{
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
.container .tit span{
	margin-right: 10px;
}
.container .tit .em{
	color: red;
}
.container .handle{
	justify-content: flex-start;
	background: #fff;
	padding: 10px 20px;
	margin: 20px auto;
	border-radius: 5px;
}
.container .result{
	font-size: 14px;
	min-height: 90px;
	background: #fff;
	color: #888;
	margin-bottom: 20px;
	border-radius: 4px;
	padding: 20px;
	word-break: break-all;
}
.container .result i{
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	margin: 0;
}
.container .tip{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	margin-bottom: 15px;
}
.container .tip:last-child{
	margin-bottom: 0;
}
.container .tip .tit{
	margin-bottom: 0;
}
.container .tip span{
	margin-right: 10px;
	word-wrap: break-word;
}
.container .main{
	margin: 15px auto;
}
.container .ts{
	margin: 20px 0;
}
.container .ts .tit{
	font-size: 18px;
	color: #333;
	margin: 10px 0;
	font-weight: bold;
}
.container .ts p{
	color:#666;
	margin: 0;
	padding: 0;
	line-height: 30px;
	background: #ffffff;
	padding: 10px;
}
.container .ts p span{
	color:#F16F5C;
}
/*input*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{ 
	color:#999;
	font-size:13px;
}
input[type=radio]{
	zoom:1.5;
	margin-right: 2px;
	cursor: pointer;
}
input[type=radio] + label{
	margin-right: 20px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
}
input[type=radio]:checked + label{
	color: #0075ff;
}
input[type=text],textarea{
	box-sizing: border-box;
	width: 100%;
	height: 35px;
	border: 1px solid #ddd;
	outline: none;
	padding: 0 10px;
	font-size: 14px;
	border-radius: 5px;
	color: #666;
}
textarea{
	max-width: 100%;
	min-width: 100%;
	height: 180px;
	line-height: 1.5;
	padding: 10px;
}
input[type="range"] {
	width: 100%;
    background-color: #EEEEEE;
    border-radius: 15px;
    -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    cursor: default;
    height: 30px;
    width: 30px;
    transform: translateY(0px);
    background: none repeat scroll 0 0 #0075ff;
    border-radius: 50%;
}
input[type='range']:focus {
    outline: none;
}
button{
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	height: 35px;
	padding: 0 20px;
	color: #fff;
	background: #67C23A;
	border-radius: 4px;
	cursor: pointer;
	outline: none;
	border: 0;
}
button.warning{
	background: #e6a23c;
}
button.danger{
	background: #f56c6c;
}
button img{
	width: 20px;
	height: 20px;
	margin-right: 4px;
}
dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  border: 1px solid #fff;
  background: #fff;
  z-index: 10;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}