html,
body {
	margin: 0;
	width: 100%;
	height: 100%;
	/* -moz-user-select: none;-khtml-user-select: none; -webkit-user-select: none;user-select: none;/*禁止该元素内容复制粘贴*/ */
}
*{
	margin:0;
	padding:0;
	font-size: 15px;
	color:#333333;
	letter-spacing: .5px;
	font-family:"Microsoft Yahei", "Hiragino Sans GB", tahoma, arial;
}
/* .disallowcopy_auto{-moz-user-select: auto;-khtml-user-select: auto; -webkit-user-select: auto;user-select: auto;}/*允许该元素内容复制粘贴*/ */
.content {
	width:calc(100%);
	height: calc(100%);
}
.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.appdiv {
	padding: 0px;
}

.xs{
	cursor: pointer;
}
.xs:hover{
	opacity: .4;
}
input {
	outline: none;
}

input:focus {
	outline: none;
}
ul{
	list-style:none;
	margin: 0;
	padding:0;
}
.plnull {
  position: relative;
  width: calc(100%);
  height: calc(100%);
  background-image: url('https://www.ubs58.cn/RetailLinkRem/img/order_null.png');
  background-size: calc(100vw / 3) calc(100vw / 3);
  background-repeat: no-repeat;
  background-position:center center;
}
.plnull label {
  position: absolute;
  top: calc(100vw / 3);
  left: 0;
  width: calc(100%);
  text-align: center;
  color:#999;
  font-size:12px;
}
/* 加载动画 */
.load {
  position: relative;
  width: 42px;
  height: 42px;
  animation: load 5s infinite linear;
  margin: 10px auto;
}

.load label {
  width: 20px;
  height: 20px;
  line-height:20px;
  text-align:center;
  color:white;
  border-radius:5px;
  position: absolute;
  background: red;
  display: block;
  animation: load_span 1s infinite linear;
}

.load label:nth-child(1) {
  background: #2ecc71;
}

.load label:nth-child(2) {
  left: 22px;
  background: #9b59b6;
  animation-delay: .2s;
}

.load label:nth-child(3) {
  top: 22px;
  background: #3498db;
  animation-delay: .4s;
}

.load label:nth-child(4) {
  top: 22px;
  left: 22px;
  background: #f1c40f;
  animation-delay: .6s;
}
.load .loadmsg{
	position:relative;
	width:200px;
	height:60px;
	text-align:center;
	top:0px;
	left:-79px;
	line-height:60px;
	color:#3399ff;
}
@keyframes load {
  from {
    -ms-transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
  }
}

@keyframes load_span {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

/* 加载动画结束 */
/* 加载动画结束 */
.turn::after {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 30px;
  margin: 20px auto;
  border: 2px dashed #000000;
  border-left: 2px dashed #F8F8F8;
  border-right: 2px dashed #F8F8F8;
  animation: turn 3s linear infinite;
}

@keyframes turn {
  0% {
    -webkit-transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(90deg);
  }

  50% {
    -webkit-transform: rotate(180deg);
  }

  75% {
    -webkit-transform: rotate(270deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}