/*导航栏*/
.menu{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: rgba(0,0,0,.2);
	z-index: 20;
	padding-left: 8%;
	padding-right: 14%;
}
.menu .logo{
	width: 140px;
	height: 70px;
	display: inline-block;
}
.menu .logo img{
	width: 100%;
	height: 100%;
}
.menu > ul{   
	display: inline-block;
	height: 100%;
	position: relative;
	float: right;
	vertical-align: top;
	padding: 0;
}
.menu > ul > li{
	display: block;
	height: 70px;
	padding: 0 10px;
	float: left;
	position: relative;
	background: transparent;
}
.menu > ul > li div{
	padding: 0 20px;
	height: 70px;
	line-height: 70px;
	font-size: 15px;
	cursor: pointer;
	color: #fff;
}
.menu > ul > li.current div{
	color: rgb(0,255,251);
}
.menu > ul > li div:hover{
	color: rgb(0,255,251);
}
.menu > ul > li:nth-child(3):hover .sub_menu{
	/*display: block;*/
}
.menu > ul > li .sub_menu{
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	display: none;
	background: rgba(0,0,0,.2);
	-webkit-transition:all .4s ease;
	-moz-transition:all .4s ease;
	-ms-transition:all .4s ease;
	-o-transition:all .4s ease;
	transition:all .4s ease;
}
.menu > ul > li.animated .sub_menu > li{
	-webkit-animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
	animation: inFromLeft 0.6s both cubic-bezier(0.7, 0, 0.3, 1);
}
.sub_menu li{
	line-height: 30px;
	display: block;
	width: 100%;
	height: 30px;
	text-align: center;
	position: relative;
	border-bottom: 1px solid rgba(240,240,240,.65);
}
.sub_menu li:last-child{
	border-bottom: none;
}
.sub_menu li:hover{
	background: rgb(234,241,247);
	text-indent: 20px;
}
.sub_menu li:hover a{
	color: rgb(0,255,251);
}
.sub_menu li a{
	font-size: 13px;
	color: #fff;
}
.menu .menu_slide{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 90px;
	height: 3px;
	border-bottom: 3px solid rgb(0,255,251);
	-webkit-transition:all .6s ease;
	-moz-transition:all .6s ease;
	-ms-transition:all .6s ease;
	-o-transition:all .6s ease;
	transition:all .6s ease;
}
/*登陆按钮*/
.reg_box,
.login_box{
	position: absolute;
	right: 30px;
	top: 20px;
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	border: 1px solid rgba(255,255,255,.6);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}
.login_box{
	right: 100px;
}
.reg_box a,
.login_box a{
	color: #fff;
	font-size: 15px;
}
.reg_box a:hover,
.login_box a:hover{
	color: #fff;
	text-decoration: none;
}
/*底部*/
.footer{
	width: 100%;
	height: 300px;
	position: relative;
	color: #fff;
}
.footer_bg,
.footer_content{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.footer_bg{
	background: url(../images/foot_bg.png) 0 0 no-repeat;
	background-size: 100%;
	z-index: 10;
}
.footer_content{
	background: rgba(0,0,0,.8);
	z-index: 20;
}
.footer_content p{
	margin: 30px;
	line-height: 40px;
	font-size: 30px;
	text-align: center;
	position: relative;
}
.footer_content > ul{
	list-style: none;
	padding: 0 10%;
	margin-top: 50px;
}
.footer_content > ul li{
	display: inline-block;
	vertical-align: top;
	width: 33.3%;
}
.footer_content > ul dd,
.footer_content > ul dd a{
	line-height: 30px;
	color: #fff;
}
.footer_content > ul dd:hover{
	color: rgb(104,252,252);
}
.footer_content > ul li:nth-child(2){
	text-align: center;
}
.footer_content > ul li:nth-child(3){
	text-align: right;
}
dl.phone dd:nth-child(1){
	line-height: 20px;
    font-size: 15px;
    color: rgb(104,252,252);
}
dl.phone dd:nth-child(2){
	line-height: 45px;
    font-size: 30px;
    font-weight: bold;
    font-style: italic;
    color: rgb(104,252,252);
}
.qr_code {
	position: absolute;
	width: 120px;
	height: 120px;
	bottom: 0;
	left: 50%;
	margin-left: -60px;
}
.qr_code img{
	width: 100%;
	height: 100%;
}
.input_box{
    margin-left: 8px;
    width: 150px;
    height: 26px;
    padding: 1px 10px;
    border: 1px solid #B3B3B3;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    vertical-align: top;
}
.input_box input{
	width: 120px;
    height: 23px;
    line-height: 23px;
    vertical-align: top;
    background: transparent;
    border: none;
    outline: 0 none;
    padding: 0;
    font-size: 15px;
}
.body_content{
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0 8%;
	padding-top: 40px;
}
.block_title{
	width: 100%;
	height: 30px;
	/*line-height: 30px;*/
	text-align: left;
	padding: 0px 9px;
	/*color: #fff;*/
	/*font-size: 16px;*/
	/*background: rgb(0,204,204);*/
    background-color: rgb(217, 237, 247);
    color: #000;
    font: 15px "Microsoft Yahei";
    line-height: 30px;
}
.block_content{
	width: 100%;
	height: auto;
	border: 1px solid rgb(217,237,247);
	border-top: none;
	margin-bottom: 21px;
}
.block_content table{
	width: 100%;
	text-align: center;
	font-size: 14px;
    height:auto;
}
.block_content tbody tr td{
	vertical-align: middle;
}
.block_content table tr{
	line-height: 30px;
	margin: 3px 0;
}
.block_content table thead tr{
	font-weight: bold;
}
.block_content table tbody tr td a{
	font-size: 14px;
	line-height: 20px;
	padding: 0 5px;
	display: block;
}
.block_content table tbody tr td a:last-child{
	margin-bottom: 4px;
}
.block_content table tbody tr td a:first-child{
	margin-top: 4px;
}
.input_item{
	margin: 2px 8px;
	margin-left: 2px;
	width: 250px;
	height: 30px;
	float: left;
}
.input_item > span{
	display: inline-block;
    vertical-align: top;
    width: 80px;
    height: 25px;
    line-height: 25px;
    text-align: right;
}
.input_item > .input_box{
	display: inline-block;
}
.input_item > .input_box.id_number_{
	width: 200px;
	margin-left: 2px;
}
.li_content > select{
	width: 150px;
	height: 25px;
	border-radius: 3px;
}
.input_item > select{
	width: 100px;
	height: 26px;
	display: inline-block;
	border-radius: 4px;
	margin-left: 8px;
}
.li_content > select:focus,
.input_item > select:focus{
	outline: 0 none;
}
#add_passenger{
	float: left;
	width: 80px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	margin: 10px 8px;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	background: rgb(0,204,204);
	color: #fff;
}
.actions{
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 15px;
}
.actions a{
	color: #fff;
	padding: 7px 15px;
	background: rgb(0,204,204);
	border-radius: 4px;
}
.actions a:first-child{
	margin-right: 15px;
}
.passenger_item{
	width: 100%;
	height: 100px;
	position: relative;
	margin:5px 0;
}
.delete_passenger{
	width: 40px;
	height: 40px;
	position: absolute;
	top: 30px;
	right: 50px;
	line-height: 40px;
	display: none;
	cursor: pointer;
}
.delete_passenger i{
	color: rgb(0,204,204);
}
.passenger_item:hover .delete_passenger{
	display: block;
}
table#order_payment tr{
	height: 50px;
	line-height: 50px;
	font-size: 16px;
}
td span.red{
	color: red;
	font-weight: bold;
	margin-left: 5px;
}
.methods {
    /* margin-top: 20px; */
    display: block;
    width: 100%;
    padding-left: 20px;
    height: 30px;
    line-height: 30px;
    list-style: none;
    margin: 40px auto;
    margin-bottom: 0;
    border-bottom: 1px solid rgb(217,237,247);
    border-top: none;
}
.methods li.current {
    /* border-bottom: none; */
    background: #fff;
    color: rgb(0,204,204);
}
.methods li:first-child {
    border-left: 1px solid rgb(217,237,247);
}
.methods li {
    display: block;
    height: 30px;
    line-height: 30px;
    float: left;
    padding: 0 10px;
    border-right: 1px solid rgb(217,237,247);
    border-top: 1px solid rgb(217,237,247);
    font-size: 15px;
    cursor: pointer;
    color: gray;
    /* background: #F8F8F8; */
}
.methods_content{
	border: 1px solid rgb(217,237,247);
	border-top: none;
	height: auto;
	padding: 10px 0;
}
.methods_content img{
	margin: 0 8px;
	cursor: pointer;
	border: 1px solid transparent;
}
.methods_content .chosen{
	border-color: green;
}
.bank_item{
	position: relative;
	padding-left: 30px;
	height: 50px;
	width: 200px;
	float: left;
	margin: 10px;
	margin-right: 20px;
}
.bank_item div{
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.bank_item input{
	position: absolute;
	width: 15px;
	height: 15px;
	left: 0;
	top: 17px;
}
.bank_item .zgyh{
	background: url(../images/zgyh.png);
	background-size: 100%;
	background-clip: content-box;
}
.bank_item .gsyh{
	background: url(../images/gsyh.png);
	background-size: 100%;
	background-clip: content-box;
}
.bank_item .nyyh{
	background: url(../images/nyyh.png);
	background-size: 100%;
	background-clip: content-box;
}
.method_two,
.method_three,
.method_four,
.method_five{
	display: none;
}
.method_four_pay{
	display: inline-block;
	color: #fff;
	padding: 5px 15px;
	background: rgb(0,204,204);
	border-radius: 4px;
	margin-left: 20px;
	margin-top:10px;
}
.method_four .input_item{
	float: none;
	display: inline-block;
	vertical-align: top;
}
.method_four{
	text-align: center;
}
p.notes{
	text-align: left;
	color: gray;
	padding-left: 10px;
}
span.outstand{
	color: red;
	font-size: 22px;
}
#order_payment select{
	width: 100px;
	height: 30px;
	display: inline-block;
	border-radius: 4px;
	margin-left: 8px;
}
#order_payment select:focus{
	outline: 0 none;
}
#payment_,
#tgq{
	overflow-x: auto;
}
#payment_ table,
#tgq table{
	min-width: 1500px;
}
#payment_ table thead,
#tgq table thead,
#ksgz table thead{
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 16px;
    background: rgb(0,204,204);
}
#footer{
	margin-top: 20px;
	text-align: center;
}
#footer span{
	color: blue;
    padding: 0 5px;
}
#footer input {
    padding: 2px 10px;
    background: transparent;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.2);
    margin: 0 5px;
    cursor: pointer;
}
#footer input.index_{
	width: 30px;
}
#footer input:focus{
	outline: 0 none;
}
.input_item label{
	line-height: 30px;
}
.input_item select{
	width: 150px;
}
.input_item.location select{
	width: 60px;
}
.input_item.location select.second{
	margin-left: 0;
}
.input_item > a{
	line-height: 30px;
	padding: 0 5px;
	border: 1px solid blue;
}
.now_ {
	height: 30px;
	line-height: 30px;
}
.now_ .input_box{
	display: inline-block;
}
.now_ > span{
	color: #ADADAD;
	margin-left: 8px;
}
.now_ > span span.red{
	color: red;
}
.btn_select {
    color:#fff;
    padding:0px 8px;
    background:#0CC none repeat scroll 0% 0%;
    border-radius: 5px;
    outline:0 none;
    height:25px;
    line-height:24px;
    border:none;
    cursor:pointer;
}
.btn_page {
    color:#fff;
    padding:0px 8px;
    background:#0CC none repeat scroll 0% 0%;
    border-radius: 5px;
    outline:0 none;
    height:20px;
    line-height:19px;
    border:none;
}
.book_header {
    background:rgb(0,204,204);
}
.book_columnheader {
    background:#ffffff url() 50% 50% repeat-x;
}
.book_pager {
    background: #ffffff url() 50% 50% repeat-x;
} 
.input_item{
    width:300px;
}
.input_item > .input_box{
    *display:inline;
    zoom:1;
}