.mycard{
	width: 18rem;
	height: 8rem;
	background-color: #ffffff20;
	border-radius: 0.5rem;
	margin-left: auto;
	margin-right: auto;
}
.mycard2{
	
	margin-left: 3%;
	float: left;
	background-color: #ffffff20;
	border-radius: 0.5rem;
	color: #ffffff;
	margin-top: 1rem;
	text-align: center;
	padding-bottom: 1rem;
	backdrop-filter: blur(2px);
}
.startcoverbox{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #242424;
	z-index: 999;
}
.loadingicon{
	width: 4rem;margin-top: 40vh;
	animation-name: loading;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 1.2s;
}
@keyframes loading{
	0%{
		transform: rotate(0deg);
	}
	50%{
		transform: rotate(180deg);
	}
	100%{
		transform: rotate(360deg);
	}
}
.startbtn{
	width: 10rem;
	height: 3rem;
	text-align: center;
	line-height: 3rem;
	font-size: 1.5rem;
	color: #ffffff;
	font-weight: bold;
	border-radius: 0.8rem;
	border: 2px solid #ffffff;
	margin-top: 1rem;
	font-style: italic;
	transition: all 0.5s;
	animation: enter 0.5s;
}
.startbtn:hover{
	background-color: #ffffff;
	color: #242424;
}
.startbtn:active{
	background-color: #ffffff;
	color: #242424;
	transform: scale(0.95,0.95);
}
.starticon{
	width: 4rem;margin-top: 40vh;
	animation: plane 0.5s;
}
@keyframes plane{
	0%{
		opacity: 0;
		transform: translateX(-50rem);
	}
	100%{
		opacity: 1;
		transform: none;
	}
}
@keyframes enter {
	0%{
		opacity: 0;
		transform: scale(0.5,0.5);
	}
	100%{
		opacity: 1;
		transform: none;
	}
}
@keyframes out{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0.8;
		transform: translateY(-100vh);
	}
}
.jumpl{
	animation-name: jump;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}
.MyprogramBox{
	display: flex;align-items: center;padding-top: 1rem;justify-content: center
}
.MyprogramIcon{
	width: 7rem;
	/* opacity: 0.9; */
	padding: 1rem;
	border-radius: 10px;
	background-color: #ffffff;
	height: 7rem;
	margin: 0.5rem;
	background-position: center center;
	background-size: 90% 90%;
	background-repeat: no-repeat;
}
.MyprogramInfo{
	width: calc(100% - 8.5rem - 4rem);
	margin-left: 0.5rem;
}
.MyprogramTitle{
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
.MyprogramDesc{
	opacity: 0.8;
	text-align: left;
}
.MyTags{
	margin-top: 0.5rem;
}

@keyframes jump{
	0%{
		transform: none;
	}
	50%{
		transform: scale(1.2,1.2);
	}
	100%{
		transform: none;
	}
}
.MyprogramIconSmall{
	background-color: transparent;
	background-size: 60% 60%;
}
@media (min-width: 768px) {
    /* 在这里添加针对宽屏设备的样式规则 */
	.TwoSideBox{
		display: flex;
	}
	.mycard2{
		width: 45%;
	}
	.WebTitle{
		font-size: 2rem;color: #ffffff;text-align: center;font-weight: bold;margin-top: 2rem;
	}
	.Tag{
		width: fit-content;
		font-size: 0.85rem;
		font-weight: bold;
		padding: 0.2rem 0.4rem 0.2rem 0.4rem;
		border-radius: 5px;
		float: left;
		margin-right: 0.3rem;
	}
}

@media (max-width: 767px) {
    /* 在这里添加针对窄屏设备的样式规则 */
	:root{
		font-size: 10px;
	}
	.TwoSideBox{
		display: block;
	}
	.mycard2{
		width: 92%;
	}
	.mycard{
		display: none;
	}
	.WebTitle{
		font-size: 2rem;color: #ffffff;text-align: center;font-weight: bold;margin-top: 1rem;margin-bottom: 1rem;
	}
	.MyprogramDesc{
		font-size: 1.1rem;
	}
	.Tag{
		width: fit-content;
		font-size: 0.9rem;
		font-weight: bold;
		padding: 0.2rem 0.4rem 0.2rem 0.4rem;
		border-radius: 5px;
		float: left;
		margin-right: 0.3rem;
	}
}