/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.part-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.part-header {
    background: linear-gradient(135deg, #f03b8a 0%, #e97d54 100%);
    padding: 40px 0;
    margin-bottom: 30px;
}

.part-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.part-header-text {
    flex: 1;
    max-width: 800px;
    color: white;
}

.part-header-text h1 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 600;
}

.part-header-text p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.5;
}

.part-header-actions {
    flex-shrink: 0;
    margin-left: 40px;
}

.part-btn-main {
	font-weight: bold;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 2px solid rgba(255,255,255,0.3);
}

.part-btn-main:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* 简介部分 */
.part-intro-section {
    display: flex;
    margin: 40px 0;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    padding: 40px;
}

.part-intro-text {
    flex: 1;
    overflow: hidden;
}

.part-intro-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.part-intro-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.part-btn-secondary {
    display: inline-block;
    font-weight: bold;
    padding: 12px 30px;
    background: #f03b8a;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.part-btn-secondary:hover {
    background: #e97d54;
    transform: translateY(-1px);
}

.part-app-image {
	margin-left: 30px;
	width: 560px;
    padding: 20px;
    background: #f8f9fa;
}
.part-app-image .image-warp {
	white-space: nowrap;
	overflow-x: scroll;
}
.part-app-image .image-warp::-webkit-scrollbar {
	width: 10px;
	height: 10px;
	cursor: pointer;
	background: #f5f5f5;
}
.part-app-image .image-warp::-webkit-scrollbar-thumb {
	background: #e5e5e5;
}
.part-app-image .image-warp img {
    height: 260px;
    width: auto;
}

/* 全屏信息部分 */
.part-info-section {
    background: white;
    padding: 60px 0;
    margin: 40px 0;
}

.part-info-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.part-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.part-info-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #f03b8a;
}

.part-info-item .t {
    color: #e97d54;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.part-info-item p {
    font-size: 14px;
    color: #666;
}

/* 版本下载 */
.part-versions-section {
    background: white;
    border-radius: 6px;
    padding: 40px;
    margin: 40px 0;
}

.part-versions-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.part-version-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.part-version-card {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 2px solid #eee;
}

.part-version-card .title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    text-decoration: none;
}

.part-version-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 12px;
}

.part-version-download {
    display: inline-block;
    padding: 10px 25px;
    background: #f03b8a;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.part-version-download:hover {
    background: #e97d54;
}

/* 新闻部分 */
.part-news-section {
    background: white;
    border-radius: 6px;
    padding: 40px;
    margin: 40px 0;
}

.part-news-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.part-news-item {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.part-news-item:last-child {
    border-bottom: 0;
}

.part-news-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.part-news-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.part-news-date {
    font-size: 13px;
    color: #999;
}

/* 用户评论 */
.part-comments-section {
    background: white;
    border-radius: 6px;
    padding: 40px;
    margin: 40px 0;
}

.part-comments-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.part-comment {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.part-comment:last-child {
    border-bottom: 0;
}

.part-comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f03b8a, #e97d54);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.part-comment-content {
    flex: 1;
}

.part-comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.part-comment-author {
    font-weight: 600;
    color: #333;
}

.part-comment-date {
    color: #999;
    font-size: 13px;
}

.part-comment-rating {
    color: #ffd700;
    margin-bottom: 10px;
}

.part-comment-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 页脚 */
.part-footer {
    background: #333;
    color: white;
    padding: 60px 0;
    margin-top: 40px;
    text-align: center;
}

.part-footer span {
    font-size: 13px;
    color: #ccc;
}
.sponsor {
	margin-top: 10px;
}
.sponsor span {
	display: inline-block;
	margin: 0 5px;
	color: #999;
	font-size: 12px;
}
.sponsor a {
	color: #999;
	text-decoration: none;
}

@media (max-width: 768px) {
	.part-header {
		margin: 0;
		padding: 20px;
	}
	.part-container {
		padding: 0;
	}
	.part-header-text h1 {
		font-size: 24px;
	}
	.part-header-text p {
		font-size: 16px;
	}
    .part-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .part-btn-main {
        width: 100%;
        padding: 10px 20px;
        justify-content: center;
    }

    .part-header-actions {
        margin-left: 0;
        width: 100%;
    }
    .part-intro-section {
    	margin: 0;
    	padding: 20px;
    	display: block;
    	border-radius: 0 !important;
    }
    .part-intro-text h2 {
    	font-size: 18px;
    	margin-bottom: 10px;
    }
    .part-intro-text p {
    	font-size: 14px;
    	margin-bottom: 15px;
    }
    .part-intro-text .part-btn-secondary {
    	display: block;
    	text-align: center;
    }
   	.part-app-image {
   		margin: 0;
   		margin-top: 15px;
   		width: 100%;
   		padding: 0;
   		background: transparent;
   	}
   	.part-app-image .image-warp img {
   		height: 220px;
   	}
    .part-info-grid {
        display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px
    }
    .part-info-item {
    	width: 48%;
    	padding: 15px;
    }
    .part-version-cards {
    	display: flex;
		flex-wrap: wrap;
    }
    .part-version-card {
    	width: 100%;
    	padding: 15px;
    }
    .part-news-item .t {
    	font-weight: bold;
    	font-size: 17px;
    }
    .part-comments-section h2,
    .part-info-section h2,
    .part-news-section h2,
    .part-versions-section h2 {
    	font-size: 20px;
    	margin-bottom: 20px;
    	border-bottom: 3px dashed #f5f5f5;
    	padding-bottom: 15px;
    }
    .part-version-card .title {
    	font-size: 17px;
    }
    .part-info-section,
    .part-versions-section,
    .part-comments-section,
    .part-news-section {
    	margin: 0;
    	padding: 20px;
    	border-radius: 0 !important;
		border-top: 10px solid #f8f8f8;
    }
    .part-comment,
    .part-news-item {
    	padding: 0;
    	padding-bottom: 15px;
    	margin-bottom: 15px;
    }
    .part-comment-avatar {
    	display: none;
    }
    .part-footer {
    	margin-top: 0;
    	padding: 20px;
    }
    .part-footer span {
    	display: block;
    	margin: 10px 0;
    }
}