.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}


textarea,input{
outline:none;
border:#ddd solid 1px;
padding:2px 5px;
}
textarea:focus,input:focus,textarea:hover,input:hover{
	border-color:var(--color);
}
input{
	height:30px;
    box-sizing: border-box;
}

input[type="checkbox"]{
    width:16px;
    height:16px;
    appearance: none;
    border-radius: 2px;
    border:#ddd solid 1px;
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:bolder;
    line-height:0;
    background-color:#fff;
  }
  input[type="checkbox"]:checked{
    background-color:var(--color);
    border-color:var(--color);
  }
  input[type="checkbox"]:before{
    content:"\e714";
    font-family: "iconfont" !important;
    color:#fff;
    font-size:12px;
    transform:scale(0);
    transition:transform .3s;
  }
  input[type="checkbox"]:checked:before{
    
    transform:scale(1);
  }
body>#seo{
	display:none;
}
.a-content{
	max-width:1380px;
	width:100%;
	margin:0px auto;
}
.a-grow{
	flex-grow:1;
}
.a-wrap{
	flex-wrap:wrap;
}
.a-select{
	display:flex;
	align-items:center;
	overflow:hidden;
	padding-left:1px;
}
.a-select>*{
	margin-left:-1px;
	border:#ddd solid 1px;
	height:100%;
	width:100%;
	cursor:pointer;
	box-sizing:border-box;
}
.a-select>*:hover{
	z-index:1;
	border-color:var(--color);
}
.a-select>*[selected],.a-select>*[selected]:hover{
	z-index:1;
	border-color:var(--color);
	background:var(--color);
	color:#fff;
}
::-webkit-scrollbar {width: 10px;height: 10px;background-color: #eee;}
::-webkit-scrollbar-thumb {background-color: #bbb;}
::-webkit-scrollbar-thumb:hover {background-color: #aaa;}
@media(max-width:800px){
	::-webkit-scrollbar{display:none;}
}
body{
	font-size: 14px;
	margin: 0px;
    padding: 0px;
	color:#333;
	--color-error:#e3170d;
	--color-succeed:#32cd32;
	--color-info:#ff9912;
	--color: #DC0808;
    --color-up: #ec1a1a;
    --color-down: #aa0606;
    --color-a: #fee;
	--color2:#3a3632;
}
input[type="checkbox"]{
margin:4px;
cursor:pointer;
}
a{
	color:inherit;
	text-decoration:none;
	cursor:pointer;
}
.a-inset{
	position:absolute;
	inset:0px;
}
.a-center{
	display: flex;
    align-items: center;
    justify-content: center;
}
.a-flex{
  display: flex;
}
.a-right{
  margin-left: auto;
}
.a-left{
  margin-right: auto;
}
.a-column{
  flex-direction: column;
}
.a-btn{
  height: 30px;
  display: inline-flex;
  padding: 0 18px;
  font-size: 14px;
  background: #fff;
  border: 1px solid rgb(204,204,204);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  user-select: none;
  transition:color .3s;
}
.a-btn:hover{
	color:var(--color);
}
.a-btn:active::after{
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: rgba(0,0,0,.1);
  z-index: 1;
}
.a-btn[type="primary"]{
  background: var(--color);
  border: 1px solid transparent;
  color:#fff;
}
.a-btn[type="line"]{
	background:transparent;
  border: 1px solid #666;
}
.a-btn[type="none"]{
	background:transparent;
	border:none;
}
.a-btn[disabled]{
  opacity: .5;
  cursor:not-allowed;
  pointer-events: none;
}
.a-btn[disabled]:active:after,.a-btn[loading]:active:after{
  display: none;
}
.a-btn[loading]{
  cursor:not-allowed;
}
.a-btn[loading]::before{
  font-family: "iconfont" !important;
  font-size: 20px;
  content: "\e6ca";
  animation: rotation 1s linear infinite;
  margin-right: 5px;
}
.a-loading::before{
	content:'';
  font-family: "iconfont" !important;
  font-size: 20px;
  line-height:20px;
  content: "\e6ca";
  animation: rotation 1s linear infinite;
  position:absolute;
  left:50%;
  top:50%;
  width:20px;
  height:20px;
  margin-left:-10px;
  margin-top:-10px;
}
@keyframes rotation{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}
@keyframes rotation{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

.a-input{
  background-color: #fff;
    background-image: none;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    box-sizing: border-box;
    color: rgba(0,0,0,.85);
    display: inline-block;
    font-size: 14px;
    height: 30px;
    padding: 0px 5px;
    position: relative;
    transition: all .3s;
}
.a-input:focus{
  border:var(--color) solid 1px;
  box-shadow: 0 0 0 2px var(--color-a);
  outline: 0;
}
.a-tips{
	z-index:100;
	position:fixed;
	bottom:0px;
	left:0px;
	right:0px;
	padding:10px;
	text-align:center;
	color:#fff;
	pointer-events:none;
	background:var(--color);
}
.a-tips[type='info']{
	background:var(--color-info);
}
.a-tips[type='succeed']{
	background:var(--color-succeed);
}
.a-tips[type='error']{
	background:var(--color-error);
}