@charset "utf-8";

/* 公共样式 */

[v-cloak] {
	display: none;
}

body {
	font-size: 14px;
	font-family: "Microsoft YaHei", "微软雅黑";
	color: #333333;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	margin: 0;
	padding: 0
}

input,
select,
textarea {
	font-size: 100%
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

fieldset,
img {
	border: 0
}

abbr,
acronym {
	border: 0;
	font-variant: normal
}

del {
	text-decoration: line-through
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal
}

ol,
ul {
	list-style: none
}

caption,
th {
	text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal
}

q:before,
q:after {
	content: ''
}

button {
	outline: 0;
	border: none;
}

a:hover {
	text-decoration: none
}

ins,
a {
	text-decoration: none
}

textarea {
	resize: none;
}

iframe,
img {
	border: 0;
}

ul,
ol {
	list-style: none;
}

a {
	color: #333333;
	text-decoration: none;
}

input[type="text"],
[type="password"],
[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
	outline: none;
}

select {
	/*-webkit-appearance: none;去掉select的下箭头*/
	outline: none;
}

textarea {
	-webkit-appearance: none;
}


/*头部*/

#header {
	/*float: left;*/
	max-width: calc(100% - 50px);
	/*padding: 0 12%;*/
	margin: 0 auto;
	/* border-bottom: 1px solid #DDDDDD; */
	height: 2.5rem;
	line-height: 2.5rem;
	color: white;
	background-color: black;
	font-size: 0.75rem;
}

.header_login {
	float: left;
	/*width: 13.375rem;*/
	/*padding: 0 1.56rem;*/
	height: 2.5rem;
	line-height: 2.5rem;
}

.header_login li {
	float: left;
	/*width: 50%;*/
	text-align: center;
	margin-right: 1rem;
	cursor: pointer;
}

.header_menu {
	float: right;
	height: 2.5rem;
	line-height: 2.5rem;
}

.header_menu li {
	float: left;
	/* width: 4rem; */
	text-align: center;
	font-size: 0.75rem;
	margin-left: 1rem;
	cursor: pointer;
	position: relative;
}


/*上传图片*/

.customer_uploadimg {
	display: flex;
	flex-wrap: wrap;
}

.customer_no_img {
	width: 100%;
	height: 100%;
	border-radius: 0.213333rem;
}

.customer_uploadimg>div {
	width: 160px;
	height: 160px;
	background-color: rgb(245, 245, 245);
	border-radius: 5px;
	position: relative;
	margin-bottom: 10px;
	margin-right: 10px;
}

.building_upload {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 99;
	-ms-filter: 'alpha(opacity=0)';
}

.customer_upload {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-ms-filter: 'alpha(opacity=0)';
}

.uploa-voucher {
	width: 100%;
	height: auto;
}

.showimg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0.213333rem;
	display: none;
}

.hide {
	width: 20px;
	height: 20px;
	position: absolute;
	z-index: 99;
	right: 0;
	top: 0;
}

.customer_no_img {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -20px;
	margin-left: -20px;
}


/*加载*/

.sk-three-bounce {
	/*使用弹性布局让加载动画持续会于页面中央，不随滚动条变化*/
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 99999;
}

