﻿.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}
.container {
    flex-direction: column;
}
.module {
	background-color: white;
	margin-bottom: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	overflow: hidden;
}
/* 顶部模块 */
.top-module {
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
}
.cover-img {
	width: 210px;
	height: 210px;
	object-fit: cover;
	margin-right: 30px;
}
.info-container {
	flex: 1;
	min-width: 300px;
}
.info-container h1 {
	font-size: 24px;
	margin-bottom: 15px;
}
.info-line {
	margin-bottom: 10px;
	color: #666;
}
.tags span {
	display: inline-block;
	background: #f0f0f0;
	padding: 3px 8px;
	margin-right: 8px;
	border-radius: 3px;
	font-size: 12px;
}
/* 中部模块 */
.middle-module {
	padding: 30px;
}
.section-title {
	font-size: 18px;
	margin-bottom: 15px;
	padding-bottom: 5px;
	border-bottom: 1px solid #eee;
}
.content {
	line-height: 1.6;
	margin-bottom: 20px;
}
.resource-btn {
	display: inline-block;
	background: #526aff;
	color: white;
	padding: 8px 20px;
	border-radius: 4px;
	text-decoration: none;
	margin-top: 15px;
}
.info-line p{}
/* 尾部模块 */
.bottom-module {
	padding: 30px;
}
.download-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 15px;
	margin-top: 15px;
}
.download-item {
	padding: 10px;
    border: 1px solid #eee;
    border-radius: 3px;
    height: 41px;
    overflow: hidden;
}
.download-item a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-line.tags a {
    background: #666;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    margin-top: 10px;
}
@media (max-width: 768px) {
	.top-module {
		flex-direction: column;
	}
	.cover-img {
		margin-right: 0;
		margin-bottom: 20px;
        width: 100%;
        height: auto;
	}
	.download-grid {
		grid-template-columns: 1fr;
	}

}
/* 弹窗基础样式 */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	overflow-y: auto;
}

.modal-content {
	position: relative;
	background: white;
	margin: 10% auto;
	padding: 30px;
	width: 80%;
	max-width: 500px;
	border-radius: 10px;
	text-align: center;
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	cursor: pointer;
}

.modal-image {
	width: 200px;
	height: 200px;
	margin: 0 auto 20px;
	display: block;
}

.title {
	font-size: 20px;
	margin-bottom: 30px;
	color: #333;
}

.download-link {
	display: block;
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	text-align: center;
}

.android-link {
	background-color: #526aff;
	color: white;
	border: none;
}

.ios-link {
	background-color: white;
	color: #526aff;
	border: 1px solid #526aff;
}

.android-tip {
	font-size: 12px;
	margin-top: 5px;
}

.notice {
	font-size: 14px;
	color: #666;
	margin: 20px 0;
	line-height: 1.5;
}

.footer {
	font-size: 12px;
	color: #999;
	margin-top: 30px;
}