@CHARSET "UTF-8";

html,body {
	color: #3c3c3c;
	font-size: 15px;
}
.icon {
	/* 通过设置 font-size 来改变图标大小 */
	width: 1em; height: 1em;
	/* 图标和文字相邻时，垂直对齐 */
	vertical-align: -0.15em;
	/* 通过设置 color 来改变 SVG 的颜色/fill */
	fill: currentColor;
	/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
       normalize.css 中也包含这行 */
	overflow: hidden;
}
.body-bg{position: fixed;top: 0;left: 0;right: 0;bottom: 0;width: 100%;height: 100%;background: url("../../../../../images/icon/clientend/clientend-bg.jpg") no-repeat center;background-size: cover;z-index: -1;}
.login-box {
	width: 510px;
	height: 380px;
	margin: 0 auto;
	background-color: #f3f0f9;
	margin: 0 auto;
	text-align: center;
}

.login-head-bg {
	width: 100%;
	height: 165px;
	background: url(../../../../../images/login/bg.jpg) no-repeat;
}

.login-head-bg p {
	position: relative;
	top: 55px;
	text-align: center;
	color:#fff;
}
.login-box .login-head-bg img{
	vertical-align: -18px;
	margin-right: 10px;
}
.login-head-bg span{
	font-size: 24px;
}
.login-box input{
	background: #fff;
	width:250px;
	text-indent:10px;
	border: 1px solid #acbee4;
}
.login-box img{
	vertical-align: middle;
}
.remember-pwd{
	color:red;
	text-align: left;
}
input.checkbox{
	display: none; 	
}  
input.checkbox + label {
	font-size:18px;
    color: #ccc;
    margin-left: 148px;
}
  
input.checkbox:checked + label {
    color: red;
}
input.checkbox + label span{
	font-size: 14px;
	vertical-align: 2px;
}

input.btn-login {
	border-color: #4898d5;
	background-color: #3291da;
	color: #fff;
	font-size:17px;
	text-indent:0 !important;
	cursor: pointer;
	margin-left:37px;
	margin-top:6px;
	width:250px;
}

input.btn-login:hover {
	background-color: #f5f5f5;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #4a8cf7));
	background: -moz-linear-gradient(top, #33a0f5 5%, #4a8cf7 100%);
	background: -o-linear-gradient(top, #33a0f5 5%, #4a8cf7 100%);
	background: -ms-linear-gradient(top, #33a0f5 5%, #4a8cf7 100%);
	background: linear-gradient(to bottom, #33a0f5 5%, #4a8cf7 100%);
	background: -webkit-linear-gradient(top, #33a0f5 5%, #4a8cf7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33a0f5',
		endColorstr='#4a8cf7', GradientType=0);
}
.logo{width: 70%;margin:30px auto 20px;}
.logo>img{max-width: 100%;}

.left-menu {
	width: 140px;
	overflow: hidden;
}
/*谷歌浏览器滚动条自定义 - begin*/
.my-scrollbar::-webkit-scrollbar{
	width: 3px;
	height: 3px;
}
.my-scrollbar::-webkit-scrollbar-button{
	display: none;
}
.my-scrollbar::-webkit-scrollbar-track{
	background-color: rgba(255,255,255,.2);
	border-radius: 3px;
}
.my-scrollbar::-webkit-scrollbar-track-piece{
	/*background-color: rgba(0,0,0,.3);*/
}
.my-scrollbar::-webkit-scrollbar-thumb{
	background-color: #000;
	border-radius: 3px;
}
.my-scrollbar::-webkit-scrollbar-corner{
	background-color: #82afff;
}
/*谷歌浏览器滚动条自定义 - end*/
/*tips*/
[class *=hint--] {
	position: relative;
	display: inline-block
}

[class *=hint--]:after,[class *=hint--]:before {
	position: absolute;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	visibility: hidden;
	opacity: 0;
	z-index: 1000000;
	pointer-events: none;
	-webkit-transition: .3s ease;
	-moz-transition: .3s ease;
	transition: .3s ease;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	transition-delay: 0s
}

[class *=hint--]:hover:after,[class *=hint--]:hover:before {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: .1s;
	-moz-transition-delay: .1s;
	transition-delay: .1s
}

[class *=hint--]:before {
	content: '';
	position: absolute;
	background: 0 0;
	border: 6px solid transparent;
	z-index: 1000001
}

[class *=hint--]:after {
	background: #383838;
	color: #fff;
	padding: 8px 10px;
	font-size: 12px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 12px;
	white-space: nowrap;
	text-shadow: 0 -1px 0 #000;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, .3)
}

[class *=hint--][aria-label]:after {
	content: attr(aria-label)
}

[class *=hint--][data-hint]:after {
	content: attr(data-hint)
}

[aria-label='']:after,[aria-label='']:before,[data-hint='']:after,[data-hint='']:before
	{
	display: none !important
}

.hint--top-left:before,.hint--top-right:before,.hint--top:before {
	border-top-color: #383838
}

.hint--bottom-left:before,.hint--bottom-right:before,.hint--bottom:before
	{
	border-bottom-color: #383838
}

.hint--top:after,.hint--top:before {
	bottom: 100%;
	left: 50%
}

.hint--top:before {
	margin-bottom: -11px;
	left: calc(50% -   6px)
}

.hint--top:after {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%)
}

.hint--top:hover:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px)
}

.hint--top:hover:after {
	-webkit-transform: translateX(-50%) translateY(-8px);
	-moz-transform: translateX(-50%) translateY(-8px);
	transform: translateX(-50%) translateY(-8px)
}

.hint--bottom:after,.hint--bottom:before {
	top: 100%;
	left: 50%
}

.hint--bottom:before {
	margin-top: -11px;
	left: calc(50% -   6px)
}

.hint--bottom:after {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%)
}

