html,
body {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	min-height: 100%;
	position: relative;
}

html {
	font-size: 3.91px;
	width: 391px;
    background-color: #000;
}

img {
	max-width: 100%;
	margin: auto;
	display: block;
}

a {
	text-decoration: none;
}

a:active {
	color: blue;
	outline: none;
	text-decoration: none;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.frame {
	width: 100%;
	background-image: url(../img/bg.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: top;
	background-color: #04191a;
    min-height: 100vh;
}

.frame::-webkit-scrollbar {
	display: none;
}

em {
	font-style: normal;
}

.content {
	margin: auto;
	max-width: 100%;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
}

.flex1 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
}

.fl {
	display: flex;
	justify-content: center;
	align-items: center;
}

.fr {
	display: flex;
	justify-content: center;
	align-items: center;
}

.al_cen {
	text-align: center;
}

.logo {
	padding: 0.5rem 0;
}

.logo img {
	height: 0.92rem;
}

.banner {
	padding: 0 0.05rem 0.12rem 0.05rem;
}

.lineFrame {
	padding: 0.05rem 0.88rem;
}

.lines {}

.lines .conts {
	width: 100%;
	padding: .35rem 0;
	gap: 0.35rem;
}

.lines .conts .item {
	height: 1.3rem;
	background-image: linear-gradient(0deg,
			#1c1c1c 0%,
			#262626 100%),
		linear-gradient(#434343,
			#434343);
	border: solid 2px #2c2c2c;
	border-radius: 1rem;
	padding: 0 0.14rem;
	width: 100%;
}

.lines .conts .item .btns {
	height: 100%;
}

.lines .conts .item .btns .lineHref {
	width: 2.35rem;
	height: .83rem;
	background: url(../img/go.png) center no-repeat;
	background-size: 100% 100%;
	display: inline-block
}

.lines .conts .item .nav {
	width: 0.95rem;
	height: 0.95rem;
	background: url(../img/nav.png) center no-repeat;
	background-size: 100% 100%;
	line-height: 0.9rem;
	font-size: 0.8rem;
	text-align: center;
	font-family: Arial-BoldMT;
	flex-shrink: 0;
	font-weight: 500;
}

.lines .conts .item .ms {
	height: 100%;
	font-size: .41rem;
	color: #05ff1e;
	width: 1.6rem;
}

.lines .conts .item .nation {
	flex: 1;
	height: 100%;
	position: relative;
}

.lines .conts .item .nation span {
	font-size: .41rem;
	color: #ffffff;
}

.butFrame {
	padding: 0.16rem 0;
}

.buts .item {
	width: calc(50% - 0.15rem);
	line-height: 0;
}

.guajian {
	position: fixed;
	bottom: 0;
}

.guajian1 {
	left: 0;
}

.guajian2 {
	right: 0;
}

.down {
    width: 85%;
    text-align: center;
    margin: auto;
    padding: 0.1rem 0 0.35rem 0;
}

/*  */
@-webkit-keyframes shake {
	10% {
		transform: rotate(15deg);
	}

	20% {
		transform: rotate(-10deg);
	}

	30% {
		transform: rotate(5deg);
	}

	40% {
		transform: rotate(-5deg);
	}

	50%,
	100% {
		transform: rotate(0deg);
	}
}

@keyframes zoom3 {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale3d(.99, .99, .99);
	}
}

@keyframes zoom2 {

	0%,
	100% {
		transform: scale(1.02);
	}

	50% {
		transform: scale3d(.98, .98, .98);
	}
}

@keyframes zoom1 {

	0%,
	100% {
		transform: scale(1.01);
	}

	50% {
		transform: scale3d(.97, .97, .97);
	}
}


@keyframes zoom {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale3d(.97, .97, .97);
	}
}

.zoom {
	-webkit-animation: zoom 1.3s infinite;
	animation: zoom 1.3s infinite;
}

.zoom1 {
	-webkit-animation: zoom1 1.5s linear infinite;
	animation: zoom1 1.5s linear infinite;
}

.zoom2 {
	-webkit-animation: zoom2 1.4s linear infinite;
	animation: zoom2 1.4s linear infinite;
}

.zoom3 {
	-webkit-animation: zoom3 1.2s linear infinite;
	animation: zoom3 1.2s linear infinite;
}

.shake {
	display: inline-block;
	animation: shake 1s 0.15s linear infinite;
	-moz-animation: shake 1s 0.15s linear infinite;
	-webkit-animation: shake 1s 0.15s linear infinite;
	-o-animation: shake 1s 0.15s linear infinite;
}