@charset "utf-8"; /* CSS Document */
* {
	margin: 0px;
	padding: 0;
	box-sizing: border-box;
}
html {
	cursor: default;
}
.container {
	width: 100%;
	position: relative;
	background-image: url(../img/bg.png);
	height: 100vh;
	background-size: 100% 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
html,
body {
	height: 100%;
	height: 100vh;
}
body {
	width: 100%;
	position: relative;
	line-height: 1.5;
	font-size: 28px;
	-webkit-overflow-scrolling: touch;
}
.top {
	width: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #000000;
	font-size: 40px;
}
.top img {
	width: 200px;
	height: 200px;
	margin-bottom: 10px;
}
.bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-top: 200px;
}
.btn {
	width: 540px;
	height: 108px;
	line-height: 70px;
	border-radius: 54px;
	margin-top: 40px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center; /* cursor:pointer;*/
    background: RGBA(10, 95, 237, 1);
	font-size: 40px;
}
.btn img {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}
.mask {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.6);
	pointer-events: none;
	display: none;
}
.mask .share {
	position: absolute;
	right: 0;
	top: 0;
	width: 200px;
	height: 200px;
}
.mask .info {
	color: #fff;
	position: absolute;
	top: 200px;
	left: 200px;
	font-size: 32px;
}
.mask .info .info-row {
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-bottom: 30px;
}
.mask .info .btn-img {
	margin-left: 20px;
}
.mask .info .bgfff {
	background-color: #fff;
	padding: 12px;
	border-radius: 8px;
}
.download-container {
	max-width: 800px;
	margin: 0 auto;
	/* background-color: #fff; */
	/* padding: 20px; */
	/* border-radius: 10px; */
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}
.file-item {
	display: flex; 
	align-items: center; 
	margin-bottom: 15px;
	padding: 10px;
	border-bottom: 1px solid #eee;
	transition: background-color 0.3s ease;
}
.file-item:last-child {
	border-bottom: none;
}
.file-item:hover {
	background-color: #f1f1f1;
	border-radius: 5px;
}
.deepseek-title {
	text-decoration: underline;
	color: #007BFF;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	display: inline-block;
	padding: 5px 0;
}
.title:hover {
	color: #0056b3;
}