.hint--bottom:hover:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px)
}

.hint--bottom:hover:after {
	-webkit-transform: translateX(-50%) translateY(8px);
	-moz-transform: translateX(-50%) translateY(8px);
	transform: translateX(-50%) translateY(8px)
}

.hint--right:before {
	border-right-color: #383838;
	margin-left: -11px;
	margin-bottom: -6px
}

.hint--right:after {
	margin-bottom: -14px
}

.hint--right:after,.hint--right:before {
	left: 100%;
	bottom: 50%
}

.hint--right:hover:after,.hint--right:hover:before {
	-webkit-transform: translateX(8px);
	-moz-transform: translateX(8px);
	transform: translateX(8px)
}

.hint--left:before {
	border-left-color: #383838;
	margin-right: -11px;
	margin-bottom: -6px
}

.hint--left:after {
	margin-bottom: -14px
}

.hint--left:after,.hint--left:before {
	right: 100%;
	bottom: 50%
}

.hint--left:hover:after,.hint--left:hover:before {
	-webkit-transform: translateX(-8px);
	-moz-transform: translateX(-8px);
	transform: translateX(-8px)
}

.hint--top-left:after,.hint--top-left:before {
	bottom: 100%;
	left: 50%
}

.hint--top-left:before {
	margin-bottom: -11px;
	left: calc(50% -   6px)
}

.hint--top-left:after {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
	margin-left: 12px
}

.hint--top-left:hover:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px)
}

.hint--top-left:hover:after {
	-webkit-transform: translateX(-100%) translateY(-8px);
	-moz-transform: translateX(-100%) translateY(-8px);
	transform: translateX(-100%) translateY(-8px)
}

.hint--top-right:after,.hint--top-right:before {
	bottom: 100%;
	left: 50%
}

.hint--top-right:before {
	margin-bottom: -11px;
	left: calc(50% -   6px)
}

.hint--top-right:after {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
	margin-left: -12px
}

.hint--top-right:hover:after,.hint--top-right:hover:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px)
}

.hint--bottom-left:after,.hint--bottom-left:before {
	top: 100%;
	left: 50%
}

.hint--bottom-left:before {
	margin-top: -11px;
	left: calc(50% -   6px)
}

.hint--bottom-left:after {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
	margin-left: 12px
}

.hint--bottom-left:hover:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px)
}

.hint--bottom-left:hover:after {
	-webkit-transform: translateX(-100%) translateY(8px);
	-moz-transform: translateX(-100%) translateY(8px);
	transform: translateX(-100%) translateY(8px)
}

