/**************
* @made by kami;
**************/
@charset "utf-8";
*{
	padding:0;
	margin:0;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, em {
	padding: 0;
	margin: 0;
	outline: none
}
table {
	border-collapse: collapse;
	border-spacing: 0
}
table tbody .nodata,p.nodata{
	padding: 50px 0;
	text-align: center;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
}
fieldset,img {
	border: 0;
	font-size:12px;
}
address, caption, cite, code, dfn, em, th, var, i {
	font-weight: normal;
	font-style: normal
}
ol, ul, li {
	list-style: none
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%
}
input, img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section ,dialog{
    display: block;
}
/* :root{
	--bg: #f0f1f3;
	--black: #000;
	--top: #292d3a;
	--white: #fff;
	--text: #333;
	--label: #666;
	--red: #ff1010;
	--gray: #ccc;
	--audit: #bbb;
	--more: #999;
	--showdown: #eee;
	--yellow: #fec714;
	--reg: #ffeeb5;
	--table: #f4f4f4;
	--hovertable: #e1e1e1;
	--btnstart: #ffde43;
	--blue: #107bff;
	--orange: #fd8713;
	--green: #2bbb17;
} */
/*Global*/
/*禁止苹果系统所有默认样式*/
html,body{-webkit-text-size-adjust:none;}/*去除苹果设备下浏览器默认按钮样式与背景*/
*:focus {outline: none}/*禁止所有聚焦边框*/
input,input[type=button],textarea {outline: none;}/* 屏蔽文本框高亮 */
/*禁止苹果系统所有默认样式*/

a,a:visited{
	text-decoration: none;
	color: #333;
	outline: none;
	transition:all 0.25s ease 0.1s;
}
a:hover {
	text-decoration: none;
}
/*按下时的样式*/
a:active  {
	text-decoration: none;
}
/*清除浮动*/
.clear{
	clear: both;
}
input,textarea{
    border: 1px solid #ccc;
    padding: 0 10px;
    border-radius: 3px;
}
input:focus,textarea:focus{
	box-shadow: 0 0 5px #ccc;
}
::-webkit-input-placeholder { /* WebKit browsers */
	color: #999;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color: #999;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color: #999;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color: #999;
}
.error input,.error .selected{
	box-shadow: 0 0 5px #ff1010;
	border-color: #ff1010;
}
/*加载*/
.loading{
	text-align: center;
	padding: 20px 0;
}
/*数据提交等待*/
.waiting{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 99;
}
.waiting .wrap{
	position: relative;
	top: 45%;
	margin: -38px 0 0 0;
}
.waiting .wrap img{
	height: 26px;
}
.waiting .wrap h1{
	line-height: 50px;
	height: 50px;
	color: #fff;
	font-size: 18px;
}
.waiting .wrap h1 span{
	display: inline-block;
	margin: 0 2px;
	animation: waiting 1.2s linear infinite;
}
.waiting .wrap h1 span:nth-child(1){
	animation-delay: 0s;
}
.waiting .wrap h1 span:nth-child(2){
	animation-delay: 0.2s;
}
.waiting .wrap h1 span:nth-child(3){
	animation-delay: 0.4s;
}
.waiting .wrap h1 span:nth-child(4){
	animation-delay: 0.6s;
}
.waiting .wrap h1 span:nth-child(5){
	animation-delay: 0.8s;
}
@keyframes waiting{
	0%, 40%, 100%{
		color: #fff;
		transform: scale(1);
	}
	20%{
		color: #fec714;
		transform: scale(1.3);
	}
}
.waiting .wrap p span{
	width: 5px;
	height: 5px;
	display: inline-block;
	margin: 0 2px;
	background: #fec714;
	animation: waitingspan 1.2s ease-in-out infinite;
}
.waiting .wrap p span:nth-child(1){
	animation-delay: 0s;
}
.waiting .wrap p span:nth-child(2){
	animation-delay: 0.1s;
}
.waiting .wrap p span:nth-child(3){
	animation-delay: 0.2s;
}
.waiting .wrap p span:nth-child(4){
	animation-delay: 0.3s;
}
.waiting .wrap p span:nth-child(5){
	animation-delay: 0.4s;
}
@keyframes waitingspan{
	0%, 40%, 100% {
		opacity: 0;
		transform: scaleY(1);
	}
	20% {
		opacity: 1;
		transform: scaleY(3.5);
	}
}
/*系统提示*/
.systemMessage{
	position: fixed;
	max-width: 80%;
	background: rgba(0, 0, 0, .5);
	top: -100%;
	left: 0;
	color: #fff;
	padding: 30px 20px;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
	z-index: 99;
	line-height: 20px;
}
.systemTips{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 98;
}
.systemTips .wrap{
	width: 86%;
	margin: 0 auto;
	top: 45%;
	position: relative;
	animation: systemTips 0.2s ease;
	max-width: 600px;
	border-radius: 10px;
	background: #fff;
}
@keyframes systemTips{
	0%{
		transform: scale(.1)
	}
	100%{
		transform: scale(1)
	}
}
.systemTips .wrap .close{
	position: absolute;
	right: 17px;
	top: 17px;
	width: 16px;
	height: 16px;
	line-height: 50px;
	font-size: 0;
	background: url(../images/icon.png) no-repeat -761px -104px;
}
.systemTips .wrap .close img{
	vertical-align: middle;
	height: 16px;
}
.systemTips .wrap .title{
	background: #fec714;
	color: #ff9399;
	font-size: 18px;
	height: 50px;
	line-height: 50px;
	text-shadow: #fff 1px 1px 0px;
	border-radius: 10px 10px 0 0;
}
.systemTips .wrap .title img{
	height: 23px;
	vertical-align: middle;
}
.systemTips .wrap .content{
	font-size: 16px;
	line-height: 25px;
	padding: 0px 15px;
	overflow-y: auto;
	box-sizing: border-box;
	text-align: center;
	margin: 20px 0;
}
.systemTips .wrap .btns{
	padding-bottom: 20px;
	font-size: 16px;
}
.systemTips .wrap .btns a{
	background: #fec714;
	width: 120px;
	line-height: 40px;
	display: inline-block;
	border-radius: 5px;
	border: 1px solid #fec714;
	box-sizing: border-box;
	margin: 0 30px;
}
.systemTips .wrap .btns a.cancel{
	background: #fff;
}
.systemTips .wrap .btns a:hover{
	color: #fff;
	background: #fec714;
}
/*下拉列表*/
.dropdown{
	position: relative;
}
.dropdown .selected{
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	position: relative;
	padding: 0 10px;
	border-radius: 3px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.dropdown .icon-dropdown{
	width: 13px;
	height: 7px;
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 16px;
	background: url(../images/icon.png) no-repeat -451px -114px;
	transition: all 0.25s ease;
}
.show .icon-dropdown{
	transform: rotate(180deg);
}
.dropdown .dropdownlist{
	min-width: 100%;
	top: 40px;
	background: #fff;
	box-shadow: 0 5px 15px #ccc;
	box-sizing: border-box;
	border-radius: 0 0 3px 3px;
	font-size: 14px;
	position: absolute;
	color: #333;
	max-height: 200px;
	overflow-y: auto;
	display: none;
    animation: dropdown 0.2s ease;
}
@keyframes dropdown{
	0%{
		transform: translateY(20px);
		opacity: 0.5;
	}
	100%{
		transform: translateY(0px);
		opacity: 1;
	}
}
.show .dropdownlist{
	display: block;
	z-index: 10;
}
.dropdown .dropdownlist li{
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	padding: 0 10px;
	white-space: nowrap;
}
.dropdown .dropdownlist li:hover{
	background: #fec714;
	color: #fff;
}
.dropdown .dropdownlist .active{
	background: #fec714;
	color: #fff;
}
.dropdown .dropdownlist .active a{
	color: #fff;

}
/*下拉列表*/
.region{
	position: relative;
}
.region .selected{
	width: 100%;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	position: relative;
	padding: 0 10px;
	border-radius: 3px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.region .icon-dropdown{
	width: 13px;
	height: 7px;
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 16px;
	background: url(../images/icon.png) no-repeat -451px -114px;
	transition: all 0.25s ease;
}
.show .icon-dropdown{
	transform: rotate(180deg);
}
.region .regionlist{
	min-width: 100%;
	top: 40px;
	background: #fff;
	box-shadow: 0 5px 15px #ccc;
	box-sizing: border-box;
	border-radius: 0 0 3px 3px;
	font-size: 14px;
	position: absolute;
	color: #333;
	max-height: 200px;
	overflow-y: auto;
	display: none;
    animation: dropdown 0.2s ease;
}
.show .regionlist{
	display: block;
	z-index: 1;
}
.region .regionlist li{
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	padding: 0 10px;
	white-space: nowrap;
}
.region .regionlist li:hover{
	background: #fec714;
	color: #fff;
}
.region .regionlist .active{
	background: #fec714;
	color: #fff;
}
.region .regionlist .active a{
	color: #fff;

}
/*页面宽度设置*/
.container{
	padding: 0 20px;
	margin: 0 auto;
	max-width: 1860px;
}
/*页面顶部*/
.topbar{
	background: #292d3a;
	height: 40px;
	line-height: 40px;
	color: #fff;
}
.topbar .container{
	text-align: right;
}
.topbar .welcome{
	font-size: 14px;
	float: left;
}
.topbar .topnav a,.topbar .topnav span{
	font-size: 14px;
	color: #fff;
}
.topbar .topnav a{
	margin-left: 40px;
}
.topbar .topnav a.active,.topbar .topnav a:hover{
	color: #fec714;
}
.topbar .topnav a i{
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: text-bottom;
	margin-right: 5px;
}
.topbar .topnav a i.icon-message{
	background: url(../images/icon.png) no-repeat -562px 0;
}
.topbar .topnav a:hover i.icon-message,.topbar .topnav a.active i.icon-message{
	background: url(../images/icon.png) no-repeat -562px -32px;
}
.topbar .topnav a i.icon-logout{
	background: url(../images/icon.png) no-repeat -587px 0;
}
.topbar .topnav a:hover i.icon-logout{
	background: url(../images/icon.png) no-repeat -587px -32px;
}
/*导航*/
.nav{
	background: #fff;
	height: 70px;
}
.nav .container{
	text-align: right;
}
.nav .logo{
	float: left;
	width: 280px;
	height: 50px;
	background: url(../images/icon.png) no-repeat 0 0;
	margin-top: 11px;
}
.nav nav a{
	height: 70px;
	font-size: 16px;
	padding: 0 20px;
	display: inline-block;
	min-width: 70px;
	line-height: 22px;
	text-align: center;
}
.nav nav a.active,.nav nav a:hover{
	background: #fec714;
	font-weight: bold;
}
.nav nav a i{
	width: 20px;
	height: 20px;
	display: inline-block;
	transition:all 0.25s ease 0.1s;
	margin-top: 15px;
}
.nav nav a i.icon-index{
	background: url(../images/icon.png) no-repeat -300px 0;
}
.nav nav a.active i.icon-index,.nav nav a:hover i.icon-index{
	background: url(../images/icon.png) no-repeat -300px -28px;
}
.nav nav a i.icon-ticket{
	background: url(../images/icon.png) no-repeat -329px 0;
}
.nav nav a.active i.icon-ticket,.nav nav a:hover i.icon-ticket{
	background: url(../images/icon.png) no-repeat -329px -28px;
}
.nav nav a i.icon-finance{
	background: url(../images/icon.png) no-repeat -358px 0;
}
.nav nav a.active i.icon-finance,.nav nav a:hover i.icon-finance{
	background: url(../images/icon.png) no-repeat -358px -28px;
}
.nav nav a i.icon-order{
	background: url(../images/icon.png) no-repeat -388px 0;
}
.nav nav a.active i.icon-order,.nav nav a:hover i.icon-order{
	background: url(../images/icon.png) no-repeat -388px -28px;
}
.nav nav a i.icon-subordinate{
	background: url(../images/icon.png) no-repeat -418px 0;
}
.nav nav a.active i.icon-subordinate,.nav nav a:hover i.icon-subordinate{
	background: url(../images/icon.png) no-repeat -418px -28px;
}
.nav nav a i.icon-userCenter{
	background: url(../images/icon.png) no-repeat -448px 0;
}
.nav nav a.active i.icon-userCenter,.nav nav a:hover i.icon-userCenter{
	background: url(../images/icon.png) no-repeat -448px -28px;
}
.nav nav a i.icon-query{
	background: url(../images/icon.png) no-repeat -477px 0;
}
.nav nav a.active i.icon-query,.nav nav a:hover i.icon-query{
	background: url(../images/icon.png) no-repeat -477px -28px;
}
/*弹窗信息*/
.popup{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 90;
}
.popup .box{
	width: 920px;
	position: relative;
	background: #fff;
	border-radius: 15px;
	top: 50%;
	left: 50%;
	margin: -200% 0 0 -460px;
	padding: 25px;
	box-sizing: border-box;
	transition: all 0.25s ease;
}
.leave{
	opacity: 0;
	transition: all 0.25s ease;
}
/* .leave .box{
	top: -100%;
} */
.popup .box .title{
	height: 30px;
	line-height: 30px;
	text-align: left;
}
.popup .box .title span{
	font-size: 20px;
	border-left: 4px solid #fec714;
	padding-left: 10px;
	font-weight: bold;
}
.popup .box .title a{
	float: right;
	width: 16px;
	height: 16px;
	background: url(../images/icon.png) no-repeat -613px 0;
	margin-top: 7px;
}
.popup .box .title a:hover{
	background-position: -613px -32px;
}
.popup .box .content{
	overflow-y: auto;
}
.popup .box .content .query{
	text-align: left;
	margin-top: 25px;
}
.popup .box .content .query .item{
	display: inline-block;
	margin-right: 20px;
}
.popup .box .content .query .item .itemname{
	font-size: 14px;
	line-height: 36px;
	display: inline-block;
	margin-right: 10px;
}
.popup .box .content .query .item .iteminfo{
	width: 180px;
	display: inline-block;
	vertical-align: top;
}
.popup .box .content .query .item .iteminfo input{
	height: 36px;
	display: block;
	font-size: 14px;
	line-height: 34px;
	width: 100%;
	box-sizing: border-box;
}
.popup .box .content .query a{
	display: inline-block;
	height: 34px;
	margin-left: 20px;
	font-size: 14px;
	line-height: 34px;
	border: 1px solid #ccc;
	padding: 0 10px;
	border-radius: 3px;
}
.popup .box .content .query a:hover{
	background: #fec714;
	border-color: #fec714;
}
/*分页*/
.pagebox {
	text-align: right;
	padding: 0 20px 20px 20px;
	box-sizing: border-box;
	white-space: nowrap;
}
.pagebox .pagesize{
	position: relative;
	margin-right: 20px;
	text-align: left;
	display: inline-block;
	vertical-align: top;
}
.pagebox .pagesize .nowsize{
	height: 34px;
	line-height: 34px;
	padding: 0 25px 0 10px;
	border: 1px solid #f4f4f4;
	font-size: 14px;
	border-radius: 3px;
	position: relative;
	cursor: pointer;
	user-select: none;
}
.pagebox .pagesize i{
	width: 10px;
	height: 5px;
	background: url(../images/icon.png) no-repeat -473px -115px;
	position: absolute;
	right: 10px;
	top: 15px;
}
.pagebox .pagesize .sizelist{
	position: absolute;
	bottom: 36px;
	width: 100%;
	box-shadow: 0 0 5px #ccc;
	display: none;
	animation: sizelist 0.2s ease;
	background: #fff;
}
@keyframes sizelist{
	0%{
		transform: translateY(-20px);
		opacity: 0.5;
	}
	100%{
		transform: translateY(0px);
		opacity: 1;
	}
}
.pagebox .show .sizelist{
	display: block;
	z-index: 1;
}
.pagebox .pagesize .sizelist li{
	font-size: 14px;
	height: 36px;
	line-height: 36px;
	padding: 0 10px;
	box-sizing: border-box;
	cursor: pointer;
}
.pagebox .pagesize .sizelist li:hover{
	background: #fec714;
	color: #fff;
}
.pagebox .page{
	display: inline-block;
	vertical-align: top;
}
.page a,.page span{
	text-align: center;
	min-width: 34px;
	height: 34px;
	line-height: 34px;
	display: inline-block;
	font-size: 14px;
	border: 1px solid #f4f4f4;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 0 5px;
}
.page span{
	line-height: 25px;
}
.page span.active{
	line-height: 34px;
}
.page a:hover{
	background: #fec714;
	color: #fff;
	border-color: #fec714;
}
.page .active{
	display: inline-block;
	background: #fec714;
	border-color: #fec714;
}
.page .prev{
	font-size: 0;
	background: url(../images/icon.png) no-repeat -546px -481px;
}
.page a:hover.prev{
	background: url(../images/icon.png) no-repeat -574px -481px #fec714;
}
.page .next{
	font-size: 0;
	background: url(../images/icon.png) no-repeat -630px -481px;
}
.page a:hover.next{
	background: url(../images/icon.png) no-repeat -602px -481px #fec714;
}
/*时间选择*/
.calendar .starttime,.calendar .endtime{
	position: absolute;
	z-index: -1;
}


.d_f{
	display: flex;
}
.flex_1{
	flex: 1;
}
.cur_p{
	cursor: pointer;
}
.ali_c{
	align-items: center;
}
.j_c{
	justify-content: center;
}

.pop_tip_out{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	left: 0;
	top: 0;
	z-index: 999;
	display: none;
}
.pop_tip{
	width: 954px;
	height: 575px;
	background: #FFFFFF;
	border-radius: 14px;
	padding: 22px;
	box-sizing: border-box;
}
.head_pop{
	margin-bottom: 65px;
}
.head_pop .text{
	font-size: 28px;
	font-family: Source Han Sans CN;
	font-weight: bold;
	color: #333333;
}
.head_pop .text div{
	width: 6px;
	height: 28px;
	background: #FDC713;
	margin-right: 13px;
}
.closePop img{
	width: 22px;
	height: 22px;
}
.text_out{
	margin-bottom: 34px;
}
.tip_text{
	font-size: 22px;
	font-weight: bold;
	color: #333333;
	text-align: center;
	line-height: 22px;
}
.call_out{
	width: 562px;
	height: 225px;
	background: #FFF9EF;
	border: 1px solid #FDC713;
	border-radius: 28px;
	margin: 0 auto;
	text-align: center;
	font-weight: bold;
	color: #FDC713;
	padding: 24px;
	box-sizing: border-box;
}
.call_out .img_out{
	font-size: 28px;
	line-height: 28px;
	/*width: 165px;*/
	text-align: center;
	/*display: inline-block;*/
}
.call_out .img_out img{
	margin-right: 18px;
	width: 79px;
	height: 79px;
}
.num_pop{
	margin-top: 30px;
	font-size: 61px;
	line-height: 61px;
}
.pop_btn{
	font-size: 28px;
	font-weight: bold;
	color: #FFFFFF;
	width: 256px;
	height: 70px;
	background: #FDC713;
	border-radius: 14px;
	line-height: 70px;
	cursor: pointer;
	margin: 60px auto 0;
}
