body,p,h2,ul,li{
	margin: 0;
	padding: 0;
	list-style: none;
}
div,p{
	box-sizing: border-box;
}
.bg{
	background-color: #f0f9ff;
}
.mr10{
	margin-right: 10px;
}
.ml30{
	margin-left: 30px;
}
.contain{
	width: 1200px;
	margin: auto;
	position: relative;
}
.ticket_query header{
	background-color: #99cdff;	
	width: 100%;
	min-width: 1200px;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.ticket_query header .contain{
	height: 110px;
	display: flex;
	align-items: center;
}
.ticket_query .logo{
	max-height: 100px;
	max-width: 360px;
}
.ticket_query .web_name{
	font-size: 30px;
	color: #014886;
	margin-left: 22px;
}
.main_box{
	padding-top: 110px;
}
.main_box.pad280{
	margin-top: 540px;
}
.swiper-container {
  width: 100%;
  height: 410px;
  margin-top: 12px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.search_box{
	width: 100%;
	background-color: #99cdff;
	padding: 22px 60px;
	margin-top:10px
}
.search_box.fixed{
	width: 1200px;
	position: fixed;
	top: 120px;
	left: 50%;
	transform: translateX(-50%);
}
.search{
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	font-family: "宋体";
}
.search_select_btn{
	display: flex;
	align-items: center;
}
.search_select_btn li a{
	width: 158px;
	height: 32px;
	display: inline-block;
	text-align: center;
	border-radius: 3px;
	background-color: #0062b6;
	color: #fff;
	font-size: 14px;
	line-height: 32px;
	cursor: pointer;
	font-family: "宋体";
}
.white_bg{
	background-color: #FFFFFF;
	border-radius: 3px;
	width: 350px;
	height: 40px;
	display: flex;
	align-items: center;
	padding: 0 15px 0 0;
	font-size: 14px;
	justify-content: flex-end;
	position: relative;
}
.search_btn{
	width: 102px;
	height: 40px;
	background-color: #c9221a;
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	border-radius: 3px;
}
.table_box{
	margin-top: 12px;
}
.table_box table{
	width: 100%;
	border: #e4e4e4 1px solid;
	text-align: center;
}
.table_box table thead{
	background-color: #fbfbfb;	
}
.table_box table thead td{
	border-bottom: #e4e4e4 1px solid;
}
.table_box table td{
	border: none;
	height: 44px;
	font-size: 12px;
	font-family: "宋体";
}
.table_box table tbody tr:nth-child(odd){
	background-color: #fff;
}
.table_box table tbody tr:nth-child(even){
	background-color: #f6f9fe;
}
footer{
	margin-top: 45px;
	margin-bottom: 30px;
}
.link_nav{
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "宋体";
	font-size: 14px;
	margin-bottom: 12px;
}
.link_nav > li + li:before{
	content: "|";
	padding: 0 10px;
}
.link_nav li a{
	cursor: pointer;
	color: #666666;
}
.copyright{
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "宋体";
	font-size: 14px;
}
.input_select{
	border: none;
	outline: none;
	width: 100%;
	height: 100%;
	background-color: transparent;
	cursor: pointer;
	padding-left: 15px;
	font-family: "宋体";
	font-size: 14px;
}
.select{
	width: 100%; 
	height: 100%; 
	position: absolute;
	cursor: pointer;
	left: 0;
	top: 0;
}

.select p{
	font-size: 14px;
	font-family: "宋体";
	color: #666666;
	padding: 0px 15px;
	line-height: 40px;
}
.select ul{
	width: 100%;
	display: block;
	font-size: 14px;
	background: #FFFFFF;
	position: absolute;
	top: 45px;
	left: 0px;
	max-height: 0px;
	overflow: hidden;
	transition: max-height .3s ease-in;
}
.select ul li{
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0px 15px;
	list-style: none;
	color: #666666;
}
.select ul li.Selected{
	background: #014886;
	color: #FFFFFF;
}
.select ul li:hover{
	background: #D0D0D0;
}
@-webkit-keyframes slide-down{
	0%{transform: scale(1,0);}
	25%{transform: scale(1,1.2);}
	50%{transform: scale(1,0.85);}
	75%{transform: scale(1,1.05);}
	100%{transform: scale(1,1);}
}

.select.open ul{
	max-height: 250px;
	transform-origin: 50% 0;
	-webkit-animation: slide-down .5s ease-in;
	transition: max-height .2s ease-in;
}
.arrow{
	transition: all .3s ease-in;
}
.select.open + .arrow{
	transform: rotate(90deg);
	transition: all .3s ease-in;
	
}

.return_btn{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}
.alert{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 9;
	display: none;
}
.alert.show{
	display: block;
}
.alert_main{
	width: 400px;
	height: 400px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.alert_img{
	width: 220px;
	height: 220px;
}
.alert_head{
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	background-color: #99cdff;
	color: #014886;
	font-size: 20px;
	text-align: center;
	line-height: 50px;
}
.alert_close{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 20px;
	height: 20px;
	z-index: 8;
	transform: rotate(45deg);
	cursor: pointer;
}
.alert_close:before{
	content: "";
	width: 2px;
	height: 24px;
	background-color:#014886 ;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
	
}
.alert_close:after{
	content: "";
	width: 24px;
	height: 2px;
	background-color:#014886 ;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	display: block;
}