.hint--bottom-right:after,.hint--bottom-right:before {
	top: 100%;
	left: 50%
}

.hint--bottom-right:before {
	margin-top: -11px;
	left: calc(50% -   6px)
}

.hint--bottom-right:after {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
	margin-left: -12px
}

.hint--bottom-right:hover:after,.hint--bottom-right:hover:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px)
}

.hint--large:after,.hint--medium:after,.hint--small:after {
	white-space: normal;
	line-height: 1.4em;
	word-wrap: break-word
}

.hint--small:after {
	width: 80px
}

.hint--medium:after {
	width: 150px
}

.hint--large:after {
	width: 300px
}

.hint--error:after {
	background-color: #b34e4d;
	text-shadow: 0 -1px 0 #592726
}

.hint--error.hint--top-left:before,.hint--error.hint--top-right:before,.hint--error.hint--top:before
	{
	border-top-color: #b34e4d
}

.hint--error.hint--bottom-left:before,.hint--error.hint--bottom-right:before,.hint--error.hint--bottom:before
	{
	border-bottom-color: #b34e4d
}

.hint--error.hint--left:before {
	border-left-color: #b34e4d
}

.hint--error.hint--right:before {
	border-right-color: #b34e4d
}

.hint--warning:after {
	background-color: #c09854;
	text-shadow: 0 -1px 0 #6c5328
}

.hint--warning.hint--top-left:before,.hint--warning.hint--top-right:before,.hint--warning.hint--top:before
	{
	border-top-color: #c09854
}

.hint--warning.hint--bottom-left:before,.hint--warning.hint--bottom-right:before,.hint--warning.hint--bottom:before
	{
	border-bottom-color: #c09854
}

.hint--warning.hint--left:before {
	border-left-color: #c09854
}

.hint--warning.hint--right:before {
	border-right-color: #c09854
}

.hint--info:after {
	background-color: #3986ac;
	text-shadow: 0 -1px 0 #1a3c4d
}

.hint--info.hint--top-left:before,.hint--info.hint--top-right:before,.hint--info.hint--top:before
	{
	border-top-color: #3986ac
}

.hint--info.hint--bottom-left:before,.hint--info.hint--bottom-right:before,.hint--info.hint--bottom:before
	{
	border-bottom-color: #3986ac
}

.hint--info.hint--left:before {
	border-left-color: #3986ac
}

.hint--info.hint--right:before {
	border-right-color: #3986ac
}

.hint--success:after {
	background-color: #458746;
	text-shadow: 0 -1px 0 #1a321a
}

.hint--success.hint--top-left:before,.hint--success.hint--top-right:before,.hint--success.hint--top:before
	{
	border-top-color: #458746
}

.hint--success.hint--bottom-left:before,.hint--success.hint--bottom-right:before,.hint--success.hint--bottom:before
	{
	border-bottom-color: #458746
}

.hint--success.hint--left:before {
	border-left-color: #458746
}

.hint--success.hint--right:before {
	border-right-color: #458746
}

.hint--always:after,.hint--always:before {
	opacity: 1;
	visibility: visible
}

.hint--always.hint--top:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px)
}

.hint--always.hint--top:after {
	-webkit-transform: translateX(-50%) translateY(-8px);
	-moz-transform: translateX(-50%) translateY(-8px);
	transform: translateX(-50%) translateY(-8px)
}

.hint--always.hint--top-left:before {
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px)
}

.hint--always.hint--top-left:after {
	-webkit-transform: translateX(-100%) translateY(-8px);
	-moz-transform: translateX(-100%) translateY(-8px);
	transform: translateX(-100%) translateY(-8px)
}

.hint--always.hint--top-right:after,.hint--always.hint--top-right:before
	{
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	transform: translateY(-8px)
}

.hint--always.hint--bottom:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px)
}

.hint--always.hint--bottom:after {
	-webkit-transform: translateX(-50%) translateY(8px);
	-moz-transform: translateX(-50%) translateY(8px);
	transform: translateX(-50%) translateY(8px)
}

.hint--always.hint--bottom-left:before {
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px)
}

