* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.main {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	height: 161.25rem;
	/* height: 159rem; */
}

.main .bg {
	width: 100%;
	height: 100%;
}

.main .content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 2.07rem;
}

.mainTitle {
	position: relative;
	display: block;
	width: 5.6rem;
	margin: 0 auto;
	opacity: 0;
	z-index: 2;
}

.light {
	position: absolute;
	width:6rem;
	top: 2.07rem;
	left: 0.8rem;
	z-index: 1;
	opacity: 0;
}

.intro {
	margin-top: 3.15rem;
	margin-left: 2.36rem;
	width: 4.97rem;
	opacity: 0;
}

.title {
	margin-top: 1.15rem;
	margin-left: 0.34rem;
}

.title>div {
	display: flex;
	align-items: flex-end;
	position: relative;
}

.title>div>span {
	font-weight: bold;
	font-size: 1.3rem;
	color: #FEFEFE;
	text-stroke: 3px #41A7ED;
	-webkit-text-stroke: 3px #41A7ED;
	transform: scale(1, 1.3);
	-ms-transform: scale(1, 1.3);
	-webkit-transform: scale(1, 1.3);
	-moz-transform: scale(1, 1.3);
	-o-transform: scale(1, 1.3);
	line-height: 1;
}

.title>div>img {
	position: absolute;
	left: -0.3rem;
	top: -0.8rem;
	width: 105%;
	mix-blend-mode: screen;
}

.title .right p:first-child {
	font-size: 0.36rem;
	color: #FEFEFE;
}

.title .right p:last-child {
	font-weight: bold;
	font-size: 0.4rem;
	color: #FEFEFE;
}

.title>p {
	font-weight: bold;
	font-size: 0.24rem;
	color: #005BD1;
	line-height: 0.36rem;
	margin-left: 1.6rem;
	margin-top: 0.15rem;
}

.machine {
	width: 6.15rem;
	margin-left: 1.13rem;
	margin-top: 2.7rem;
}

.clickBtn {
	width: 0.5rem;
	transform: rotate(45deg);
}

.btn1 {
	margin-left: 2.7rem;
	margin-top: 1.8rem;
}

.btn2 {
	margin-left: 5.5rem;
	margin-top: 3.5rem;
}

.btn3 {
	margin-left: 5.5rem;
	margin-top: 4rem;
}

.btn4 {
	margin-left: 6rem;
	margin-top: 2.9rem;
}

.btn5 {
	margin-left: 5rem;
	margin-top: 1rem;
}

.car {
	margin-left: 0.3rem;
	padding-top: 4.9rem;
	display: flex;
	align-items: center;
}

.car img:first-child {
	width: 5.55rem;
}

.btn6 {
	margin-left: 0.3rem;
}

.btn7 {
	display: block;
	margin-left: 2rem;
}

.btn8 {
	display: block;
	margin-left: 5rem;
}

.btn9 {
	display: block;
	margin-left: 2rem;
}

.btn10 {
	display: block;
	margin-left: 6rem;
}

.text {
	display: block;
	width: 5.5rem;
	margin: 2.2rem auto 0;
}

/* .logo {
	display: block;
	width: 1.3rem;
	margin: 0.8rem auto 0;
} */

.iframe-tip {
	position: fixed;
	width: 90vw;
	height: 80vh;
	left: 50%;
	top: 50%;
	display: none;
	transform: translate(-50%, -50%);
	background-color: #fff;
}

.iframe-tip #iframeUrl {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

.close-btn {
	position: absolute;
	right: 10px;
	top: 30px;
	width: 50px;
	height: 50px;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	line-height: 50px;
	background: rgba(0, 0, 0, .5);
}

i.icon-Music {
	font-size: 50px;
	/* transform:rotate(45deg); */
	display: block;
	position: fixed;
	right: 10px;
	top: 10px;
	color: #fff;
	z-index: 999;
}

.playing {
	animation: rotates 1s linear infinite;
}

@keyframes rotates {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.erji-banner {
	padding: 0.5rem;
	text-align: center;
}

.erji-banner img {
	width: 60%;
}

.erji-title {
	border-bottom: #41A7ED solid 0.01rem;
	padding-bottom: 0.2rem;
}

.erji-title img {
	height: 1.2rem;
}

.erji-content {
	padding-top: 0.5rem;
}
.erji-content p{
	font-size: 0.3rem;
	text-indent: 0.6rem;
	margin: 0.2rem 0;
	line-height: 1.7;
}
.erji-content img{
  width: 100%;
}
@keyframes gentleShake {
  0%, 100% {
    transform: translateX(0.05rem);
  }
  50% {
    transform: translateX(-0.05rem);
  }
}
.gentle-shake {
  animation: gentleShake 1s infinite ease-in-out;
  /* 添加过渡使更平滑 */
  transition: transform 0.3s ease;
}
@keyframes gentleUpdown {
  0%, 100% {
    transform: translateY(0.05rem);
  }
  50% {
    transform: translateY(-0.05rem);
  }
}
.gentle-updown {
  animation:  gentleUpdown 1s infinite ease-in-out;
  /* 添加过渡使更平滑 */
  transition: transform 0.3s ease;
}