body {


	font-size: calc(100vw * 14 / 1920);
	color: #fff;
	overflow: hidden;
}

em {
	font-style: normal;
}

img {
	width: 100%;
	height: 100%;
}

.area {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	overflow: hidden;
	z-index: 1;
	background: url(../images/bg.png) center center / 100% 100%;
}

.area iframe {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* 页面布局 */

.header {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: calc(100vw * 93 / 1920);
	background: url(../images/header-bg.svg)no-repeat center center;
	background-size: 100% 100%;
	z-index: 2;

}

.header::after {
	content: '';
	background-image: linear-gradient(90deg, rgb(255, 192, 65) 0%, rgb(255, 246, 228) 50%, rgb(255, 192, 65) 100%);
	width: calc(100vw * 70 / 1920);
	height: 4px;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: calc(100vw * 10 / 1920);
	filter: drop-shadow(0 0 0px rgb(255, 192, 65));
	animation: bottom 3s linear infinite;
}

@keyframes bottom {
	50% {

		transform: translate(-50%, calc(100vw * 4 / 1920));
		filter: drop-shadow(0 0 5px rgb(255, 192, 65)) drop-shadow(0 0 5px rgb(255, 192, 65));
	}
}


.header .title {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	height: calc(100vw * 74 / 1920);
}

.header .title div {
	width: calc(100vw * 221 / 1920);
	background: url(../images/jsjy-title.png)no-repeat center center;
	background-size: 100% 100%;
	height: calc(100vw * 63 / 1920);
	margin-right: calc(100vw * 10 / 1920);
}

.header .title h1 {
	font-size: calc(100vw * 38 / 1920);
	font-weight: 700;
	background: linear-gradient(to bottom, #ffffff 0%, #cfddff 100%);
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: 3.9px;
	line-height: 1;
	font-family: var(--Newzt);

}



.header .control {
	position: absolute;
	right: calc(100vw * 30 / 1920);
	top: calc(100vw * 30 / 1920);
	display: flex;
}

.header .control a {
	display: block;
	width: calc(100vw * 34 / 1920);
	height: calc(100vw * 34 / 1920);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header .control a+a {
	margin-left: calc(100vw * 10 / 1920);
}

.header .control a img {
	width: calc(100vw * 34 / 1920);
	transition: all 0.3s;
}

.header .control a:hover img {
	transform: scale(1.1);
	filter: drop-shadow(0 0 5px #035ef8) drop-shadow(0 0 5px #035ef8);
}

.header .control a:hover::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;

}

.nav-box {
	background: url(../images/nav-bg1.svg)no-repeat center center;
	background-size: 100% 100%;
	height: calc(100vw * 54 / 1920);
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 3;
}

	.nav-box .nav {
		width: calc(100vw * 600 / 1920);
		height: 100%;
		padding: calc(100vw* 0 / 1920) calc(100vw* 30 / 1920);
	}

		.nav-box .nav li {
			display: flex;
			align-items: center;
			justify-content: center;
			height: 100%;
			padding: calc(100vw* 10 / 1920) calc(100vw* 0 / 1920) 0 calc(100vw* 0 / 1920);
			cursor: pointer;
			position: relative;
		}


			.nav-box .nav li:hover .qrcode-box {
				opacity: 1;
				transform: translateY(calc(100vw * 0 / 1920));
				display: block;
			}

.qrcode-box {
	opacity: 0;
	transition: all 0.5s;
	transform: translateY(calc(100vw * -100 / 1920));
	top: calc(100vw * -248 / 1920);
	position: absolute;
	padding: calc(100vw * 20 / 1920);
	width: calc(100vw * 228 / 1920);
	height: calc(100vw * 228 / 1920);
	border-radius: calc(100vw * 10 / 1920);
	background: url(../images/slide-border1-image.png)no-repeat center center;
	background-size: 100% 100%;
	display: none;
}


	.qrcode-box img {
		width: 100%;
		height: 100%;
	}

.nav-box .nav li p {


	background: linear-gradient(to bottom, #e1eeff 10%, #e1eeff 100%);
	-webkit-background-clip: text;
	color: transparent;
	font-size: calc(100vw * 17 / 1920);
	font-family: var(--Newzt);
	margin: 0 calc(100vw * 4 / 1920);
}

.nav-box .nav li.active p,
.nav-box .nav li:hover p {
	background: linear-gradient(to bottom, #fff5d2 10%, #ffd065 100%);
	-webkit-background-clip: text;
	color: transparent;
}





.nav-box .nav li::before {
	content: '';
	width: calc(100vw * 21 / 1920);
	height: calc(100vw * 21 / 1920);

}

.nav-box .nav li.active::before {
	content: '';
	background: url(../images/nav-botton-afr.svg)no-repeat center center;
	background-size: 100% 100%;
	animation: left 1.5s linear infinite;
}


.nav-box .nav li::after {
	content: '';

	width: calc(100vw * 21 / 1920);
	height: calc(100vw * 21 / 1920);

}

.nav-box .nav li.active::after {
	content: '';
	background: url(../images/nav-botton-afr.svg)no-repeat center center;
	background-size: 100% 100%;

	transform: rotate(180deg);
	animation: right 1.5s linear infinite;
}



@keyframes left {
	50% {
		filter: drop-shadow(0 0 5px rgb(255, 192, 65)) drop-shadow(0 0 5px rgb(255, 192, 65));
		transform: translateX(calc(100vw * -6 / 1920));
	}
}

@keyframes right {
	50% {
		filter: drop-shadow(0 0 5px rgb(255, 192, 65)) drop-shadow(0 0 5px rgb(255, 192, 65));
		transform: rotate(180deg) translateX(calc(100vw * -6 / 1920));
	}
}

.main {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.main.masking::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9;
}

.bg_area {
	width: 100%;
	height: 100%;
}

/* .bg_area::before {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, transparent, transparent 55%, rgba(0, 48, 93, 0.6) 85%, #0a1a36 100%),
		linear-gradient(#0a1a36, transparent 10%, transparent 90%, #0a1a36);
	pointer-events: none;
} */

.map-box {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.left_area,
.right_area {
	position: absolute;
	top: calc(100vw * 80 / 1920);
	bottom: calc(100vw * 40 / 1920);
	display: flex;
	flex-direction: column;
	width: calc(100vw * 470 / 1920);
	z-index: 2;
}

.center_area {
	position: absolute;
	top: calc(100vw * 135 / 1920);
	bottom: calc(100vw * 40 / 1920);
	z-index: 2;
	left: calc(100vw * 528 / 1920);
	right: calc(100vw * 528 / 1920);

}

.content {
	width: 100%;
	height: 100%;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.content .block {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 0;
	display: flex;
	flex-direction: column;
	margin-top: calc(100vw * 10 / 1920);
}

.content .block .hd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: calc(100vw * 36 / 1920);
	width: 100%;
	justify-content: space-between;

	z-index: 2;

}

.content .block .hd::after {
	content: '';
	background-image: url('../images/hd-bg.svg');
	background-size: 100% 100%;
	position: absolute;
	left: calc(100vw * 15 / 1920);
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.content .block .hd h5 {
	display: flex;
	align-items: center;
	font-size: calc(100vw * 18 / 1920);

	color: #fff;
	line-height: 1;
	font-family: var(--Newzt);
	padding-bottom: calc(100vw * 2 / 1920);
}

.content .block .hd h5 .ico {
	width: calc(100vw * 26 / 1920);
	height: calc(100vw * 26 / 1920);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: calc(100vw * 10 / 1920);

	animation: rotateY 7s infinite ease-in-out;
}

@keyframes rotateY {
	50% {
		transform: rotate(180deg) translateY(20px);
	}

	100% {
		transform: rotateY(360deg);
	}
}

.content .block:nth-child(2) .hd h5 .ico {
	animation-delay: 1s;
}

.content .block:nth-child(3) .hd h5 .ico {
	animation-delay: 2s;
}

.content .block:nth-child(4) .hd h5 .ico {
	animation-delay: 3s;
}

.content .block .hd h5 .ico::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: linear-gradient(180deg, #a4dfff 0%, #2785fe 100%);
	border-radius: 4px;
	animation: rotate 10s infinite linear;
}

.content .block .hd h5 .ico::after {
	content: '';
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border-radius: 3px;
	background-image: linear-gradient(180deg, #6eb4fd 0%, #0f6bd9 100%);
	position: absolute;
	top: 2px;
	left: 2px;
	animation: rotate 10s infinite linear;
}

.content .block .hd h5 .ico span {
	position: absolute;
	width: calc(100vw * 8 / 1920);
	height: calc(100vw * 8 / 1920);
	border-radius: 1px;
	background: #B5FFF9;

	z-index: 2;
	animation: rotate 10s infinite linear reverse;
}

@keyframes rotate {

	100% {
		transform: rotate(360deg);
	}
}

.content .block .bd {
	flex: 1;
	display: flex;
	flex-direction: column;
	height: 0;
	padding: calc(100vw * 18 / 1920) calc(100vw * 10 / 1920);
}

.left_area {
	left: calc(100vw * 14 / 1920);
	transition: 0.5s all;
}

.right_area {
	right: calc(100vw* -37 / 1920) !important;
	transition: 0.5s all;
}


.hide .left_area {
	left: calc(100vw * -440 / 1920);
}

.hide .right_area {
	right: calc(100vw * -440 / 1920);
}

.hide .right_area .toggle::after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.hide .left_area .toggle::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.content .block .hd .btn {
	position: relative;
	padding: calc(100vw * 5 / 1920) calc(100vw * 10 / 1920);
	background-image: linear-gradient(360deg, #3197f2, #296db3);
	border: 1px solid;
	border-image: linear-gradient(355deg, #58d6ff, #2d88d7) 1;
	border-radius: 1px;
	cursor: pointer;
}

.content .block .hd .btn::after {
	content: "";
	width: calc(100vw * 11 / 1920);
	height: calc(100vw * 10 / 1920);
	margin-left: calc(100vw * 5 / 1920);
	background: url(../images/more.png) no-repeat;
	background-size: 100% 100%;
	z-index: 1;
	transition: all 0.2s;
}

.content .block .hd .btn:hover::after {
	transform: translateX(3px);
}

.content .block .hd .btn span {
	position: relative;
	font-size: calc(100vw * 14 / 1920);
	line-height: 1;
	color: #ffffff;
}

/* 下拉框自定义 */
.select2-container {

	height: 100%;
}

.content .block .hd .select2-container .select2-choice {
	height: calc(100vh * 34 / 1080);
	line-height: calc(100vh * 34 / 1080);
	padding: 0 calc(100vw * 10 / 1920);
	background-image: linear-gradient(360deg, #3197f2, #296db3);
	border-image: linear-gradient(355deg, #58d6ff, #2d88d7) 1;
	border-radius: 1px;
	color: #f5f5f5;
}

.content .block .hd .select2-container .select2-choice .select2-arrow {
	right: 2px;
}

.select2-container .select2-choice>.select2-chosen {
	margin-right: 15px;
}

.select2-drop {
	border: 1px solid #346d85;
	border-top: none;
	box-shadow: none;
	background: rgba(27, 35, 83, .96);
}

.select2-search input {
	border: 1px solid #346d85;
}

.page_pop .select2-container .select2-choice {
	height: calc(100vh * 40 / 1080);
	padding: 0 10px;
	line-height: calc(100vh * 40 / 1080);
	background: rgba(58, 162, 210, 0.2);
	border: 1px solid #346d85;
	border-radius: 0;
	color: #f5f5f5;
}

.page_pop .select2-container .select2-choice .select2-arrow {
	right: 5px;
}


/* 覆盖天地图样式 */

/* 信息窗口主容器 */
.tdt-infowindow {
	width: 276px;
	height: 354px;
	background-image: url('../../content/images/map-infoWindow.png');
	background-size: 100% 100%;
}

/* 底部小三角 */
.tdt-infowindow-tip-container {
	display: none;
}

.tdt-infowindow-close-button {
	top: 22px !important;
	right: 10px !important;
	width: 22px !important;
	height: 22px !important;
	background: url('../../content/images/map-infoWindow-close.png') no-repeat left bottom 100% !important;
	color: #FFF !important;
	z-index: 99;
}

.tdt-container a.tdt-infowindow-close-button:hover {
	color: #FFF !important;
}

.tdt-infowindow-content-wrapper,
.tdt-infowindow-tip {
	width: 100%;
	height: calc(100% - 30px);
	padding: 0 !important;
	background: none !important;
	box-shadow: none !important;
}

.tdt-infowindow-content {
	height: 100%;
	margin: 0 !important;
	padding: 10px 15px 0;
	color: #ffffff;
}

.tdt-infowindow-content p {
	margin: 0;
}

.map-marker-box {
	height: 100%;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.map-marker-box .title {
	font-style: italic;
	font-size: 18px;
	font-weight: 500;
	text-shadow: 0 0 5px #00a0e9, 0 0 8px #00a0e9, 0 0 12px #00a0e9, 0 0 15px #00a0e9;
}

.map-marker-box .img-box {
	width: 100%;
	height: 97px;
	margin-top: 20px;
	border: 1px solid #FFF;
	border-radius: 2px;
}

.map-marker-box .img-box img {
	display: block;
	width: 100%;
	height: 100%;
}

.map-marker-box .text-area {
	/* flex: 1;
	height: 0; */
	margin-top: 10px;
	line-height: 180%;
}

.map-marker-box .row-info {
	margin-top: 5px;
	color: #a0caff;
	font-size: 14px;
}

/* 页面弹窗 */

.page_pop {
	display: none;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: calc(calc(-100vw * 1135 / 1920) / 2);
	margin-top: calc(calc(-100vw * 763 / 1920) / 2);
	width: calc(100vw * 1135 / 1920);
	height: calc(100vw * 763 / 1920);
	background-image: url('../images/pop-bg.png');
	background-size: 100% 100%;
	z-index: 99;
}

.page_pop.show {
	display: block;
}

.page_pop.masking {
	opacity: 0.5;
}

.pop-container .close {
	position: absolute;
	top: calc(100vw * 50 / 1920);
	right: calc(100vw * 35 / 1920);
	width: calc(100vh * 44 / 1080);
	height: calc(100vh * 44 / 1080);
	cursor: pointer;
	z-index: 2;
}

.pop-container .close::before {
	content: '';
	position: absolute;
	width: calc(100vh * 14 / 1080);
	height: calc(100vh * 14 / 1080);
	background-image: url('../images/close.png');
	background-size: 100% 100%;
	transition: all .3s;
}

.pop-container .close:hover::before {
	transform: rotate(90deg);
}

.pop-container .pop_cont {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: calc(100vw * 35 / 1920) calc(100vw * 40 / 1920) calc(100vw * 30 / 1920);
	color: #FFF;
}

.pop-container .pop_cont .title {
	width: calc(100vw * 120 / 1920);
	font-size: calc(100vh * 18 / 1080);
	text-shadow: 0 0 5px #00a0e9, 0 0 8px #00a0e9;
	font-weight: 500;
	text-align: center;
}

.pop-container .pop_cont .info-area {
	padding: calc(100vw * 20 / 1920) calc(100vw * 10 / 1920);
	-webkit-mask-image: linear-gradient(to bottom, #fff, #fff 90%, transparent);
}

.pop-container .pop_cont .select-box {
	margin-top: 15px;
	height: calc(100vh * 40 / 1080);
}

.select-box .select-item {
	display: flex;
	align-items: center;
	max-width: calc(100vw * 180 / 1920);
	height: calc(100vh * 40 / 1080);
	margin-left: 5px;
	padding: 0 10px;
	background: rgba(58, 162, 210, 0.2);
	border: 1px solid #346d85;
}

.select-box .select-item input {
	flex: 1;
	height: 100%;
	color: #f5f5f5;
	background: none;
}

.select-box .select-item input:focus {
	outline: none;
}

.select-box .select-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 5px;
	padding: 0 calc(100vh * 20 / 1080);
	border: 1px solid #25b7fa;
	height: 100%;
	background: #337cca;
	color: #f5f5f5;
	cursor: pointer;
}

.select-box .select-btn:hover {
	background: #1f8af4;
}

input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #f5f5f5;
}

input::-moz-placeholder {
	/* Firefox 19+ */
	color: #f5f5f5;
}

input:-ms-input-placeholder {
	/* IE 10+ */
	color: #f5f5f5;
}

input:-moz-placeholder {
	/* Firefox 18- */
	color: #f5f5f5;
}

/* 滚动 */
.pop-container .scroll-title {
	position: relative;
	display: flex;
	align-items: center;
	margin: 20px 0 0;
	color: #00ffff;
	border: 1px solid #376ca1;
	box-shadow: none;
	background-color: #006fac;
	border-radius: 0;
}

.pop-container .scroll-title .title-th {
	flex: 1;
	width: 0;
	padding: 8px 5px;
	text-align: center;
	font-size: 15px;
}

.pop-container .scroll-box {
	flex: 1;
	height: 0;
	margin: 0;
	padding-bottom: 30px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	color: #c7d9e4;
}

.pop-container .scroll-box>ul {
	flex: 1;
	height: 0;
}

.pop-container .scroll-box>ul>li {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #376ca1;
	border-top-color: transparent;
	border-radius: 0;
	box-sizing: border-box;
	transition: background-color 0.2s;
}

.pop-container .scroll-box>ul>li:nth-child(2n) {
	background-color: #053666;
}

.pop-container .scroll-box>ul>li:hover {
	background-color: #1b4079;
}

.pop-container .scroll-box>ul>li p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pop-container .scroll-box>ul>li .text-td {
	flex: 1;
	width: 0;
	padding: 8px 5px;
	text-align: center;
}

.text-td .btn {
	color: #00eaff;
	cursor: pointer;
}

.text-td .btn:hover {
	color: #FFF;
	text-shadow: 0 0 5px #FFF;
}

.secondary_pop {
	display: none;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: calc(calc(-100vw * 1000 / 1920) / 2);
	margin-top: calc(calc(-100vw * 672 / 1920) / 2);
	width: calc(100vw * 1000 / 1920);
	height: calc(100vw * 672 / 1920);
	background-image: url('../images/pop-bg.png');
	background-size: 100% 100%;
	z-index: 100;
}

.secondary_pop.show {
	display: block;
}

.secondary_pop .pop_cont .title.title {
	width: calc(100vw * 90 / 1920);
}