@charset "utf-8";

* {
	margin: 0;
	padding: 0;
}

html,
body {
	margin: 0;
	font-size: 14px;
	font-family: "Microsoft Yahei", "微软雅黑";
	width: 100%;
	height: 100%;
	color: #595959;
}

input {
	border: none;
	background: none;
}

p {
	margin: 0 0 2px;
}

input:-webkit-autofill {
	background-color: #FFFFFF;
	/* background-image: none; */
	-webkit-transition: background-color 5000s ease-in-out 0s;
	-o-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
	-webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
}

.container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	height: 100%;
}

.container-main {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.footer {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 65px;
	flex: 0 0 65px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer p {
	font-size: 12px;
}

.footer img {
	width: 23px;
	margin-left: 10px;
}


.search-wrap {
	width: 100%;
	height: 224px;
	/*background: url(../images/search-bg.png) no-repeat center;*/
	background-image: linear-gradient(to top,rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../images/search-bg.png);
	background-size: 100% 100%; 
	/*background-color: rgba(0,0,0,0.4);*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.search-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.search-top img {
	/*width: 170px;*/
}

.search-top h2 {
	font-size: 30px;
	color:#fff;
	font-weight: bold;
	/* line-height: 0; */
}

.search-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 15px;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.search-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90px;
	background: #dc1e32;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}

.table-wrap {
	padding: 20px;
}

.no-data {
	width: 300px;
	height: 200px;
	padding: 10px;
	margin: 20px auto 10px;
	position: relative;
	background: url(../assets/sf-empty.png) no-repeat center 25px;
	background-size: 50%;
	color: #666;
}

.no-data span {
	position: absolute;
	width: 100%;
	bottom: 10px;
	left: 0;
	text-align: center;
}

.table {
	width: 100%;
}

.table thead th {
	font-size: 16px;
}

.table thead th,
.table tbody tr td {
	height: 42px;
	text-align: center;
	max-width: 200px;
}

.table tbody tr td {
	font-size: 14px;
}

.table tbody tr td.active {
	color: #166FE2;
	cursor: pointer;
	position: relative;
}

.table tbody tr:nth-of-type(odd) {
	background: #F8F8F8;
}

.table tbody tr:nth-of-type(even) {
	background: #fff;
}

.router-info {
	display: none;
	position: absolute;
	right: 0;
	top: 42px;
	width: 450px;
	height: 350px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	background: #fff;
	border-radius: 5px;
	z-index: 2;
	color: #595959;
}

.router-info:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	right: 10%;
	top: -10px;
	border-style: solid;
	border-width: 10px;
	border-color: transparent transparent #fff #fff;
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-box-shadow: -2px 2px 3px 0 rgba(0, 0, 0, 0.2);
	box-shadow: -2px 2px 3px 0 rgba(0, 0, 0, 0.2);
}

.router-box {
	width: 450px;
	height: 350px;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: auto;
}

.router-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.router-item:first-child .router-right:before {
	background: #FF160B;
}

.router-item:last-child .router-right {
	padding-bottom: 0;
	border-left: none;
}

.router-left {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.router-left p {
	text-align: right;
}

.router-left p:last-child {
	color: #aaa;
}

.router-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 15px;
	margin-left: 15px;
	position: relative;
	border-left: 1px solid #DDDDDD;
	padding-bottom: 30px;
	text-align: left;
}

.router-right:before {
	position: absolute;
	top: 0px;
	left: -5px;
	content: '';
	width: 10px;
	height: 10px;
	background: #DDDDDD;
	border-radius: 50%;
}




/* 标签输入框样式 */
.tags {
	background: #fff;
	border: 1px solid #fff;
	padding: 4px 6px;
	width: 50%;
	position: relative;
	padding-right: 24px;
}

.tags i {
	position: absolute;
	display: block;
	width: 14px;
	height: 14px;
	background: url(../assets/del.png) no-repeat;
	background-size: 14px;
	right: 5px;
	top: 50%;
	margin-top: -7px;
	cursor: pointer;
}

.tags:hover {
	border-color: #fff;
	outline: 0 none;
}

.tags[class*="span"] {
	float: none;
	margin-left: 0;
}

.tags input[type="text"],
.tags input[type="text"]:focus {
	border: 0 none;
	-webkit-box-shadow: none;
	box-shadow: none;
	display: inline;
	line-height: 22px;
	margin: 0;
	outline: 0 none;
	padding: 4px 6px;
	font-size: 16px;
}

.tags .tag {
	border-radius: 5px;
	background: #eeeeee;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 3px;
	margin-right: 3px;
	padding: 4px 22px 5px 9px;
	position: relative;
	/* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15); */
	-webkit-transition: all 0.2s ease 0s;
	-o-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
	vertical-align: baseline;
	white-space: nowrap;
}

.tags .tag .close {
	bottom: 0;
	color: #aaa;
	float: none;
	font-size: 18px;
	line-height: 20px;
	opacity: 1;
	position: absolute;
	right: 0;
	text-align: center;
	text-shadow: none;
	top: 0;
	width: 18px;
}

.tags .tag .close:hover {
	background-color: rgba(0, 0, 0, 0.2);
}

.close {
	color: #000;
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	opacity: 0.2;
	text-shadow: 0 1px 0 #fff;
}

.close:hover,
.close:focus {
	color: #000;
	cursor: pointer;
	opacity: 0.5;
	text-decoration: none;
}

button.close {
	background: transparent none repeat scroll 0 0;
	border: 0 none;
	cursor: pointer;
	padding: 0;
}

/* 新代码开始  */
ul li {
	list-style-type: none;
}

.container .blue-box {
	width: 1170px;
	background: #1385d6;
	padding: 25px 50px;
	margin: 20px 0;
	color: #fff;
}

.container .blue-box .airplane-div {
	width: 45px;
	height: 40px;
	border-radius: 8px;
	background: #1367b3;
	padding: 0 10px;
}

.container .blue-box .airplane-div .airplane-icon {
	width: 25px;
	height: 25px;
}

.container .blue-box .airplane-div p {
	margin-top: -8px;
	padding: 0 4px;
}

.container .blue-box .flight-div {
	width: 200px;
	margin-left: 50px;
}

.container .blue-box .flight-div .bold {
	font-weight: 700;
	font-size: 18px;
}

.container .blue-box .place-div {
	width: 260px;

}

.container .blue-box .place-div .bold {
	font-weight: 700;
	font-size: 18px;
}

.container .blue-box .type-div {
	width: 360px;
}

.container .blue-box .type-div ul li {
	width: 80px;
	height: 26px;
	float: left;
	margin: 0 8px 8px 0;
	color: #333;
	background: #fff;
	line-height: 26px;
	text-align: center;
	border-radius: 4px;
}

.container .blue-box .plan-div {
	padding: 12px;
	margin: 10px 0 0 50px;
	border-radius: 4px;
	background: #105ca9;
}

.container .route-box {
	width: 1170px;
	padding: 0 50px;
}

.container .route-box .info-div {
	padding: 0 240px;
}

.container .route-box .info-div ul li {
	float: left;
	font-weight: 700;
}

.container .route-box .info-div ul li:first-child {
	width: 60px;
	margin-top: 15px;
	margin-left: 40px;
}

.container .route-box .info-div ul li:nth-child(2) {
	width: 180px;
	margin-left: 50px;
}

.container .route-box .line-div {
	clear: both;
	color: #d35d3e;
	font-weight: 700;
	font-size: 18px;
}

.container .route-box .line-div .place {
	width: 100px;
	height: 30px;
	text-align: center;
}

.container .route-box .line-div .place img {
	width: 25px;
	height: 25px;
}

.container .route-box .explain-div {
	font-weight: 700;
	font-size: 18px;
	color: #d35d3e;
}

.container .route-box .explain-div p {
	width: 80px;
	float: left;
}

.container .route-box .explain-div .p1 {
	margin-left: 240px;
}

.container .route-box .explain-div .p2 {
	margin-left: 85px;
}

.container .route-box .explain-div .p3 {
	margin-left: 85px;
}

.container .route-box .explain-div .p4 {
	margin-left: 100px;
}

.container .route-box .explain-div .p5 {
	margin-left: 45px;
}

.container .route-box .explain-div .p6 {
	margin-left: 45px;
}

/* 第二种情况样式开始 */
.introduce {
	padding: 20px 50px;
}

.introduce p {
	float: left;
	padding: 0 35px;
}

.newContent {
	width: 100%;
	display: flex;
	position: relative;
	overflow: hidden;
}

._TrackContainer .timeLine {
	height: 100%;
	position: absolute;
	top: 0;
	left: 140px;
	transform: translateX(-50%);
	border-right: 4px dotted #999;
}

.newContent>.date_label {
	width: 90px;
	text-align: right;
	line-height: 50px;
	position: relative;
	flex-shrink: 0;
}

.date_label .lineContainer {
	width: 30px;
	position: absolute;
	right: -65px;
	top: 50%;
	transform: translateY(-50%);
}

._TrackContainer>.newContent:first-child .date_label .lineContainer ._dot {
	width: 20px;
	height: 20px;
	background-color: #000;
}

.date_label .lineContainer ._dot {
	width: 10px;
	height: 10px;
	margin: 0 auto;
	transform: rotate(45deg);
	background-color: #999;
}

._TrackContainer>.newContent:last-child .date_label .lineContainer ._dot {
	width: 20px;
	height: 20px;
}

.newContent>.line_kong {
	width: 100px;
	float: left;
	height: 100%;
	flex-shrink: 0;
}

.newsImg {
	width: 240px;
	text-align: left;
	line-height: 50px;
	flex-shrink: 0;
}

.newsText {
	flex-grow: 1;
	line-height: 50px;
}

/* 列表页样式开始 */
.content-wrap {
	background: #f5f5f5;
}

.search-box1 {
	height: 220px;
	background: #ffffff;
	border-radius: 4px;
	text-align: center;
	padding:18px 12px;
	width: 1170px;
	    margin-top: 20px;
}

.search-box1 .search-left {
	margin-bottom: 10px;
	float: left;
	width: 900px;
}

.search-box1 .search-left.search-left.search-left .TextInput {
	width: 300px;
}

.search-box1 .search-left.search-left .TextInput .reqClr {
	color: red;
	padding-right: 4px;
}

.search-box1 .search-left .TextInput input {
	height: 36px;
	padding-left: 5px;
	border: 1px solid #999;
	margin-bottom: 12px;
	width: 180px;
	border-radius: 4px;
}
.search-box1 .search-left .TextInput select {
	height: 36px;
	padding-left: 5px;
	border: 1px solid #999;
	margin-bottom: 12px;
	width: 180px;
	border-radius: 4px;
}

.search-box1 .search-left .TextInput label {
	width: 90px;
	text-align: right;
}

.search-box1 .search-right {
	float: right;
	width: 170px;
	margin-left: 30px;
}
.search-box1 .search-right .btn-div{
	margin-bottom: 20px;
}
.search-box1 .search-right .open-btn{
	text-align: left;
}
.search-box1 .search-right .btn-div button{
	width: 70px;
	height: 35px;
	border: none;
	border-radius: 4px;
	background: #29399b;
	margin-right:10px;
	color:#fff;
}
/* 展开样式开始 */
.open-box{
		height: 160px;
	background: #ffffff;
	border-radius: 4px;
	/* padding:18px 12px; */
	width: 1170px;
	margin-top: 20px;
}
.open-box .open-div{
	width: 500px;
	float: left;
	height: 40px;
	line-height: 40px;
	color: #007AFF;
}
.open-box .open-div .pTittle{
	font-weight: 700;
	padding:0 18px;
	color: #333;
}
.open-box .open-div .text1{
	margin-right: 20px;
	margin-left: 5px;
}
input[type="checkbox"] {
text-indent:0;
margin: 0;
width: 17px;
height: 17px;
text-align:center;
display: inline-block;
vertical-align: middle;
line-height: 15px;
position: relative;
}
input[type="checkbox"]::before {
content: "";
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%; 
border: 1px solid #007AFF;
}
input[type="checkbox"]:checked::before {
content: "\2713";
background-color: #007AFF;
color: #fff;
position: absolute;
top: 0;
left: 0;
width: 100%;
font-size: 12px;
font-weight: bold;
outline: none;
border-color:#ccc; 
border: 1px solid #bdbfc2;
}
/* 隐藏样式已结束 */
.info-box{
	height: 60px;
	line-height: 60px;
}
.info-box .text2{
	color: #007AFF;
	margin:0 20px 0 5px;
}
.flight-table{
	width: 1170px;
}
.flight-table thead{
	background: #007AFF;
	color: #fff;
}
.flight-table tbody tr td{
	background: #fff;
	line-height: 50px;
}
.flight-table tbody tr td .tab-icon{
	float: left;
	width: 50px;
	height: 50px;
	background: #007AFF;
	border-radius: 50%;
	color: #fff;
	line-height: 20px;
}
.flight-table tbody tr td .tab-icon img{
	width: 25px;
	height: 25px;
	padding-top:8px;
}
.flight-table tbody tr td .tab-text{
	line-height: 25px;
}
.flight-table tbody tr td .tab-text .redColor{
	color: red;
}
.flight-table tbody tr td .tab-text .xh{
	padding-right: 20px;
}
.hide-table{
	border-bottom: 10px solid #ddd;
}
.hide-table thead tr th{
	background: #8d93c5;
	color: #343d64;
}
.tab-text .redColor1{
		color: red;
}

.search-box2  {
height: 80px;
line-height: 80px;
background: #ffffff;
width:1170px;
padding: 0 10px;
margin-top: 20px;
}

.search-box2 .TextInput {
	margin-right: 15px;
}

.search-box2 .TextInput .reqClr {
	color: red;
	padding-right: 4px;
}

.search-box2  .TextInput input {
	height: 36px;
	padding-left: 5px;
	border: 1px solid #999;
	margin-bottom: 12px;
	width: 140px;
	border-radius: 4px;
}
.search-box2 .btnBlue{
		width: 70px;
	height: 35px;
	line-height: 35px;
	border: none;
	border-radius: 4px;
	background: #29399b;
	margin-right:10px;
	color:#fff;
}
.search-box2 .btnGray{
		width:120px;
	height: 35px;
	line-height: 35px;
	border: none;
	border-radius: 4px;
	background: #dddddd;
	margin-left: 30px;
	margin-right:10px;
	color:#464646;
}
 .assessment{
	padding:15px;
	width: 1170px;
	background: #e5e5e5;
	
}
 .assessment ul li{
	 float: left;
	 padding-right: 45px;
	 text-align: center;
 }
  .assessment ul li .blueColor{
		color: #3d739b;
	}
	.assessment ul li .textBold{
		font-weight: 700;
		margin-top: 16px;
	}
	.data-div{
		width: 1170px;
		background: #fff;
		padding-top: 20px;
	}
	.data-div .date-left{
		background: #e5e5e5; 
		width: 560px;
		height: 500px;
		padding: 20px;
	}
	.data-div .date-left .data-divTittle{
		width: 100%;
		height: 40px;
		line-height: 40px;
	}
	.data-div .date-left .data-divTittle h4{
		font-weight: 700;
	}
			.data-div .date-left .data-divText{
				height: 78px;
			}
		.data-div .date-left .data-divText ul li{
			float: left;
			padding-right: 20px;
		}
.Redbox {
    height: 400px;
    margin: 20px;
    
}
			.data-div .date-right{
			background: #e5e5e5; 
			width: 560px;
			height: 500px;
			padding: 20px;
		}
		.data-div .date-right h4{
			font-weight: 700;
		}
.tags_enter {
    width:100%;
}

/** 杨承艳添加 开始 **/
.layui-tab {
    margin: 10px 0;
    text-align: left!important;
}
.layui-tab-title {
    position: relative;
    left: 0;
    height: 25px;
    white-space: nowrap;
    font-size: 0;
    border-bottom-width: 2px;
    border-bottom-style: solid;
	border-bottom-color: #007AFF;
    transition: all .2s;
    -webkit-transition: all .2s;
	overflow: hidden;
}

.layui-tab-title-li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
	border-left-width: 1px;
	border-left-style: solid;
    vertical-align: middle;
    font-size: 14px;
    transition: all .2s;
    -webkit-transition: all .2s;
    position: relative;
    line-height: 25px;
	overflow: hidden;
    padding: 0 15px;
    text-align: center;
    cursor: pointer;
	padding-left: 1;
}