.hint--always.hint--bottom-left:after {
	-webkit-transform: translateX(-100%) translateY(8px);
	-moz-transform: translateX(-100%) translateY(8px);
	transform: translateX(-100%) translateY(8px)
}

.hint--always.hint--bottom-right:after,.hint--always.hint--bottom-right:before
	{
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	transform: translateY(8px)
}

.hint--always.hint--left:after,.hint--always.hint--left:before {
	-webkit-transform: translateX(-8px);
	-moz-transform: translateX(-8px);
	transform: translateX(-8px)
}

.hint--always.hint--right:after,.hint--always.hint--right:before {
	-webkit-transform: translateX(8px);
	-moz-transform: translateX(8px);
	transform: translateX(8px)
}

.hint--rounded:after {
	border-radius: 4px
}

.hint--no-animate:after,.hint--no-animate:before {
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	transition-duration: 0s
}

.hint--bounce:after,.hint--bounce:before {
	-webkit-transition: opacity .3s ease, visibility .3s ease,
		-webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
	-moz-transition: opacity .3s ease, visibility .3s ease, -moz-transform
		.3s cubic-bezier(.71, 1.7, .77, 1.24);
	transition: opacity .3s ease, visibility .3s ease, transform .3s
		cubic-bezier(.71, 1.7, .77, 1.24)
}

ul,li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.left-menu ul {
	width: 100%;
}

.left-menu ul li {
	margin: 6px auto;
	padding: 9px 0;
	width: 108px;
	text-align: center;
	border: 1px solid transparent;
}

.left-menu img {
	margin-bottom: -5px;
}

.left-menu ul li b {
	font-weight: normal;
}

.left-menu ul li a {
	position: relative;
	display: block;
	text-decoration: none;
	color: #fff;
	text-align: center;
}
.left-menu ul li a .icon{font-size: 75px;}
.left-menu ul li a div{margin:5px 0 0 0;}

.left-menu ul li:hover,.left-menu ul li.current {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #37bc95;
	background-color: #fff;
}
.left-menu ul li:hover a:before,.left-menu ul li.current a:before{
	position: absolute;
	top: 50%;
	right: -12px;
	width:0;
	height:0;
	content: '';
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	border-top:12px solid transparent;
	border-bottom:12px solid transparent;
	border-left:12px solid #fff;
}
.left-menu ul li.current a,.left-menu ul li:hover a{
	color:#333;
}
input,select {
	height: 50px;
	line-height: 50px;
	outline: none;
	border: 1px solid #ccc;
	font-size: 16px;
}
input[type=text]{
	border-radius:5px;
	background-color: #eee;
}
input[type=text]:focus {
	background-color: white !important;
}
select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: url(../../../../../scene/res/image/arrow-down2.png)
		no-repeat 99% center;
	background-size: 16px;
	padding-left: 1em;
	color: #333;
	cursor: pointer;
}
.ticket-info input[type=text]{
	margin-right: 15px;
	font-size: 20px;
	text-indent: 15px;
}
.ticket-info input[type=button]{
	width: 90%;
	max-width:116px;
	color: #fff;
	font-size: 20px;
	background-color: #05ab7b;
	border-radius: 5px;
	border: none;
}

.clientend-left {
	float: left;
	width: 70%;
	min-width: 830px;
}

.clientend-right {
	float: right;
	width: 26%;
}

.clientend-select {
	width: 100%;
}

.ticket-info {
	padding: 10px 15px 0;
	border-radius: 5px;
}

.saletable {
	border: none;
	width: 100%;
	text-align: center;
	table-layout: fixed;
	white-space: nowrap;
	border-bottom:1px solid #ccc;
}

.saletable thead {
	font-size: 18px;
	color: #fff;
	background-color: #05ab7b;
	line-height: 50px;
}

.saletable tbody tr {
	line-height: 110px;
	font-size: 18px;
}

/*.saletable tbody tr:nth-child(odd) {*/
	/*background-color: #c1e3f7;*/
