*{
	margin: 0;
	padding: 0;
}
[v-cloak]{
	display: none;
}
html{
	background-color: #f1f2f3;
}
.container{
	width: 1300px;
	margin: auto;
}
.container .center{
	display: flex;
	align-items: center;
	justify-content: center;
	justify-content: safe 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 .topbox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	background: #fff;
	padding: 20px;
	width: 100%;
	border-radius: 4px;
	margin: 20px 0;
}
.container .title{
	font-size: 22px;
	color: #333;
	overflow: hidden;
}
.container .examp{
	margin-bottom: 20px;
}
.container .examp h3{
	margin: 15px 0px;
	color: #333;
}
.container .examp p{
	margin: 5px 0px;
	border-radius: 4px;
	background: #ffffff;
	padding: 15px;
	font-size: 14px;
	color: #666;
	line-height: 1.75;
	word-wrap:break-word;
}
.container .main{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 1300px;
	margin-bottom: 20px;
}
.main .edit{
	box-sizing: border-box;
	padding: 15px;
	padding-bottom: 0;
	width: calc(100% - 930px);
	height: 1020px;/*942*/
	overflow: auto;
	background-color: #fff;
	user-select: none;
	box-shadow: 0 2px 4px 1px rgba(0,0,0,.15);
}
#tpl{
	box-sizing: border-box;
	width: 910px;
	height: 1020px;
	margin: auto;
	box-shadow: 0 2px 4px 1px rgba(0,0,0,.15);
	background: #fff;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%,rgba(0, 0, 0, 0.1) 75%), linear-gradient(45deg,rgba(0, 0, 0, 0.1) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.1) 75%);
	background-position: 0 0, 8px 8px;       
	background-size: 16px 16px;
	user-select: none;
	overflow: auto;
	padding: 20px;
}
#tpl .out{
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
#tpl .out .wicket{
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 20px;
	width: 100%;
	height: 50px;
}
#tpl .out .wicket div{
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-right: 12px;
}
#tpl .out .img{
	position: relative;
	overflow: hidden;
	max-width: 100%;
	max-height: 100%;
	flex-direction: column;
}
#tpl .out img{
	display: block;
	max-width: 100%;
	max-height: 100%;
}
#tpl .out .mark{
	position: absolute;
	bottom: 10px;
	width: 90%;
	left: 5%;
	text-align: center;
	color: #fff;
	font-size: 14px;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
.main .bl{
	margin-bottom: 18px;
	font-size: 14px;
	color: #666;
	width: 100%;
}
.main .bl p{
	font-size: 14px;
	color: #333;
	font-weight: bold;
	margin-bottom: 10px;
}
.main .bl .tip{
	position: relative;
	margin: 5px 0;
	font-size: 12px;
	color: #999;
}
.main .ipli{
	justify-content: flex-start;
}
.main .bl .color{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 5px);
	margin-left: -2.5px;
}
.main .bl .color span{
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(10% - 5px);
	height: 29.5px;
	border-radius: 10px;
	margin: 2.5px;
	cursor: pointer;
}
.main .imgbg{
	background-image: conic-gradient(rgba(0, 0, 0, 0.1) 0deg, rgba(0, 0, 0, 0.1) 25%, transparent 0deg, transparent 50%, rgba(0, 0, 0, 0.1) 0deg, rgba(0, 0, 0, 0.1) 75%, transparent 0deg) !important;
	background-size: 50% 50% !important;
}
.main .bl .color .custom{
	background: #e1e2e3;
	font-size: 12px;
	width: calc(20% - 10px);
}
.main .bl .color .sel{
	border: 1px #333 solid;
}
.main .bl  .space{
	justify-content: space-between;
}
.main .bl  .space input{
	width: 45%;
}

/* 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: #409eff;
}
input[type=text],input[type=number],textarea,select{
	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: 130px;
	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 #409eff;
    border-radius: 50%;
}*/
input[type="range"] {
	width: 100%;
	height: 15px;
	-webkit-appearance: none;
	background-color: #e1e2e3;
	outline: none;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: inset 0 0 5px  #409eff;
}
input[type="range"]::-webkit-slider-thumb {
	cursor: pointer;
	-webkit-appearance: none;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #409eff;
	cursor: pointer;
	border: 4px solid #333;
	box-shadow: -347px 0 0 340px #409eff;
}
input[type='range']:focus {
    outline: none;
}
button,.custom-file-button{
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	height: 35px;
	padding: 0 20px;
	color: #fff;
	background: #409eff;
	border-radius: 4px;
	cursor: pointer;
	outline: none;
	border: 0;
}
button.success{
	background: #67c23a;
}
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);
}
input[type=file]{
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
/*图片上传*/
.custom-file-upload {
	display: flex;
	flex-direction: column;
	align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    padding: 50px 100px;
    cursor: pointer;
    color: #333;
    text-align: center;
    transition: border-color 0.2s ease-in-out;
	backdrop-filter: blur(15px) saturate(180%);
	-webkit-backdrop-filter: blur(15px) saturate(180%);
	background-color: rgba(255,255,255,0.4);
	border-radius: 10px;
	border: 1px solid rgba(209, 213, 219, 0.3)
}
.custom-file-upload:hover {
    border-color: #67c23a;
}
.custom-file-upload img{
   width: 80px;
   height: 80px;
   margin-bottom: 20px;
}
.custom-file-button{
	background: #67c23a;
	position: relative;
	overflow: hidden;
	margin-right: 10px;
}