        /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            background-color: #f8f9fa;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            max-width: 750px;
            margin: 0 auto;
/*            padding-bottom: 70px;*/
        }

        /* 头部导航样式 */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 50px;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
            z-index: 1000;
            backdrop-filter: blur(8px);
        }

        .location {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .location:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .location:active {
            transform: scale(0.95);
        }

        .location svg {
            width: 16px;
            height: 16px;
        }

        .header-title {
            font-size: 18px;
            font-weight: 600;
            flex: 1;
            text-align: center;
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .user-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .user-icon:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        .user-icon:active {
            transform: scale(0.95);
        }

        .back-btn {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.25s;
            background: rgba(255, 255, 255, 0.2);
            margin-left: 10px !important;
        }

        .back-btn:active {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0.96);
        }

        .back-btn svg {
            width: 24px;
            height: 24px;
        }

        /* 主内容 */
        .main-content {
            padding-top: 50px;
        }

        /* 用户信息 */
        .user-info {
            display: flex;
            align-items: center;
            padding: 10px;
            background:#fff;
            border-bottom: 1px solid #f5f5f5;
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .user-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .user-details {
            flex: 1;
        }

        .user-name {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin-bottom: 4px;
                display: flex;
            align-items: center;
    gap: 8px;
        }
        .verified-badge {
            background: linear-gradient(135deg, #ffd680 0%, #ff8fb3 100%);
            color: #fff;
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 10px;
        }
        .user-views {
            font-size: 13px;
            color: #999;
        }

.message-btn {
    background: linear-gradient(135deg, #aa6de8 0%, #ff8fb3 100%);
    color: #fff;
    border: none;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

        /* 个人资料 */
        .profile-section {
            padding: 10px;
            background:#fff;
        }

        .profile-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .profile-item {
            display: flex;
            margin-bottom: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .profile-label {
            color: #333;
            width: 60px;
            flex-shrink: 0;
            font-size: 14px;
        }

        .profile-value {
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }

        /* 详细介绍区块 */
        .detail-section {
            padding: 10px;
            background: #fff;
            margin-top: 10px;
        }

        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .section-header::before {
            content: '';
            width: 4px;
            height: 20px;
            background: linear-gradient(to bottom, #ff6b9d, #ff8a80);
            border-radius: 2px;
            margin-right: 5px;
        }

        .section-header h2 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .detail-content {
            font-size: 15px;
            line-height: 1.8;
            color: #666;
            text-align: justify;
            margin-bottom: 15px;
            /* 添加最小高度确保占位显示 */
            min-height: 60px;
            padding: 10px;
            background: #fafafa;
            border-radius: 8px;
        }

        /* 空内容时的占位样式 */
        .detail-content:empty::before {
            content: '暂无详细介绍';
            color: #999;
        }

        .detail-images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .detail-images img {
            width: 100%;
            border-radius: 8px;
            object-fit: cover;
            aspect-ratio: 1/1;
            cursor: pointer;
        }
        
        /* 添加视频项样式 */
        .detail-images .video-item {
            position: relative;
            width: 100%;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1/1;
            cursor: pointer;
            background: #000;
        }
        
        .detail-images .video-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .detail-images .video-item .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        
        .detail-images .video-item .play-icon svg {
            width: 24px;
            height: 24px;
            fill: #ff6b9d;
            margin-left: 4px;
        }

        /* 联系方式区域样式 */
        .contact-section {
            margin: 10px;
            padding: 10px;
            background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
            border-radius: 10px;
            border: 1px solid #ffe0e6;
        }

        .contact-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 0px;
        }

        .contact-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8a80 100%);
            border-radius: 2px;
            margin-right: 5px;
        }

        .contact-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        /* 统一按钮样式，符合粉色主题 */
        .contact-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
            min-width: 140px;
        }

        .contact-btn svg {
            width: 18px;
            height: 18px;
        }

        /* 主要按钮 - 改为白色背景粉色边框样式，与页面风格统一 */
        .contact-btn-primary {
            background: #fff;
            color: #ff6b9d;
            border: 2px solid #ff6b9d;
            box-shadow: 0 2px 8px rgba(255, 107, 157, 0.15);
        }

        .contact-btn-primary:hover {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
        }

        .contact-btn-primary svg {
            fill: #ff6b9d;
        }

        .contact-btn-primary:hover svg {
            fill: #fff;
        }

        /* 次要按钮 - 边框样式 */
        .contact-btn-secondary {
            background: #ff6b9d;
            color: #fff;
            /*border: 1px solid #ff8fb3; */
            margin-bottom:10px;
        }

   /*
        .contact-btn-secondary:hover {
            background: #fff5f7;
            transform: translateY(-2px);
        }

        .contact-btn-secondary svg {
            fill: #ff6b9d;
        }
*/
        /* 已解锁按钮 */
        .contact-btn-unlocked {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
        }

        .contact-btn-unlocked:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
        }

        .contact-details {
            margin-top: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding: 12px 15px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border: 1px solid #f0f0f0;
        }

        .contact-item-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #fff5f7 0%, #ffe0e6 100%);
            border-radius: 50%;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .contact-item-icon svg {
            width: 22px;
            height: 22px;
            fill: #ff6b9d;
        }

        .contact-item-content {
            flex: 1;
            position: relative;
        }

        .contact-item-label {
            font-size: 12px;
            color: #999;
            margin-bottom: 4px;
        }

        .contact-item-value {
            font-size: 16px;
            font-weight: 500;
            color: #333;
        }

        .copy-btn {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8a80 100%);
            border: none;
            padding: 6px 14px;
            border-radius: 15px;
            font-size: 12px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s;
        }

        .copy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 8px rgba(255, 107, 157, 0.4);
        }

        .hidden {
            display: none !important;
        }

        /* 弹窗基础样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .modal-content {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            border-radius: 16px;
            padding: 0;
            width: 90%;
            max-width: 400px;
            z-index: 1000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff6b9d 100%);
            color: #fff;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }

        .modal-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #fff;
            padding: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .modal-body {
            padding: 20px;
            max-height: 60vh;
            overflow-y: auto;
        }

        /* 联系方式弹窗 - 重新设计精美的弹窗样式 */
        .contact-modal {
            display: none;
        }

        .contact-modal.show {
            display: block;
        }

        .contact-modal .modal-content {
            border-radius: 20px;
            overflow: hidden;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .contact-modal .modal-header {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            padding: 20px 24px;
            position: relative;
        }

        .contact-modal .modal-header h3 {
            font-size: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
/*
        .contact-modal .modal-header h3::before {
            content: '';
            width: 24px;
            height: 24px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z'/%3E%3C/svg%3E");
            background-size: contain;
        }
        */

        .contact-modal .modal-close {
            width: 32px;
            height: 32px;
            font-size: 22px;
            background: rgba(255, 255, 255, 0.25);
        }

        .contact-modal .modal-body {
            /* 弹窗body padding改为10px */
            padding: 20px;
            background: linear-gradient(180deg, #fff5f7 0%, #fff 100%);
        }

        /* 新的联系方式列表样式 */
        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            /* 联系项padding调整 */
            padding: 10px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(255, 107, 157, 0.08);
            border: 1px solid #ffe0e6;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 157, 0.15);
        }

        .contact-info-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 14px;
            flex-shrink: 0;
        }

        .contact-info-icon.phone-icon {
            background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
        }

        .contact-info-icon.wechat-icon {
            background: linear-gradient(135deg, #07c160 0%, #2aae67 100%);
        }

        .contact-info-icon.qq-icon {
            background: linear-gradient(135deg, #12b7f5 0%, #54c8f5 100%);
        }

        .contact-info-icon svg {
            width: 26px;
            height: 26px;
            fill: #fff;
        }

        .contact-info-content {
            flex: 1;
            min-width: 0;
        }

        /* 移除 contact-info-label 样式 */

        .contact-info-value {
            font-size: 17px;
            font-weight: 600;
            color: #333;
            word-break: break-all;
        }

        .contact-copy-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff6b9d 100%);
            color: #fff;
            border: none;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 12px;
        }

        .contact-copy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
        }

        .contact-copy-btn:active {
            transform: scale(0.98);
        }

        .contact-copy-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        .contact-copy-btn.copied {
            background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
        }

        /* 复制成功提示 */
        .copy-toast {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .copy-toast.show {
            opacity: 1;
        }

        /* 举报弹窗 */
        .report-modal {
            display: none;
        }

        .report-modal.show {
            display: block;
        }

        .report-form {
            margin-top: 10px;
        }

        .report-description {
            margin-bottom: 20px;
        }

        .report-description label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .report-description textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }

        .report-description textarea:focus {
            outline: none;
            border-color: #ff6b9d;
        }

        /* 添加验证码样式 */
        .report-captcha {
            margin-bottom: 20px;
        }

        .report-captcha label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .captcha-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .captcha-wrapper input {
            flex: 1;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .captcha-wrapper input:focus {
            outline: none;
            border-color: #ff6b9d;
        }

        .captcha-wrapper img {
            height: 44px;
            border-radius: 8px;
            cursor: pointer;
        }

        .report-submit {
/*            text-align: center;*/
            margin-top: 20px;
        }

        .report-submit .submit-btn {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff6b9d 100%);
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            width: 45%;
            transition: all 0.3s;
        }

        .report-submit .submit-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
        }

        .report-submit .submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }

        /* 猜你喜欢区块样式 */
        .recommend-section {
            margin: 10px;
        }

        .recommend-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
        }

        .recommend-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8a80 100%);
            border-radius: 2px;
            margin-right: 8px;
        }

        .recommend-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .recommend-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            min-height: 0;
        }

        .recommend-card-link {
            display: block;
            text-decoration: none;
        }

        .recommend-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 133.33%; /* 3:4 比例 */
            overflow: hidden;
            background: #f5f5f5;
        }

        .recommend-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .recommend-info {
            padding: 8px 10px 10px;
        }

        /* 添加名称行样式，名称和价格在同一行 */
        .recommend-name-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }

        .recommend-name {
            font-size: 15px;
            font-weight: 600;
            color: #333;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        /* 名称旁边的价格样式 */
        .recommend-name-price {
            font-size: 13px;
            color: #ff6b9d;
            font-weight: 500;
        }

        .recommend-details {
            font-size: 12px;
            color: #999;
            margin-bottom: 6px;
        }

        .recommend-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .recommend-likes {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: #ff6b9d;
        }

        .recommend-likes svg {
            width: 14px;
            height: 14px;
        }

        /* 添加浏览量样式 */
        .recommend-views {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            color: #999;
        }

        .recommend-views svg {
            width: 14px;
            height: 14px;
        }

        /* 底部操作栏样式 */
        .action-buttons-fixed {
/*            position: fixed;*/
            bottom: 0;
            left: 0;
            right: 0;
            max-width: 750px;
            margin: 0 auto;
            display: flex;
/*            justify-content: center;*/
            align-items: center;
            gap: 30px;
            padding: 5px 15px;
            background: #fff;
            border-top: 1px solid #f0f0f0;
            z-index: 100;
        }

        /* 将 flex-direction 从 column 改为 row，使图标和文字在一排 */
        .action-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            padding: 8px 16px;
            border: 1px solid #eee;
            border-radius: 20px;
            background: #fff;
        }

        .action-item svg {
            width: 20px;
            height: 20px;
        }

        .action-item span {
            font-size: 13px;
            color: #666;
        }

        .action-item.active svg {
            fill: #ff6b9d;
            stroke: #ff6b9d;
        }

        .action-item.active span {
            color: #ff6b9d;
        }

        /* 添加相册弹窗样式 */
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
        }
        
        .gallery-modal.show {
            display: flex;
            flex-direction: column;
        }
        
        .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            color: #fff;
        }
        
        .gallery-counter {
            font-size: 16px;
        }
        
        .gallery-close {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-content img,
        .gallery-content video {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .gallery-nav:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .gallery-prev {
            left: 15px;
        }
        
        .gallery-next {
            right: 15px;
        }
        
        .gallery-thumbnails {
            display: flex;
            gap: 8px;
            padding: 15px;
            overflow-x: auto;
            justify-content: center;
        }
        
        .gallery-thumb {
            width: 60px;
            height: 60px;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.6;
            flex-shrink: 0;
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        
        .gallery-thumb.active {
            opacity: 1;
            border-color: #ff6b9d;
        }
        
        .gallery-thumb img,
        .gallery-thumb video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* 
         *  更新收藏举报按钮样式，与 publish_detail.php 的 detail-actions 保持一致 
         */
        .action-buttons-fixed {
            display: flex;
            gap: 10px;
            padding: 10px;
            background: white;
            margin: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                        0 2px 10px rgba(0, 0, 0, 0.04);
        }

        .action-item {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px;
            border: 1px solid #e8e8e8;
            border-radius: 10px;
            background: white;
            font-size: 14px;
            color: #666;
            cursor: pointer;
            transition: all 0.25s;
            font-weight: 500;
        }

        .action-item:active {
            transform: scale(0.96);
            background: #f5f5f5;
        }

        .action-item svg {
            width: 18px;
            height: 18px;
            transition: all 0.25s;
        }

        .action-item.active {
            background: linear-gradient(135deg, #fff0f5 0%, #ffe8f0 100%);
            border-color: #ff6b9d;
            color: #ff6b9d;
        }

        .action-item.active svg {
            fill: #ff6b9d;
            transform: scale(1.1);
        }

        .action-item span {
            font-size: 14px;
        }
        
        .vip-prompt-message {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
    background: linear-gradient(90deg, rgba(248, 7, 133, 0.1), transparent);
    padding: 15px;
    border-radius: 8px;
    /* border-left: 3px solid rgba(248, 7, 133, 0.3); */
}