/*}*/
.color_f18358{color: #f18358;}
.price {
	color: #f18358;
}

.text-left {
	text-align: left;
	text-indent: 1em;
}

.operate {
	
}

.operate input {
	font-size: 18px;
	height: 52px;
	width: 120px;
	border: 1px solid #ccc;
	text-align: center;
}

.operate span {
	font-size: 30px;
	font-weight: bold;
	display: inline-block;
	line-height: 50px;
	width: 50px;
	background-color: #f0f3f5;
	border: 1px solid #ccc;
	vertical-align: bottom;
	cursor: pointer;
	background: #aaa;
	color: #fff;
}

.operate span:hover {
	background: #fea22e;
}

.ticket-tips {
	color: #05ab7b;
	background-color: #e6f7f1;
	font-size: 20px;
	line-height:54px;
	margin: 15px 0;
	text-indent: 17px;
}

.travel-date {
	color: #fff;
	display: inline-block;
	line-height: 40px;
}

input.Wdate {
	font-size: 18px;
	text-indent: 6px;
	height: 50px;
	width: 100%;
	border-radius: 5px;
}

.settle-area {

}

.settle-area p {
	color: #fff;
}

input.btn-pay {
	background-color: #05ab7a;
	color: #fff;
	margin: 0 auto;
	border: 0;
	outline: none;
	width: 100%;
	cursor: pointer;
	font-size: 24px;
	border-radius: 5px;
}

input.btn-pay:hover {
	background-color: #00c188;
}

.paytypelist {
	/* margin: 35px 0; */
}
.paytypelist>.icon{font-size: 60px;margin: 30px 35px 0 0;cursor: pointer;}
.paytypelist>.icon:nth-child(3n){margin-right: 0;}
.scan-code {
	width: 300px;
}

.clientend-button {
	background-color: #05ab7a;
	color: #fff;
	border: 0;
	height: 50px;
	width: 116px;
	outline: none;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 18px;
	margin-left: 20px;
}

.clientend-button:hover {
	background-color: #00c188;
}

.layer_notice{width: 360px;clear: both;}
.layer_notice button{float: right;padding: 0 15px;margin: 10px 15px;height: 34px;line-height: 34px;font-size: 16px;color: #fff;background-color: #05ab7b;cursor:pointer;outline: none;
	border:1px solid #05ab7b;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;}
/********新改版**********/
.prod-list{
	width:100%;
	float:left;
	padding-bottom:15px;
	margin-bottom:15px;
	border-bottom: 1px solid #e5e7f6;
}
.prod-list li{
	float:left;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 2px solid #e5e7f6;
	width: 100px; 
	height:60px;
	text-align: center;
	margin: 0 10px 10px 0;
}
.prod-list li span{
	margin-top: 20px;
	display: block;
}
h3{
	clear: both;
}
/* 显示隐藏上方巨鹿横向轮播图 */
.btn-updown{
	width:52px;
	height:22px;
	margin: 0 auto;
	/* background-color: red; */
	cursor: pointer;
	background: url(/images/icon/updown.png) no-repeat;
	background-size:52px 44px;
	background-position: 0 -22px;
}
/* 到黄时间样式 */
input[name="arrivetime"].Wdate{
	width:160px;
	vertical-align: middle;
	border-style: none;
	border: 1px solid #ccc;
}
#product-swiper{
	position: relative;
	height:192px;
	padding: 0 30px;
	margin-bottom:10px;
	overflow: hidden;
	transition: all .3s;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
}
.swiper-container{padding: 10px 0;height: 95px;}
.swiper-slide{position: relative;display: inline-block;width: 240px;height: 89px;margin: 24px 27px 0 0;background-image: url(../../../../../images/icon/clientend/ticket.png);background-position: center;background-size: cover;}
.swiper-slide.active:before{position: absolute;right: -8px;top: -8px;width: 30px;height: 30px;content: '';background:url(../../../../../images/icon/clientend/ticket-hover.png) no-repeat center;background-size: cover;}
.swiper-button-next, .swiper-button-prev{width: 25px;height: 95px;top: 10px;margin-top: 0;border-radius: 5px;background-color: rgba(0,0,0,.7);background-size: 20px auto;}
.swiper-button-next{right: 0;}
.swiper-button-prev{left: 0;}
.swiper-slide>table{width: 180px;margin:15px 0 0 30px;}
.swiper-slide>table td div{max-height: 60px;margin: 0 4px 0 0;font-size: 16px;line-height: 1.5;color: #333;}
.swiper-slide>table td div>img{width: 54px;height:54px;border-radius: 100%;border: 3px solid #fff;overflow: hidden;}
.swiper-slide>table tr td:last-child div{max-height: 48px;overflow:hidden;}
.lj_box{
	margin-top: 10% !important;
	width: 450px;
    height: 380px;
    background-color: #ffffff;
    border-radius: 25px;
    margin: 0 auto;
    box-shadow: 3px 3px 7px #525151;
}
.lj_box_top{
	width: 450px;
	height: 100px;
	background-color: #06ad7d; 
	border-radius: 25px 25px 0px 0px;
	text-align: center;
} 
.lj_username{
    position: relative;
    width: 356px;
    height: 60px;
    margin-top: 7%; 
    margin-left: 16%;
    padding: 0px; 
}
.lj_password{
    position: relative;
    width: 356px;
    height: 80px;
    margin-top: 3%; 
    margin-left: 16%;
    padding: 0px; 
}
.lj_nameip{
    width: 290px;
    height: 50px;
    border: 1px solid #dadada;
    background-color:#eeeeee!important;
    padding-left: 50px;
    border-radius: 10px!important;
    border:2px solid #dcdcdc;
}
.lj_icon-user{
	position: absolute;left: 0;z-index:5;
	background-image: url(http://qmp-file.oss-cn-shenzhen.aliyuncs.com/AppDatas/theatre/ro.png);
	background-repeat: no-repeat;
	background-position: 0px 0px; 
	margin-top : 10px; 
	margin-left: 10px; 
	width: 20px;
	height: 40px; 
}
.lj_icon-password{
	position: absolute;left: 0;z-index:5;
	background-image: url(http://qmp-file.oss-cn-shenzhen.aliyuncs.com/AppDatas/theatre/pwd.png);
	background-repeat: no-repeat;
	background-position: 0px 0px; 
	margin-top : 10px; 
	margin-left: 10px; 
	width: 20px;
	height: 40px; 
}
.lj_logindiv{
	margin: 0 auto;
	width: 300px;
}
.lj_lbt{
    width: 293px;
    height: 55px; 
    background-color: #02c38a;
    color: #fffefe;
    font-size: 25px; 
    cursor: pointer;
}
@media screen and (max-width:1280px){
	
}


/* 会员信息 */
.member-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: #fff;
    color: #333;
    overflow: hidden;
    z-index: 9999;
}

.member-tit {
    position: relative;
    line-height: 49px;
    padding: 0 20px;
    color: #fff;
    background: #05ab7b;
}

.closeMember {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.member-top {
    position: relative;
    height: 120px;
    background: #eefefa;
}

.member-top > img {
    position: absolute;
    left: 58px;
    top: 22px;
    width: 83px;
    height: 83px;
}

.member-top > div {
    position: absolute;
    left: 170px;
    top: 23px;
    font-size: 18px;
    color: #aaa;
}

.member-top > div span {
    font-size: 21px;
    color: #05ab7b;
}

.member-layer > table {
    width: 496px;
    margin: 0 auto;
}

.member-layer > table td {
    line-height: 50px;
    padding: 0 10px;
    border-top: 1px solid #eee;
}

.member-layer > table tr td:first-child {
    text-align: left;
    color: #aaa;
}

.member-layer > table tr td:last-child {
    text-align: right;
}

.memberBtn {
    display: inline-block;
    line-height: 50px;
    width: 130px;
    margin: 0 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ec9316;
    color: #fff;
}

.msgCode {
    line-height: 50px;
    width: 150px;
    text-align: center;
    border: none;
}

.msgBtn {
    display: inline-block;
    line-height: 40px;
    width: 110px;
    color: #fff;
    text-align: center;
    background: #ec9316;
    cursor: pointer;
}

.msgBtn.disabled {
    background: #ccc;
}

.selectAll {
    margin-right: 100px;
}

.selectAll > input, .selectAll > span {
    margin: 0 0 0 5px;
    vertical-align: middle;
}

#memberRecharge {
    display: inline-block;
    line-height: 40px;
    width: 100px;
    margin: 5px;
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
    background-color: #ec9316;
    color: #fff;
}

.recharge-layer {
    text-align: center;
    height: 100%;
    background-color: #eefefa;
}

.recharge-layer > div > table {
    width: 100%;
}

.recharge-layer > div > table > tr {
    padding: 10px;
}

.table-title {
    text-align: right;
}

.table-content {
    text-align: left;
}

.recharge-top {
    position: relative;
    height: 220px;
    background: #eefefa;
}

.recharge-number {
    font-size: 21px;
    color: #05ab7b;
}

.pay-btn {
    display: inline-block;
    position: relative;
    margin-right: 30px;
    background-color: whitesmoke;
}

.pay-img {
    width: 100px;
    height: 100px;
}

.pay-selected {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
}

.recharge-input {
    border-radius: 5px;
}

.recharge-back {
    text-align: center;
    width: 20%;
    line-height: 49px;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
}

.recharge-back:active {
    background-color: grey;
}

#j_seat_obligate {
    border-color: red;
    background-color: #3291da;
    height: 30px;
    background: -webkit-linear-gradient(top, red 5%, red 100%);
    display: -webkit-inline-box;
    color: #fff;
    line-height: 30px;
    width: 70px;
    padding-left: 18px;
    font-size: 12px;
    cursor: pointer;
}

.areaMap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    visibility: hidden;
    transition: all .2s;
    background: rgba(0, 0, 0, .3);
}

.areaMap.active {
    z-index: 100;
    visibility: visible;
}

.areaCon {
    position: absolute;
    width: 502px;
    height: 540px;
    top: 50%;
    left: 50%;
    margin: -270px 0 0 -251px;
    border: 1px solid #ccc;
}

.areaTop {
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
    background: #eee;
}

.areaTitle {
    font-size: 18px;
}

.areaClose {
    position: absolute;
    right: 0;
    top: 3px;
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
    font-size: 14px;
}

#image-map {
    width: 100%;
    height: 500px;
    position: relative;
}

.leaflet-clickable {
    stroke-opacity: 0;
    fill-opacity: 0;
}

/* 虚拟键盘开始 */
#shadow {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	position: absolute;
	z-index: 88888888;
	display: none;
}