.layui-tab-title-li p {
	width: 50%;
	float: left;
}

.li-xq-p {
	text-align: left;
}

.li-select {
	min-width: 130px;
	max-width: 130px;
	background: #007AFF;
	color: #fff;
}

.li-not-select {
	min-width: 10px;
	max-width: 65px;
}

.display-none-p {
	display: none;
}

.hb-dt-search-box1 {
	height: 120px;
	background: #ffffff;
	border-radius: 4px;
	text-align: center;
	padding:18px 12px;
	width: 1170px;
	    margin-top: 20px;
}

.hb-dt-search-box1 .search-left {
	margin-bottom: 10px;
	float: left;
	width: 900px;
}

.hb-dt-search-box1 .search-left.search-left.search-left .TextInput {
	width: 300px;
}

.hb-dt-search-box1 .search-left.search-left .TextInput .reqClr {
	color: red;
	padding-right: 4px;
}

.hb-dt-search-box1 .search-left .TextInput input {
	height: 36px;
	padding-left: 5px;
	border: 1px solid #999;
	margin-bottom: 12px;
	width: 180px;
	border-radius: 4px;
}
.hb-dt-search-box1 .search-left .TextInput select {
	height: 36px;
	padding-left: 5px;
	border: 1px solid #999;
	margin-bottom: 12px;
	width: 180px;
	border-radius: 4px;
}

