body {
            font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
        }
        .app-container {
            max-width: 750px;
            margin: 0 auto;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }
        .app-header {
            padding: 15px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        .app-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            margin-right: 15px;
        }
        .app-info h1 {
            margin: 0 0 5px 0;
            font-size: 18px;
        }
        .app-info p {
            margin: 0;
            color: #999;
            font-size: 12px;
        }
        .app-rating {
            display: flex;
            align-items: center;
            margin-top: 5px;
        }
        .app-rating .el-rate {
            margin-right: 5px;
        }
        .app-rating span {
            color: #ff9900;
            font-size: 12px;
        }
        .download-section {
            padding: 15px;
            text-align: center;
            border-bottom: 10px solid #f5f5f5;
        }
        .download-btn {
            width: 100%;
            padding: 12px 0;
            font-size: 16px;
            margin-bottom: 10px;
        }
        .safe-label {
            display: inline-flex;
            align-items: center;
            color: #1989fa;
            font-size: 12px;
        }
        .safe-label i {
            margin-right: 3px;
        }
        .screenshot-section {
            padding: 15px;
            border-bottom: 10px solid #f5f5f5;
        }
        .screenshot-title {
            font-size: 16px;
            margin-bottom: 15px;
        }
        .screenshot-list {
            display: flex;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        .screenshot-item {
            flex: 0 0 150px;
            height: auto;
			max-height: 360px;
            margin-right: 10px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .screenshot-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .app-detail-section {
            padding: 15px;
            border-bottom: 10px solid #f5f5f5;
        }
        .section-title {
            font-size: 16px;
            margin-bottom: 15px;
        }
        .app-description {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
        }
        .update-log {
            font-size: 13px;
            color: #666;
        }
        .update-log .version {
            color: #333;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .update-log .date {
            color: #999;
            margin-bottom: 10px;
        }
        .update-log .content {
            margin-bottom: 15px;
        }
        .developer-section {
            padding: 15px;
            border-bottom: 10px solid #f5f5f5;
        }
        .developer-info {
            display: flex;
            align-items: center;
        }
        .developer-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .developer-name {
            font-size: 14px;
            font-weight: bold;
        }
        .developer-desc {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }
        .comment-section {
            padding: 15px;
        }
        .comment-item {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .comment-item:last-child {
            border-bottom: none;
        }
        .comment-header {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        .comment-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
        }
        .comment-user {
            font-size: 13px;
        }
        .comment-time {
            font-size: 12px;
            color: #999;
            margin-left: auto;
        }
        .comment-content {
            font-size: 14px;
            color: #333;
            line-height: 1.5;
        }
        .comment-rating {
            margin-top: 5px;
        }
        .load-more {
            text-align: center;
            padding: 10px;
            color: #1989fa;
            font-size: 14px;
            cursor: pointer;
        }