/* 社交媒体样式 */
.social-banner {
    background-color: #FF5722;
    padding: 20px 0;
    text-align: center;
    color: white;
}

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

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
}

.social-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    transition: transform 0.3s;
    position: relative;
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.social-icon {
    margin-right: 20px;
}

.social-icon img {
    width: 120px;
    height: 160px;
    border-radius: 8px;
    object-fit: cover;
}

.social-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.social-name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.social-metadata {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.social-data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.social-data span {
    background-color: #f9f0ec;
    color: #FF5722;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 13px;
}

.social-description {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.social-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.social-tag {
    background-color: #f0f0f0;
    color: #555;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.social-price {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.social-price-label {
    color: #888;
    margin-right: 10px;
}

.social-price-value {
    color: #FF5722;
    font-weight: bold;
}

.social-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #FF5722;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-button:hover {
    background-color: #E64A19;
}

.social-popularity {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    color: #888;
    font-size: 14px;
}

.social-popularity svg {
    margin-right: 5px;
    fill: #FF5722;
}

.social-location {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.social-location svg {
    margin-right: 5px;
    fill: #888;
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-item {
        padding: 15px;
    }
    
    .social-icon img {
        width: 100px;
        height: 130px;
    }
    
    .social-name {
        font-size: 18px;
    }
    
    .social-button {
        padding: 8px 15px;
        font-size: 14px;
    }
} 