/* 虚拟键盘 开始 */
#virtual-keyboard {
	width: 400px;
	height: 475px;
	position: absolute;
	z-index: 99999999;
	top: 50%;
	left: 50%;
	margin-top: -240px;
	margin-left: -200px;
	border-radius: 5px;
	overflow: hidden;
	display: none;
}

#virtual-keyboard div.xianshi {
	width: 400px;
	height: 75px;
	;
	line-height: 75px;
	font-size: 30px;
	box-sizing: border-box;
	padding-left: 10px;
	padding-right: 10px;
	overflow: hidden;
	background-color: #ccc;
	position: relative;

}

#virtual-keyboard div.cancels {
	position: absolute;
	width: 75px;
	height: 75px;
	line-height: 70px;
	text-align: center;
	font-size: 50px;
	top: 0;
	right: 0;
	background-color: #05ab7a;
	z-index: 99;
	color: #fff;
	cursor: pointer;
}

#virtual-keyboard div.shuru {
	width: 400px;
	height: 400px;
	background-color: #fff;
	cursor: pointer;
}

#virtual-keyboard div.shuru div.left {
	height: 400px;
	width: 300px;
	float: left;
	font-size: 25px;
	color: green;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

#virtual-keyboard div.shuru div.left div {
	width: 100px;
	height: 100px;
	line-height: 100px;
	text-align: center;
	box-sizing: border-box;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-color: #efefef;
}

#virtual-keyboard div.shuru div.right {
	width: 100px;
	height: 400px;
	float: right;
	font-size: 25px;
	color: #05ab7a;
}

#virtual-keyboard div.shuru div.right div {
	width: 100px;
	height: 200px;
	line-height: 200px;
	text-align: center;
	box-sizing: border-box;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-width: 1px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-color: #efefef;
}

#virtual-keyboard div.shuru div.right div:first-child {
	color: red;
}

/* 虚拟键盘 结束 */


