body {
	all: initial;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0.02em;
}

* {
	box-sizing: border-box;
}

main {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
z-index: -100;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: -webkit-linear-gradient(left, #0e77b8, #6cbbda, #a4a8b1);
	/* Safari 5.1 - 6.0 */
	background: -o-linear-gradient(right, #0e77b8, #6cbbda, #a4a8b1);
	/* Opera 11.1 - 12.0 */
	background: -moz-linear-gradient(right, #0e77b8, #6cbbda, #a4a8b1);
	/* Firefox 3.6 - 15 */
	background: linear-gradient(to right, #0e77b8, #6cbbda, #a4a8b1);
	/* 标准的语法 */
}

.form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	width: 350px;
	height: 390px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	padding: 20px;
	border-radius: 5px;
	margin: 22px 40px 0 0;
	float: right;
	z-index: 30;
}

.form__content {
	text-align: center;
	height: 390px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	opacity: 0.7;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	-webkit-transition: all 0.5s ease 0.7s;
	transition: all 0.5s ease 0.7s;
margin:0;
}

.form__cover {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: -4;
	border-radius: 7px;
	overflow: hidden;
	-webkit-transition: all 0.3s ease 0.8s;
	transition: all 0.3s ease 0.8s;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.form__cover:after {
	content: '';
	opacity: .4;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: white;
	z-index: -4;
	border-radius: 50%;
	-webkit-transition: all 1.5s ease 0.3s;
	transition: all 1.5s ease 0.3s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.form__cover:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: white;
	z-index: -5;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.form__cover:before {
	-webkit-transform: scale(0.15);
	transform: scale(0.15);
}

.form__content {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.form__cover {
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form__cover:after {
	-webkit-transform: scale(2);
	transform: scale(2);
}

.form__cover:before {
	-webkit-transition: opacity 0.3s ease 0.8s, -webkit-transform 2s ease;
	transition: opacity 0.3s ease 0.8s, -webkit-transform 2s ease;
	transition: transform 2s ease, opacity 0.3s ease 0.8s;
	transition: transform 2s ease, opacity 0.3s ease 0.8s, -webkit-transform 2s ease;
	-webkit-transform: scale(2);
	transform: scale(2);
	opacity: 0;
}

h1 {
	font-size: 40px;
	margin: 15px 0 20px 0;
	letter-spacing: 0.05em;
	color: #000;
	font-weight: 700;
}

.styled-button {
	-webkit-appearance: none;
	-webkit-user-select: none;
	cursor: pointer;
	font-size: 18px;
	width: 250px;
	margin: 20px auto 0px auto;
	padding: 20px;
	outline: none;
	background: none;
	position: relative;
	color: #000;
	border-radius: 3px;
	border: none;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.1em;
	background: #75d9b6;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	overflow: hidden;
}

.styled-button__real-text-holder {
	position: relative;
}

.styled-button__real-text {
	color: transparent;
	display: inline-block;
}

.styled-button__text-holder {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.styled-button__moving-block {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.styled-button__moving-block.back {
	color: white;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.styled-button__moving-block.back .styled-button__text-holder {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.styled-button:hover,
.styled-button:active {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
	background: #33ce95;
}

.styled-button:hover .face,
.styled-button:active .face {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.styled-button:hover .face .styled-button__text-holder,
.styled-button:active .face .styled-button__text-holder {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.styled-button:hover .back,
.styled-button:active .back {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.styled-button:hover .back .styled-button__text-holder,
.styled-button:active .back .styled-button__text-holder {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.styled-button:active {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

form input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
	border: 1px solid rgba(26, 128, 255, 0.8);
	background-color: rgba(255, 255, 255, 0.6);
	width: 250px;
	border-radius: 3px;
	padding: 10px 15px;
	margin: 0 auto 10px auto;
	display: block;
	text-align: center;
	font-size: 16px;
	color: black;
	-webkit-transition-duration: 0.25s;
	transition-duration: 0.25s;
	font-weight: 300;
}

form input:hover {
	background-color: rgba(49, 240, 255, 0.9);
}

form input:focus {
	background-color: white;
	width: 300px;
	color: #000;
}

.title {
	background: url('../images/Logintitle.png') no-repeat;
	width: 800px;
	height: 120px;
	z-index: -99;
}

.middleback {
	background: url('../images/baise2.png') no-repeat;
	width: 100%;
	height: 480px;
	z-index: -98;
	overflow: auto;
}

.maincon {
	min-width: 1000px;
	min-height: 570px;
	max-height: 700px;
	max-width: 1120px;
	margin: auto;
margin-top: -350px;
	z-index: -99;
	position: relative;
	top: 50%;
	bottom: 0;
	left: 0;
	right: 0;
}

form,
.form__cover,
.wrap,
.title {
	margin: 0 auto;
	padding: 0;
}

@keyframes rotate {
	0% {
		transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
	}
	100% {
		transform: rotateX(720deg) rotateY(360deg) rotateZ(360deg);
	}
}

.wrap {
	margin-top: 130px;
	perspective: 10000px;
	/* 视图距元素的距离 相当于摄像机 */
	z-index: 20;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	float: left;
	margin-left: 147px;
}

.cube {
	width: 200px;
	height: 200px;
	position: relative;
	color: #daa520;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	line-height: 100px;
	transform-style: preserve-3d;
	/* 默认flat 2D */
	transform: rotateX(-30deg) rotateY(-70deg);
	animation: rotate 20s infinite linear;
	/*播放时间 播放次数为循环 缓动效果为匀速 */
}

.cube>div {
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	position: absolute;
	background-color: #41b8f2;
	opacity: .6;
	transition: all 0.4s ease-in;
}

.cube .out-front {
	transform: translateZ(100px);
}

.cube .out-back {
	transform: translateZ(-100px) rotateY(180deg);
}

.cube .out-left {
	transform: translateX(-100px) rotateY(-90deg);
}

.cube .out-right {
	transform: translateX(100px) rotateY(90deg);
}

.cube .out-top {
	transform: translateY(-100px) rotateX(90deg);
}

.cube .out-bottom {
	transform: translateY(100px) rotateX(-90deg);
}

.cube>span {
	display: block;
	width: 100px;
	height: 100px;
	border: 1px solid #fafad2;
	background-color: #f9e08e;
	position: absolute;
	top: 50px;
	left: 50px;
}

.cube .in-front {
	transform: translateZ(50px);
}

.cube .in-back {
	transform: translateZ(-50px) rotateY(180deg);
}

.cube .in-left {
	transform: translateX(-50px) rotateY(-90deg);
}

.cube .in-right {
	transform: translateX(50px) rotateY(90deg);
}

.cube .in-top {
	transform: translateY(-50px) rotateX(90deg);
}

.cube .in-bottom {
	transform: translateY(50px) rotateX(-90deg);
}

.cube:hover {
	animation-play-state: paused;
}

.cube:hover .out-front {
	transform: translateZ(150px) translateX(-25px) translateY(-25px);
	width: 250px;
	height: 250px;
	background: url(../images/4.gif) no-repeat;
	background-size: 100% 100%;
	opacity: .6;
}

.cube:hover .out-back {
	transform: translateZ(-150px) translateX(-25px) translateY(-25px) rotateY(180deg);
	width: 250px;
	height: 250px;
	background: url(../images/7.gif) no-repeat;
	background-size: 100% 100%;
	opacity: .6;
}

.cube:hover .out-left {
	transform: translateX(-175px) translateY(-25px) rotateY(-90deg);
	width: 250px;
	height: 250px;
	background: url(../images/2.gif) no-repeat;
	background-size: 100% 100%;
	opacity: .6;
}

.cube:hover .out-right {
	transform: translateX(125px) translateY(-25px) rotateY(90deg);
	width: 250px;
	height: 250px;
	background: url(../images/1.gif) no-repeat;
	background-size: 100% 100%;
	opacity: .6;
}

.cube:hover .out-top {
	transform: translateY(-175px) translateX(-25px) rotateX(90deg);
	width: 250px;
	height: 250px;
	background: url(../images/5.gif) no-repeat;
	background-size: 100% 100%;
	opacity: .6;
}

.cube:hover .out-bottom {
	transform: translateY(150px) translateX(-25px) rotateX(-90deg);
	width: 250px;
	height: 250px;
	background: url(../images/6.gif) no-repeat;
	background-size: 100% 100%;
	opacity: .6;
}


/*svg部分*/

#map {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	overflow: hidden;
}

#back {
	z-index: -66;
}

svg {
	position: absolute;
	width: 1100px;
	height: 480px;
}

path,
polyline {
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1;
}

#front path,
#front polyline {
	stroke-width: 25;
}

.green path {
	stroke: #20f43e;
}

.white path {
	stroke: #f2e850;
}

.comp {
	text-align: center;
	font-size: 12px;
	color: #666;
	float: bottom;
	position: fixed;
	bottom: 10px;
	left: 40%;
}

.login-error-msg {
	height: 25px;
	width: 250px;
	margin: 0px auto;
}
.login-error-msg-pwd {
	cursor: pointer;
	font-size: 14px;
	cursor: pointer;
	float: right;
	margin-top: 8px;
	padding: 2px;
	border: solid 1px;
}