*{
	margin: 0;
	padding: 0;
}
.root-container {
  /*background: #666666;*/
}

.container {
  width: 100%;
  /* height: 100vh; */
  padding: 0 10px;
  font-size: 14px;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 74px;
}


.sub-con {
  /* width: 100%;
  height: calc(100% - 140px);
  padding-top: 80px;
  padding-bottom: 60px;
  overflow-y: auto;
  color: black; */
  padding-bottom: 20px;
}

.h5-sub-con {
  width: 100%;
  height: calc(100% - 60px);
  padding-top: 60px;
  overflow-y: auto;
  color: black;
}

.scroll-center {
  width: 940px;
  margin: 0 auto;
}

.popContainer {
  color: #fff;
  font-size: 16px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.popContainer img {
  width: 50px;
  height: 50px;
}

.popContainer label {
  margin-top: 8px;
}

.column {
  display: flex;
  flex-direction: column;
}

.column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.row {
  display: flex;
  flex-direction: row;
}

.row-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.row-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.row-justify-center {
  display: flex;
  flex-direction: row;
  align-items: center;

}

button {
  outline: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*禁止复制*/
* {
  -webkit-touch-callout: none; /*系统默认菜单被禁用*/
  -webkit-user-select: none; /*webkit浏览器*/
  -khtml-user-select: none; /*早期浏览器*/
  -moz-user-select: none; /*火狐*/
  -ms-user-select: none; /*IE10*/
  user-select: none;
}

/*全局隐藏滑动条*/
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  color: transparent;
  display: none;

}

.load-container {
  pointer-events: auto;
  color: white;
  font-size: 18px;
  z-index: 9999;
  position: fixed;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pop-container {
  pointer-events: auto;
  color: #000;
  font-size: 20px;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loading_img {
  width: 30px;
  animation: loading-rotate 1s linear infinite;
}

@keyframes loading-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* @font-face {
  font-family: daimler;
  src: url('../assets/font/DaimlerCS-Regular.otf');
} */

* {
  font-family: daimler;
}

@media screen and (max-width: 500px) {
  .sub-con {
   /* width: calc(100% - 30px);
    height: calc(100% - 70px);
    padding: 0 15px 70px; */
  }

  .scroll-center {
    padding-left: 10px;
    padding-right: 10px;
    width: calc(100% - 20px);
  }

}

.footer{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px 10px;
	background-color: #000;
	color: #fff;
	font-size: 12px;
	text-align: center;
}
.footer a{
	color: #fff;
	text-decoration: none;
	margin-right: 8px;
}