body,template,
html,ul,li,div {
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}

body,
html {
	font-family: MiSans-Regular, MiSans;
	/* -moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none; */
	overflow-x: hidden;

}


  

a,
span,
div,
li,
h1,
h2 {
	font-family: MiSans-Regular, MiSans;
	/* -moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none; */
}

a {
	color: #b9cedf;
}

/*包含以下五种的链接*/
a {
	text-decoration: none;
}

/*正常的未被访问过的链接*/
a:link {
	text-decoration: none;
}

/*已经访问过的链接*/
a:visited {
	text-decoration: none;
}

/*鼠标划过(停留)的链接*/
a:hover {
	text-decoration: none;
}

/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
	text-decoration: none;
}

/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
}

.noselect {
  /* 禁止文本被选中 */
  -webkit-user-select: none; /* Safari */
     -moz-user-select: none; /* Firefox */
      -ms-user-select: none; /* IE10+/Edge */
          user-select: none; /* 标准语法 */

  /* 鼠标指针保持默认（不变成 I 形输入光标） */
  cursor: default;

  /* 可选：禁止点击时出现焦点轮廓（如蓝色边框） */
  outline: none;
}
.no-select * {
  user-select: none !important;
  cursor: default !important;
}

img {
	display: block;
	border: 0;
}

video {
	display: block;
	width: 100%;
	object-fit: cover;
	object-position: center top;
}

span,
a {
	display: block;
}


image,
img {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}


textarea:focus,
input:focus {
	outline: none;
}

input {

	background: none;

	outline: none;

	border: 0px;

}

input[type="text"]:focus,

input[type="password"]:focus {

	/* border: 1px solid rgba(0, 0, 0, 0); */

	background: rgba(0, 0, 0, 0);

	outline: none;

}

textarea {
	resize: none;
	border: 1px solid rgba(0, 0, 0, 0);
	background: rgba(0, 0, 0, 0);
}

input:-webkit-input-placeholder {
	color: #666;
}

input::-webkit-input-placeholder {
	color: #666;
}

input:-ms-input-placeholder {
	color: #666;
}

input:-moz-placeholder {
	color: #666;
	opacity: 1 !important;
	/*火狐默认有opacity:0.4; */
}

input::-moz-placeholder {
	color: #666;
	opacity: 1 !important;
}
/* 隐藏滚动条 - Chrome/Safari/Edge */
.hidescrol{
	scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
/* 英文大写 */
.uppercase {
	text-transform: Uppercase;
}

/*flex布局  */

.flex {
	display: flex;
	align-items: center;
}


/* 容器的开头 */

.flex.flex-start {
	justify-content: flex-start;
}


/* 容器的结尾 */

.flex.flex-end {
	justify-content: flex-end;
}


/* 两端对齐 */

.flex.flex-between {
	justify-content: space-between;
}


/* 等分 两边有距离 */

.flex.flex-around {
	justify-content: space-around;
}


/* 居中对齐*/
.flex.flex-center {
	justify-content: center;
}


/*浮动*/
.float-left {
	float: left;
}

.float-right {
	float: right;
}

/*清浮动*/
.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	zoom: 1;
}

/* 上下左右居中 */

.posi-all {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}


/* 左右居中 */

.posi-x {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}


/* 垂直居中 */

.posi-y {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}


/* 超出隐藏 */

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.ellipsis2 {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ellipsis3 {
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	word-wrap: break-word;
	word-break: break-all;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.h100{
	height: 100%;
}
.base_width {
	max-width: 1200px;
	margin: 0 auto;
}

.base_shadow {
	box-shadow: 0px 0px 10px 0px rgba(102, 102, 102, 0.1);
}


.sethand:hover {
	cursor: pointer;
}


.msp:hover{
	transform: scale(1.2);
}
.msp{
	transition: transform 0.5s;
}

.ks:hover{
	color: #fff !important;
	box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.3);
}
.ks{
	transition: box-shadow 0.5s,color 0.3s;
}

.tks:hover{
	color: #ddd !important;
	text-shadow:
	0px -1px 0px #c0c0c0,
	0px -9px 10px rgba(0, 0, 0, 0.3);
}
.tks{
	transition: text-shadow 0.5s,color 0.3s;
}
.tfs:hover{
	color: #A78345 !important;
	text-shadow:
	0px -1px 0px rgba(216, 215, 182, 1),
	0px -9px 10px rgba(0, 0, 0, 0.3);
}
.tfs{
	transition: text-shadow 0.5s,color 0.3s;
}

.bct:hover{
	box-shadow: inset 0px 0px 16px 6px rgba(216, 215, 182, 1);
}
.bct{
	transition: box-shadow 0.5s;
}
.bcy:hover{
	box-shadow: 0px 0px 16px 6px rgba(216, 215, 182, 1);
}
.bcy{
	transition: box-shadow 0.5s;
}
.tcl:hover{
	cursor: pointer;
	color: #f5f5f5 !important;
	background: #bd996d !important;
}
.tcl{
	transition: color 0.5s;
}

.tcb:hover{
	background-color: rgba(216, 215, 182, 1);
}
.tcb{
	transition: background-color 0.5s;
}
.tcr:hover{
	border: 1px solid rgba(216, 215, 182, 1) !important;
}
.tcr{
	transition: border 0.5s;
}


/* Webkit定制 */
  textarea::-webkit-scrollbar { width: 3px; }
  textarea::-webkit-scrollbar-thumb { 
    background: #666; 
    border-radius: 1.5px;
  }
  textarea::-webkit-scrollbar-track { background: #eee; }
 
  /* Firefox定制 */
  textarea {
    scrollbar-width: thin;
    scrollbar-color: #666 #eee;
  }



.base_shadow{
	box-shadow: 0px 0px 10px 1px #ccc;
}
