        .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 50px 20px 0 20px;
    }
        .breadcrumb {
            padding: 10px 0;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #0066cc;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #999;
        }
        
        .wallpaper-wrapper {
            display: flex;
            gap: 30px; /* 添加间距 */
            margin-bottom: 30px;
        }
        
        .preview-section {
            flex: 0 0 70%; /* 固定70%宽度 */
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
        }
        
        .preview-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .info-section {
            flex: 0 0 calc(25% - 30px); /* 计算30%宽度减去间距 */
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .wallpaper-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #222;
        }
        
        .wallpaper-properties {
            margin-bottom: 30px;
        }
        
        .property-item {
            display: flex;
            margin-bottom: 10px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .property-label {
            font-weight: bold;
            width: 100px;
            color: #666;
        }
        
        .property-value {
            flex: 1;
        }
        
        .download-btn {
            display: inline-block;
            background-color: #0066cc;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            text-align: center;
            transition: background-color 0.3s;
            margin-top: 0px;
        }
        
        .download-btn:hover {
            background-color: #0052a3;
        }
        
        .ads-container {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .ad-unit {
            flex: 1;
            background-color: #f0f0f0;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            color: #999;
            font-size: 14px;
        }
        
        .related-wallpapers {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #222;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .wallpaper-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .wallpaper-thumb {
            background-color: #fff;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .wallpaper-thumb:hover {
            transform: translateY(-5px);
        }
        
        .wallpaper-thumb img {
            width: 100%;
            height: 190px;
            object-fit: cover;
            display: block;
        }
        
        
        @media (max-width: 768px) {
            .wallpaper-wrapper {
                flex-direction: column;
                gap: 20px;
            }
            
            .preview-section,
            .info-section {
                flex: 0 0 auto;
            }
            
            .preview-section {
                min-height: auto;
            }
            
            .wallpaper-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .ads-container {
                flex-direction: column;
            }
        }
        .wallpaper-thumb-content {
    padding: 15px;
}
 
.wallpaper-thumb-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wallpaper-thumb-title a {color:#222; text-decoration:none;} 
.wallpaper-thumb-desc {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    height: 1.2em;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
 
.wallpaper-thumb-meta {
    display: flex;
    justify-content: flex-start;
    font-size: 12px;
    color: #999;
}
 
.wallpaper-thumb-meta span {
    display: inline-block;
    padding: 3px 8px;
    background: #eee;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-right: 5px;
}