
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", sans-serif;
            color: #2c3e50;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
            line-height: 1.6;
            padding-top: 50px;
            padding-bottom: 50px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            font-feature-settings: "kern" 1;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        /* Header styles */
        .header {
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa8c5 100%);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(255, 107, 157, 0.2);
        }
        .header-title {
            font-size: 17px;
            font-weight: 600;
            flex: 1;
            text-align: center;
            letter-spacing: 1px;
            color: white;
        }
        .user-icon {
            cursor: pointer;
            padding: 6px;
            border-radius: 50%;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.2);
        }
        .user-icon:active {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0.96);
        }

        .user-icon svg {
            width: 22px;
            height: 22px;
            display: block;
        }

        .detail-container {
            background: transparent;
            padding: 0 0 20px;
            min-height: 100vh;
        }

        .image-container {
            width: 100%;
            background: #fff;
            box-shadow: 0 8px 24px #f5f5f5;
            cursor: pointer; 
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }

        .image-container::after {
            content: '点击查看相册';
            position: absolute;
            bottom: 50px;
            right: 20px;
            background: rgba(255, 107, 157, 0.9);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .image-container:hover::after {
            opacity: 1;
        }

        .main-image {
            height: 220px; /* 固定高度 */
            width:94%;
            display: block;
            object-fit: cover;
            margin: 10px auto;

        }

        /* Title detail section */
        .title-detail {
            background: white;
            padding: 20px 16px;
            margin: 0 10px -10px;
            border-radius: 10px 10px 0 0;
            box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
            position: relative;
            z-index: 15;
        }

        .detail-main-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0 0 10px 0;
            line-height: 1.4;
            letter-spacing: 0.5px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .detail-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 12px;
            color: #7f8c8d;
        }

        .detail-meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .detail-meta-item svg {
            flex-shrink: 0;
            opacity: 0.8;
        }

        .publisher-info {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            font-size: 14px;
        }

        .yanxuan-tag {
            background: linear-gradient(135deg, #FF6B9D 0%, #FF8EC7 100%);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
        }

        .publisher-name {
            color: #333;
            font-weight: 500;
        }

        .anonymous-tag {
            color: #999;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        /* 轮播点点点样式 */
        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 5;
        }

        .carousel-dots .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
        }

        .carousel-dots .dot.active {
            background: white;
            width: 24px;
            border-radius: 4px;
        }

        /* Detail info card */
        .detail-info-section {
            background: white;
            padding: 20px 10px;
            margin: 0px 10px 10px;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            position: relative;
            z-index: 5;
        }

        .detail-info-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-top: 10px;
            margin-bottom: 10px;
            padding-left: 8px;
            border-left: 2px solid;
            border-image: linear-gradient(180deg, #ff6b9d 0%, #ff8fb3 100%) 1;
            letter-spacing: 0.6px;
            line-height: 1.3;
        }

        .detail-info-table {
            width: 100%;
        }

        .detail-info-row {
            display: flex;
            padding: 10px 12px;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.25s ease;
            border-radius: 8px;
        }

        .detail-info-row:last-child {
            border-bottom: none;
        }

        .detail-info-row:hover {
            background: linear-gradient(90deg, rgba(255, 107, 157, 0.04), rgba(255, 107, 157, 0.02));
            padding-left: 16px;
        }

        .detail-info-label {
            width: 60px;
            font-size: 14px;
            color: #7f8c8d;
            flex-shrink: 0;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        .detail-info-value {
            flex: 1;
            font-size: 14px;
            color: #555;
            font-weight: 500;
            letter-spacing: 0.2px;
        }

        /* Reduced price prominence - smaller size and lighter style */
        .detail-price {
            color: #ff6b9d;
            font-size: 17px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        /* Description section */
        .detail-desc-section {
            background: white;
            padding: 10px;
            margin: 0 10px 10px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                        0 2px 10px rgba(0, 0, 0, 0.04);
        }

        .detail-desc-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
            padding-left: 8px;
            border-left: 2px solid;
            border-image: linear-gradient(180deg, #ff6b9d 0%, #ff8fb3 100%) 1;
            letter-spacing: 0.6px;
        }

        .detail-desc-content {
            font-size: 14px;
            color: #2c3e50;
            line-height: 1.8;
            letter-spacing: 0.3px;
             margin-bottom: 10px;
            /* white-space: pre-wrap; 
            margin-top:-20px;
            */
        }

        /* Action buttons */
        .detail-actions {
            display: flex;
            gap: 10px;
            padding: 10px;
            background: white;
            margin: 0 10px 10px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                        0 2px 10px rgba(0, 0, 0, 0.04);
        }

        /* Added favorite button styles with active state */
        .action-btn {
            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-btn:active {
            transform: scale(0.96);
            background: #f5f5f5;
        }

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

        /* Favorited state styling */
        .action-btn.favorited {
            background: linear-gradient(135deg, #fff0f5 0%, #ffe8f0 100%);
            border-color: #ff6b9d;
            color: #ff6b9d;
        }

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

        /* Contact section */
        .contact-section {
            background: white;
            padding: 10px;
            margin: 0 10px 10px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                        0 2px 10px rgba(0, 0, 0, 0.04);
        }

        .contact-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
            padding-left: 8px;
            border-left: 2px solid;
            border-image: linear-gradient(180deg, #ff6b9d 0%, #ff8fb3 100%) 1;
            letter-spacing: 0.6px;
        }

        .contact-details {
            background: linear-gradient(135deg, #fff9fb 0%, #fff5f8 100%);
            border: 2px solid #ffe8f0;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 18px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid #ffe8f0;
        }

        .contact-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .contact-item-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
        }

        .contact-item-icon svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

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

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

        .contact-item-value {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            letter-spacing: 0.5px;
        }

        .contact-buttons {

            display:grid;
            padding: 0px;
            background: white;
            margin: 0;
            border-radius: 10px;
             gap：10px;
            /*
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                        0 2px 10px rgba(0, 0, 0, 0.04);
                        */
        }

        .contact-btn-primary,
        .contact-btn-secondary {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            padding: 15px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.6px;
            position: relative;
            overflow: hidden;
        }

        .contact-btn-primary {
            margin-top:15px;
            margin-bottom:10px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            color: white;
            box-shadow: 0 6px 24px rgba(255, 107, 157, 0.4);
        }

       

        .contact-btn-secondary {
            margin-top:5px;
            background: linear-gradient(135deg, #5ee7df 0%, #49d6cc 100%);
            color: white;
            box-shadow: 0 6px 24px rgba(94, 231, 223, 0.4);
        }


        .contact-viewed {
            background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
            border: 2px solid #c8e6c9;
            border-radius: 16px;
            padding: 18px;
            text-align: center;
            color: #2e7d32;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .contact-viewed svg {
            width: 20px;
            height: 20px;
            fill: #2e7d32;
        }

        .hidden {
            display: none;
        }

        /* Recommend section */
        .recommend-section {
            background: white;
            padding: 10px;
            margin: 0 10px 10px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06),
                        0 2px 10px rgba(0, 0, 0, 0.04);
        }

        .recommend-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
            padding-left: 8px;
            border-left: 2px solid;
            border-image: linear-gradient(180deg, #ff6b9d 0%, #ff8fb3 100%) 1;
            letter-spacing: 0.6px;
        }

        /* Updated to two column grid layout */
        .recommend-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        /* Added styles for a tag to maintain layout */
        .recommend-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .recommend-item {
            background: #fff;
            border-radius: 10px 10px 0 0 ;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
            height: 100%; /* Ensure items have equal height */
        }

        .recommend-item:active {
            transform: scale(0.98);
        }

        /* Large image taking full width */
        .recommend-image-wrapper {
            position: relative;
            width: 100%;
            height: 120px;
            overflow: hidden;
            background: #f5f5f5;
        }

        .recommend-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* 将标题改为绝对定位在图片底部，背景半透明 */
        .recommend-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 5px 10px;
            background: rgba(0, 0, 0, 0.5);
        }

        .recommend-item-title {
            text-align: center;
            font-size: 12px;
            color: #fff;
            margin-bottom: 0px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

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

        .recommend-meta svg {
            width: 13px;
            height: 13px;
            fill: #999;
        }

        .recommend-price {
            font-size: 16px;
            font-weight: 700;
            color: #ff6b9d;
        }

        /* Bottom navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            display: flex;
            justify-content: space-around;
            padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
            box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
            z-index: 100;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 6px 12px;
            color: #95a5a6;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.25s;
        }

        .nav-item svg {
            width: 24px;
            height: 24px;
        }

        .nav-item:active {
            transform: scale(0.92);
        }

        /* Added modal styles for contact popup */
        .contact-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
            backdrop-filter: blur(4px);
        }

        .contact-modal.hidden {
            display: none;
        }

        .contact-modal-content {
            background: white;
            border-radius: 20px;
            width: 100%;
            max-width: 400px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            /* 添加iOS兼容性修复 */
            position: relative;
            -webkit-overflow-scrolling: touch;
            will-change: transform;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .contact-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid #f0f0f0;
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
        }

        .contact-modal-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }

        .contact-modal-close {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            background: #f5f5f5;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s;
        }

        .contact-modal-close:hover {
            background: #e8e8e8;
        }

        .contact-modal-close:active {
            transform: scale(0.9);
        }

        .contact-modal-close svg {
            width: 18px;
            height: 18px;
            fill: #666;
        }

        .contact-modal-body {
            padding: 15px;
            background:linear-gradient(180deg, #fff5f7 0%, #fff 100%);
        }

        .modal-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: #fff;
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 10px rgba(255, 107, 157, 0.08);
            border: 1px solid #ffe0e6;
            transition: all 0.3s ease;
            
        }

        .modal-contact-item:last-child {
            margin-bottom: 0;
        }

        .modal-contact-item:active {
            background: #f0f0f0;
        }

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

        .modal-contact-icon.phone {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
        }

        .modal-contact-icon.wechat {
            background: linear-gradient(135deg, #09bb07 0%, #2dd62d 100%);
        }

        .modal-contact-icon.qq {
            background: linear-gradient(135deg, #12B7F5 0%, #34C7F6 100%);
        }

        .modal-contact-icon.cloud {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
        }

        .modal-contact-icon.telegram {
            background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
        }

        .modal-contact-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .modal-contact-text {
            flex: 1;
            font-size: 14px;
            font-weight: 600;
            color: #2c3e50;
        }
       
       /*
        .modal-contact-copy {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e0e0e0;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .modal-contact-copy:active {
            transform: scale(0.9);
            background: #f5f5f5;
        }

        .modal-contact-copy svg {
            width: 18px;
            height: 18px;
            fill: #666;
        }
        */

        @media (min-width: 769px) {
            .bottom-nav {
                display: none;
            }

            body {
                max-width: 640px;
                margin: 0 auto;
                box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
                padding-bottom: 0;
            }
        }

        /* Added full-screen album styles from comm/photo_album.html */
        /* 全屏相册容器 */
        .fl_fullscreen_album {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* Simplified background to solid black */
            background: #000;
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fl_fullscreen_album.fl_active {
            display: block;
            opacity: 1;
        }

        /* 相册主容器 */
        .fl_album_container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* 图片显示区域 */
        .fl_image_wrapper {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 80px 20px 100px;
        }

        .fl_album_image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fl_album_image.fl_loaded {
            opacity: 1;
            transform: scale(1);
        }

        /* 顶部控制栏 */
        .fl_album_header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* Simplified gradient */
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
            z-index: 10;
        }

        .fl_album_title {
            font-size: 18px;
            font-weight: 600;
            color: white;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        /* Simplified close button to minimalist black & white style */
        .fl_close_btn {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fl_close_btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: rotate(90deg) scale(1.05);
        }

        .fl_close_btn:active {
            transform: rotate(90deg) scale(0.95);
        }

        .fl_close_btn svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        /* 左右导航按钮 */
        /* Simplified nav buttons to minimalist style */
        .fl_nav_btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .fl_nav_btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-50%) scale(1.1);
        }

        .fl_nav_btn:active {
            transform: translateY(-50%) scale(1);
        }

        .fl_nav_btn svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .fl_prev_btn {
            left: 30px;
        }

        .fl_next_btn {
            right: 30px;
        }

        /* 底部信息栏 */
        .fl_album_footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 20px;
            /* Simplified gradient */
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        /* 图片计数器 */
        /* Simplified counter to clean minimalist style */
        .fl_counter {
            color: white;
            font-size: 16px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 24px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            letter-spacing: 1px;
        }

        /* 缩略图导航 */
        .fl_thumbnails {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 5px;
            scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }

        .fl_thumbnails::-webkit-scrollbar {
            display: none;
        }

        /* Simplified thumbnail borders to clean white style */
        .fl_thumbnail {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.1);
        }

        .fl_thumbnail:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.6);
        }

        .fl_thumbnail.fl_active {
            border-color: white;
            border-width: 3px;
            transform: scale(1.05);
        }

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

        /* 响应式设计 */
        @media (max-width: 768px) {
            .fl_nav_btn {
                width: 50px;
                height: 50px;
            }

            .fl_nav_btn svg {
                width: 24px;
                height: 24px;
            }

            .fl_prev_btn {
                left: 15px;
            }

            .fl_next_btn {
                right: 15px;
            }

            .fl_thumbnail {
                width: 50px;
                height: 50px;
            }

            .fl_counter {
                font-size: 14px;
                padding: 8px 20px;
            }
        }

        /* 加载动画 */
        @keyframes fl_fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* 头部导航样式 */
        .header {
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa8c5 100%);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(255, 107, 157, 0.2);
        }

        .header .location {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 20px;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.2);
        }

        .header .location:active {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(0.96);
        }

        .header .location svg {
            width: 18px;
            height: 18px;
        }

        .header .header-title {
            font-size: 18px;
            font-weight: 700;
            letter-spacing: 1px;
        }

        /* 右侧用户中心侧边栏样式 */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .sidebar-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            height: 100%;
            background-color: #fff;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 1001;
            padding-bottom: env(safe-area-inset-bottom);
            display: flex;
            flex-direction: column;
        }

        .sidebar.show {
            transform: translateX(0);
        }

        .user-profile {
            padding: 20px;
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa8c5 100%);
            color: white;
            text-align: center;
            position: relative;
        }

        .user-profile-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }

        .user-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 10px;
        }

        .user-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .user-hint {
            font-size: 13px;
            opacity: 0.8;
        }

        .vip-normal { color: #95a5a6; }
        .vip-quarterly { color: #27ae60; }
        .vip-annual { color: #f39c12; }
        .vip-supreme { color: #e74c3c; }

        .sidebar-menu {
            flex-grow: 1;
            padding: 10px 0;
            overflow-y: auto;
        }

        .sidebar-menu-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            transition: background-color 0.2s;
        }

        .sidebar-menu-item:hover {
            background-color: #f5f5f5;
        }

        .sidebar-menu-item svg {
            width: 20px;
            height: 20px;
            margin-right: 15px;
            fill: #666;
        }

        /* 区域选择模态框样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            max-height: 85vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            /* 添加iOS兼容性修复 */
            position: relative;
            -webkit-overflow-scrolling: touch;
            will-change: transform;
        }

        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 18px;
            font-weight: 700;
            color: #333;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
        }

        .modal-body {
            padding: 20px;
            flex-grow: 1;
            overflow-y: auto;
            /* 添加iOS平滑滚动和防止内容溢出 */
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
        }

        .area-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 12px;
        }

        .area-item {
            background-color: #f9f9f9;
            padding: 12px 16px;
            border-radius: 10px;
            text-align: center;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .area-item:hover {
            background-color: #e8e8e8;
            transform: translateY(-2px);
        }

        .area-item.active {
            background-color: #ff6b9d;
            color: white;
            font-weight: 600;
        }

        .modal-footer {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            background: #fdfdfd;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .area-back-btn {
            background: #e0e0e0;
            color: #333;
            padding: 10px 20px;
            border-radius: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .area-back-btn.show {
            display: flex;
        }

        .area-back-btn:hover {
            background: #ccc;
        }

        .area-confirm-btn {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .area-confirm-btn:hover {
            box-shadow: 0 4px 16px rgba(255, 107, 157, 0.4);
        }

        /* 退出登录确认弹窗样式 */
        .logout-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .logout-modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .logout-modal-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 350px;
        }

        .logout-modal-title {
            font-size: 20px;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .logout-modal-text {
            font-size: 15px;
            color: #666;
            margin-bottom: 30px;
        }

        .logout-modal-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .logout-modal-btn-cancel,
        .logout-modal-btn-confirm {
            padding: 12px 25px;
            border-radius: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .logout-modal-btn-cancel {
            background: #e0e0e0;
            color: #333;
        }

        .logout-modal-btn-cancel:hover {
            background: #ccc;
        }

        .logout-modal-btn-confirm {
            background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
            color: white;
        }

        .logout-modal-btn-confirm:hover {
            box-shadow: 0 4px 16px rgba(255, 107, 157, 0.4);
        }

        /* 底部导航样式 */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, #ffffff 0%, #fefefe 100%);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            display: flex;
            justify-content: space-around;
            padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
            z-index: 100;
            box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04),
                        0 -2px 8px rgba(0, 0, 0, 0.02);
            backdrop-filter: blur(10px);
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 8px 12px;
            color: #95a5a6;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border-radius: 12px;
            flex: 1;
            text-align: center;
        }

        .nav-item:active {
            transform: scale(0.92);
        }

        .nav-item.active {
            color: #ff6b9d;
            font-weight: 600;
            background: rgba(255, 107, 157, 0.1);
        }

        .nav-item svg {
            width: 24px;
            height: 24px;
        }
        
        
        .report-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
}

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

.report-modal .modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent; /* Already covered by .report-modal */
}

.report-modal .modal-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 16px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	/* 添加iOS兼容性修复 */
	-webkit-overflow-scrolling: touch;
	will-change: transform;
}

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

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

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

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

.report-modal .modal-body {
	max-width: 100%;
	padding: 20px;
}

.report-form {
	width: 100%;
	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;
	box-sizing: border-box;
}

.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-input-group {
	display: flex;
	gap: 10px;
	align-items: center;
}

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

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

.captcha-input-group 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%, #ff8a9d 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;
}

.vip-prompt-message {
font-size: 13px;
color: #666;
line-height: 1.8;
margin-bottom: 0px;
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); */
}

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


.modal-contact-copy {
    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;
}

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

