        /* 基础样式 */
        * {
            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;
            max-width: 750px;
            margin: 0 auto;
            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);
        }

        .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;
        }

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

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

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

        .header-right {
            width: 42px;
        }

        /* 主内容 */
        .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;
            background: #f5f5f5;
        }

        .user-details {
            flex: 1;
        }

        .user-name {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
        }

        .verified-badge {
            background: linear-gradient(135deg, #ffd680 0%, #ff8fb3 100%);
            color: #fff;
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 10px;
        }

        .user-views {
            font-size: 13px;
            color: #999;
        }

        .message-btn {
            background: linear-gradient(135deg, #aa6de8 0%, #ff8fb3 100%);
            color: #fff;
            border: none;
            padding: 2px 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: #555;
            font-size: 14px;
            font-weight: 500;
        }

        /* 兴趣爱好 */
        .hobby-section {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }

        .hobby-label {
            font-size: 13px;
            color: #999;
            margin-bottom: 8px;
        }

        .hobby-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .hobby-tag {
            padding: 5px 12px;
            background: linear-gradient(135deg, #fff0f3 0%, #ffe0e6 100%);
            color: #ff6b9d;
            border-radius: 15px;
            font-size: 12px;
        }

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

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

        .section-header::before {
            content: '';
            width: 3px;
            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: 14px;
            line-height: 1.8;
            color: #555;
            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;
            background: #f5f5f5;
        }

        .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;
        }

        /* 底部操作栏 */
        /* 将收藏举报按钮样式改为与 publish_detail.php 一致 */
        .action-buttons-fixed {
            display: flex;
            align-items: center;
            padding: 10px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin: 10px;
        }

        .action-item {
            flex: 1;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 10px 15px;
            border: 1px solid #eee;
            border-radius: 20px;
            background: #fff;
            transition: all 0.3s;
        }

        .action-item:hover {
            background: #fff5f7;
            border-color: #ffccd5;
        }

        .action-item svg {
            width: 18px;
            height: 18px;
            margin-right: 5px;
        }

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

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

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

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

        /* 联系方式区域样式 */
        .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;
        }

        .contact-title::before {
            content: '';
            width: 3px;
            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;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            flex: 1;
            min-width: 140px;

             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 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;
            margin-bottom: 10px;
           /* border: 1px solid #ff6b9d; */
        }

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

        .contact-btn-secondary svg {
            fill: #ff6b9d;
        }
        */

        /* 猜你喜欢区块样式 */
        .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: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

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

        .recommend-cover {
            position: relative;
            width: 100%;
            height: 150px;
            overflow: hidden;
        }

        .recommend-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-color: #f0f0f0;
        }

        .recommend-price {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 11px;
        }

        .recommend-price span {
            color: #ffd700;
            font-weight: 600;
        }

        .recommend-info {
            padding: 10px;
        }

        .recommend-user {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .recommend-user-left {
            display: flex;
            align-items: center;
        }

        .recommend-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 8px;
            background-color: #f0f0f0;
        }

        .recommend-nickname {
            font-size: 13px;
            font-weight: 500;
            color: #333;
        }

        .recommend-location {
            font-size: 11px;
            color: #999;
        }

        .recommend-job {
            font-size: 11px;
            color: #ff6b9d;
            background: #fff0f5;
            padding: 2px 8px;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .recommend-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-bottom: 8px;
        }

        .recommend-tag {
            padding: 2px 6px;
            background: #fff0f5;
            color: #ff6b9d;
            border-radius: 8px;
            font-size: 10px;
        }

        .recommend-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 8px;
            border-top: 1px solid #f5f5f5;
        }

        .recommend-stats {
            display: flex;
            width: 100%;
            justify-content: space-between;
        }

        .recommend-stats span {
            display: flex;
            align-items: center;
            gap: 3px;
            font-size: 11px;
            color: #999;
        }

        /* 弹窗基础样式 */
        .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;
            background: linear-gradient(180deg, #fff5f7 0%, #fff 100%);
        }

        /* 联系方式弹窗 */
        .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-info-list {
            display: flex;
            flex-direction: column;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            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;
            margin-bottom: 12px;
        }

        .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-value {
            font-size: 17px;
            font-weight: 600;
            color: #333;
            word-break: break-all;
        }

        .contact-info-value.empty {
            color: #999;
        }

        .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;
        }

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

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

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

        /* 添加举报描述label样式，与highend_detail.php一致 */
        .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;
        }

        /* 添加验证码区域样式 */
        .captcha-row {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

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

        .captcha-row input:focus {
            border-color: #ff6b9d;
        }

        .captcha-row img {
            height: 40px;
            border-radius: 6px;
            cursor: pointer;
            margin-left: 10px;
        }

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

        /* 添加取消按钮样式，与highend_detail.php一致 */
        .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;
            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 .cancel-btn {
            background: #f5f5f5;
            color: #666;
            border: none;
            padding: 12px 40px;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            margin-right: 10px;
        }

        .report-submit .cancel-btn:hover {
            background: #e8e8e8;
        }


        /* 相册弹窗 */
        .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;
        }

        .hidden {
            display: none !important;
        }
        
        .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); */
}