.travel3_bg {
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.5s, overflow 0.5s;
}
.travel3_bg.BG {
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	background: rgba(0,0,0,0.5);
	opacity: 1;
	overflow: visible;
	z-index: 20;
}
.travel3 {
	display: none;
}
.travel3.OPEN {
	display: block;
	position: absolute;
	top: 0; right: 0; left: 0;
	margin: auto;
	z-index: 20;
}
.travel3.OPEN .subContent {
	top: 200px;
}
.travel3 .subContent {
	position: fixed;
	top: 300px; right: 0; left: 0;
	margin: auto;
	width: 1000px;
	padding: 80px 50px;
	background: #0e1640;
	transition: top 0.5s;
}
.travel3 .subContent .travel3_close {
	position: absolute;
	top: 25px; right: 30px;
	text-align: center;
	z-index: 30;
}
.travel3 .subContent .travel3_close i {
	display: inline-block;
	width: 44px; height: 44px;
	line-height: 42px;
	font-size: 18px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 100%;
	box-shadow: 0px 1px 3px 0 rgba(0, 0, 0, 0.46);
	transition: background 0.5s, color 0.5s;
}
.travel3 .subContent .travel3_close i:hover {
	color: #0e1640;
	background: #fff;
}
.travel3 .subContent .name {
	font-size: 44px;
	line-height: 44px;
	color: #fff;
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
}
.travel3 .subContent .content {
	padding-top: 5px;
	font-size: 18px;
	line-height: 26px;
	color: #fff;
	word-break: keep-all;
}
.travel3 .subContent .content .dis {
	margin-bottom: 25px;
	font-size: 20px;
}


@media (max-width: 1400px) {
	.travel3.OPEN .subContent { 
		top: 150px;
	}
	.travel3 .subContent {
		top: 220px;
		padding: 50px 30px;
		max-height: 40vh;
	}
	.travel3 .subContent .name {
		font-size: 30px;
		line-height: 30px;
	}
	.travel3 .subContent .content {
		height: calc(40vh - 140px);
		overflow-y: scroll;
	}
}


@media (max-width: 1024px) {
	.travel3.OPEN .subContent {
		top: 75px;
	}
	.travel3 .subContent {
		top: 105px; right: 25px; left: 25px;
		width: auto;
		padding: 20px 25px;
		max-height: calc(100vh - 220px);
	}
	.travel3 .subContent .travel3_close {
		right: 0; left: 0;
		margin: auto;
	}
	.travel3 .subContent .travel3_close i {
		width: 40px; height: 40px;
		line-height: 38px;
		font-size: 24px;
	}
	.travel3 .subContent .name {
		padding-top: 78px;
		font-size: 19px;
		line-height: 19px;
		padding-bottom: 17px;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		text-align: center;
	}
	.travel3 .subContent .content {
		height: calc(79vh - 220px);
		max-height: fit-content;
		padding-top: 10px;
		font-size: 14px;
		line-height: 1.5;
		overflow-y: scroll;
	}
	.travel3 .subContent .content .dis {
		margin-bottom: 17px;
		font-size: 14px;
	}
	
}