.hb-dt-search-box1 .search-left .TextInput label {
	width: 90px;
	text-align: right;
}

.hb-dt-search-box1 .search-right {
	float: right;
	width: 170px;
	margin-left: 30px;
}
.hb-dt-search-box1 .search-right .btn-div{
	margin-bottom: 20px;
}
.hb-dt-search-box1 .search-right .open-btn{
	text-align: left;
}
.hb-dt-search-box1 .search-right .btn-div button{
	width: 70px;
	height: 35px;
	border: none;
	border-radius: 4px;
	background: #29399b;
	margin-right:10px;
	color:#fff;
}
/* 展开样式开始 */
.hb-dt-open-box{
		height: 120px;
	background: #ffffff;
	border-radius: 4px;
	/* padding:18px 12px; */
	width: 1170px;
	margin-top: 20px;
}
.hb-dt-open-box .hb-dt-open-div{
	width: 100%;
	float: left;
	height: 40px;
	line-height: 40px;
	color: #007AFF;
}
.hb-dt-open-box .hb-dt-open-div .pTittle{
	font-weight: 700;
	padding:0 18px;
	color: #333;
}
.hb-dt-open-box .hb-dt-open-div .text1{
	margin-right: 20px;
	margin-left: 5px;
}
/* li {
    list-style: none;
} */
/** 杨承艳添加 结束 **/