        .tbdaohan_navbar {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 0px 60px 0px 20px; /* 上 右 下 左 */
            background-color: transparent; /* 默认透明 */
            position: fixed;
            top: 0;
            width: 100%;
            height: 76px;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            z-index: 2000;
            transition: background-color 0.3s ease; /* 添加过渡效果 */
        }

        /* 滚动后添加的类 */
        .tbdaohan_navbar.scrolled {
            background-color: rgba(21, 22, 24, 0.95); /* 稍微透明以实现渐变效果 */
            backdrop-filter: blur(10px); /* 可选：添加毛玻璃效果 */
        }

        .tbdaohan_search-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 315px;
            height: 36px;
            border-radius: 100px;
            background: rgba(255,255,255,.08);
            box-sizing: border-box;
            border: 1px solid rgba(255,255,255,.02);
            padding: 0 12px;
        }

        .tbdaohan_search-container input {
            background: transparent;
            border: none;
            color: white;
            outline: none;
            padding-left: 10px;
            flex-grow: 1;
        }
        
        /* 鼠标经过和获取焦点时，输入框字体颜色变白色 */
        .tbdaohan_search-container input[type="text"]:hover,
        .tbdaohan_search-container input[type="text"]:focus {
            color: white; 
        }
        
        /* 可选：如果需要同时改变占位符颜色 */
        .tbdaohan_search-container input[type="text"]:hover::placeholder{
            color: white;/**/
        }
        

        .tbdaohan_navbar-item {
            margin-left: 25px;
            color: rgba(255,255,255,.6);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size:14px;
            position: relative;
			cursor: pointer;
        }

        .tbdaohan_navbar-item i {
            margin-right: 5px;
        }

        .tbdaohan_avatar_img {
            width: 35px; /* 头像宽度 */
            height: 35px; /* 头像高度 */
            border-radius: 50%; /* 圆形头像 */
            object-fit: cover; /* 保持图片比例并覆盖整个区域 */
        }
        
        .tbdaohan_viptb {
            width: 25px; 
            height: 25px;
            object-fit: cover; /* 保持图片比例并覆盖整个区域 */
            padding: 0px 5px 0px 0px; /* 上 右 下 左 */
        }
        
        .tbdaohan_tbjuli{
            padding: 0px 5px 0px 0px; /* 上 右 下 左 */
        }

        .tbdaohan_highlight {
            display: flex;
            align-items: center;
            color: rgba(255,255,255,.6);
            height: 36px;
            line-height: 36px;
            -webkit-app-region: no-drag;
            vertical-align: text-bottom;
            background: rgba(255,255,255,.08);
            padding: 0 12px;
            box-sizing: border-box;
            border: 1px solid rgba(255,255,255,.02);
            border-radius: 30px;
            white-space: nowrap;
        }
        
        .fa-search {
            color: rgba(255,255,255,.6);
        }
        
        .tbdaohan_navbar-item:hover{
          color: #FFF;
        }
        
        /* 新增的样式 */
        .tbdaohan_search {
            display: block; /* 默认显示搜索图标 */
        }
        
        .tbdaohan_search-text{
            display: none; /* 默认隐藏搜索文本 */
            color: rgba(255,255,255,.6);
            white-space: nowrap;
            font-size: 14px;
        }
        
        .tbdaohan_search-text2{
            display: none; /* 默认隐藏搜索文本 */
            color: rgba(255,255,255,.6);
            white-space: nowrap;
            font-size: 16px;
            margin-right: 8px;
        }
        
        /* 鼠标悬停或输入框获取焦点时 */
        .tbdaohan_search-container:hover .tbdaohan_search,
        .tbdaohan_search-container:focus-within .tbdaohan_search {
            display: none; /* 隐藏搜索图标 */
        }
        
        .tbdaohan_search-container:hover .tbdaohan_search-text,
        .tbdaohan_search-container:focus-within .tbdaohan_search-text {
            display: block; /* 显示搜索文本 */
            color:#FFF;
        }
        
        .tbdaohan_search-container:hover .tbdaohan_search-text2,
        .tbdaohan_search-container:focus-within .tbdaohan_search-text2 {
            display: block; /* 显示搜索文本 */
            color:rgba(255,255,255,.3);
        }
        
		
		
		
		
		
		
        /* 筛选弹出框样式 */
        .tbdaohan_filter-dropdown {
            position: absolute;
            top: 100%; /* 紧贴按钮底部 */
            right: -135px; /* 左对齐 */
            transform: translateX(0) scale(0.95); /* 移除水平居中变换 */
            width: 300px;
			background: rgba(29, 30, 33, 0.9);
			backdrop-filter: blur(10px); 
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            display: block;
			/* 下面两个控制隐藏 */
			opacity: 0;
            visibility: hidden;
            z-index: 2001;
            backdrop-filter: blur(10px);
            transition: all 0.2s ease-out;
            margin-top: 8px;
            /* 添加箭头指示器 */
        }
        
        /* 可选：添加一个小箭头指向按钮 */
        .tbdaohan_filter-dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 50%; /* 调整箭头位置使其指向按钮 */
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(40, 42, 47, 0.95);
            filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
        }
        
        .tbdaohan_filter-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1); /* 显示时恢复缩放 */
        }

		.tbdaohan_filter-title {
			color: #fff;
			font-size: 14px;
			margin-bottom: 8px;
			border-bottom: 1px solid rgba(255, 255, 255, 0.1);
			padding-bottom: 10px; /* 可选：增加一些内边距使下边线更美观 */
		}
        
        .tbdaohan_filter-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tbdaohan_filter-category {
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            cursor: pointer;
            padding: 0px 10px;
            border-radius: 4px;
            transition: all 0.2s;
        }
        
        .tbdaohan_filter-category:hover {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .tbdaohan_filter-more {
            width: 100%;
            text-align: center;
            color: #ccc;
            font-size: 14px;
            margin-top: 10px;
            cursor: pointer;
			border-radius: 5px;
			background: rgb(76 75 75 / 50%);
			
        }
        
        .tbdaohan_filter-more:hover {
            color: #fff;
        }
		
		
		
		
		
		
		
        /* 新增的VIP升级弹出框样式 */
        .tbdaohan_viptc_dropdown {
            position: absolute;
            top: 100%;
            right: 0; /* 右对齐 */
            width: 360px;
            background: rgba(29, 30, 33, 0.9);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            display: block;
			/*下面两个控制隐藏*/
			opacity: 0;
            visibility: hidden;
            z-index: 2001;
            backdrop-filter: blur(10px);
            transition: all 0.2s ease-out;
            margin-top: 8px;
            color: #fff;
            font-family: "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }
        
        .tbdaohan_viptc_dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 30px;
            width: 50;
            height: 50;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(29, 30, 33, 0.95);
            filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
        }
		
        .tbdaohan_viptc_dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1); /* 显示时恢复缩放 */
        }
        

        
        
		.tbdaohan_viptc_qrcode {
			display: flex;
			justify-content: space-between;
			align-items: center;
			background: rgba(255, 255, 255, 0.05);
			border-radius: 8px;
			position: relative; /* 添加相对定位，作为子元素绝对定位的参照 */

		}

		.tbdaohan_viptc_qrcode img {
			max-width: 100%;
			height: auto;
			display: block;
			border-radius: 8px;
		}

		.tbdaohan_viptc_rwm {
			width: 80px;
			height: 80px;
			position: absolute;
			right: 3px;
			top: 42%; /* 垂直居中 */
			transform: translateY(-50%); /* 精确垂直居中 */
			/* 如果需要固定在底部，可以改用以下代码：
			bottom: 10px;
			top: auto;
			*/
		}
		
		.tbdaohan_viptc_content {
			position: absolute;
			left: 17px;
			top: 50%; /* 垂直居中 */
			transform: translateY(-50%); /* 精确垂直居中 */
			font-weight: bold;
			font-size: 15px;
		}
		
		.tbdaohan_viptc_content2 {
			position: absolute;
			left: 17px;
			top: 75%; /* 垂直居中 */
			transform: translateY(-50%); /* 精确垂直居中 */
			font-weight: bold;
			font-size: 14px;
		}
		
		
        
        .tbdaohan_viptc_benefits {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
		
		.tbdaohan_viptc_benefits img {
			max-width: 100%;  /* 图片最大宽度不超过容器 */
			height: auto;     /* 高度自动按比例缩放 */
			display: block;   /* 避免图片下方有间隙 */
		}
        

        .tbdaohan_viptc_upgrade {
            margin-top: 20px;
            background: linear-gradient(90deg, #f5d263, #f2a94c);
            color: #7e4500;
            text-align: center;
            padding: 5px;
            border-radius: 8px;
            cursor: pointer;
			font-size: 16px;
        }
		







		/* 新增的客户端下载弹出框样式 */
        .ClientDownload_container {
            position: absolute;
            top: 100%;
            right: 0; /* 右对齐 */
            width: 360px;
			background: rgba(29, 30, 33, 0.9);
			backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            display: block;
			/*下面两个控制隐藏*/
			opacity: 0;
            visibility: hidden;
            z-index: 2001;
            transition: all 0.2s ease-out;
            margin-top: 8px;
            color: #fff;
			margin: 15px 0px 0px 0px; /* 上 右 下 左 */
            font-family: "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }
        
        .ClientDownload_container::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 10px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(29, 30, 33, 0.95);
            filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
        }
		
        .ClientDownload_container.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1); /* 显示时恢复缩放 */
        }
		

        .ClientDownload_modal {
            text-align: center;
            width: 100%;
        }

        .ClientDownload_icon {
            font-size: 40px;
            color: white;
            margin-bottom: 5px;
            width: 50px;
            height: 50px;
            background-size: contain;
            background-repeat: no-repeat;
            margin: 0 auto 15px;
            border-radius: 5px;
        }
        
        .ClientDownload_title {
            color: white;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .ClientDownload_features {
            color: #ccc;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .ClientDownload_features span {
            margin: 0 5px;
        }

        .ClientDownload_button {
            background: #FFF;
            backdrop-filter: blur(10px); 
            color: #000;
            padding: 10px 40% 10px 40%; /* 上 右 下 左 */
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
			font-weight: bold;
        }

        
        .ClientDownload_link-container {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 10px;
            cursor: pointer;
			color: #FFF;
			font-size: 14px;
        }
		
        .ClientDownload_link {
            margin-top: 10px;
            display: inline-block;
        }
        
        .ClientDownload_arrow-icon {
			margin: 15px 0px 0px 5px; /* 上 右 下 左 */
        }
		
		




		/* 新增的 用户登录弹出框样式 */
		.userdutc_card {
			position: absolute; /* 添加绝对定位 */
			top: 100%; /* 紧贴按钮底部 */
			right: 0; /* 右对齐 */
			width: 360px;
			background: rgba(29, 30, 33, 0.9);
			backdrop-filter: blur(10px);
			border-radius: 12px;
			padding: 10px;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
			display: block;
			/*下面两个控制隐藏*/
			opacity: 0;
            visibility: hidden;
			z-index: 2001;
			transition: all 0.2s ease-out;
			margin-top: 8px;
			color: #fff;
			font-family: "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
			max-width: 330px;
		}
		
        .userdutc_card::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 10px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(29, 30, 33, 0.95);
            filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
        }
		
        .userdutc_card.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1); /* 显示时恢复缩放 */
        }
		

        .userdutc_content {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column; /* 改为竖排 */
            
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 15px;
            margin: 0px 0px 10px 0px;
            border-radius: 5px;
        }

        .userdutc_user_info {
            display: flex;
            align-items: center;
            margin-bottom: 15px; /* 添加间距 */
        }

        .userdutc_icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }
		
        .userdutc_icon img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
		

		.userdutc_title {
			font-size: 18px;
			font-weight: bold;
			color: #ffe0aa;
			white-space: nowrap;      /* 禁止换行 */
			overflow: hidden;         /* 隐藏超出部分 */
			text-overflow: ellipsis;  /* 超出部分显示省略号 */
			width: 100%;             /* 需要指定宽度（或父容器有明确宽度） */
			max-width: 300px;        /* 示例：设置一个最大宽度（根据需要调整） */
		}

        .userdutc_anliu {
            display: flex; /* 保持横排 */
            justify-content: space-between;
            align-items: center;
        }

        .userdutc_quanyi {
            display: flex;
            flex-direction: column; /* 保持竖排 */
        }

        .userdutc_subtitle {
            font-size: 14px;
            color: #a79771;
        }

        .userdutc_description {
            font-size: 14px;
            margin-top: 5px;
            color: #ffe0aa;
            text-align: left;
        }

        .userdutc_actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
			margin: 0px 0px 0px 10px; /* 上 右 下 左 */
        }

        .userdutc_button {
            background: linear-gradient(to right, #f0ae55, #eeded9);
            color: #53260b;
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 12px;
            margin-top: -5px;
            white-space: nowrap;
        }
		
		.userdutc_button:hover {
			background: linear-gradient(to right, #e09e45, #d0c3b9); /* 改变背景渐变颜色 */
			color: #FFF; /* 改变字体颜色 */
		}

		.userdutc_logout {
			background: rgb(62 62 62 / 53%);
			backdrop-filter: blur(10px); 
			border: none;
			color: #b3afaf;
			cursor: pointer;
			font-size: 14px;
			padding: 8px 10px;
			border-radius: 5px;
			width: 90%;
			margin: 0 auto; /* 上下 0，左右 auto */
			display: block; /* 确保是块级元素 */
		}
		
		.userdutc_logout:hover {
			background: linear-gradient(to right, #333333, #3d3b3b); /* 改变背景渐变颜色 */
			color: #FFF; /* 改变字体颜色 */
		}






		/* 新增的 历史记录弹出框样式 */
        /* 历史记录弹窗样式 - 修改为与其他弹窗一致 */
        .lishijilutc_cass {
            position: absolute; 
            top: 100%; /* 紧贴按钮底部 */
            right: -80px; /* 调整位置使其与其他弹窗对齐 */
            width: 300px;
            max-width: 330px;
            background: rgb(29 30 33 / 85%);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            display: block;
            /*下面两个控制隐藏*/
            opacity: 0;
            visibility: hidden;
            z-index: 2001;
            transition: all 0.2s ease-out;
            margin-top: 15px;
            color: #fff;
            font-family: "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }
        
        .lishijilutc_cass::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 90px; /* 调整箭头位置 */
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(29, 30, 33, 0.95);
            filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
        }
        
        .lishijilutc_cass.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1); /* 显示时恢复缩放 */
        }
        
        .lishijilutc_container {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;
            font-family: Arial, sans-serif;
            height: 100%;
        }

        .lishijilutc_header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-bottom: 20px;
        }

        .lishijilutc_toggle input {
            margin-left: 5px;
        }

        .lishijilutc_list {
            width: 100%;
            overflow-y: auto; /* 添加垂直滚动 */
            scrollbar-width: none; /* 隐藏Firefox滚动条 */
            -ms-overflow-style: none; /* 隐藏IE和Edge滚动条 */
            flex-grow: 1; /* 占据剩余空间 */
            max-height: 350px;
        }
        
        /* 隐藏Chrome/Safari滚动条 */
        .lishijilutc_list::-webkit-scrollbar {
            display: none;
        }

        .lishijilutc_item {
            display: flex;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            height: 65px;
            width: 100%;
            cursor: pointer;
        }

        .lishijilutc_img {
            width: 120px;
            position: relative;
        }
        
        .lishijilutc_img img {
            width: 120px;
            height: 100%;
            object-fit: cover;
            border-radius: 8px; 
        }
        
        .lishijilutc_remarks {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to bottom, #e6e6e600, #292828c9);
            color: #eee6e6;
            font-size: 12px;
            padding: 2px 5px;
            text-align: left; /* 修改为左对齐 */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .lishijilutc_info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 5px 10px;
            flex-grow: 1;
            min-width: 0; /* 关键修复 */
        }
        
        .lishijilutc_title {
            font-size: 15px;
            color: #e3e1e1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }
        
        .lishijilutc_name {
            font-size: 14px;
            color: #e3e1e1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }
        
        .lishijilutc_progress {
            font-size: 12px;
            color: #888;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
        }

        .lishijilutc_footer {
            width: 90%;
            margin-top: 10px; /* 调整与列表的间距 */
            font-size: 14px;
            color: #888;
            cursor: pointer;
            background: linear-gradient(to right, #333333, #3d3b3b);
            border-radius: 5px; 
            padding: 10px 10px 10px 10px; /* 上 右 下 左 */
            text-align: center;
            margin: 10px 0px 0px 0px; /* 上 右 下 左 */
        }
		
		
		
		
		
		/* 搜索记录 弹出框交互 */
		.searchtc_container {
			position: absolute; 
			top: 100%; /* 紧贴输入框底部 */
			right: 0; /* 与输入框左对齐 */
			width: 315px; /* 与输入框宽度一致 */
			max-width: 330px;
			z-index: 2001;
		}
		 


        .searchtc_card {
			position: absolute;
            width: 250px;
            border-radius: 8px;
            padding: 20px 20px 0px 20px; /* 上 右 下 左 */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            max-height: 80vh;
            overflow: hidden;
			top: -10px;; /* 紧贴输入框底部 */
			right: 488px;; /* 与输入框左对齐 */
			background: rgba(29, 30, 33, 0.9);
			backdrop-filter: blur(10px); 
            border: 1px solid rgba(255,255,255,.02);
			/* 默认隐藏 */
			opacity: 0;
			visibility: hidden;
			transform: translateX(10px) scale(0.9); /* 初始状态：轻微偏移和缩小 */
			transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
			z-index: 2001;
        }
		
		.searchtc_card.show {
			opacity: 1;
			visibility: visible;
			transform: translateX(0) scale(1); /* 显示时恢复原位 */
		}
		
		
		.searchtc_card::before {
			content: '';
			position: absolute;
			top: -8px;
			left: 30px; /* 调整箭头位置与输入框对齐 */
			width: 0;
			height: 0;
			border-left: 8px solid transparent;
			border-right: 8px solid transparent;
			border-bottom: 8px solid rgba(29, 30, 33, 0.95);
			filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
		}

		

        .searchtc_section-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 14px;
            color: #ccc;
        }

        /* 垃圾桶图标（用 emoji 替代，或可以用 CSS 绘制） */
        .searchtc_clear-icon {
            cursor: pointer;
            font-size: 16px;
        }

        .searchtc_history-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }

        .searchtc_history-item {
            font-size: 14px;
            color: #fff;
            cursor: pointer;
            padding: 0px 5px 0px 5px; /* 上 右 下 左 */
			text-align: center;
        }

        /* 热门搜索列表容器 - 添加滚动条样式 */
        .searchtc_hot-list-container {
            max-height: 300px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #0b0b148c #1a1a1e6b;
        }
        
        /* 自定义滚动条样式 - 适用于WebKit浏览器 */
        .searchtc_hot-list-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .searchtc_hot-list-container::-webkit-scrollbar-track {
            background: #242536;
            border-radius: 10px;
        }
        
        .searchtc_hot-list-container::-webkit-scrollbar-thumb {
            background-color: #4a4a6a;
            border-radius: 10px;
            border: 1px solid #242536;
        }

        .searchtc_hot-list {
            display: flex;
            flex-direction: column;
        }

        .searchtc_hot-item {
            display: flex;
            align-items: center;
            width: 100%;
            padding: 10px 0;
			cursor: pointer;
        }

        .searchtc_hot-item:last-child {
            border-bottom: none;
        }

        .searchtc_hot-rank {
            width: 30px;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            color: #999;
            margin-right: 10px;
        }

        .searchtc_hot-img {
            width: 40px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 10px;
        }

        .searchtc_hot-info {
            display: flex;
            flex-direction: column;
        }

        .searchtc_hot-title {
            font-size: 14px;
            margin-bottom: 5px;
			color: #fff;
        }

        .searchtc_hot-desc {
            font-size: 12px;
            color: #999;
        }
		







        .unique_vip_modal_overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 100000;
            backdrop-filter: blur(5px);
        }

        .unique_vip_modal_overlay.unique_vip_show {
            display: flex;
        }

        .unique_vip_modal {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            width: 100%;
			height: 78vh;
            max-width: 1000px;
            max-height: 80vh;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.7);
            opacity: 0;
            animation: unique_vip_popIn 0.4s 0.2s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            display: flex;
        }

        .unique_vip_modal_left {
            flex: 1;
			padding: 40px 20px 40px 20px; /* 上 右 下 左 */
            overflow-y: auto;
            max-height: 80vh;
        }

        .unique_vip_modal_right {
            width: 350px;
            background: white;
            border-left: 1px solid #eee;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
			border-radius: 0px 20px 20px 0px; /* 左上, 右上, 右下, 左下 */
        }

        /* 滚动条美化 */
        .unique_vip_modal_left::-webkit-scrollbar {
            width: 6px;
        }

        .unique_vip_modal_left::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 3px;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        .unique_vip_modal_left::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 3px;
        }

        .unique_vip_modal_left::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #5a6fd8, #6a4190);
        }

        .unique_vip_animated_bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
            animation: unique_vip_float 8s ease-in-out infinite;
            border-radius: 25px;
            z-index: 1;
            pointer-events: none;
        }

        .unique_vip_modal_header {
            text-align: center;
            margin-bottom: 35px;
            position: relative;
            z-index: 3;
        }

        .unique_vip_modal_title {
            font-size: 32px;
            color: #333;
            margin: 0;
            font-weight: 700;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .unique_vip_modal_subtitle {
            color: #666;
            font-size: 16px;
            margin-top: 10px;
            font-weight: 300;
        }
		
		.unique_vip_tabs_container {
			 background: #FFF;
			 border-radius: 20px;
		}

        /* 选项卡样式 */
        .unique_vip_tabs {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
            z-index: 3;
            background: rgba(255, 255, 255, 0.3);
            padding: 8px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
        }

        .unique_vip_tab {
            padding: 12px 20px;
            cursor: pointer;
            border-radius: 15px;
            font-weight: 600;
            color: #666;
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
            margin: 0 5px;
        }

        .unique_vip_tab:hover {
            background: rgba(255, 255, 255, 0.5);
            color: #333;
        }

        .unique_vip_tab.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        /* 选项卡内容样式 */
        .unique_vip_tab_content {
            display: none;
            animation: unique_vip_slideIn 0.4s ease-out;
            position: relative;
            z-index: 3;
        }

        .unique_vip_tab_content.active {
            display: block;
        }

        /* 卡片滑动容器 */
        .unique_vip_cards_wrapper {
            position: relative;
            margin-bottom: 25px;
            height: 200px;
        }

        .unique_vip_cards_container {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 0px 10px;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            height: 100%;
            align-items: center;
			  user-select: none; /* 禁止所有浏览器选中 */
			  -webkit-user-select: none; /* Safari/Chrome */
			  -moz-user-select: none; /* Firefox */
			  -ms-user-select: none; /* IE/Edge */
        }

        .unique_vip_cards_container::-webkit-scrollbar {
            display: none;
        }

        .unique_vip_card_item {
            flex: 0 0 auto;
            width: 220px;
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            background: white;
            border: 1px solid #eee;
        }

        .unique_vip_card_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .unique_vip_card_item.active {
            border: 2px solid #667eea;
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
        }

        .unique_vip_card_price {
            font-size: 36px;
            font-weight: 700;
            color: #e74c3c;
            margin: 5px 0;
        }

        .unique_vip_card_original {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
            margin-bottom: 5px;
        }

        .unique_vip_card_desc {
            font-size: 14px;
            color: #666;
            margin: 10px 0;
        }

        .unique_vip_card_label {
            background: #f8d7da;
            color: #721c24;
            padding: 5px 8px;
            border-radius: 100px;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .unique_vip_nav_buttons {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            pointer-events: none;
            z-index: 4;
        }

        .unique_vip_nav_btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            pointer-events: auto;
        }

        .unique_vip_nav_btn:hover {
            background: #667eea;
            color: white;
            transform: scale(1.1);
        }

        .unique_vip_nav_btn svg {
            width: 20px;
            height: 20px;
            fill: #333;
        }

        .unique_vip_nav_btn:hover svg {
            fill: white;
        }

        .unique_vip_form_group {
            margin-bottom: 25px;
			padding: 0px 20px 0px 20px; /* 上 右 下 左 */
        }

        .unique_vip_form_label {
            display: block;
            margin-bottom: 12px;
            color: #333;
            font-weight: 600;
            font-size: 15px;
        }

        .unique_vip_form_input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e6e6e6;
            border-radius: 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            box-sizing: border-box;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
        }

        .unique_vip_form_input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
        }

        select.unique_vip_form_input {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 1rem center;
            background-repeat: no-repeat;
            background-size: 1.5em 1.5em;
            padding-right: 45px;
        }

        .unique_vip_buttons {
            display: flex;
            gap: 15px;
            justify-content: space-between;
            position: relative;
            z-index: 3;
            margin-top: 20px;
			padding: 0px 20px 20px 20px; /* 上 右 下 左 */
        }

        .unique_vip_btn {
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex: 1;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }

        .unique_vip_btn_primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .unique_vip_btn_secondary {
            background: rgba(248, 249, 250, 0.8);
            color: #666;
            border: 1px solid #dee2e6;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .unique_vip_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .unique_vip_btn:active {
            transform: translateY(0);
        }

        .unique_vip_close_btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: none;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 4;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .unique_vip_close_btn:hover {
            background: rgba(233, 236, 239, 0.9);
            transform: rotate(90deg) scale(1.1);
        }

        .unique_vip_close_btn::after {
            content: '×';
            font-size: 24px;
            color: #666;
            font-weight: bold;
        }

        @keyframes unique_vip_fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes unique_vip_popIn {
            from {
                transform: scale(0.7);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes unique_vip_slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes unique_vip_float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        .unique_vip_vip_badge {
            position: absolute;
            top: -12px;
            right: -12px;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #8b4513;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            z-index: 4;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .unique_vip_main_stats {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-radius: 20px;
            padding: 25px;
            margin-bottom: 25px;
            position: relative;
            z-index: 3;
            border: 1px solid rgba(102, 126, 234, 0.2);
        }

        .unique_vip_main_stats h3 {
            margin: 0 0 15px 0;
            color: #333;
            font-size: 20px;
            text-align: center;
            font-weight: 700;
        }

        .unique_vip_main_stats p {
            margin: 0;
            color: #666;
            text-align: center;
            font-size: 14px;
        }

        .unique_vip_stats_grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .unique_vip_stat_card {
            background: rgba(255, 255, 255, 0.7);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .unique_vip_stat_value {
            font-size: 28px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 5px;
        }

        .unique_vip_stat_label {
            font-size: 14px;
            color: #666;
        }

        /* 特权对比表格 */
        .unique_vip_privilege_table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            margin-top: 30px;
        }

        .unique_vip_privilege_table th,
        .unique_vip_privilege_table td {
            border: 1px solid #ddd;
            padding: 10px;
            text-align: center;
        }

        .unique_vip_privilege_table th {
            background: #f8f9fa;
            font-weight: 700;
        }

        .unique_vip_privilege_table tr:nth-child(even) {
            background: #f8f9fa;
        }

        /* 支付区域样式 */
        .unique_vip_payment_price {
            font-size: 28px;
            font-weight: 700;
            color: #6c58b2;
			width: 100%;
			text-align: center;
			white-space: nowrap;      /* 禁止换行 */
			overflow: hidden;         /* 隐藏超出部分 */
			text-overflow: ellipsis;  /* 超出部分显示省略号 */
        }

        .unique_vip_qrcode {
            width: 200px;
            height: 200px;
            background: #f0f0f0;
            border: 1px dashed #ccc;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: #666;
            margin: 20px auto;
            position: relative;
        }


        .unique_vip_pay_btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            cursor: pointer;
            margin: 20px 0;
            transition: all 0.3s ease;
            font-weight: 600;
			text-align: center;
			white-space: nowrap;      /* 禁止换行 */
			overflow: hidden;         /* 隐藏超出部分 */
			text-overflow: ellipsis;  /* 超出部分显示省略号 */
        }

        .unique_vip_pay_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .unique_vip_payment_methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }

        .unique_vip_payment_method {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #666;
            font-size: 12px;
			margin-bottom: 20px;
        }
		
		
		



        /* 右下角悬浮容器 - 垂直排列 */
        .unq_floating_container {
            position: fixed;
            bottom: 50px;
            right: 20px;
            flex-direction: column;
            gap: 10px; /* 图标间距 */
            z-index: 100000000000;
			display: none;
        }

        /* 通用图标样式 */
        .unq_floating_icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
			background: rgb(72 65 65 / 65%);
			backdrop-filter: blur(10px); 
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* 悬停效果 */
        .unq_floating_icon:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* 当页面滚动时显示返回顶部图标 */
        .unq_back_to_top.hidden {
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.8);
        }
		
        .unq_customer_service.hidden {
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.8);
        }

		
		.unq_top_icon_class {
			display: block;
			background-image: url(https://img.alicdn.com/imgextra/i3/O1CN013vN9D21lVRfTgyvyr_!!6000000004824-2-tps-72-72.png);
			width: 24px;
			height: 24px;
			background-size: 100%;
			top: 6px;
			left: 7px;
			cursor: pointer;
			position: absolute;
			opacity: .6;
		}

		.unq_report_icon_class {
			display: block;
			background-image: url(https://img.alicdn.com/imgextra/i1/O1CN01wdya631tU5Q27o7od_!!6000000005904-2-tps-72-72.png);
			width: 24px;
			height: 24px;
			background-size: 100%;
			top: 8px;
			left: 7.5px;
			cursor: pointer;
			position: absolute;
			opacity: .6;
		}
		
		
		
		

        .ad-player_overlay_pz {
			position: absolute;
			top: 15%;
			left: 15%;
            width: 70%;
            height: 70%;
            aspect-ratio: 1.5/2;
            z-index: 1000;
            opacity: 0;
            display: none;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            cursor: pointer; /* 添加手型光标表示可点击 */
        }

        .ad-player_overlay_pz.show {
            opacity: 1;
            display: block;
        }

        .ad-player_image_pz {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
			border-radius: 10px;
        }

        .ad-player_close-btn_pz {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background-color: rgb(0 0 0 / 16%);
            color: #ffffff5c;
            border: none;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .ad-player_close-btn_pz:hover {
            background-color: rgb(255 252 252 / 16%);
            transform: scale(1.1);
        }

        .ad-player_close-btn_pz::before {
            content: '×';
			transition: all 0.3s ease;
        }
		
        .ad-player_overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 100000;
            opacity: 0;
			display: none;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            cursor: pointer; /* 添加手型光标表示可点击 */
        }

        .ad-player_overlay.show {
            opacity: 1;
            display: block;
        }

        .ad-player_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .ad-player_countdown {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            z-index: 100001;
            backdrop-filter: blur(5px);
            cursor: default; /* 倒计时区域不使用手型光标 */
        }
		
		.ad-player_image_yz {
			width: 100%;
			aspect-ratio: 1/0.25;
			object-fit: cover;
			object-position: center;
			border-radius: 10px;
            opacity: 0;
			display: none;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            cursor: pointer; /* 添加手型光标表示可点击 */
        }

        .ad-player_image_yz.show {
            opacity: 1;
            display: block;
        }
		
		
		.ad-player_image_yzx {
			width: 100%;
			aspect-ratio: 1/0.25;
			object-fit: cover;
			object-position: center;
			border-radius: 10px;
			margin: 10px 0px 0px 0px; /* 上 右 下 左 */
            opacity: 0;
			display: none;
            transition: opacity 0.5s ease, visibility 0.5s ease;
            cursor: pointer; /* 添加手型光标表示可点击 */
        }

        .ad-player_image_yzx.show {
            opacity: 1;
            display: block;
        }
		
		
		
		
		
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none; /* 默认隐藏 */
            justify-content: center;
            align-items: center;
            z-index: 100000000;
        }
        
        .popup-container {
            position: relative;
            overflow: hidden;
            height: 70%;
            aspect-ratio: 1/1;
            animation: popupAppear 0.3s ease-out;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 15px;
        }
        
        @keyframes popupAppear {
            from {
                transform: scale(0.7);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .popup-image {
            width: 100%;
            display: block;
            border-radius: 15px;
            cursor: pointer;
        }
        
        .popupclose-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            background-color: rgba(162, 162, 162, 0.2);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            color: rgba(173, 173, 173, 0.47);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1001;
        }
        
        .popupclose-btn:hover {
            background-color: rgba(162, 162, 162, 0.4);
            transform: scale(1.1);
        }
		
		
		
		