@charset "utf-8";

/*index.css*/
html,
body {
	font-family: "PingFang SC Semibold";
	background-color: #F5F5F5;
	overflow: hidden;
	font-size: 0.14rem;
}

.common-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;  /*此值低了反馈按钮有些页面无法显示, 但要小于1050，否则提示框会被覆盖*/
}

.common-content {
	margin-top: 0.44rem;
	height: 100%;
}

.common-content-show-vechile-title {
	margin-top: 0.96rem;
}

/* html {
	font-size: 625% !important;
}
 */
p {
	margin: 0;
}

/* 屏幕尺寸大于1024px时,两边留白(iPad Pro 屏幕宽度是1024px) */
/* @media only screen and (min-width: 1024px) {
	html {
		max-width: 1024px;
		margin: 0 auto;
	}
} */

/* 屏幕尺寸大于1024px时,字体不随屏幕尺寸变化而变化，固定大小  
	1024px / 3.75 = 120px */
/* @media only screen and (min-width:1024px) {
	html {
		font-size: 273.0667px !important
	} 
} */

.box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
	/*100vh == height:100%,元素撑开与屏幕等高 */
}

.box-content {
	margin-top: 0.84rem;
}

.flexbox {
	display: flex;
	flex-flow: row wrap;
	align-content: stretch;
}

.flexboxcol {
	display: flex;
	flex-flow: column wrap;
	align-content: stretch;
}

.flexbox>.flexbox-item,
.flexboxcol>.flexbox-item {
	text-align: center;
}

.bootstrap-dialog .bootstrap-dialog-message {
	font-size: 0.14rem;
}

.modal-body {
	padding: 0.15rem;
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0;
}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-clip-rotate,
.la-ball-clip-rotate>div {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.la-ball-clip-rotate {
	display: block;
	font-size: 0;
	color: #fff;
}

.la-ball-clip-rotate.la-dark {
	color: #333;
}

.la-ball-clip-rotate>div {
	display: inline-block;
	float: none;
	background-color: currentColor;
	border: 0 solid currentColor;
}

.la-ball-clip-rotate {
	width: 32px;
	height: 32px;
}

.la-ball-clip-rotate>div {
	width: 32px;
	height: 32px;
	background: transparent;
	border-width: 2px;
	border-bottom-color: transparent;
	border-radius: 100%;
	-webkit-animation: ball-clip-rotate .75s linear infinite;
	-moz-animation: ball-clip-rotate .75s linear infinite;
	-o-animation: ball-clip-rotate .75s linear infinite;
	animation: ball-clip-rotate .75s linear infinite;
}

.la-ball-clip-rotate.la-sm {
	width: 16px;
	height: 16px;
}

.la-ball-clip-rotate.la-sm>div {
	width: 16px;
	height: 16px;
	border-width: 1px;
}

.la-ball-clip-rotate.la-2x {
	width: 64px;
	height: 64px;
}

.la-ball-clip-rotate.la-2x>div {
	width: 64px;
	height: 64px;
	border-width: 4px;
}

.la-ball-clip-rotate.la-3x {
	width: 96px;
	height: 96px;
}

.la-ball-clip-rotate.la-3x>div {
	width: 96px;
	height: 96px;
	border-width: 6px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-clip-rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes ball-clip-rotate {
	0% {
		-moz-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-moz-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-moz-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes ball-clip-rotate {
	0% {
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes ball-clip-rotate {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-o-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.show-info-orange {
	padding: 0 0.15rem;
	height: 0.4rem;
	line-height: 0.4rem;
	background-color: #FFFCEE;
	color: #FCA75C;
	font-weight: 500;
}

.show-info-orange img {
	height: 0.16rem;
	width: 0.16rem;
	object-fit: contain;
}

.content-list-box {
	padding: 0 0.15rem;
	overflow: scroll;
}

.content-list-box::-webkit-scrollbar {
	display: none;
}

.content-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 0.01rem solid #E6E6E6;
	width: 100%;
	min-height: 0.85rem;
	margin-bottom: 0.15rem;
}

.content-item-left {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.content-item-right {
	width: 0.3rem;
	flex-shrink: 0;
	margin-left: 0.05rem;
}

.content-item-top {
	width: 100%;
	display: flex;
}

.content-item-img {
	height: 0.6rem;
	width: 0.9rem;
	margin-right: 0.05rem;
}

.content-item-icon {
	height: 0.2rem;
	width: 0.2rem;
}

.content-item-name {
	margin-top: 0.1rem;
	font-weight: bold;
}

.content-item-detail {
	margin-top: 0.05rem;
}

.table {
	margin-bottom: 0;
}

.table-defind tr {
	height: 0.45rem;
}

.table-defind tr td {
	border: 1px solid #D9D9D9 !important;
}

.table-defind>tbody>tr:nth-child(odd) {
	background-color: #FFFFFF;
}

.table-defind>tbody>tr:nth-child(even) {
	background-color: #F2F2F2;
}

.table-defind tr td:first-child {
	vertical-align: middle;
}

.table-defind tr td:last-child {
	width: auto;
	vertical-align: middle;
}

.input-inner-img {
	position: relative;
	height: 0.36rem;
}

.inner-img-left {
	position: absolute;
	height: 0.18rem;
	object-fit: contain;
	top: 0.08rem;
	left: 0.15rem;
}


.autocomplete-suggestions {
	border: 1px solid  rgba(0, 0, 0, .175);;
	border-top: 0;
	background: #FFF;
	cursor: default;
	overflow: auto;
	-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, .175);
	-moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, .175);
	box-shadow: 1px 1px 3px rgba(0, 0, 0, .175);
	height: auto;
}

.autocomplete-suggestion {
	color: #5a5c5d;
	cursor: pointer;
	font-size: 0.14rem;
	padding: 2px 0.12rem;
	white-space: nowrap;
	overflow: hidden;
	height: auto;
	line-height: 0.25rem;
}

.autocomplete-no-suggestion {
	padding: 2px 5px;
}

.autocomplete-selected {
	background: #f6f6f6;
}

.autocomplete-suggestions strong {
	font-weight: bold;
	color: #333;
}

.autocomplete-group {
	padding: 2px 5px;
}

.autocomplete-group strong {
	font-weight: bold;
	font-size: 16px;
	color: #333;
	display: block;
	border-bottom: 1px solid #333;
}

.watermark-level {
	background-image: url('../../img/common/leveldat_watermark.png');
	background-position: center;
	position: absolute;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background-size: 1.6rem;
	pointer-events: none; /*去除遮罩层点击事件*/
}