@charset "utf-8";


.home {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	overflow: hidden;
}


.h-logo {
	position: absolute;
	top: 0.46rem;
	left: 0.84rem;
	width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	width: 60%;
}

.logo img {
	display: block;
}

.media-list .media {
	margin-left: 0.2rem;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.qrcode {
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	display: none;
	top: 150%;
}

.media-list .media:hover .qrcode {
	display: block;
}

.media-list .media .icon {
	width: 0.51rem;
	height: 0.51rem;
}

.name {
	font-size: 0.18rem;
	margin-left: 0.09rem;
	color: #fff;
}

.media-list .media .icon img {
	display: block;
	width: 100%;
}

.pointer {
	width: 0;
	height: 0;
	border-left: 0.1rem solid transparent;
	border-right: 0.1rem solid transparent;
	/* 下边框：可见色，宽度决定三角形的高度 */
	border-bottom: 0.10rem solid #fff;
	margin-left: 0.2rem;
	margin-top: -0.2rem;
}

.media-list {
	display: flex;
	align-items: center;
}

.menu-list {
	position: absolute;
	bottom: 1.3rem;
	left: 0;
	right: 0;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
}

.menu .icon {
	position: relative;
	width: 1rem;
	height: 1rem;
}

.menu .icon img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 0.8rem;
	width: auto;
}

.menu .icon .img02 {
	display: none;
	max-width: 0.6rem;
}

.menu:hover {
	color: #fff;
	background: #0370AA;
	transition: all 1s ease;
}

.menu:hover .icon .img02 {
	display: block;
}

.menu:hover .icon .img01 {
	display: none;
}



.menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.8);
	width: 2.9rem;
	padding: 0.2rem 0;
	border-radius: 0.2rem;
}

.zh {

	margin-top: 0.18rem;
	font-size: 0.26rem;
	line-height: 0.3rem;
	font-weight: bold;
	color: #0370AA;
}

.en {
	font-size: 0.18rem;
	line-height: 0.3rem;
	opacity: 0.6;
}

.menu:hover .zh {
	color: #fff;
}


.bg-img {
	background: url(../images/guide/bg.jpg) no-repeat center;
	z-index: -1;
	/* 中心对齐 */
	background-size: 100% 100%;
	/* 初始缩放100% */
	/* 绑定动画：名称 时长 速度曲线 结束后保持状态 */
	animation: bgScale 5s ease forwards;
	background-size: 100% 100% !important;
	/* 或100% 100% */
	animation: scaleDraw 18s ease-in-out 1 forwards;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	/* 超出容器2% */
	height: 100%;
}




@keyframes scaleDraw {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.1);
		/* 示例：放大1.1倍 */
	}
}

@media (max-width: 500px) {
	.bg-img {
		background: url(../images/guide/11.jpg) no-repeat center;
	}

	.h-logo {
		display: block;
		width: 100%;
		left: 0;
	}

	.logo {
		width: 90%;
		margin: 0 auto;
	}

	.media-list {
		justify-content: right;
		padding-right: 10px;
	}

	.menu-list {
		display: block;
		width: 90%;
		margin: 0 auto;
	}

	.menu {
		width: 49%;
		float: left;
		margin-bottom: 10px;
	}

	.menu:nth-child(2n) {
		float: right;
	}
}