.sk-three-bounce .sk-child {
	/*在这里设置加载球的大小*/
	width: 0.8rem;
	height: 0.8rem;
	/*加载求的颜色在这里修改*/
	background-color: rgb(255, 83, 63);
	border-radius: 50%;
	display: inline-block;
	-webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
	animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.sk-three-bounce .sk-bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.sk-three-bounce .sk-bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-three-bounce {
	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	40% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}


/***全局公共样式 - 开始***/

.h_10 {
	height: 10px;
}

.h_30 {
	height: 30px;
}

.h_500 {
	height: 500px !important;
}

.no_mr {
	margin-right: 0px !important;
}

.no_mb {
	margin-bottom: 0px !important;
}

.no_bb {
	border-bottom: 0px !important;
}

iframe {
	display: block;
	border: 0px;
}

img {
	display: block;
}

.form_check_box {
	line-height: 40px;
	position: absolute;
	top: 0;
	right: 10px;
	font-size: 12px;
	color: #dd0322;
}

.cBody {
	height: 100%;
	padding: 10px;
	display: block;
	overflow-y: auto;
	position: relative;
}

i.bt {
	float: left;
	height: 38px;
	line-height: 38px;
	color: #9f191f;
	font-size: 20px;
}


/***全局公共样式 - 结束***/


/***子页面公共样式 - 开始***/

.shortInput {
	width: 40% !important;
}


/***子页面公共样式 - 结束***/


/***图片放大缩小 - 开始***/

.imgBig {
	position: absolute;
	top: 8px;
	left: 8px;
	z-index: 1000;
	box-shadow: 0 0 10px #888;
	-webkit-box-shadow: 0 0 10px #888;
	-moz-box-shadow: 0 0 10px #888;
	-o-box-shadow: 0 0 10px #888;
}

.imgSmall {
	position: static;
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
}


/***图片放大缩小 - 结束***/


/***打印模版样式 - 开始***/

.printTable th,
.printTable td {
	border-color: #999 !important;
}

.printTable .textCenter {
	text-align: center;
}

.printTable .font20 {
	font-size: 20px;
	font-weight: 600;
}

.printTable .printName {
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	padding: 20px 0;
	color: #333;
	border-bottom: 0;
}

.printTable .printSmallName {
	text-align: center;
	font-size: 14px;
	padding: 0;
	color: #333;
	border-top: 0;
	border-bottom: 0;
}

.printTable .printDis {
	border-top: 0;
	border-bottom: 0;
}

.printTable .printDis span {
	float: left;
	width: 50%;
	font-size: 16px;
	color: #333;
	line-height: 40px;
}

.printTable .printDis span.right {
	text-align: right;
}

.printTable .printOperator {
	border-top: 0;
}

.printTable .printOperator span {
	float: left;
	width: 50%;
	font-size: 16px;
	color: #333;
	line-height: 40px;
}

.printTable .printOperator .three {
	float: left;
	font-size: 16px;
	color: #333;
	line-height: 40px;
}

.printTable .printOperator span.right {
	text-align: right;
}


/***打印模版样式 - 结束***/


/***复写纸3层打印模版样式 - 开始***/

.printTable_fxz3 th,
.printTable_fxz3 td {
	border-color: #999 !important;
	color: #222;
	padding: 2px 5px !important;
}

.printTable_fxz3 .textCenter {
	text-align: center;
}

.printTable_fxz3 .font20 {
	font-size: 18px;
	font-weight: 600;
}

.printTable_fxz3 .printName {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	padding: 10px 0;
	color: #000;
	border-bottom: 0;
}

.printTable_fxz3 .printSmallName {
	text-align: center;
	font-size: 14px;
	padding: 0;
	color: #333;
	border-top: 0;
	border-bottom: 0;
	line-height: 16px;
	padding: 0px 10px !important;
}

.printTable_fxz3 .printDis {
	border-top: 0;
	border-bottom: 0;
	padding: 0px 5px !important;
}

.printTable_fxz3 .printDis span {
	float: left;
	width: 50%;
	font-size: 14px;
	color: #000;
	line-height: 22px;
}

.printTable_fxz3 .printDis span.right {
	text-align: right;
}

.printTable_fxz3 .printOperator {
	border-top: 0;
}

.printTable_fxz3 .printOperator span {
	float: left;
	width: 50%;
	font-size: 16px;
	color: #333;
	line-height: 40px;
}

.printTable_fxz3 .printOperator .three {
	float: left;
	font-size: 14px;
	color: #000;
	line-height: 26px;
}

.printTable_fxz3 .printOperator span.right {
	text-align: right;
}


/***复写纸3层打印模版样式 - 结束***/


/***自定义滚动条样式修改 - 开始***/

.mCSB_container {
	overflow: visible !important;
}


/***自定义滚动条样式修改 - 结束***/


/***table操作iconfont - 开始***/

.operationICONBut {
	font-size: 18px;
	margin-right: 3px;
}


/***table操作iconfont - 结束***/