html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
a,
img,
p,
span,
i,
em,
b,
strong,
br,
hr,
form,
input,
select,
label,
button,
table,
thead,
tbody,
tfoot,
th,
td,
iframe,
figure,
figcaption,
abbr,
acronym,
address,
caption,
cite,
dfn,
var,
del,
pre,
code,
caption,
fieldset,
legend,
blockquote,
details,
hgroup,
menu,
sub,
sup,
ins,
header,
nav,
aside,
section,
aside,
footer,
figure,
meter,
progress,
time,
audio,
source,
video,
command,
datalist,
details,
canvas,
embed,
hgroup,
keygen,
mark,
output,
ruby {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	background-color: #F2F2F2;
	overflow: hidden;
}

#app {
	position: relative;
	height: 100%;
	width: 1200px;
	margin: auto;
}

#three-frame {
	width: 100%;
	height: 100%;
	position: absolute;
}

.earthShadow {
	width: 100%;
	height: 100px;
	background: url(../image/earth-shadow.png) 50% no-repeat;
	position: absolute;
	top: 84%;
}

.show_info {
	position: absolute;
	z-index: 99;
	bottom: 25%;
	right: 18%;
	width: 250px;
	height: 250px;
	border-radius: 125px;
	background-color: #263aee;
	padding: 20px 20px 20px;
}

.fade-enter-active,
.fade-leave-active {
	transition: all 0.5s;
}

.fade-enter,
.fade-leave-to {
	bottom: 12%;
	right: 12%;
	transform: scale(0);
}

.show_info .box {
	height: 100%;
	width: 100%;
	color: #FFFFFF;
	overflow: hidden;
}

.show_info .show_title {
	margin-top: 24px;
	text-align: center;
}

.show_info .show_title .img {
	height: 30px;
}

.show_info .show_title img {
	border-radius: 5px;
	height: 30px;
}

.show_info .show_title .name {
	margin-top: 10px;
	font-size: 24px;
	color: #FFFFFF;
}

.show_info .content {
	font-size: 14px;
	text-align: center;
}

.show_info .content p:first-child {
	margin-top: 10px;
}

.show_info .content p {
	margin-top: 5px;
}

.show_info .content i {
	font-style: normal;
	font-size: 24px;
	padding: 5px;
	color: #faa104;
}

#search {
	position: absolute;
	top: 180px;
	right: 250px;
	text-align: center;
	z-index: 9999;
}

.pic {
	width: 40px;
	height: 40px;
	background-color: #263aee;
	border-radius: 50%;
	overflow: hidden;
}

.pic .img {
	width: 100%;
	padding: 20%;
}

.ripple {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 40px;
	height: 40px;
	border: 7px solid #263aee;
	border-radius: 50%;
	opacity: 0.0;
}

.ripple.anim1 {
	transform: scale(1.4);
	opacity: 0.4;
}

#search:hover .anim1 {
	animation: change 2.4s linear infinite;
}

#search:hover .anim2 {
	animation: change 2.4s linear infinite;
	animation-delay: 0.6s;
}

#search:hover .anim3 {
	animation: change 2.4s linear infinite;
	animation-delay: 1.2s;
}

@keyframes change {
	0% {
		transform: scale(1.4);
		opacity: 0.4;
	}

	25% {
		transform: scale(1.6);
		opacity: 0.3;
	}

	50% {
		transform: scale(1.8);
		opacity: 0.0;
	}

	51% {
		transform: scale(1);
		opacity: 0.0;
	}


	75% {
		transform: scale(1.2);
		opacity: 0.5;
	}

	100% {
		transform: scale(1.4);
		opacity: 0.4;
	}
}

.searchBox {
	user-select: none;
}

#searchBox {
	position: absolute;
	z-index: 999;
	top: 28%;
	right: 0;
	width: 385px;
	box-sizing: border-box;
	background-color: #FFFFFF;
	padding: 15px 15px 15px;
	border-radius: 5px;
	box-shadow: 0px 1px 10px #c2c2c2;
	animation: animSearchBox 1s;
}

@keyframes animSearchBox {
	0% {
		top: 8%;
		right: 8%;
		transform: scale(0);
	}

	100% {
		top: 28%;
		right: 0;
		transform: scale(1);
	}
}

@media screen and (min-width: 1100px) and (max-width: 1200px) {
	#searchBox {
		right: 26%;
		transform: translate(50%, 0);
	}

	@keyframes animSearchBox {
		0% {
			top: 8%;
			right: 8%;
			transform: scale(0) translate(50%, 0);
		}

		100% {
			top: 28%;
			right: 26%;
			transform: scale(1) translate(50%, 0);
		}
	}
}

@media screen and (min-width: 960px) and (max-width: 1100px) {
	#searchBox {
		right: 40%;
		transform: translate(50%, 0);
	}

	@keyframes animSearchBox {
		0% {
			top: 8%;
			right: 8%;
			transform: scale(0) translate(50%, 0);
		}

		100% {
			top: 28%;
			right: 40%;
			transform: scale(1) translate(50%, 0);
		}
	}
}

@media screen and (max-width:960px) {
	#searchBox {
		right: 50%;
		transform: translate(50%, 0);
	}

	@keyframes animSearchBox {
		0% {
			top: 8%;
			right: 8%;
			transform: scale(0) translate(50%, 0);
		}

		100% {
			top: 28%;
			right: 50%;
			transform: scale(1) translate(50%, 0);
		}
	}
}

.inputbox {
	height: 57px;
	box-sizing: border-box;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
}

.inputbox input {
	border: none;
	height: 55px;
	line-height: 55px;
	box-sizing: border-box;
	width: 100%;
	padding-left: 50px;
	outline: none;
	font-size: 20px;
	color: #183B56;
}

input::-webkit-input-placeholder {
	color: #183B56;
}

.inputbox .icon {
	position: absolute;
	top: 13px;
	left: 10px;
	z-index: 10;
	width: 30px;
	height: 30px;
}

.inputbox .icon img {
	width: 100%;
}

#searchul {
	overflow-y: scroll;
	height: 185px;
}

#searchul::-webkit-scrollbar {
	display: none;
}

#searchul .activate,
#searchul li:hover {
	background-color: #eeeeee;
}

#searchul li {
	height: 57px;
	box-sizing: border-box;
	border: 1px solid #CCCCCC;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	margin-bottom: 5px;
	cursor: pointer;
}

#searchul li:last-child {
	margin-bottom: 0;
}

.imgbox {
	position: absolute;
	top: 9px;
	left: 12px;

}

#searchul .imgbox img {
	width: 60px;
	border-radius: 5px;
	border: 1px solid rgba(66, 66, 66, 0.5);
}

#searchul .text {
	padding-left: 85px;
	color: #183B56;
	line-height: 55px;
	font-size: 20px;
}
