.down-screenshots-container {
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	scroll-behavior: smooth;
}

.appdown-screenshots-container:active {
	cursor: grabbing;
}

.appdown-screenshot {
	pointer-events: none; /* 防止图片干扰拖拽 */
}

.appdown-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
	font-family: 'Arial', sans-serif;
	color: #333;
	margin-top: 50px;
}

.appdown-header {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
	align-items: center;
	padding: 0 20px;
}

.appdown-logo-container {
	flex: 0 0 150px;
}

.appdown-logo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: #f0f0f0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #e0e0e0;
}
.appdown-logo img{
    width: 100%;
    border-radius: 20px;
}
.appdown-info {
	flex: 1;
	min-width: 250px;
	margin-top: 10px;
}

.appdown-title {
	font-size: 28px;
	margin: 0 0 15px 0;
	color: #333;
}

.appdown-meta {
	margin-bottom: 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
}

.appdown-meta-item {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	color: #666;
}

.appdown-buttons {
	display: flex;
	gap: 15px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.appdown-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 250px;
	position: relative;
}

.appdown-btn-android {
	background-color: #4CAF50;
	color: white;
}

.appdown-btn-ios {
	background-color: #f0f0f0;
	color: #333;
	cursor: pointer !important;
}

.appdown-btn-subtext {
	font-size: 12px;
	font-weight: normal;
	margin-top: 5px;
	opacity: 0.8;
}

.appdown-section-title {
	font-size: 22px;
	margin: 30px 0 15px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #e0e0e0;
}

.appdown-screenshots-container {
	display: flex;
	overflow-x: auto;
	gap: 15px;
	padding-bottom: 10px;
	scrollbar-width: thin;
	scrollbar-color: #ccc #f0f0f0;
}

.appdown-screenshots-container::-webkit-scrollbar {
	height: 6px;
}

.appdown-screenshots-container::-webkit-scrollbar-track {
	background: #f0f0f0;
}

.appdown-screenshots-container::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 3px;
}

.appdown-screenshot {
	flex: 0 0 auto;
	width: auto;
	height: 640px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.appdown-screenshot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.appdown-description p {
	line-height: 1.6;
	margin: 0 0 20px 0;
	font-size: 15px;
}

.appdown-feature-list {
	margin: 0;
}

.appdown-feature-list li {
	margin-bottom: 10px;
	line-height: 1.5;
}

.appdown-ios-info p {
	line-height: 1.6;
	margin: 0;
	font-size: 15px;
}

@media (max-width: 768px) {
	.appdown-header {
		flex-direction: column;
		align-items: center;
		gap:20px;
		padding:0;
	}
	
	.appdown-logo-container {
		margin-bottom: 0px;
	}
	
	.appdown-title{
	    display: none;
	}
	
	.appdown-container{
	    padding: 0;
	}
	.appdown-info{
	    width: 100%;
	}
	.appdown-screenshot {
		width: 240px;
		height: auto;
	}
	.sidebar-module {
		display: none !important;
	}
	.novel-update-n{
		width: 100%;
		padding: 10px;
	}
	.container{
		width: 100% !important;
	}
}

@media (max-width: 480px) {
	.appdown-buttons {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
	}
	
	.appdown-btn {
		width: 100%;
	}
	
	.appdown-screenshot {
		width: 180px;
		height: auto;
	}
}
.novel-header{text-align:center;}