html {
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

/* --------------------- */

.card_container_view{
	width: 88%;
	border-radius: 9px;
	border: 1px solid #91979E;
	align-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	
	height: 0;
	visibility: hidden;
	overflow: hidden;
	
	/* margin-top: 20px;
	height: auto;
	margin-top: 20px;
	overflow: unset;	
	visibility: visible; */
}

.card_top_view{
	width: calc(100% - 30px);
	margin-top: 10px;
	margin-left: 15px;
	margin-right: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.card_container_card{
	width: calc(100% - 30px);
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 10px;
	margin-bottom: 20px;
	display: block;
	overflow: hidden;
}

/* --------------------- */

.page_container {
	width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	/* overflow: auto; */
}

.page_container_background {
	background: linear-gradient(to bottom, #E4EEF6 0%, #C9DDF4 100%);
}

.top_image{
	width: 70%;
	position: absolute;
	z-index: 0;
}

.app_info_container {
	width: 88%;
	display: flex;
	flex-direction: row;
	align-self: center;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	margin-bottom: 10px;
}

.app_logo_container {
	width: 12%; /* 设置宽度为父容器的 50% */
	position: relative;
}

.app_logo_container::before{
	content: '';
	display: block;
	padding-top: 100%; /* 设置高度为宽度的 100%，即 1:1 比例 */
}

.app_logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover; /* 确保图片内容按比例填充 */
	align-self: center;
}

.download_view_title{
	width: auto;
	font-weight: 400;
	font-size: 30px;
	color: #2B3A4A;
	text-align: center;
	font-style: normal;
	text-transform: none;
	margin-left: 14px;
}

.download_btn{
	width: 88%;
	height: 50px;
	line-height: 50px;
	border-radius: 9px;
	border: 1px solid #91979E;
	align-self: center;
	margin-top: 24px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
}

.download_btn_icon {
	width: 35px;
	height: 35px;
	margin-left: 10%;
}

.download_btn_text{
	flex: 1;
	width: 0;
	text-align: center;
	font-size: 20px;
	color: #2B3A4A;
	margin-right: calc(10% + 35px);
}

.module_parent{
	width: 100%;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.module_title_view{
	width: 65%;
	height: 50px;
	line-height: 50px;
	background-image: url("../img/module_title_bg.webp");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	font-weight: 500;
	font-size: 20px;
	color: #FFFFF1;
	text-align: center;
	font-style: normal;
	text-transform: none;
	z-index: 2;
}

.module_content_view{
	width: calc(90% - 40px);
	background-color: #F7FBFF;
	border-radius: 12px;
	margin-top: -25px;
	font-size: 18px;
	line-height: 30px;
	padding-top: 35px;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	color: #3D3D3D;
}

.mudule_screenshot_image{
	width: 100%;
}

.wechat_page{
	display: none;
	width: 100%;
	height: 100%;
	background-image: url("../img/wechat_tip.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}